/* ==========================================
   GRAFT Magazine — style.css
   ========================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #0c0c0c;
    --bg-2:      #131313;
    --bg-3:      #1c1c1c;
    --bg-4:      #252525;
    --text:      #f0ede6;
    --text-muted:#857f77;
    --text-dim:  #3e3a35;
    --accent:    #c9a96e;
    --accent-lt: #e8d5b0;
    --border:    rgba(255,255,255,0.07);
    --border-ac: rgba(201,169,110,0.28);
    --serif:     'Cormorant Garamond', 'Times New Roman', serif;
    --sans:      'Noto Sans KR', -apple-system, sans-serif;
    --ease:      cubic-bezier(0.25,0.46,0.45,0.94);
    --pad-x:     clamp(24px, 5vw, 80px);
    --sec-y:     clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
.heading-1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.heading-2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
}
.body-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
}
.body-text + .body-text { margin-top: 1.1em; }
.label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.section { padding: var(--sec-y) 0; }
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.divider-h { height: 1px; background: var(--border); }
.dot { color: var(--text-dim); }

/* ==========================================
   HEADER / NAV
   ========================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 0;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(12,12,12,0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 0;
    border-bottom-color: var(--border);
}
.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav__logo-img {
    height: 36px;
    width: auto;
    display: block;
}
.nav__links {
    display: flex;
    list-style: none;
    gap: 2.4rem;
    align-items: center;
}
.nav__link {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.25s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--text); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}
.nav__toggle span {
    display: block;
    width: 22px; height: 1px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================
   PAGE SWITCHING
   ========================================== */
.page { display: none; }
.page.active {
    display: block;
    animation: pgIn 0.5s var(--ease) both;
}
@keyframes pgIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.48) 50%,
        rgba(0,0,0,0.65) 100%
    );
}
/* subtle grain */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px var(--pad-x) 0;
}
.hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: heroIn 1s var(--ease) 0.1s forwards;
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(5.5rem, 16vw, 15rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 0.88;
    color: var(--text);
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: heroIn 1.2s var(--ease) 0.25s forwards;
}
.hero__tagline {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--accent-lt);
    margin-bottom: 1rem;
    opacity: 0;
    animation: heroIn 1.1s var(--ease) 0.5s forwards;
}
.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 245, 235, 0.88);
    line-height: 1.7;
    max-width: 480px;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 0px 2px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: heroIn 1.1s var(--ease) 0.7s forwards;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroIn 1.1s var(--ease) 0.9s forwards;
}
.hero__scroll {
    position: absolute;
    bottom: 40px;
    right: var(--pad-x);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero__scroll span {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}
.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%,100% { transform: scaleY(1);   transform-origin: top; }
    50%     { transform: scaleY(0.3); transform-origin: top; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}
.btn--primary { background: var(--accent); color: #0c0c0c; }
.btn--primary:hover { background: var(--accent-lt); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid rgba(240,237,230,0.22); }
.btn--ghost:hover { border-color: rgba(240,237,230,0.6); background: rgba(240,237,230,0.04); }
.btn--outline { background: transparent; color: var(--accent); border: 1px solid var(--border-ac); }
.btn--outline:hover { background: rgba(201,169,110,0.07); border-color: var(--accent); }
.btn--full { width: 100%; }

/* ==========================================
   MAGAZINE COVERS (CSS art)
   ========================================== */
.cover {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 24px;
    overflow: hidden;
    min-height: 280px;
    background-color: #111;
    background-size: cover;
    background-position: center top;
}
/* gradient overlay */
.cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 35%, rgba(0,0,0,0.72) 100%);
    z-index: 0;
}
.cover--featured { min-height: 70vh; }

.cover__number {
    position: absolute;
    top: 18px; left: 24px;
    font-family: var(--serif);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    z-index: 1;
}
.cover--featured .cover__number { font-size: 0.95rem; }

.cover__title-kr {
    font-family: var(--sans);
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.92);
    position: relative;
    z-index: 1;
    letter-spacing: 0.04em;
}
.cover--featured .cover__title-kr { font-size: clamp(1.4rem, 2.8vw, 2.2rem); }

.cover__line {
    width: 36px; height: 1px;
    background: rgba(255,255,255,0.28);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.cover__badge {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--accent);
    color: #0c0c0c;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    padding: 4px 9px;
    z-index: 2;
}

/* ==========================================
   FOR YOU
   ========================================== */
.for-you {
    padding: var(--sec-y) 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.for-you__header { margin-bottom: clamp(40px, 5vw, 64px); }
.for-you__header .heading-2 { margin-top: 0; }

.for-you__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: clamp(40px, 5vw, 64px);
}
.for-you__item {
    background: var(--bg-2);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.3s;
}
.for-you__item:hover { background: var(--bg-3); }
.for-you__item p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    font-weight: 300;
}
.for-you__num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    display: block;
}

.for-you__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.for-you__desc {
    border-left: 2px solid var(--border-ac);
    padding-left: 28px;
}
.for-you__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.for-you__desc p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
}
.for-you__desc p + p { margin-top: 0.8em; }
.for-you__desc p:last-child {
    color: var(--text);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

/* About page FOR YOU variant */
.about-foryou__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: clamp(36px, 4vw, 56px);
}
.about-foryou__item {
    background: var(--bg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s;
}
.about-foryou__item:hover { background: var(--bg-3); }
.about-foryou__item p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
    font-weight: 300;
}
.about-foryou__summary { max-width: 640px; }

@media (max-width: 768px) {
    .for-you__list,
    .about-foryou__grid { grid-template-columns: 1fr; }
    .for-you__bottom { grid-template-columns: 1fr; }
}

/* ==========================================
   BRAND INTRO
   ========================================== */
.brand-intro {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.brand-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
}
.brand-intro__text .heading-2 { margin-bottom: 1.5rem; }
.brand-intro__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    margin-top: 1.4rem;
}
.brand-intro__logo {
    display: block;
    width: 85%;
    margin: 2.5rem auto 0;
    opacity: 0.9;
}
.brand-intro__card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.brand-intro__label {
    font-family: var(--serif);
    font-size: 2.8rem;
    color: var(--text-dim);
    font-style: italic;
    font-weight: 300;
}
.brand-intro__stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--text); }
.stat-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }

/* ==========================================
   FEATURED ISSUE
   ========================================== */
.featured-issue {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 72vh;
}
.featured-issue__cover { overflow: hidden; }
.featured-issue__info {
    padding: clamp(48px, 7vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-2);
}
.featured-issue__info .heading-2 { margin-bottom: 1.4rem; }
.featured-issue__meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 1.4rem 0 2rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ==========================================
   MAGAZINE SERIES GRID
   ========================================== */
.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}
.magazine-card { cursor: pointer; transition: transform 0.35s var(--ease); }
.magazine-card:hover { transform: translateY(-7px); }
.magazine-card .cover { aspect-ratio: 3/4; min-height: unset; }
.magazine-card__info {
    padding: 14px 0 0;
    border-top: 1px solid var(--border);
}
.magazine-card__info h3 {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 3px;
}
.magazine-card__info p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 5px; }
.magazine-card__caption { font-size: 0.75rem; color: var(--text-dim); font-family: var(--serif); font-style: italic; line-height: 1.55; margin-bottom: 8px !important; }
.magazine-card__info span { font-size: 0.78rem; color: var(--accent); }
.magazine-card__preview-hint { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }

.series-cta { margin-top: clamp(40px, 5vw, 60px); text-align: center; }

/* ==========================================
   PULL QUOTE
   ========================================== */
.pull-quote {
    padding: var(--sec-y) 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.pull-quote blockquote {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.pull-quote p {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.4vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.pull-quote cite {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-style: normal;
    text-transform: uppercase;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    position: relative;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner__text .heading-2 { margin-bottom: 0.7rem; }
.cta-banner__text p { font-size: 0.88rem; color: var(--text-muted); }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
    padding: clamp(130px, 16vw, 210px) 0 clamp(56px, 7vw, 90px);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(ellipse at 85% 0%, rgba(80,50,15,0.1) 0%, transparent 50%),
        var(--bg);
}
.page-hero--photo {
    position: relative;
    background-image: url('images/about-hero.jpg');
    background-size: cover;
    background-position: center;
}
.page-hero--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
}
.page-hero--photo .container { position: relative; z-index: 1; }
.page-hero .heading-1 { margin-bottom: 0.8rem; }
.page-hero p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.8rem; }

/* ==========================================
   ABOUT
   ========================================== */
.about-philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 8vw, 100px);
    align-items: center;
}
.display-quote {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.18;
    color: var(--text);
    opacity: 0.82;
}
.about-philosophy__grid > div .heading-2 { margin-bottom: 1.5rem; }

.timeline { display: flex; flex-direction: column; max-width: 700px; }
.timeline__item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 36px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}
.timeline__year {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--accent);
    padding-top: 3px;
}
.timeline__content h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.timeline__content p { font-size: 0.88rem; line-height: 1.85; color: var(--text-muted); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.value-card {
    background: var(--bg);
    padding: 38px 30px;
    transition: background 0.3s;
}
.value-card:hover { background: var(--bg-3); }
.value-card__num {
    font-family: var(--serif);
    font-size: 2.3rem;
    font-weight: 300;
    color: var(--text-dim);
    margin-bottom: 1rem;
}
.value-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 0.9rem;
}
.value-card p { font-size: 0.875rem; line-height: 1.85; color: var(--text-muted); }

.about-grapher {
    position: relative;
    background-image: url('images/grapher-note.jpg');
    background-size: cover;
    background-position: center;
}
.about-grapher::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
}
.about-grapher .container { position: relative; z-index: 1; }
.about-grapher__inner {
    max-width: 800px;
    padding: clamp(40px, 5vw, 64px);
    border-left: 2px solid var(--border-ac);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
}
.about-grapher__quote {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--text);
    margin-top: 0.5rem;
}
.about-grapher__sig {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-top: 1.8rem;
    text-transform: uppercase;
}

.about-cta {
    text-align: center;
    padding: clamp(48px, 6vw, 80px);
    border: 1px solid var(--border);
    background: var(--bg-2);
}
.about-cta .heading-2 { margin-bottom: 2rem; }

/* ==========================================
   ABOUT — REASON FOR BEING
   ========================================== */
.about-reason__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 100px);
    align-items: start;
}
.about-reason__quote {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--text);
    margin-top: 0.5rem;
}
.about-reason__previews {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-reason__preview-img {
    width: 100%;
    display: block;
    border: 1px solid var(--border);
    background-color: #fff;
}
.about-reason__punchline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-top: 1.5rem;
}

/* ==========================================
   ABOUT — IDENTITY / MISSION / VISION
   ========================================== */
.about-identity__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.about-identity__item {
    background: var(--bg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.3s;
}
.about-identity__item:hover { background: var(--bg-3); }
.about-identity__label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}
.about-identity__item h3 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
}
.about-identity__item p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ==========================================
   ABOUT — WHY GOSEONG
   ========================================== */
.about-goseong__photo {
    margin-top: clamp(40px, 5vw, 64px);
}
.about-goseong__img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}
.about-goseong__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.about-goseong__item {
    background: var(--bg-2);
    padding: clamp(32px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-goseong__num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dim);
}
.about-goseong__item h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--accent-lt);
}
.about-goseong__item p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-muted);
}

/* ==========================================
   ABOUT — WHY PRINT
   ========================================== */
.about-print {
    padding: var(--sec-y) 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-print__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.about-print__quote {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.4;
    margin-top: 1rem;
}
.about-print__text { display: flex; flex-direction: column; gap: 0; }

/* ==========================================
   ABOUT — DIFFERENTIATORS
   ========================================== */
.about-diff__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.about-diff__item {
    background: var(--bg);
    padding: clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.3s;
}
.about-diff__item:hover { background: var(--bg-3); }
.about-diff__num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dim);
}
.about-diff__item h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.4;
}
.about-diff__item p {
    font-size: 0.875rem;
    line-height: 1.85;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .about-identity__grid { grid-template-columns: repeat(2, 1fr); }
    .about-diff__grid { grid-template-columns: 1fr; }
    .about-print__inner { grid-template-columns: 1fr; }
    .about-goseong__grid { grid-template-columns: 1fr; }
    .about-reason__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .about-identity__grid { grid-template-columns: 1fr; }
}

/* ==========================================
   STORE
   ========================================== */
.store-filters { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 9px 22px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--sans);
    text-transform: uppercase;
}
.filter-btn:hover,
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #0c0c0c; }

.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 30px; }
.store-card { cursor: pointer; transition: transform 0.35s var(--ease); }
.store-card:hover { transform: translateY(-8px); }
.store-card .cover { aspect-ratio: 3/4; min-height: unset; transition: filter 0.3s; }
.store-card:hover .cover { filter: brightness(1.08); }

.store-card__info { padding: 18px 0 0; border-top: 1px solid var(--border); }
.store-card__tag { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 7px; }
.store-card__title { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--text); margin-bottom: 3px; }
.store-card__subtitle { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 6px; }
.store-card__caption {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 14px;
    font-family: var(--serif);
    font-style: italic;
}
.store-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}
.store-card__btn {
    display: block;
    width: 100%;
    padding: 11px 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-align: center;
    cursor: pointer;
    border: 1px solid;
    font-family: var(--sans);
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
}
.store-card__btn--buy {
    background: var(--accent);
    border-color: var(--accent);
    color: #0c0c0c;
    font-weight: 500;
}
.store-card__btn--buy:hover { background: var(--accent-lt); border-color: var(--accent-lt); }
.store-card__btn--preview {
    background: transparent;
    border-color: var(--border);
    color: var(--text-muted);
}
.store-card__btn--preview:hover { border-color: var(--accent); color: var(--accent); }
.store-card__btn--sold {
    background: transparent;
    border-color: var(--border);
    color: var(--text-dim);
    cursor: not-allowed;
}

/* ==========================================
   PRODUCT MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
    background: var(--bg-2);
    border: 1px solid var(--border);
    max-width: 880px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(22px);
    transition: transform 0.4s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px 0 0;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    transition: all 0.25s;
    z-index: 1;
}
.modal__close:hover { background: var(--bg-4); color: var(--text); }
.modal__content {
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    clear: both;
}
.modal__cover { aspect-ratio: 3/4; }
.modal__cover .cover { width: 100%; height: 100%; min-height: unset; }
.modal__label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.75rem; }
.modal__title { font-family: var(--serif); font-size: 1.9rem; font-weight: 300; color: var(--text); margin-bottom: 0.4rem; line-height: 1.2; }
.modal__sub { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--accent-lt); margin-bottom: 1.4rem; }
.modal__tagline {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: var(--accent-lt);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.modal__desc { font-size: 0.88rem; line-height: 1.88; color: var(--text-muted); margin-bottom: 1.8rem; }
.modal__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 22px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    margin-bottom: 1.8rem;
}
.modal__spec { display: flex; flex-direction: column; gap: 4px; }
.modal__spec-lbl { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.modal__spec-val { font-size: 0.88rem; color: var(--text); }
.modal__price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; flex-wrap: wrap; gap: 10px; }
.modal__price { font-family: var(--serif); font-size: 1.9rem; font-weight: 300; color: var(--text); }
.modal__price s { font-size: 1.1rem; color: var(--text-dim); margin-left: 10px; }
.modal__avail { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.modal__avail--on { color: var(--accent); }
.modal__avail--off { color: var(--text-dim); }
.modal__note { font-size: 0.72rem; color: var(--text-dim); text-align: center; margin-top: 10px; }

/* ==========================================
   INFO MODAL (약관·사업자정보)
   ========================================== */
.modal--info {
    max-width: 620px;
    padding: 40px 44px 44px;
}
.modal--info .modal__close {
    position: absolute;
    top: 16px; right: 16px;
    float: none; margin: 0;
}
.info-modal__title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.info-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.info-table th, .info-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.info-table th { color: var(--text-muted); font-weight: 400; width: 44%; white-space: nowrap; }
.info-table td { color: var(--text); }
.info-article h3 { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--accent); margin: 1.4rem 0 0.5rem; }
.info-article h3:first-child { margin-top: 0; }
.info-article p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.info-article ul { padding-left: 1.2rem; margin-top: 0.4rem; }
.info-article ul li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* ==========================================
   PDF PREVIEW MODAL
   ========================================== */
.modal--pdf {
    width: 92vw;
    max-width: 1100px;
    height: 90vh;
    max-height: 90vh;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}
.pdf-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    gap: 16px;
}
.pdf-modal__title {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pdf-modal__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.btn--sm { padding: 8px 18px; font-size: 0.78rem; }
.pdf-modal__frame {
    flex: 1;
    width: 100%;
    border: none;
    background: #fff;
}
.modal__preview { margin-bottom: 1.4rem; }
.modal__preview-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.6rem; }
.modal__preview-img { width: 100%; border-radius: 4px; display: block; }

/* ==========================================
   FAQ
   ========================================== */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    padding: 22px 0;
    font-size: 0.93rem;
    font-family: var(--sans);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.25s;
    line-height: 1.5;
}
.faq-q:hover { color: var(--accent-lt); }
.faq-q.open { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 18px; height: 18px; position: relative; }
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq-icon::before { width: 10px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q.open .faq-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 0 22px; font-size: 0.88rem; line-height: 1.88; color: var(--text-muted); }

/* ==========================================
   CONTACT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(48px, 7vw, 96px);
    align-items: start;
}
.contact-grid .heading-2 { margin-bottom: 1.4rem; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 14px; }
.contact-detail { display: flex; gap: 16px; align-items: baseline; }
.contact-detail__label { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); flex-shrink: 0; width: 58px; }
.contact-detail span:last-child { font-size: 0.86rem; color: var(--text-muted); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 13px 15px;
    font-size: 0.9rem;
    font-family: var(--sans);
    transition: border-color 0.25s;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23857f77' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 38px;
}
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox { flex-direction: row; align-items: center; gap: 11px; }
.form-checkbox input[type="checkbox"] { width: 15px; height: 15px; min-width: 15px; padding: 0; accent-color: var(--accent); cursor: pointer; }
.form-checkbox label { text-transform: none; letter-spacing: 0; font-size: 0.82rem; cursor: pointer; color: var(--text-muted); }

/* ==========================================
   TOAST
   ========================================== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--bg-3);
    border: 1px solid var(--border-ac);
    color: var(--text);
    padding: 14px 26px;
    font-size: 0.83rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
    z-index: 300;
    white-space: nowrap;
    max-width: 90vw;
    text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: clamp(60px, 8vw, 96px) 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 48px;
}
.footer__logo { margin-bottom: 12px; }
.footer__logo-img { height: 48px; width: auto; display: block; }
.footer__brand p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }
.footer__address { margin-top: 6px; }
.footer__links h4 { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; cursor: pointer; transition: color 0.25s; }
.footer__links a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer__bottom p { font-size: 0.72rem; color: var(--text-dim); }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .brand-intro__grid { grid-template-columns: 1fr; }
    .about-philosophy__grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .values-grid { grid-template-columns: 1fr; }
    .featured-issue { grid-template-columns: 1fr; }
    .featured-issue__cover .cover--featured { min-height: 50vw; }
    .featured-issue__info { padding: clamp(40px, 6vw, 64px); }
}

@media (max-width: 768px) {
    /* ── 타이포그래피 전역 ── */
    .heading-1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .heading-2 { font-size: clamp(1.45rem, 5vw, 2rem); }
    .body-text  { font-size: 0.88rem; }
    .label      { font-size: 0.62rem; }

    /* ── Hero ── */
    .hero__eyebrow { font-size: 0.62rem; }
    .hero__title   { font-size: clamp(3.2rem, 16vw, 5.5rem); }
    .hero__tagline { font-size: clamp(0.82rem, 3vw, 1rem); }
    .hero__sub     { font-size: 0.82rem; line-height: 1.7; }

    /* ── FOR YOU ── */
    .for-you__item p  { font-size: 0.88rem; }
    .for-you__num     { font-size: 1.5rem; }
    .for-you__desc p  { font-size: 0.88rem; }

    /* ── ABOUT GRAPH 숫자카드 ── */
    .stat-num         { font-size: 1.5rem; }
    .brand-intro__label { font-size: 2rem; }

    /* ── Featured Issue ── */
    .featured-issue__info .heading-2 { font-size: clamp(1.3rem, 4.5vw, 1.8rem); }

    /* ── About 섹션 ── */
    .about-reason__quote   { font-size: clamp(1.1rem, 4vw, 1.5rem); }
    .about-print__quote    { font-size: clamp(1.1rem, 4vw, 1.5rem); }
    .about-grapher__quote  { font-size: clamp(1rem, 3.5vw, 1.3rem); }
    .about-identity__item h3 { font-size: 0.92rem; }
    .about-identity__item p  { font-size: 0.82rem; }
    .about-goseong__item h3  { font-size: 0.95rem; }
    .about-goseong__item p   { font-size: 0.85rem; }
    .about-diff__item h3     { font-size: 0.95rem; }
    .about-diff__item p      { font-size: 0.85rem; }
    .about-reason__punchline { font-size: 0.88rem; }
    .about-grapher__sig      { font-size: 0.72rem; }

    /* ── Page Hero (소개·스토어·고객센터 상단) ── */
    .page-hero .heading-1 { font-size: clamp(1.8rem, 6.5vw, 2.6rem); }
    .page-hero p          { font-size: 0.82rem; }

    /* ── 스토어 카드 ── */
    .store-card__title    { font-size: 0.95rem; }
    .store-card__subtitle { font-size: 0.78rem; }
    .store-card__caption  { font-size: 0.73rem; }
    .store-card__price    { font-size: 0.9rem; }

    /* ── 매거진 카드 ── */
    .magazine-card__info h3 { font-size: 0.9rem; }
    .magazine-card__info p  { font-size: 0.75rem; }

    /* ── CTA 배너 ── */
    .cta-banner__text p { font-size: 0.82rem; }

    /* ── 푸터 ── */
    .footer__brand p  { font-size: 0.82rem; }
    .footer__links h4 { font-size: 0.65rem; }
    .footer__links a  { font-size: 0.82rem; }
    .footer__bottom p { font-size: 0.72rem; }

    /* ── 문의 폼 ── */
    .contact-detail span:last-child { font-size: 0.82rem; }

    /* ── Nav ── */
    .nav__links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(12,12,12,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 99;
    }
    .nav__links.open { display: flex; }
    .nav__link { font-size: 1.1rem; }
    .nav__toggle { display: flex; }
    .nav__logo-img { height: 28px; }

    /* ── Hero ── */
    .hero__title { font-size: clamp(3.5rem, 18vw, 6rem); }
    .hero__tagline { font-size: clamp(0.9rem, 3.5vw, 1.3rem); }
    .hero__sub { font-size: 0.88rem; }
    .hero__actions { flex-direction: column; gap: 12px; align-items: flex-start; }
    .hero__actions .btn { width: 100%; max-width: 280px; text-align: center; }

    /* ── FOR YOU ── */
    .for-you__bottom { grid-template-columns: 1fr; }
    .for-you__photo { aspect-ratio: 4/3; max-height: 300px; }
    .for-you__list { grid-template-columns: 1fr; }

    /* ── Brand Intro (ABOUT GRAPH) ── */
    .brand-intro__grid { grid-template-columns: 1fr; }
    .brand-intro__logo { width: 50%; margin: 1.5rem auto 0; }

    /* ── Featured Issue ── */
    .featured-issue { grid-template-columns: 1fr; }
    .featured-issue__cover .cover--featured { min-height: 55vw; }
    .featured-issue__info { padding: clamp(28px, 5vw, 48px); }

    /* ── Magazine series ── */
    .series-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* ── CTA Banner ── */
    .cta-banner__inner { flex-direction: column; text-align: center; }

    /* ── Modals ── */
    .modal__content { grid-template-columns: 1fr; padding: 20px; }
    .modal__cover { aspect-ratio: 3/2; }
    .modal__specs { grid-template-columns: 1fr 1fr; }

    /* PDF modal */
    #pdfModalOverlay { padding: 0; }
    .modal--pdf { width: 100vw; height: 100dvh; max-height: 100dvh; border-radius: 0; }
    .pdf-modal__header { padding: 12px 16px; flex-wrap: wrap; }
    .pdf-modal__title { font-size: 0.75rem; }
    .pdf-modal__frame { -webkit-overflow-scrolling: touch; }

    /* ── About ── */
    .about-reason__grid { grid-template-columns: 1fr; }
    .about-reason__previews { gap: 8px; }
    .about-identity__grid { grid-template-columns: 1fr 1fr; }
    .about-goseong__grid { grid-template-columns: 1fr; }
    .about-print__inner { grid-template-columns: 1fr; }
    .about-diff__grid { grid-template-columns: 1fr; }
    .about-grapher__inner { padding: clamp(24px, 5vw, 40px); }

    /* ── Store ── */
    .store-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .store-card__btn { padding: 10px 6px; font-size: 0.68rem; }

    /* ── Footer ── */
    .footer__grid { grid-template-columns: 1fr; }
    .footer__logo-img { height: 36px; }

    /* ── Form ── */
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    /* ── 타이포그래피 ── */
    .heading-1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .heading-2 { font-size: clamp(1.25rem, 4.5vw, 1.65rem); }

    /* ── Hero ── */
    .hero__title { font-size: clamp(2.8rem, 14vw, 4rem); }
    .hero__tagline { font-size: 0.78rem; }
    .hero__sub     { font-size: 0.78rem; }

    /* ── Grids → 1열 ── */
    .series-grid { grid-template-columns: 1fr; }
    .store-grid { grid-template-columns: 1fr; }
    .about-identity__grid { grid-template-columns: 1fr; }

    /* ── Modal ── */
    .modal__specs { grid-template-columns: 1fr; }
    .modal__content { padding: 16px; }

    /* ── Store 버튼 ── */
    .store-card__actions { grid-template-columns: 1fr; gap: 6px; }
    .store-card__btn { padding: 11px 8px; font-size: 0.72rem; }

    /* ── WHY GOSEONG image ── */
    .about-goseong__img { max-height: 260px; }

    /* ── Brand intro logo ── */
    .brand-intro__logo { width: 65%; }

    /* ── Buttons ── */
    .btn { padding: 14px 22px; font-size: 0.82rem; }
    .pdf-modal__actions { gap: 8px; }
    .btn--sm { padding: 8px 14px; font-size: 0.73rem; }
}

@media (max-width: 360px) {
    .hero__title { font-size: 14vw; }
    .heading-1 { font-size: clamp(2rem, 8vw, 3rem); }
    .heading-2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}
