/* ─────────────────────────────────────────
   FRECKLES v2 — Raw / Heavy Type / Grain
   Inspired by risograph, lo-fi zine aesthetic
───────────────────────────────────────── */

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

:root {
    --bg:       #F0EDE8;
    --surface:  #E8E4DD;
    --ink:      #111;
    --ink-2:    #2A2826;
    --muted:    #7A756E;
    --muted-2:  #B0AAA2;
    --accent:   #D63B7A;
    --accent-light: rgba(214,59,122,.1);
    --accent-mid: rgba(214,59,122,.25);
    --border:   #D5CFC6;
    --cream:    #F5F2EC;

    --font-display: 'Syne', 'Noto Sans KR', sans-serif;
    --font-body:    'Space Grotesk', 'Noto Sans KR', sans-serif;
    --font-kr:      'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; scroll-behavior: auto; }
/* scroll-behavior auto needed for GSAP ScrollTrigger */

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Grain Texture Overlay ── */
body::after {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: .45;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    mix-blend-mode: overlay;
}

/* ── Freckles Background ── */
.freckles-bg {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.freckle-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.06;
}

/* ── Nav ── */
.nav {
    position: fixed; top: 0; width: 100%;
    padding: 1rem 3%;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 900;
    transition: background .4s var(--ease);
    mix-blend-mode: normal;
}

.nav.scrolled {
    background: rgba(240,237,232,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
    text-decoration: none;
    display: flex; align-items: center; gap: .5rem;
    font-family: var(--font-display);
    font-weight: 800; font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
}

.nav-logo-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex; gap: 2rem; align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .75rem; font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 4px;
    flex-direction: column; gap: 6px;
}

.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--ink);
    transition: all .3s var(--ease);
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
    min-height: 100svh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0 3%;
}

.hero-scatter {
    position: absolute; inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative; z-index: 2;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: .65rem; font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .8s var(--ease) .2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 10vw, 10rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.04em;
    color: var(--ink);
    text-transform: lowercase;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero-line {
    display: block;
    opacity: 0;
}

.hero-line-accent {
    color: var(--ink);
    font-size: 1.25em;
    letter-spacing: -.07em;
}

.strike {
    font-style: normal;
    position: relative;
    color: var(--muted-2);
}

.strike::after {
    content: '';
    position: absolute;
    left: -4px; right: -4px;
    top: 50%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease);
}

.strike.struck::after {
    transform: scaleX(1);
}

.highlight {
    font-style: normal;
    color: var(--accent);
    position: relative;
}

.hero-big-text {
    position: absolute;
    bottom: 5%; right: -2%;
    font-family: var(--font-display);
    font-size: clamp(6rem, 22vw, 20rem);
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: lowercase;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--border);
    opacity: .3;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.scroll-cue {
    position: absolute;
    bottom: 2rem; left: 3%;
    display: flex; align-items: center; gap: .8rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUp .8s var(--ease) 1.6s forwards;
}

.scroll-cue span {
    font-size: .6rem; font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.scroll-line {
    width: 40px; height: 1px;
    background: var(--muted-2);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Section Label ── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .6rem; font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: .3rem .8rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* ── Story ── */
.story {
    padding: 8rem 3%;
    position: relative;
    z-index: 1;
}

.story-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.story-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    color: var(--ink);
    margin-bottom: 2.5rem;
    word-break: keep-all;
    text-transform: lowercase;
}

.story-headline em {
    font-style: normal;
    color: var(--accent);
}

.story-desc {
    font-family: var(--font-kr);
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 2.1;
    word-break: keep-all;
    max-width: 520px;
}
.story-desc + .story-desc { margin-top: .8rem; }

.story-visual {
    position: relative;
    display: flex; justify-content: center; align-items: center;
}

.story-dots {
    position: absolute; inset: -20px;
    pointer-events: none;
}

.story-card {
    background: var(--ink);
    color: #fff;
    border-radius: 4px;
    padding: 2.5rem 2.5rem 3rem;
    max-width: 360px;
    position: relative;
    z-index: 1;
    transform: rotate(-1.5deg);
    box-shadow: 0 24px 60px rgba(0,0,0,.15);
    text-align: center;
}

.story-card-portrait {
    width: 120px; height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent);
    background: #222;
}
.story-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.2) contrast(1.1);
}

.story-card-label {
    font-family: var(--font-display);
    font-size: .65rem; font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.story-card-text {
    font-family: var(--font-kr);
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    word-break: keep-all;
}

.story-card-sub {
    font-family: var(--font-body);
    font-size: .7rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .06em;
    margin-top: 1rem;
    text-transform: uppercase;
}

/* ── Work Road ── */
.workroad {
    padding: 7rem 3%;
    background: var(--ink);
    color: #fff;
    position: relative;
    z-index: 1;
}

.workroad-header {
    max-width: 1400px; margin: 0 auto 4rem;
}

.workroad-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #fff;
    text-transform: lowercase;
}

.workroad-title em {
    font-style: normal;
    color: var(--accent);
}

/* Work Road — Vertical Accordion */
.wr-list {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.wr-item {
    border-top: 1px solid rgba(255,255,255,.1);
    cursor: pointer;
    transition: background .3s;
}

.wr-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.wr-item:hover {
    background: rgba(214,59,122,.04);
}

.wr-item.active {
    background: rgba(214,59,122,.08);
    padding: 0 1.5rem;
    margin: 0 -1.5rem;
    border-radius: 8px;
}

.wr-item-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
}

.wr-marker {
    display: flex; align-items: flex-start;
}

.wr-num {
    font-family: var(--font-display);
    font-size: .82rem; font-weight: 700;
    color: var(--accent);
    letter-spacing: .04em;
    width: 48px; height: 48px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, color .3s;
}

.wr-item.active .wr-num {
    background: var(--accent);
    color: #fff;
}

.wr-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .6rem; font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .6rem;
}

.wr-heading {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: .6rem;
    word-break: keep-all;
}

.wr-summary {
    font-family: var(--font-kr);
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    line-height: 1.8;
    margin-bottom: 1rem;
    word-break: keep-all;
}

.wr-keywords {
    display: flex; flex-wrap: wrap; gap: .4rem;
}

.wr-keywords span {
    font-size: .7rem; font-weight: 500;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: .25rem .65rem;
    border-radius: 999px;
}

/* Expandable Detail */
.wr-expand {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0 0 calc(48px + 2.5rem);
    transition: max-height .5s var(--ease), opacity .4s var(--ease), padding-bottom .5s;
}

.wr-item.active .wr-expand {
    max-height: 400px;
    opacity: 1;
    padding-bottom: 2.5rem;
}

.wr-expand p {
    font-family: var(--font-kr);
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.9;
    margin-bottom: .8rem;
    word-break: keep-all;
}

.wr-expand p:first-child {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(214,59,122,.2);
}

.wr-expand p:last-child { margin-bottom: 0; }

.wr-credits {
    display: flex; flex-direction: column; gap: .5rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.wr-credit-link {
    font-family: var(--font-body);
    font-size: .78rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: .02em;
}
a.wr-credit-link:hover { text-decoration: underline; }

/* ── Selected Works ── */
.works {
    padding: 7rem 3%;
    position: relative;
    z-index: 1;
}
.works-inner { max-width: 1400px; margin: 0 auto; }
.works-header { margin-bottom: 4rem; }
.works-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    text-transform: lowercase;
}
.works-title em { font-style: normal; color: var(--accent); }

.works-showcase {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 4rem;
    align-items: start;
}

/* Book hero — left side */
.works-book, .works-book:visited, .works-book:hover, .works-book:active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 6rem;
    text-decoration: none;
    color: inherit;
}
.works-book-img {
    margin-bottom: 2rem;
}
.works-book-img img {
    max-height: 340px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.18));
    transition: transform .4s var(--ease);
}
.works-book-img:hover img {
    transform: rotate(-2deg) scale(1.03);
}
.works-book-info {
    text-align: center;
    max-width: 360px;
}
.works-book-title {
    font-family: var(--font-kr);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: .6rem;
    word-break: keep-all;
}
.works-book-desc {
    font-family: var(--font-kr);
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.9;
    word-break: keep-all;
    margin-bottom: .6rem;
}

/* Project cards — right side, stacked */
.works-projects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.work-card {
    display: block;
    padding: 2.2rem 2.5rem;
    background: var(--surface);
    border-radius: 6px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.work-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    border-color: var(--accent);
}
.work-card-tag {
    font-family: var(--font-body);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .6rem;
    display: block;
}
.work-card-title {
    font-family: var(--font-kr);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: .4rem;
    word-break: keep-all;
}
.work-card-meta {
    font-family: var(--font-body);
    font-size: .7rem;
    color: var(--muted);
    letter-spacing: .04em;
}

/* ── Potion ── */
.potion {
    padding: 8rem 3%;
    position: relative;
    z-index: 1;
    min-height: 70svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.potion-inner {
    max-width: 1400px; margin: 0 auto;
}

.potion-header {
    margin-bottom: 4rem;
}

.potion-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--ink);
    text-transform: lowercase;
}

.potion-title em {
    font-style: normal;
    color: var(--accent);
}

.potion-grid {
    display: flex;
    gap: 0;
}

.potion-card {
    flex: 1;
    background: var(--cream);
    border: 1px solid var(--border);
    border-right: none;
    padding: 2.5rem 2rem;
    cursor: pointer;
    overflow: hidden;
    transition: flex .6s var(--ease), background .3s, padding .5s var(--ease);
}

.potion-card:first-child { border-radius: 4px 0 0 4px; }
.potion-card:last-child  { border-radius: 0 4px 4px 0; border-right: 1px solid var(--border); }

.potion-card:hover { background: var(--accent-light); }

.potion-grid.has-active .potion-card:not(.active) {
    flex: 0.5;
    padding: 2.5rem 1.2rem;
}

.potion-grid.has-active .potion-card:not(.active) .potion-short {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.potion-card.active {
    flex: 2.5;
    background: var(--accent-light);
    border-color: var(--accent);
    cursor: default;
}

.potion-card.active + .potion-card {
    border-left-color: var(--accent);
}

.potion-num {
    font-family: var(--font-display);
    font-size: .68rem; font-weight: 700;
    color: var(--muted-2);
    letter-spacing: .04em;
    display: block;
    margin-bottom: 1.5rem;
}

.potion-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 800;
    color: var(--ink);
    margin-bottom: .8rem;
    text-transform: lowercase;
    transition: font-size .4s var(--ease);
}

.potion-card.active h3 {
    font-size: 1.6rem;
}

.potion-short {
    font-family: var(--font-kr);
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.8;
    word-break: keep-all;
    transition: opacity .3s, height .3s;
}

.potion-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease), opacity .4s var(--ease) .1s, margin-top .4s;
    margin-top: 0;
}

.potion-card.active .potion-detail {
    max-height: 300px;
    opacity: 1;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--accent-mid);
}

.potion-detail p {
    font-family: var(--font-kr);
    font-size: .88rem;
    color: var(--ink-2);
    line-height: 1.9;
    word-break: keep-all;
}

/* ── Contact ── */
.contact {
    min-height: 80svh;
    padding: 8rem 3%;
    background: var(--accent);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-inner {
    position: relative; z-index: 2;
    max-width: 700px; margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.contact-title em {
    font-style: normal;
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
}

.contact-desc {
    font-family: var(--font-kr);
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    word-break: keep-all;
}

.contact-btn {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    padding: 1rem 3rem;
    border-radius: 2px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: .85rem; font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .25s var(--ease), box-shadow .25s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

.contact-freckles {
    position: absolute; inset: 0;
    pointer-events: none;
}

/* ── Footer ── */
.footer {
    padding: 2rem 3%;
    background: var(--ink);
    border-top: none;
}

.footer-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}

.footer-logo {
    display: flex; align-items: center; gap: .4rem;
    font-family: var(--font-display);
    font-size: .7rem; font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.footer-copy {
    font-size: .65rem;
    color: rgba(255,255,255,.15);
}

/* ── Mouse Trail ── */
.cursor-dot {
    position: fixed;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transition: opacity .15s;
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%   { opacity: .3; transform: scaleX(.4); transform-origin: left; }
    50%  { opacity: 1;  transform: scaleX(1); }
    100% { opacity: .3; transform: scaleX(.4); transform-origin: right; }
}

/* ── Zoom Scroll Sections ── */
.zoom-section {
    will-change: transform, border-radius;
    transform-origin: center center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero { z-index: 6; }
.story { z-index: 5; }
.workroad { z-index: 4; }
.works { z-index: 3; }
.potion { z-index: 2; }
.contact { z-index: 1; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.6rem, 12vw, 5rem);
    }

    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 75%; height: 100vh;
        background: rgba(240,237,232,.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        padding: 0 2.5rem;
        gap: 2rem;
        border-left: 1px solid var(--border);
        transition: right .4s var(--ease);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; color: var(--ink); }
    .nav-toggle { display: flex; }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wr-item-header { gap: 1.5rem; }
    .wr-expand { padding-left: calc(48px + 1.5rem); }

    .potion-grid {
        flex-direction: column;
    }
    .potion-card { border-right: 1px solid var(--border); border-bottom: none; }
    .potion-card:first-child { border-radius: 4px 4px 0 0; }
    .potion-card:last-child  { border-radius: 0 0 4px 4px; border-bottom: 1px solid var(--border); }
    .potion-grid.has-active .potion-card:not(.active) { flex: 1; padding: 1.5rem; }

    .works-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
    .works-book-img img { max-height: 320px; }

    .footer-inner {
        flex-direction: column; gap: 1rem;
        text-align: center;
    }

    .scroll-cue { display: none; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .hero-big-text {
        font-size: clamp(4rem, 22vw, 7rem);
    }

    .story-headline {
        font-size: 2.2rem;
    }

    .workroad-title,
    .potion-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }
}
