/* ========================================================
   gabs.quest v2 — a luminous, ethereal, asymmetric quest
   Palette (from DESIGN.md):
     Honeyed Amber    #E8C88A
     Parchment Light  #FAF5E8
     Sage Mist        #8CA88C
     Warm Clay        #B87D5A
     Ethereal Lilac   #B8A0D4
     Quest Ink        #2A2218
     Glow Gold        #F0D078
   Fonts: Cardo (display), Hind (body), Noto Serif Display (markers)
   ======================================================== */

:root {
    --honeyed-amber: #E8C88A;
    --parchment-light: #FAF5E8;
    --sage-mist: #8CA88C;
    --warm-clay: #B87D5A;
    --ethereal-lilac: #B8A0D4;
    --quest-ink: #2A2218;
    --glow-gold: #F0D078;

    --font-display: "Cardo", "Noto Serif Display", Georgia, serif;
    --font-body: "Hind", "Inter", system-ui, sans-serif;
    --font-marker: "Noto Serif Display", "Cardo", Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--honeyed-amber);
    color: var(--quest-ink);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.8;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(232, 200, 138, 0.95) 0%, rgba(232, 200, 138, 1) 35%, transparent 70%),
        radial-gradient(ellipse at 85% 60%, rgba(240, 208, 120, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 40% 110%, rgba(184, 160, 212, 0.22) 0%, transparent 60%),
        linear-gradient(180deg, #EFD5A0 0%, #E8C88A 35%, #E0BC7C 75%, #D9B070 100%);
    background-attachment: fixed;
}

em {
    font-style: italic;
    color: var(--warm-clay);
    font-weight: 600;
}

/* ---------- SVG quest path spanning whole page ---------- */
.quest-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.quest-line {
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
    transition: stroke-dashoffset 120ms linear;
    filter: drop-shadow(0 0 2px rgba(42, 34, 24, 0.06));
}

.quest-line-gold {
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
    transition: stroke-dashoffset 120ms linear;
    filter: blur(1px);
}

/* ---------- Ambient watercolor layer ---------- */
.ambient-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-layer .wash {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 1800ms ease-out;
    will-change: transform, opacity;
}

.ambient-layer.ready .wash {
    opacity: 1;
}

.wash-amber {
    width: 540px;
    height: 540px;
    top: -120px;
    left: -180px;
    background: radial-gradient(circle, rgba(240, 208, 120, 0.55) 0%, rgba(232, 200, 138, 0) 70%);
    transition-delay: 0ms;
}

.wash-lilac {
    width: 460px;
    height: 460px;
    top: 30%;
    right: -140px;
    background: radial-gradient(circle, rgba(184, 160, 212, 0.45) 0%, rgba(184, 160, 212, 0) 70%);
    transition-delay: 200ms;
}

.wash-sage {
    width: 380px;
    height: 380px;
    bottom: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(140, 168, 140, 0.42) 0%, rgba(140, 168, 140, 0) 70%);
    transition-delay: 400ms;
}

.wash-gold {
    width: 320px;
    height: 320px;
    top: 55%;
    left: 35%;
    background: radial-gradient(circle, rgba(240, 208, 120, 0.35) 0%, rgba(240, 208, 120, 0) 70%);
    transition-delay: 600ms;
}

.wash-clay {
    width: 420px;
    height: 420px;
    bottom: -120px;
    right: 20%;
    background: radial-gradient(circle, rgba(184, 125, 90, 0.22) 0%, rgba(184, 125, 90, 0) 70%);
    transition-delay: 800ms;
}

/* ---------- Compass sigil (fixed, always glowing) ---------- */
.sigil {
    position: fixed;
    top: 28px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 40;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 800ms ease-out 400ms, transform 800ms ease-out 400ms;
}

.sigil.ready {
    opacity: 1;
    transform: translateY(0);
}

.sigil svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(240, 208, 120, 0.55));
    animation: sigilPulse 5.5s ease-in-out infinite;
}

@keyframes sigilPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(240, 208, 120, 0.35)); transform: rotate(0deg); }
    50%      { filter: drop-shadow(0 0 18px rgba(240, 208, 120, 0.75)); transform: rotate(3deg); }
}

.sigil-label {
    font-family: var(--font-marker);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: var(--quest-ink);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 6vw 160px;
    z-index: 2;
    overflow: hidden;
}

.hero-wash {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1600ms ease-out;
    z-index: 0;
}

.hero.ready .wash-h1 { opacity: 1; transition-delay: 0ms; }
.hero.ready .wash-h2 { opacity: 1; transition-delay: 200ms; }
.hero.ready .wash-h3 { opacity: 1; transition-delay: 400ms; }
.hero.ready .wash-h4 { opacity: 1; transition-delay: 600ms; }

.wash-h1 {
    width: 680px;
    height: 680px;
    top: -180px;
    left: -200px;
    background: radial-gradient(circle, rgba(240, 208, 120, 0.5) 0%, rgba(240, 208, 120, 0) 70%);
}

.wash-h2 {
    width: 520px;
    height: 520px;
    top: 40%;
    right: -140px;
    background: radial-gradient(circle, rgba(184, 160, 212, 0.42) 0%, rgba(184, 160, 212, 0) 70%);
}

.wash-h3 {
    width: 420px;
    height: 420px;
    bottom: -120px;
    left: 20%;
    background: radial-gradient(circle, rgba(140, 168, 140, 0.32) 0%, rgba(140, 168, 140, 0) 70%);
}

.wash-h4 {
    width: 360px;
    height: 360px;
    top: 20%;
    left: 50%;
    background: radial-gradient(circle, rgba(250, 245, 232, 0.4) 0%, rgba(250, 245, 232, 0) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    text-align: center;
}

.hero-kicker {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.2vw, 15px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-clay);
    margin: 0 0 28px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 700ms ease-out 200ms, transform 700ms ease-out 200ms;
}

.hero.ready .hero-kicker { opacity: 1; transform: translateY(0); }

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(72px, 12vw, 168px);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--quest-ink);
    display: inline-flex;
    gap: 0.02em;
    text-shadow: 0 0 60px rgba(240, 208, 120, 0.45);
}

.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: heroLetterIn 900ms cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

.hero.ready .hero-letter { animation-delay: calc(700ms + var(--i, 0) * 90ms); }
.hero-letter[data-i="0"] { --i: 0; }
.hero-letter[data-i="1"] { --i: 1; }
.hero-letter[data-i="2"] { --i: 2; }
.hero-letter[data-i="3"] { --i: 3; }

@keyframes heroLetterIn {
    0%   { opacity: 0; transform: translateY(22px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero.ready .hero-title {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.hero-subtitle {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    margin-top: 14px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(22px, 3.2vw, 44px);
    color: var(--warm-clay);
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity 600ms ease-out 1200ms;
}

.hero.ready .hero-subtitle { opacity: 1; }

.quest-dot { color: var(--quest-ink); opacity: 0.7; }

.quest-text {
    position: relative;
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 900ms cubic-bezier(0.6, 0.05, 0.3, 1) 1400ms;
}

.hero.ready .quest-text { clip-path: inset(0 0 0 0); }

.subtitle-underline {
    position: absolute;
    left: 12px;
    right: -6px;
    bottom: -10px;
    width: calc(100% - 6px);
    height: 14px;
}

.subtitle-underline path {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    transition: stroke-dashoffset 900ms ease-out 2100ms;
}

.hero.ready .subtitle-underline path { stroke-dashoffset: 0; }

.hero-lead {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.4vw, 19px);
    color: rgba(42, 34, 24, 0.85);
    max-width: 600px;
    margin: 40px auto 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 800ms ease-out 2000ms, transform 800ms ease-out 2000ms;
}

.hero.ready .hero-lead { opacity: 1; transform: translateY(0); }

.hero-scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 72px;
    opacity: 0;
    transition: opacity 800ms ease-out 2600ms;
}

.hero.ready .hero-scroll-hint { opacity: 0.8; }

.hint-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(42, 34, 24, 0.6) 0%, rgba(42, 34, 24, 0) 100%);
    animation: hintDrop 2.8s ease-in-out infinite;
}

@keyframes hintDrop {
    0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
    50%      { transform: scaleY(1); opacity: 0.9; }
}

.hint-text {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(42, 34, 24, 0.65);
}

/* ---------- Quest markers ---------- */
.quest-marker {
    position: absolute;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transform: scale(0);
    transition: transform 700ms cubic-bezier(0.2, 1.3, 0.4, 1);
}

.quest-marker.visible { transform: scale(1); }

.marker-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glow-gold);
    border: 2px solid var(--quest-ink);
    box-shadow: 0 0 24px rgba(240, 208, 120, 0.55);
    animation: markerGlow 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes markerGlow {
    0%, 100% { box-shadow: 0 0 18px rgba(240, 208, 120, 0.35); }
    50%      { box-shadow: 0 0 32px rgba(240, 208, 120, 0.75); }
}

.marker-ring {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(42, 34, 24, 0.35);
    animation: markerRing 5s ease-in-out infinite;
}

@keyframes markerRing {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50%      { transform: scale(1.3); opacity: 0.15; }
}

.marker-label {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-marker);
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--warm-clay);
    white-space: nowrap;
    opacity: 0.85;
}

.first-marker {
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%) scale(0);
}

.first-marker.visible {
    transform: translateX(-50%) scale(1);
}

/* ---------- WAYPOINTS ---------- */
.waypoint {
    position: relative;
    padding: 140px 6vw 140px;
    z-index: 2;
}

.waypoint-inner {
    position: relative;
    max-width: 640px;
    opacity: 0;
    transform: translateY(28px) translateX(0);
    transition: opacity 900ms ease-out, transform 900ms cubic-bezier(0.2, 0.8, 0.25, 1);
}

.waypoint.visible .waypoint-inner {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Asymmetric positions */
.pos-left .waypoint-inner {
    margin-left: 12%;
    margin-right: auto;
}
.pos-left.visible .waypoint-inner { transform: translateY(0) translateX(0); }
.pos-left .waypoint-inner { transform: translateY(28px) translateX(-20px); }

.pos-right .waypoint-inner {
    margin-left: auto;
    margin-right: 10%;
    max-width: 560px;
}
.pos-right .waypoint-inner { transform: translateY(28px) translateX(24px); }

.pos-center-small .waypoint-inner {
    margin: 0 auto;
    max-width: 520px;
    text-align: center;
}

.pos-left-wide .waypoint-inner {
    margin-left: 8%;
    max-width: 720px;
}
.pos-left-wide .waypoint-inner { transform: translateY(28px) translateX(-16px); }

.pos-right-narrow .waypoint-inner {
    margin-left: auto;
    margin-right: 14%;
    max-width: 480px;
    text-align: right;
}
.pos-right-narrow .waypoint-inner { transform: translateY(28px) translateX(20px); }

/* Markers positioned relative to each section */
.waypoint .quest-marker {
    top: 140px;
}
.pos-left .quest-marker { left: 6%; }
.pos-right .quest-marker { right: 4%; }
.pos-center-small .quest-marker { left: 50%; margin-left: -17px; }
.pos-left-wide .quest-marker { left: 3%; }
.pos-right-narrow .quest-marker { right: 8%; }

/* Transition watercolor washes between sections */
.transition-wash {
    position: absolute;
    width: 70%;
    height: 90%;
    top: 10%;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.16;
    pointer-events: none;
    z-index: -1;
    transition: transform 200ms linear;
}

.t-wash-1 {
    left: -10%;
    background: radial-gradient(circle, var(--ethereal-lilac) 0%, transparent 70%);
}
.t-wash-2 {
    right: -10%;
    background: radial-gradient(circle, var(--sage-mist) 0%, transparent 70%);
}
.t-wash-3 {
    left: 15%;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    opacity: 0.22;
}
.t-wash-4 {
    left: -5%;
    background: radial-gradient(circle, var(--warm-clay) 0%, transparent 70%);
    opacity: 0.12;
}
.t-wash-5 {
    right: -5%;
    background: radial-gradient(circle, var(--ethereal-lilac) 0%, transparent 70%);
    opacity: 0.16;
}

/* ---------- Waypoint typography ---------- */
.waypoint-eyebrow {
    font-family: var(--font-marker);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: var(--warm-clay);
    margin: 0 0 16px;
}

.waypoint-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 4.5vw, 58px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--quest-ink);
    margin: 0 0 28px;
}

.noto-initial {
    font-family: var(--font-marker);
    font-weight: 700;
    font-size: 1.2em;
    color: var(--warm-clay);
    display: inline-block;
    line-height: 1;
    padding-right: 0.05em;
    text-shadow: 0 0 20px rgba(240, 208, 120, 0.3);
}

.waypoint-body {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.8;
    color: rgba(42, 34, 24, 0.9);
    margin: 0 0 20px;
}

/* Draw-underline animation for emphasised words */
.draw-underline {
    position: relative;
    display: inline-block;
    color: var(--quest-ink);
    font-style: italic;
}

.draw-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 6px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6' preserveAspectRatio='none'><path d='M0,4 C12,1 24,5 36,3 C48,1 60,5 72,3 C84,1 96,5 100,3' fill='none' stroke='%23B87D5A' stroke-width='1.4' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.25, 1);
}

.draw-underline.drawn::after {
    transform: scaleX(1);
}

/* ---------- Marble quotation frame ---------- */
.marble-quote {
    position: relative;
    margin: 40px 0 0;
    padding: 28px 32px 22px;
    background:
        linear-gradient(135deg, #FAF5E8 0%, #F2EADC 30%, #FAF5E8 60%, #EFE4CE 100%);
    border: 1px solid rgba(42, 34, 24, 0.2);
    max-width: 440px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 20px 40px -20px rgba(42, 34, 24, 0.25),
        0 0 40px rgba(240, 208, 120, 0.15);
    transform: scale(0.97);
    opacity: 0;
    transition: opacity 700ms ease-out, transform 700ms cubic-bezier(0.2, 0.8, 0.25, 1);
    overflow: hidden;
}

.marble-wide {
    max-width: 620px;
    margin: 50px auto 0;
}

.waypoint.visible .marble-quote {
    opacity: 1;
    transform: scale(1);
    transition-delay: 400ms;
}

.marble-veins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background:
        linear-gradient(118deg, transparent 38%, rgba(184, 160, 212, 0.18) 40%, transparent 42%),
        linear-gradient(72deg, transparent 55%, rgba(140, 168, 140, 0.18) 57%, transparent 59%),
        linear-gradient(100deg, transparent 70%, rgba(184, 125, 90, 0.18) 72%, transparent 74%),
        linear-gradient(150deg, transparent 20%, rgba(42, 34, 24, 0.1) 21%, transparent 23%);
}

.marble-quote blockquote {
    position: relative;
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: var(--quest-ink);
}

.marble-quote figcaption {
    position: relative;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--warm-clay);
    text-align: right;
}

/* ---------- Three shapes list ---------- */
.three-shapes {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.shape-item {
    position: relative;
    padding: 22px 26px 20px 64px;
    background: rgba(250, 245, 232, 0.55);
    border: 1px solid rgba(42, 34, 24, 0.12);
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(240, 208, 120, 0.15);
    transition: transform 500ms ease, box-shadow 500ms ease, border-color 500ms ease;
}

.shape-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(240, 208, 120, 0.3);
    border-color: rgba(184, 125, 90, 0.3);
}

.shape-glyph {
    position: absolute;
    left: 22px;
    top: 20px;
    font-family: var(--font-marker);
    font-size: 26px;
    color: var(--warm-clay);
    line-height: 1;
}

.shape-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 22px);
    margin: 0 0 6px;
    color: var(--quest-ink);
}

.shape-body {
    margin: 0;
    font-size: 15px;
    color: rgba(42, 34, 24, 0.85);
}

/* ---------- Ledger ---------- */
.ledger {
    margin-top: 36px;
    padding: 28px 30px;
    background: rgba(250, 245, 232, 0.6);
    border: 1px solid rgba(42, 34, 24, 0.15);
    border-radius: 2px;
    box-shadow: 0 0 50px rgba(240, 208, 120, 0.18);
    max-width: 640px;
}

.ledger-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--quest-ink);
    border-bottom: 1px dotted rgba(42, 34, 24, 0.15);
}

.ledger-row:last-child { border-bottom: none; }

.ledger-label {
    flex: 0 0 auto;
    font-style: italic;
    color: rgba(42, 34, 24, 0.9);
}

.ledger-dots {
    flex: 1 1 auto;
    border-bottom: 1px dotted rgba(42, 34, 24, 0.35);
    transform: translateY(-5px);
    min-width: 30px;
}

.ledger-value {
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--warm-clay);
}

.ledger-row-total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(42, 34, 24, 0.25);
    font-size: 17px;
}

.ledger-value-final {
    color: var(--quest-ink);
    font-family: var(--font-display);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(240, 208, 120, 0.4);
}

/* ---------- Closing ---------- */
.closing {
    padding-bottom: 200px;
}

.closing-title {
    text-align: right;
}

.closing-marker {
    top: 140px;
}

.closing-signoff {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 56px;
    font-family: var(--font-marker);
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: lowercase;
    color: var(--warm-clay);
}

.signoff-line {
    width: 60px;
    height: 1px;
    background: rgba(184, 125, 90, 0.5);
}

/* ---------- Footer ---------- */
.quest-footer {
    position: relative;
    padding: 60px 6vw 80px;
    text-align: center;
    z-index: 2;
    border-top: 1px dotted rgba(42, 34, 24, 0.2);
    background: linear-gradient(180deg, rgba(232, 200, 138, 0) 0%, rgba(250, 245, 232, 0.5) 100%);
}

.footer-line {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--quest-ink);
    margin: 0 0 8px;
}

.footer-sub {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.12em;
    color: rgba(42, 34, 24, 0.6);
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
    .sigil { top: 18px; left: 20px; }
    .sigil svg { width: 32px; height: 32px; }
    .sigil-label { font-size: 12px; }

    .hero { padding: 140px 24px 120px; }
    .hero-title { font-size: clamp(60px, 18vw, 120px); }
    .hero-lead { font-size: 15px; }

    .waypoint { padding: 110px 24px; }
    .pos-left .waypoint-inner,
    .pos-right .waypoint-inner,
    .pos-left-wide .waypoint-inner,
    .pos-right-narrow .waypoint-inner,
    .pos-center-small .waypoint-inner {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        text-align: left;
    }

    .pos-right-narrow .waypoint-inner,
    .closing-title { text-align: left; }

    .closing-signoff { justify-content: flex-start; }
    .signoff-line { width: 40px; }

    .waypoint .quest-marker { left: 0 !important; right: auto !important; top: 80px; margin-left: 0 !important; }

    .marble-quote { padding: 22px 22px 18px; }
    .ledger { padding: 22px 18px; }
    .ledger-row { flex-wrap: wrap; }
    .ledger-dots { display: none; }
    .ledger-value { width: 100%; text-align: left; }
}
