/* ==========================================================================
   ggoomimi.com — warm editorial dreamscape
   Palette:
     #FFF5EE Cream Blush  (bg)
     #3B2E3F Charcoal Plum (text)
     #E8A0BF Aurora Rose
     #B8A9C9 Lavender Mist
     #A8D5BA Soft Mint
     #F5C6AA Peach Glow
     #F0E0C8 Gilded Cream
   Typography: Bebas Neue / Libre Baskerville / Karla
   ========================================================================== */

:root {
    --cream-blush: #FFF5EE;
    --charcoal-plum: #3B2E3F;
    --aurora-rose: #E8A0BF;
    --lavender-mist: #B8A9C9;
    --soft-mint: #A8D5BA;
    --peach-glow: #F5C6AA;
    --gilded-cream: #F0E0C8;

    --aurora-primary: linear-gradient(135deg, #E8A0BF 0%, #B8A9C9 40%, #A8D5BA 100%);
    --aurora-warm: linear-gradient(160deg, #F5C6AA 0%, #E8A0BF 50%, #B8A9C9 100%);
    --depth-fade: linear-gradient(180deg, #FFF5EE 0%, #F0E0C8 100%);

    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Libre Baskerville', Georgia, serif;
    --font-accent: 'Karla', 'Helvetica Neue', sans-serif;

    --gutter: clamp(1.25rem, 4vw, 4rem);
    --spread-gap: min(12vh, 120px);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--cream-blush);
}

body {
    background: var(--depth-fade);
    background-attachment: fixed;
    color: var(--charcoal-plum);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.75;
    overflow-x: hidden;
    min-height: 100vh;
    perspective: 1200px;
}

img { max-width: 100%; display: block; }

/* ==========================================================================
   Aurora atmospheric layers (z:-2)
   ========================================================================== */

.aurora-layer {
    position: fixed;
    inset: -20% -10%;
    z-index: -2;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.22;
    background-size: 300% 300%;
    animation: auroraShift 48s ease-in-out infinite;
    will-change: background-position;
}

.aurora-layer--one {
    background: var(--aurora-primary);
    opacity: 0.18;
    animation-duration: 52s;
}

.aurora-layer--two {
    background: var(--aurora-warm);
    opacity: 0.14;
    animation-duration: 64s;
    animation-direction: reverse;
    mix-blend-mode: screen;
}

.aurora-layer--three {
    background: radial-gradient(circle at 20% 80%, var(--soft-mint) 0%, transparent 45%),
                radial-gradient(circle at 80% 20%, var(--peach-glow) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, var(--aurora-rose) 0%, transparent 60%);
    opacity: 0.12;
    animation-duration: 72s;
}

@keyframes auroraShift {
    0%   { background-position:   0%   0%; }
    25%  { background-position:  80%  20%; }
    50%  { background-position: 100% 100%; }
    75%  { background-position:  20%  80%; }
    100% { background-position:   0%   0%; }
}

/* ==========================================================================
   Pill-stack navigation
   ========================================================================== */

.pill-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 10px;
    border-radius: 20px;
    background: rgba(255, 245, 238, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(240, 224, 200, 0.6);
}

.pill-nav__pill {
    position: relative;
    width: 8px;
    height: 32px;
    border-radius: 4px;
    background: var(--gilded-cream);
    display: block;
    text-decoration: none;
    transition: background 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-nav__pill:hover {
    background: var(--peach-glow);
    transform: scaleY(1.08);
}

.pill-nav__pill.is-active {
    background: var(--aurora-rose);
    height: 44px;
}

.pill-nav__pill.is-revealed {
    background: linear-gradient(180deg, var(--aurora-rose), var(--lavender-mist));
}

.pill-nav__pill.is-active.is-revealed {
    background: var(--aurora-rose);
}

.pill-nav__label {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--charcoal-plum);
    background: rgba(255, 245, 238, 0.9);
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 46, 63, 0.08);
}

.pill-nav__pill:hover .pill-nav__label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   Stage container (perspective parent)
   ========================================================================== */

.stage {
    position: relative;
    transform-style: preserve-3d;
    padding-bottom: 4rem;
}

/* Shared eyebrow / caption typography */
.spread__eyebrow,
.foyer__meta,
.pane__caption,
.meta-line,
.colophon__label,
.colophon__foot {
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    color: var(--charcoal-plum);
}

/* ==========================================================================
   The Foyer (Hero)
   ========================================================================== */

.foyer {
    position: relative;
    min-height: 100vh;
    padding: clamp(2rem, 6vw, 5rem) var(--gutter) clamp(4rem, 8vw, 7rem);
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    overflow: hidden;
    transform: translateZ(0);
}

.foyer__frame {
    position: relative;
    z-index: 3;
    max-width: 60vw;
    padding-top: clamp(1.5rem, 6vh, 5rem);
}

.foyer__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--charcoal-plum);
    opacity: 0.72;
    margin-bottom: 2.2rem;
}

.foyer__meta-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--aurora-rose);
    box-shadow: 0 0 0 4px rgba(232, 160, 191, 0.22);
    animation: dotPulse 4s ease-in-out infinite;
}

@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(232, 160, 191, 0.22); }
    50%     { box-shadow: 0 0 0 10px rgba(232, 160, 191, 0.04); }
}

.foyer__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(5rem, 12vw, 10rem);
    letter-spacing: 0.06em;
    line-height: 0.92;
    margin: 0 0 1.6rem;
    color: var(--charcoal-plum);
    background: linear-gradient(160deg, var(--charcoal-plum) 0%, #6B4E66 60%, var(--aurora-rose) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(232, 160, 191, 0.08);
}

.foyer__subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 34ch;
    color: var(--charcoal-plum);
    opacity: 0.85;
    margin: 0 0 2.5rem;
    line-height: 1.55;
}

.foyer__byline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal-plum);
    opacity: 0.7;
}

.foyer__byline-sep {
    display: inline-block;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--aurora-rose), var(--lavender-mist));
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    left: var(--gutter);
    bottom: 2.2rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--charcoal-plum);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-cue__chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gilded-cream);
    position: relative;
    animation: chevronFloat 2.8s ease-in-out infinite;
}

.scroll-cue__chevron::after {
    content: "";
    position: absolute;
    left: 50%; top: 40%;
    width: 8px; height: 8px;
    border-right: 2px solid var(--charcoal-plum);
    border-bottom: 2px solid var(--charcoal-plum);
    transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes chevronFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(6px); }
}

/* ==========================================================================
   Ghost page numbers
   ========================================================================== */

.page-number {
    position: absolute;
    right: clamp(2rem, 6vw, 6rem);
    top: 18%;
    font-family: var(--font-display);
    font-size: 15rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--charcoal-plum);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.foyer .page-number {
    right: auto;
    left: clamp(2rem, 6vw, 6rem);
    bottom: -3rem;
    top: auto;
}

/* ==========================================================================
   Interstitial aurora bands
   ========================================================================== */

.interstitial {
    position: relative;
    height: 120px;
    margin: var(--spread-gap) 0;
    transform: translateZ(-20px);
    z-index: -1;
}

.interstitial__band {
    position: absolute;
    inset: 0;
    background: var(--aurora-primary);
    background-size: 300% 300%;
    animation: auroraShift 40s ease infinite;
    filter: saturate(0.9);
}

.interstitial__band::before,
.interstitial__band::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 40px;
    pointer-events: none;
}

.interstitial__band::before {
    top: -1px;
    background: linear-gradient(180deg, var(--cream-blush), transparent);
}

.interstitial__band::after {
    bottom: -1px;
    background: linear-gradient(0deg, var(--cream-blush), transparent);
}

.interstitial__band--warm {
    background: var(--aurora-warm);
}

/* ==========================================================================
   Spreads (editorial two-column)
   ========================================================================== */

.spread {
    position: relative;
    padding: clamp(2rem, 5vw, 5rem) var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: clamp(1.5rem, 4vw, 4.5rem);
    align-items: start;
    max-width: 1480px;
    margin: 0 auto;

    /* progressive disclosure starts collapsed-ish */
    max-height: 36vh;
    overflow: hidden;
    opacity: 0.72;
    transform: translateY(24px) translateZ(-40px);
    filter: blur(0.5px);
    transition:
        max-height 0.95s cubic-bezier(0.4, 0, 0.2, 1),
        opacity   0.8s  cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.95s cubic-bezier(0.4, 0, 0.2, 1),
        filter    0.8s  cubic-bezier(0.4, 0, 0.2, 1);
}

.spread::before {
    content: "";
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--aurora-rose), var(--lavender-mist), var(--soft-mint));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.spread.is-revealed {
    max-height: 4000px;
    opacity: 1;
    transform: translateY(0) translateZ(0);
    filter: blur(0);
}

.spread.is-revealed::before { transform: scaleX(1); }

.spread--right-text { grid-template-columns: 1.8fr 1fr; }
.spread--right-text .spread__col--text  { order: 2; }
.spread--right-text .spread__col--visual{ order: 1; }

.spread__col {
    position: relative;
    z-index: 2;
}

.spread__eyebrow {
    display: inline-block;
    margin-bottom: 1.6rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--gilded-cream);
    color: var(--charcoal-plum);
}

.spread__heading {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.06em;
    font-size: clamp(3rem, 6.2vw, 6rem);
    line-height: 0.96;
    margin: 0 0 1.6rem;
    color: var(--charcoal-plum);
}

.spread__teaser {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    margin: 0 0 2rem;
    max-width: 30ch;
    color: var(--charcoal-plum);
    opacity: 0.8;
}

.spread__body p {
    margin: 0 0 1.25rem;
    max-width: 54ch;
}

.pullquote {
    position: relative;
    font-family: var(--font-body);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.4;
    color: var(--charcoal-plum);
    padding: 1.2rem 0 1.2rem 2.6rem;
    margin: 1.5rem 0 !important;
    max-width: 36ch !important;
}

.pullquote::before {
    content: "\201C";
    position: absolute;
    left: -0.2rem;
    top: -1.6rem;
    font-family: var(--font-body);
    font-size: 6rem;
    line-height: 1;
    color: var(--aurora-rose);
    opacity: 0.4;
    pointer-events: none;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 46, 63, 0.12);
    opacity: 0.75;
}

/* Soft index list on spread 03 */
.soft-index {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.8rem;
    max-width: 42ch;
}

.soft-index li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(59, 46, 63, 0.18);
}

.soft-index__num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--aurora-rose);
}

.soft-index__text {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--charcoal-plum);
    opacity: 0.88;
}

/* ==========================================================================
   Visual panes (right-column pastel panels)
   ========================================================================== */

.pane {
    position: relative;
    aspect-ratio: 4 / 3.2;
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    display: grid;
    place-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background:
        linear-gradient(160deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.15) 100%),
        var(--aurora-primary);
    box-shadow:
        0 30px 60px rgba(59, 46, 63, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateZ(0);
}

.pane--rose {
    background:
        linear-gradient(160deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.05) 100%),
        linear-gradient(135deg, var(--aurora-rose) 0%, var(--lavender-mist) 100%);
}

.pane--peach {
    background:
        linear-gradient(160deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 100%),
        linear-gradient(150deg, var(--peach-glow) 0%, var(--aurora-rose) 60%, var(--lavender-mist) 100%);
}

.pane--lavender {
    background:
        linear-gradient(160deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.1) 100%),
        linear-gradient(200deg, var(--lavender-mist) 0%, var(--soft-mint) 100%);
}

.pane__caption {
    position: absolute;
    left: 1.4rem;
    bottom: 1.1rem;
    color: var(--charcoal-plum);
    opacity: 0.78;
    background: rgba(255, 245, 238, 0.7);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.68rem;
}

/* ==========================================================================
   CSS 3D sculptures
   ========================================================================== */

.sculpt {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* --- Sphere (Foyer) --- */
.sculpt--sphere {
    position: absolute;
    right: clamp(1rem, 6vw, 6rem);
    bottom: clamp(2rem, 8vh, 6rem);
    width: clamp(220px, 32vw, 420px);
    height: clamp(220px, 32vw, 420px);
    z-index: 2;
    pointer-events: none;
}

.sphere {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 28%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.0) 35%),
        conic-gradient(from 45deg,
            var(--aurora-rose) 0deg,
            var(--lavender-mist) 120deg,
            var(--soft-mint) 220deg,
            var(--peach-glow) 300deg,
            var(--aurora-rose) 360deg);
    filter: drop-shadow(0 20px 40px rgba(232, 160, 191, 0.35));
    animation: gentleSpin 20s linear infinite;
    transform-origin: center;
}

.sphere__highlight {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 70% 72%, rgba(59,46,63,0.18) 0%, transparent 45%),
        radial-gradient(circle at 28% 30%, rgba(255,255,255,0.6) 0%, transparent 30%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.sculpt__shadow {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -6%;
    height: 14%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(232,160,191,0.35), transparent 70%);
    filter: blur(14px);
    z-index: -1;
}

@keyframes gentleSpin {
    from { transform: rotateY(0deg) rotateZ(0deg); }
    to   { transform: rotateY(360deg) rotateZ(0deg); }
}

/* --- Torus (Spread 01) --- */
.sculpt--torus {
    width: min(70%, 320px);
    aspect-ratio: 1 / 1;
    perspective: 800px;
}

.torus {
    position: relative;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    animation: torusRotate 24s linear infinite;
    filter: drop-shadow(0 20px 40px rgba(184, 169, 201, 0.35));
}

.torus__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 32px solid transparent;
    background: conic-gradient(from 0deg,
        var(--lavender-mist), var(--soft-mint),
        var(--aurora-rose), var(--lavender-mist)) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.torus__ring--a { transform: rotateX(65deg) rotateZ(0deg); }
.torus__ring--b { transform: rotateX(65deg) rotateZ(60deg); opacity: 0.55; }
.torus__ring--c { transform: rotateX(65deg) rotateZ(120deg); opacity: 0.3; }

@keyframes torusRotate {
    from { transform: rotateY(0deg)   rotateX(0deg); }
    to   { transform: rotateY(360deg) rotateX(10deg); }
}

/* --- Rounded Cube (Spread 02) --- */
.sculpt--cube {
    width: min(60%, 260px);
    aspect-ratio: 1 / 1;
    perspective: 900px;
}

.cube {
    position: relative;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    animation: cubeBob 6s ease-in-out infinite, cubeTumble 22s linear infinite;
    filter: drop-shadow(0 24px 48px rgba(245, 198, 170, 0.4));
}

.cube__face {
    position: absolute;
    inset: 0;
    border-radius: 20%;
    background: linear-gradient(145deg, var(--peach-glow) 0%, var(--aurora-rose) 60%, var(--lavender-mist) 100%);
    box-shadow: inset 0 0 40px rgba(255,255,255,0.25), inset 0 0 6px rgba(59,46,63,0.1);
}

.cube__face--front  { transform: translateZ(calc(50% - 0.1px)); }
.cube__face--back   { transform: rotateY(180deg) translateZ(calc(50% - 0.1px)); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(calc(50% - 0.1px)); }
.cube__face--right  { transform: rotateY(90deg)  translateZ(calc(50% - 0.1px)); }
.cube__face--top    { transform: rotateX(90deg)  translateZ(calc(50% - 0.1px)); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(calc(50% - 0.1px)); }

@keyframes cubeTumble {
    from { transform: rotateY(0deg) rotateX(-18deg); }
    to   { transform: rotateY(360deg) rotateX(-18deg); }
}

@keyframes cubeBob {
    0%,100% { translate: 0 -6px; }
    50%     { translate: 0 10px; }
}

/* --- Bokeh cluster (Spread 03) --- */
.sculpt--bokeh {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.bokeh {
    position: relative;
    width: 78%;
    aspect-ratio: 1 / 1;
    animation: bokehDrift 18s ease-in-out infinite;
}

.bokeh__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.bokeh__circle--1 {
    inset: 0;
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--aurora-rose) 55%, transparent 75%);
    opacity: 0.9;
}

.bokeh__circle--2 {
    width: 72%; height: 72%;
    left: 30%; top: 10%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--lavender-mist) 60%, transparent 80%);
    opacity: 0.65;
}

.bokeh__circle--3 {
    width: 54%; height: 54%;
    left: 8%; top: 42%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--soft-mint) 55%, transparent 80%);
    opacity: 0.5;
}

.bokeh__circle--4 {
    width: 38%; height: 38%;
    left: 55%; top: 55%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--peach-glow) 55%, transparent 80%);
    opacity: 0.4;
}

@keyframes bokehDrift {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(4%, -3%) scale(1.04); }
}

/* ==========================================================================
   Colophon (Spread 04)
   ========================================================================== */

.spread--colophon {
    display: block;
    max-width: 1280px;
    padding-top: clamp(3rem, 8vw, 7rem);
    padding-bottom: clamp(3rem, 8vw, 7rem);
}

.colophon__inner {
    position: relative;
    padding: clamp(2rem, 4vw, 4rem);
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(255,245,238,0.9) 0%, rgba(240,224,200,0.7) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 40px 80px rgba(59,46,63,0.08);
    overflow: hidden;
}

.colophon__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(232,160,191,0.25), transparent 40%),
        radial-gradient(circle at 95% 100%, rgba(168,213,186,0.25), transparent 40%);
    pointer-events: none;
}

.colophon__heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.06em;
    line-height: 0.96;
    margin: 1.2rem 0 2.5rem;
    color: var(--charcoal-plum);
    position: relative;
    z-index: 2;
}

.colophon__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.colophon__block p {
    margin: 0.6rem 0 0;
    font-size: 1rem;
    line-height: 1.6;
}

.colophon__label {
    display: inline-block;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(59,46,63,0.25);
}

.swatches {
    display: flex;
    gap: 8px;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.swatch {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(59,46,63,0.15), 0 6px 14px rgba(59,46,63,0.08);
}

.colophon__foot {
    margin-top: 3rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(59,46,63,0.15);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .spread,
    .spread--right-text {
        grid-template-columns: 1fr;
    }
    .spread--right-text .spread__col--text  { order: 2; }
    .spread--right-text .spread__col--visual{ order: 1; }

    .foyer__frame { max-width: 100%; }
    .sculpt--sphere {
        position: relative;
        right: auto; bottom: auto;
        margin: 2rem auto 0;
        width: clamp(200px, 60vw, 320px);
        height: clamp(200px, 60vw, 320px);
    }
    .foyer { display: block; }

    .interstitial { height: 60px; margin: calc(var(--spread-gap) * 0.6) 0; }

    .pill-nav { right: 10px; padding: 10px 6px; gap: 8px; }

    .page-number { font-size: 9rem; top: 8%; }
}

@media (max-width: 560px) {
    :root { --gutter: 1.1rem; }

    .foyer__title { font-size: clamp(3.6rem, 16vw, 5rem); }
    .spread__heading { font-size: clamp(2.4rem, 9vw, 4rem); }

    .pill-nav { display: none; }

    .scroll-cue__label { display: none; }
}
