/* =========================================================
   cosplay.bar — Atelier Design System
   Colors: #1A0F0A, #1C1410, #3D2B1F, #5C4230, #7A5C3E,
           #C9A96E, #C8C0B4, #F0E9D6, #F5EED8, #F8F2E6,
           #F8E8D0, #7ECBA1, #A8C5E8, #E8C5A8, #C0392B
   Fonts: Cormorant Garamond, Libre Baskerville, IM Fell English
   ========================================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1A0F0A;
    color: #F0E9D6;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F0E9D6;
    margin-bottom: 2.5rem;
}

blockquote, cite {
    font-family: 'IM Fell English', serif;
    font-style: italic;
}

/* ---- Section Base ---- */
.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    z-index: 2;
}

/* ---- Diagonal Sections ---- */
.section--diagonal-top {
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
    padding-top: 140px;
}

.section--diagonal-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    padding-bottom: 140px;
}

/* ---- Section 1: The Atelier Threshold ---- */
#atelier-threshold {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0E9D6;
    padding: 0;
}

.marble-surface {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.marble-surface--light {
    background-color: #F0E9D6;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015 0.025' numOctaves='4' seed='3'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.82 0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 18 -8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: cover;
}

#atelier-threshold .section__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    padding: 80px 48px;
}

.threshold-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.threshold-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(4rem, 10vw, 6rem);
    color: #1A0F0A;
    text-shadow: 0 2px 8px rgba(26, 15, 10, 0.15), 0 1px 0 rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.threshold-rule {
    width: 240px;
    height: 1px;
    background-color: #C9A96E;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

.threshold-descriptor {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.125rem;
    color: #3D2B1F;
    letter-spacing: 0.05em;
}

.threshold-content .wax-seal {
    position: absolute;
    bottom: -80px;
    right: -60px;
}

/* ---- Section 2: Craft Showcase Band ---- */
#craft-showcase {
    background: linear-gradient(160deg, #3D2B1F 0%, #1C1410 60%, #1A0F0A 100%);
    padding-bottom: 120px;
}

.showcase-label {
    text-align: center;
    margin-bottom: 3rem;
}

.label-text {
    font-family: 'Cormorant Garamond', serif;
    font-variant: small-caps;
    font-feature-settings: "smcp" 1;
    font-size: 1rem;
    letter-spacing: 0.25em;
    color: #C9A96E;
    text-transform: uppercase;
}

.display-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.display-case--1 { margin-top: 0; }
.display-case--2 { margin-top: 32px; }
.display-case--3 { margin-top: 16px; }

.display-case__inner {
    position: relative;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    cursor: default;
}

/* Leather Panel Surface */
.leather-panel {
    background: linear-gradient(135deg, #7A5C3E 0%, #5C4230 100%);
    box-shadow:
        0 8px 32px rgba(28, 20, 16, 0.6),
        0 2px 8px rgba(28, 20, 16, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 40px rgba(26, 15, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Leather grain texture overlay */
.leather-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='2' seed='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.marble-inlay {
    position: absolute;
    inset: 16px;
    background-color: #F0E9D6;
    background-image:
        linear-gradient(105deg, transparent 40%, rgba(200, 192, 180, 0.4) 50%, transparent 60%),
        linear-gradient(75deg, transparent 30%, rgba(180, 172, 162, 0.25) 45%, transparent 55%);
    border-radius: 2px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Brass corner rivets */
.brass-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #D4A843 0%, #C9A96E 40%, #8B6914 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 5;
}

.brass-corner--tl { top: 8px; left: 8px; }
.brass-corner--tr { top: 8px; right: 8px; }
.brass-corner--bl { bottom: 8px; left: 8px; }
.brass-corner--br { bottom: 8px; right: 8px; }

.display-case__label {
    font-family: 'Cormorant Garamond', serif;
    font-variant: small-caps;
    font-feature-settings: "smcp" 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F0E9D6;
    letter-spacing: 0.15em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 6;
}

/* ---- Section 3: The Aurora Chamber ---- */
#aurora-chamber {
    background-color: #1C1410;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.aurora-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.aurora-layer {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    mix-blend-mode: screen;
    will-change: transform;
}

.aurora-layer--1 {
    background: radial-gradient(ellipse 120% 50% at 20% 40%, #7ECBA1 0%, transparent 65%);
    opacity: 0.15;
    animation: aurora-drift-1 22s linear infinite;
}

.aurora-layer--2 {
    background: radial-gradient(ellipse 100% 40% at 75% 60%, #A8C5E8 0%, transparent 60%);
    opacity: 0.15;
    animation: aurora-drift-2 18s linear infinite;
}

.aurora-layer--3 {
    background: radial-gradient(ellipse 140% 45% at 50% 30%, #E8C5A8 0%, transparent 70%);
    opacity: 0.12;
    animation: aurora-drift-3 15s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
    0%   { transform: translate(0%, 0%) translateZ(0); }
    25%  { transform: translate(8%, -4%) translateZ(0); }
    50%  { transform: translate(-6%, 6%) translateZ(0); }
    75%  { transform: translate(4%, -2%) translateZ(0); }
    100% { transform: translate(0%, 0%) translateZ(0); }
}

@keyframes aurora-drift-2 {
    0%   { transform: translate(0%, 0%) translateZ(0); }
    33%  { transform: translate(-8%, 5%) translateZ(0); }
    66%  { transform: translate(6%, -6%) translateZ(0); }
    100% { transform: translate(0%, 0%) translateZ(0); }
}

@keyframes aurora-drift-3 {
    0%   { transform: translate(0%, 0%) scale(1) translateZ(0); }
    50%  { transform: translate(3%, 8%) scale(1.08) translateZ(0); }
    100% { transform: translate(0%, 0%) scale(1) translateZ(0); }
}

.aurora-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.aurora-statement {
    border: none;
}

.aurora-quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #F0E9D6;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.6s ease, letter-spacing 0.6s ease;
    letter-spacing: 0.12em;
}

.aurora-quote.is-visible {
    opacity: 1;
    letter-spacing: 0;
}

.aurora-cite {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1rem;
    color: #C9A96E;
    letter-spacing: 0.08em;
    display: block;
}

/* ---- Section 4: Material Study ---- */
#material-study {
    background-color: #F5EED8;
    color: #1A0F0A;
    padding-bottom: 120px;
}

.material-heading {
    color: #1A0F0A;
    text-align: center;
}

.swatches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.swatch__surface {
    width: 160px;
    height: 160px;
    position: relative;
    border: 1px solid #C8C0B4;
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

/* Animated border via outline trick */
.swatch__surface::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 2px;
    z-index: 10;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}

.swatch.is-traced .swatch__surface::before {
    border-color: #C9A96E;
    box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.3);
    animation: border-trace 1.2s ease forwards;
}

@keyframes border-trace {
    0%   { clip-path: inset(0 100% 100% 0); opacity: 0; }
    20%  { clip-path: inset(0 0 100% 0); opacity: 1; }
    50%  { clip-path: inset(0 0 0 0); opacity: 1; }
    100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

.swatch--brocade {
    background-color: #F0E9D6;
    background-image:
        repeating-linear-gradient(45deg, rgba(201, 169, 110, 0.15) 0px, rgba(201, 169, 110, 0.15) 1px, transparent 1px, transparent 8px),
        repeating-linear-gradient(-45deg, rgba(201, 169, 110, 0.1) 0px, rgba(201, 169, 110, 0.1) 1px, transparent 1px, transparent 8px);
}

.swatch--leather {
    background: linear-gradient(135deg, #7A5C3E 0%, #5C4230 60%, #3D2B1F 100%);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.swatch--velvet {
    background: linear-gradient(160deg, #3D2B1F 0%, #5C4230 30%, #3D2B1F 60%, #2A1D14 100%);
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.4);
}

.swatch--organza {
    background-color: #F8F2E6;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 3px,
        rgba(200, 192, 180, 0.2) 3px,
        rgba(200, 192, 180, 0.2) 4px
    );
}

.swatch--resin {
    background: linear-gradient(135deg, #C8C0B4 0%, #D4C9A8 50%, #C0B89A 100%);
    box-shadow: inset 0 2px 12px rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.swatch--chain {
    background-color: #C8C0B4;
    background-image:
        radial-gradient(circle at 4px 4px, rgba(100, 90, 80, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 12px 12px, rgba(100, 90, 80, 0.4) 2px, transparent 2px);
    background-size: 16px 16px;
}

.swatch__label {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8125rem;
    color: #3D2B1F;
    letter-spacing: 0.08em;
    text-align: center;
}

/* ---- Section 5: The Process Narrative ---- */
#process-narrative {
    background: linear-gradient(160deg, #F8F2E6 0%, #F5EED8 100%);
    color: #1A0F0A;
}

.narrative-heading {
    color: #1A0F0A;
}

.narrative-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.narrative-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #1A0F0A;
    margin-bottom: 1.25rem;
}

.pull-quote {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #5C4230;
    border-left: 2px solid #C9A96E;
    padding-left: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    transition: opacity 0.6s ease, letter-spacing 0.6s ease;
    letter-spacing: 0.12em;
    line-height: 1.5;
}

.pull-quote.is-visible {
    opacity: 1;
    letter-spacing: 0;
}

/* Journal Panel */
.journal-panel {
    position: relative;
    background-color: #F5EED8;
    background-image:
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 27px,
            #D4C9A8 28px
        );
    border-radius: 2px;
    box-shadow:
        0 8px 32px rgba(28, 20, 16, 0.2),
        0 2px 8px rgba(28, 20, 16, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 40px 40px 60px 60px;
    min-height: 480px;
    /* Stitched left edge */
    border-left: 4px double #C9A96E;
}

/* Stitched edge decoration */
.journal-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    width: 2px;
    height: 100%;
    background-image: repeating-linear-gradient(
        to bottom,
        #C9A96E 0px,
        #C9A96E 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.5;
}

.journal-lines {
    display: none; /* lines done via background */
}

.journal-content {
    position: relative;
    z-index: 2;
}

.journal-entry {
    font-family: 'Cormorant Garamond', serif;
    font-variant: small-caps;
    font-feature-settings: "smcp" 1;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: #5C4230;
    margin-bottom: 1.5rem;
}

.journal-note {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9375rem;
    line-height: 1.95;
    color: #3D2B1F;
    margin-bottom: 0.5rem;
}

.journal-wax-seal {
    position: absolute;
    bottom: -20px;
    right: 24px;
}

/* ---- Wax Seal ---- */
.wax-seal {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #C0392B 0%, #7B1818 60%, #4A0E0E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    flex-shrink: 0;
}

.wax-seal--threshold {
    width: 56px;
    height: 56px;
    opacity: 0.7;
}

.wax-seal--footer {
    width: 88px;
    height: 88px;
    transform: rotate(8deg);
    opacity: 0.9;
}

.wax-seal__letter {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-variant: small-caps;
    font-feature-settings: "smcp" 1;
    font-size: 1.75rem;
    color: #F8E8D0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    line-height: 1;
    transform: rotate(8deg);
    display: block;
}

.wax-seal--footer .wax-seal__letter {
    transform: rotate(-8deg);
    font-size: 2.25rem;
}

/* ---- Section 6: The Maker's Registry ---- */
#makers-registry {
    background: linear-gradient(160deg, #1C1410 0%, #1A0F0A 100%);
    color: #F0E9D6;
}

.makers-heading {
    color: #F0E9D6;
    text-align: center;
}

.makers-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Calling Card */
.calling-card {
    background-color: #F8F2E6;
    border-radius: 3px;
    padding: 28px 24px 48px;
    position: relative;
    border: 1px solid #C8C0B4;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    color: #1A0F0A;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
}

.calling-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}

.calling-card:hover {
    border-color: #C9A96E;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(201, 169, 110, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.15) inset;
}

.maker-card {
    /* inherits from calling-card */
}

.maker-card__content {
    /* container */
}

.maker-card__discipline {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-variant: small-caps;
    font-feature-settings: "smcp" 1;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #5C4230;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.maker-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A0F0A;
    line-height: 1.2;
    margin-bottom: 1rem;
    /* Debossed text effect */
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6),
        0 -1px 0 rgba(0, 0, 0, 0.15);
}

.maker-card__note {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #3D2B1F;
}

.maker-card__seal {
    position: absolute;
    bottom: -18px;
    right: 16px;
    width: 60px;
    height: 60px;
}

.maker-card__seal .wax-seal__letter {
    font-size: 1.5rem;
}

/* ---- Section 7: The Grand Foyer Footer ---- */
#grand-foyer {
    background-color: #1C1410;
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    /* Dark marble override */
    clip-path: none;
    margin-top: -60px;
}

.footer-marble-surface {
    position: absolute;
    inset: 0;
    background-color: #1C1410;
    background-image:
        linear-gradient(105deg, transparent 40%, rgba(61, 43, 31, 0.3) 50%, transparent 60%),
        linear-gradient(75deg, transparent 30%, rgba(28, 20, 16, 0.5) 45%, transparent 55%);
    z-index: 0;
}

.footer-border-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #C9A96E;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.5);
    z-index: 3;
    transition: width 2s ease-out;
}

.footer-border-line.is-animated {
    width: 100%;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-credits {
    text-align: center;
    flex: 1;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-variant: small-caps;
    font-feature-settings: "smcp" 1;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: #F0E9D6;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: #C9A96E;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-divider {
    width: 120px;
    height: 1px;
    background-color: #5C4230;
    margin: 0 auto 1.5rem;
}

.footer-copy {
    font-family: 'Cormorant Garamond', serif;
    font-variant: small-caps;
    font-feature-settings: "smcp" 1;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #7A5C3E;
}

.footer-seal-group {
    position: absolute;
    right: 48px;
    bottom: 32px;
}

/* ---- JS fade-in base (elements using js-fade-in class or aurora-quote) ---- */
.js-fade-in {
    opacity: 0;
    transition: opacity 0.6s ease, letter-spacing 0.6s ease;
    letter-spacing: 0.12em;
}

.js-fade-in.is-visible {
    opacity: 1;
    letter-spacing: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .makers-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section__inner {
        padding: 0 24px;
    }

    .section--diagonal-top {
        clip-path: polygon(0 1.5%, 100% 0, 100% 100%, 0 100%);
        margin-top: -40px;
        padding-top: 100px;
    }

    .section--diagonal-bottom {
        clip-path: polygon(0 0, 100% 0, 100% 98.5%, 0 100%);
    }

    .threshold-title {
        font-size: clamp(3rem, 12vw, 4rem);
    }

    .display-cases {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
        margin: 0 auto;
    }

    .display-case--1,
    .display-case--2,
    .display-case--3 {
        margin-top: 0;
    }

    .swatches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .narrative-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .makers-scroll {
        grid-template-columns: 1fr;
    }

    .aurora-quote {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-seal-group {
        position: static;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aurora-layer--1,
    .aurora-layer--2,
    .aurora-layer--3 {
        animation: none;
    }

    .aurora-quote,
    .pull-quote,
    .calling-card,
    .js-fade-in {
        transition: none;
    }
}
