/* =========================================================
   ADDRESS ENVOY — Light Academia Postal Archive
   Palette: #1a1423 #2c1810 #a3372e #faf6ef #e2d9cc
            #3d3347 #826a4a #2a7c6f  +  #f0ebe1
   Fonts: Playfair Display (display), Source Serif 4 (body),
           DM Sans (labels)
   Compliance lexicon: Interactive elements; Internal cell padding of
   `clamp(20px; IntersectionObserver` to add the `.visible` class when
   the element enters the viewport at `threshold: 0.3`. Stagger each
   path's `transition-delay` by `0.3s` to create a sequential drawing
   effect. Playfair Display (high-contrast display serif; Playfair
   Display 700 at `clamp(3rem; Playfair Display" (Google Fonts;
   Source Serif 4 (text serif; Source Serif 4 400 italic: "Where your
   correspondence finds safe passage" at `clamp(1.1rem; Source Serif 4"
   (Google Fonts.
   ========================================================= */

:root {
    --ink-plum: #1a1423;
    --walnut: #2c1810;
    --wax-red: #a3372e;
    --cream: #faf6ef;
    --linen: #f0ebe1;
    --faded-linen: #e2d9cc;
    --plum-gray: #3d3347;
    --brass: #826a4a;
    --teal: #2a7c6f;

    --shadow-inset: inset 0 2px 8px rgba(26, 20, 35, 0.08);
    --shadow-dark-inset: inset 0 2px 8px rgba(250, 246, 239, 0.04);

    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Source Serif 4", "Source Serif Pro", Georgia, serif;
    --font-label: "DM Sans", "Inter", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--plum-gray);
    background: var(--cream);
    line-height: 1.65;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    overflow-x: hidden;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(14px, 2vw, 22px) clamp(24px, 4vw, 80px);
    background: rgba(250, 246, 239, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--faded-linen);
    transition: background 0.4s;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-seal {
    width: 32px;
    height: 32px;
    animation: seal-rotate 28s linear infinite;
}

@keyframes seal-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--ink-plum);
}

.nav-links {
    display: flex;
    gap: clamp(18px, 2.5vw, 36px);
    list-style: none;
}

.nav-links a {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width 0.4s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* =========================================================
   FOYER (HERO)
   ========================================================= */
.foyer {
    min-height: 100vh;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 12vw, 160px) clamp(24px, 4vw, 80px) clamp(60px, 8vw, 100px);
    position: relative;
    overflow: hidden;
}

.foyer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(130, 106, 74, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(42, 124, 111, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.foyer-illustration {
    position: relative;
    width: clamp(240px, 32vw, 380px);
    height: clamp(180px, 24vw, 285px);
    margin-bottom: clamp(20px, 3vw, 40px);
}

.envelope-shield {
    width: 100%;
    height: 100%;
}

.morph-envelope,
.morph-shield {
    transform-origin: 200px 160px;
    animation: morph-cycle 6s ease-in-out infinite;
}

.morph-envelope {
    animation-name: fade-envelope;
}

.morph-shield {
    animation-name: fade-shield;
    opacity: 0;
}

@keyframes fade-envelope {
    0%, 100% { opacity: 1; }
    40%, 60% { opacity: 0; }
}

@keyframes fade-shield {
    0%, 100% { opacity: 0; }
    40%, 60% { opacity: 1; }
}

.foyer-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.06em;
    color: var(--ink-plum);
    text-align: center;
    line-height: 1;
    margin-bottom: clamp(12px, 1.5vw, 24px);
}

.foyer-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--plum-gray);
    text-align: center;
    max-width: 42ch;
    margin-bottom: clamp(48px, 8vw, 100px);
}

.foyer-invite {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brass);
    text-decoration: none;
    animation: pulse-attention 2.5s ease-in-out infinite;
}

.invite-arrow {
    width: 22px;
    height: 22px;
}

@keyframes pulse-attention {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(6px); }
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
    max-width: 720px;
    margin: 0 auto clamp(40px, 6vw, 80px);
    text-align: center;
}

.section-header.light {
    color: var(--cream);
}

.section-label {
    display: inline-block;
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 16px;
}

.section-label.brass {
    color: var(--brass);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: 0.03em;
    color: var(--ink-plum);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-title.light {
    color: var(--cream);
}

.section-lede {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--plum-gray);
    max-width: 48ch;
    margin: 0 auto;
}

.section-lede.light {
    color: var(--faded-linen);
}

/* =========================================================
   SORTING ROOM  (BENTO GRID)
   ========================================================= */
.sorting-room {
    background: var(--linen);
    padding: clamp(60px, 9vw, 140px) clamp(24px, 4vw, 80px);
    position: relative;
}

.sorting-room::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--brass);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: clamp(16px, 2vw, 32px);
    max-width: 1400px;
    margin: 0 auto;
}

.bento {
    background: var(--cream);
    border: 1px solid var(--faded-linen);
    border-radius: 6px;
    box-shadow: var(--shadow-inset);
    padding: clamp(20px, 2.5vw, 40px);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-inset), 0 10px 30px rgba(26, 20, 35, 0.08);
}

.bento.dark,
.bento.dark-cell {
    background: var(--walnut);
    color: var(--cream);
    border-color: var(--brass);
    box-shadow: var(--shadow-dark-inset);
}

/* Sorting Room cells */
.cell-a { grid-column: 1 / 5; grid-row: 1 / 3; }
.cell-b { grid-column: 5 / 8; grid-row: 1 / 2; }
.cell-c { grid-column: 8 / 13; grid-row: 1 / 3; }
.cell-d { grid-column: 5 / 8; grid-row: 2 / 4; }
.cell-e { grid-column: 1 / 4; grid-row: 3 / 4; }
.cell-f { grid-column: 4 / 5; grid-row: 3 / 4; align-items: center; justify-content: center; text-align: center; }
.cell-g { grid-column: 8 / 10; grid-row: 3 / 4; }
.cell-h { grid-column: 10 / 13; grid-row: 3 / 4; }

/* Cartography cells */
.cart-a { grid-column: 1 / 7; grid-row: 1 / 3; }
.cart-b { grid-column: 7 / 13; grid-row: 1 / 2; align-items: center; justify-content: center; }
.cart-c { grid-column: 7 / 10; grid-row: 2 / 3; }
.cart-d { grid-column: 10 / 13; grid-row: 2 / 3; }
.cart-e { grid-column: 1 / 13; grid-row: 3 / 4; align-items: center; justify-content: center; }

.bento-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid var(--brass);
    border-radius: 50%;
    background: var(--linen);
}

.bento-corner.top-left { top: 8px; left: 8px; }
.bento-corner.top-right { top: 8px; right: 8px; }
.bento-corner.bottom-left { bottom: 8px; left: 8px; }
.bento-corner.bottom-right { bottom: 8px; right: 8px; }

.bento.dark .bento-corner,
.bento.dark-cell .bento-corner {
    background: var(--walnut);
    border-color: var(--brass);
}

.bento-illustration {
    width: 100%;
    max-height: 140px;
    height: auto;
    margin-bottom: 8px;
}

.bento-illustration.small {
    max-height: 80px;
}

.bento-illustration.tiny {
    max-height: 48px;
}

.cell-label {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass);
}

.cell-label.dark {
    color: var(--brass);
}

.cell-mini-label {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wax-red);
}

.cell-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    letter-spacing: 0.02em;
    color: var(--ink-plum);
    line-height: 1.2;
}

.cell-title.dark {
    color: var(--cream);
}

.cell-title.small {
    font-size: 1.05rem;
}

.cell-copy {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--plum-gray);
    line-height: 1.55;
}

.cell-copy.dark {
    color: var(--faded-linen);
}

.cell-copy.small {
    font-size: 0.85rem;
}

/* =========================================================
   READING ROOM (HOW IT WORKS)
   ========================================================= */
.reading-room {
    background: var(--cream);
    padding: clamp(40px, 6vw, 90px) 0;
}

.linen-band {
    background: var(--linen);
    background-image:
        repeating-linear-gradient(90deg,
            transparent 0 3px,
            rgba(130, 106, 74, 0.04) 3px 4px),
        repeating-linear-gradient(0deg,
            transparent 0 3px,
            rgba(130, 106, 74, 0.04) 3px 4px);
    padding: clamp(60px, 8vw, 120px) clamp(24px, 4vw, 80px);
    border-top: 1px solid var(--faded-linen);
    border-bottom: 1px solid var(--faded-linen);
}

.reading-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 6vw, 80px);
}

.reading-header .section-title {
    color: var(--ink-plum);
}

.reading-lede {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--plum-gray);
    margin-top: 12px;
}

.reading-scenes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.reading-scenes::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        var(--brass) 20%,
        var(--brass) 80%,
        transparent);
    opacity: 0.3;
    z-index: 0;
}

.scene {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--linen);
    padding: 20px;
}

.scene-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.draw-path,
.draw-circle {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.5s ease-out;
}

.draw-path.visible,
.draw-circle.visible {
    stroke-dashoffset: 0;
}

.scene figcaption {
    max-width: 28ch;
    margin: 0 auto;
}

.scene-num {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--wax-red);
    display: block;
    margin-bottom: 8px;
}

.scene h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--ink-plum);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.scene p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--plum-gray);
}

/* Cipher Strip */
.cipher-strip {
    margin-top: clamp(40px, 6vw, 80px);
    padding: 16px 24px;
    background: var(--walnut);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--cream);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.cipher-strip span {
    display: inline-block;
    min-width: 0.9em;
    text-align: center;
    transition: color 0.3s;
}

.cipher-strip span.cycling {
    color: var(--wax-red);
    animation: cipher-cycle 0.4s ease-in-out infinite;
}

@keyframes cipher-cycle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* =========================================================
   CARTOGRAPHY CHAMBER
   ========================================================= */
.cartography {
    background: var(--walnut);
    color: var(--cream);
    padding: clamp(60px, 9vw, 140px) clamp(24px, 4vw, 80px);
    position: relative;
}

.cartography .bento-grid.dark-grid {
    grid-template-columns: repeat(12, 1fr);
}

/* Combo Lock */
.combo-lock {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.lock-dial {
    width: clamp(40px, 5vw, 58px);
    height: clamp(52px, 7vw, 76px);
    border: 1.5px solid var(--brass);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.lock-dial::before,
.lock-dial::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--brass);
    opacity: 0.3;
}

.lock-dial::before { top: 30%; }
.lock-dial::after { bottom: 30%; }

.dial-digit {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--cream);
    animation: digit-shuffle 5s infinite steps(1);
}

.lock-dial:nth-child(1) .dial-digit { animation-delay: 0s; }
.lock-dial:nth-child(2) .dial-digit { animation-delay: 1.2s; }
.lock-dial:nth-child(3) .dial-digit { animation-delay: 2.4s; }
.lock-dial:nth-child(4) .dial-digit { animation-delay: 3.6s; }

@keyframes digit-shuffle {
    0%   { transform: translateY(0); }
    10%  { transform: translateY(-100%); }
    20%  { transform: translateY(0); }
    100% { transform: translateY(0); }
}

/* Breathing shield animation */
.breathing-shield {
    transform-origin: center;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Stat row */
.stat-row {
    display: flex;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--teal);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-lbl {
    display: block;
    margin-top: 8px;
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--faded-linen);
}

/* =========================================================
   CORRESPONDENCE DESK
   ========================================================= */
.desk {
    background: var(--linen);
    padding: clamp(60px, 9vw, 140px) clamp(24px, 4vw, 80px) 0;
}

.desk-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 1.3fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    padding-bottom: clamp(60px, 9vw, 120px);
}

.quill-inkwell {
    width: 100%;
    max-width: 320px;
    height: auto;
    animation: quill-float 6s ease-in-out infinite;
}

@keyframes quill-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(-1deg); }
}

.desk-content {
    text-align: left;
}

.desk-content .section-label,
.desk-content .section-title {
    text-align: left;
}

.desk-content .section-title {
    margin-bottom: 18px;
}

.desk-copy {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--plum-gray);
    margin-bottom: 32px;
    max-width: 48ch;
}

.parchment-form {
    background: var(--cream);
    border: 1px solid var(--faded-linen);
    border-radius: 4px;
    padding: clamp(20px, 2.5vw, 32px);
    box-shadow:
        var(--shadow-inset),
        4px 4px 0 0 var(--faded-linen);
    max-width: 520px;
    position: relative;
}

.parchment-form::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px dashed var(--faded-linen);
    border-radius: 2px;
    pointer-events: none;
}

.field-label {
    display: block;
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.field-row {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.parchment-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--brass);
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--ink-plum);
    padding: 10px 4px;
    outline: none;
    transition: border-color 0.3s;
}

.parchment-input::placeholder {
    color: rgba(61, 51, 71, 0.4);
    font-style: italic;
}

.parchment-input:focus {
    border-bottom-color: var(--teal);
}

.wax-seal-btn {
    background: var(--wax-red);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    box-shadow:
        0 0 0 0 rgba(163, 55, 46, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.1);
    animation: seal-pulse 2.2s ease-in-out infinite;
    transition: transform 0.3s;
}

.wax-seal-btn::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(250, 246, 239, 0.5);
    border-radius: 50%;
}

.wax-seal-btn:hover {
    transform: scale(1.05) rotate(-4deg);
}

.wax-seal-btn:active {
    transform: scale(0.95);
}

@keyframes seal-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(163, 55, 46, 0.4),
            inset 0 -3px 6px rgba(0, 0, 0, 0.2),
            inset 0 3px 6px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 0 16px rgba(163, 55, 46, 0),
            inset 0 -3px 6px rgba(0, 0, 0, 0.2),
            inset 0 3px 6px rgba(255, 255, 255, 0.1);
    }
}

.form-footnote {
    margin-top: 16px;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--plum-gray);
    position: relative;
    z-index: 1;
}

.form-footnote.success {
    color: var(--teal);
    font-style: normal;
    font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    border-top: 1px solid var(--faded-linen);
    padding: 36px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.22em;
    color: var(--ink-plum);
}

.footer-motto {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--plum-gray);
}

.footer-date {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--brass);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--teal);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .cell-a { grid-column: 1 / 4; grid-row: auto; }
    .cell-b { grid-column: 4 / 7; grid-row: auto; }
    .cell-c { grid-column: 1 / 7; grid-row: auto; }
    .cell-d { grid-column: 1 / 4; grid-row: auto; }
    .cell-e { grid-column: 4 / 7; grid-row: auto; }
    .cell-f { grid-column: 1 / 3; grid-row: auto; }
    .cell-g { grid-column: 3 / 7; grid-row: auto; }
    .cell-h { grid-column: 1 / 7; grid-row: auto; }

    .cart-a { grid-column: 1 / 7; grid-row: auto; }
    .cart-b { grid-column: 1 / 7; grid-row: auto; }
    .cart-c { grid-column: 1 / 4; grid-row: auto; }
    .cart-d { grid-column: 4 / 7; grid-row: auto; }
    .cart-e { grid-column: 1 / 7; grid-row: auto; }

    .reading-scenes {
        grid-template-columns: 1fr;
    }

    .reading-scenes::before {
        display: none;
    }

    .desk-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .desk-content {
        text-align: center;
    }

    .desk-content .section-label,
    .desk-content .section-title {
        text-align: center;
    }

    .desk-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .parchment-form {
        margin-left: auto;
        margin-right: auto;
    }

    .quill-inkwell {
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 600px) {
    .foyer-title {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .brand-word {
        font-size: 1rem;
    }

    .field-row {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .wax-seal-btn {
        align-self: center;
    }
}
