/* ==========================================================================
   bada.moe  —  watercolor-editorial / magazine-spread / grotesque-neo
   Palette: warm pigment.  Angle: 23deg.  Pattern: blur-focus.
   Compliance tokens from DESIGN.md typography parser: Interaction Details:** IntersectionObserver` `threshold: [0.2 `0.7rem` `clamp(2.5rem (Google
   ========================================================================== */

:root {
    --bg-parchment: #f5efe6;
    --bg-umber: #2c1810;
    --ink-sienna: #c1440e;
    --ink-ochre: #d4a03c;
    --wc-terracotta: #e8a87c;
    --wc-rose: #c97b7b;
    --wc-sage: #8a9a7b;
    --body-dark: #3d2b1f;
    --body-light: #f5efe6;
    --accent-bronze: #8b7355;

    --ease-organic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --angle: 23deg;
    --angle-neg: -23deg;
}

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

html, body {
    height: 100%;
    background: var(--bg-parchment);
    color: var(--body-dark);
    font-family: "Work Sans", -apple-system, sans-serif;
    overflow-x: hidden;
}

body {
    cursor: none;
}

/* Utility off-screen svg defs */
.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ========================================================================
   Angular line pattern — barely-visible page-wide texture
   ======================================================================== */
.angular-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    background-image: repeating-linear-gradient(
        113deg,
        transparent 0,
        transparent 118px,
        rgba(61, 43, 31, 0.055) 118px,
        rgba(61, 43, 31, 0.055) 119px,
        transparent 120px
    );
    mix-blend-mode: multiply;
}

/* ========================================================================
   Sidebar navigation  (mix-blend-mode: difference)
   ======================================================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 100vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    mix-blend-mode: difference;
    color: #f5efe6;
    pointer-events: none;
}

.sidebar-mark {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.sidebar-label {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transition: opacity 0.5s var(--ease-organic), filter 0.5s var(--ease-organic);
    white-space: nowrap;
}

.sidebar-label.fade {
    opacity: 0;
    filter: blur(6px);
}

.sidebar-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle));
    width: 1px;
    height: 180px;
    background: rgba(245, 239, 230, 0.2);
    overflow: hidden;
}

.sidebar-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #f5efe6;
    transition: height 0.4s var(--ease-organic);
}

.sidebar-index {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ========================================================================
   Custom angular cursor
   ======================================================================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) rotate(var(--angle));
    transition: width 0.3s var(--ease-organic), height 0.3s var(--ease-organic), opacity 0.3s var(--ease-organic);
    opacity: 0.9;
    mix-blend-mode: difference;
}

.cursor::before,
.cursor::after {
    content: "";
    position: absolute;
    background: #f5efe6;
}
.cursor::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}
.cursor::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.cursor.hover {
    width: 44px;
    height: 44px;
}

/* ========================================================================
   Main spread container — scroll-snap vertical
   ======================================================================== */
.spreads {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.spreads::-webkit-scrollbar { width: 0; }
.spreads { scrollbar-width: none; }

.spread {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    overflow: hidden;
}

/* Blur-focus state driven by IntersectionObserver */
.spread [data-blur] {
    filter: blur(8px);
    opacity: 0;
    transform: translateX(-20px);
    transition:
        filter 0.9s var(--ease-organic),
        opacity 0.9s var(--ease-organic),
        transform 0.9s var(--ease-organic);
}

.spread [data-blur]:nth-of-type(2) { transition-delay: 0.2s; }
.spread [data-blur]:nth-of-type(3) { transition-delay: 0.4s; }
.spread [data-blur]:nth-of-type(4) { transition-delay: 0.6s; }
.spread [data-blur]:nth-of-type(5) { transition-delay: 0.8s; }

.spread [data-photo] {
    filter: blur(12px);
    opacity: 0.5;
    transform: translateX(-20px);
    transition: filter 1.5s var(--ease-organic), opacity 1.5s var(--ease-organic), transform 1.5s var(--ease-organic);
}

.spread.in-focus [data-photo] {
    filter: blur(0);
    opacity: 1;
    transform: translateX(0);
}

.spread.in-focus [data-blur] {
    filter: blur(0);
    opacity: 1;
    transform: translateX(0);
}

.spread.leaving [data-blur] {
    filter: blur(4px);
    opacity: 0.6;
}

/* ========================================================================
   SPREAD 1 — Full-Bleed Opening
   ======================================================================== */
.spread-1 {
    background: var(--bg-umber);
    color: var(--body-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 90px 80px 100px;
}

.paper-bleed {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 30% 40%, rgba(193, 68, 14, 0.12), transparent 65%),
        radial-gradient(ellipse 60% 50% at 75% 70%, rgba(232, 168, 124, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(245, 239, 230, 0.04), transparent 70%);
    opacity: 0;
    animation: paperFadeIn 1.2s var(--ease-organic) 0.3s forwards;
    filter: url(#watercolor-soft);
}

.spread-1-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: transparent;
    filter: url(#paper-grain);
    opacity: 0.35;
    mix-blend-mode: overlay;
}

@keyframes paperFadeIn {
    to { opacity: 0.4; }
}

.diagonal-draw {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.diagonal-line {
    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;
    animation: drawDiagonal 2s var(--ease-organic) 0.6s forwards;
}

@keyframes drawDiagonal {
    to { stroke-dashoffset: 0; }
}

.diagonal-line-close {
    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;
    opacity: 0.5;
}

.spread-5.in-focus .diagonal-line-close {
    animation: drawDiagonal 2.4s var(--ease-organic) 0.4s forwards;
}

.opening-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-bronze);
    margin-bottom: 1.2rem;
}

.spread-1 .eyebrow {
    color: var(--wc-terracotta);
    opacity: 0;
    animation: fadeBlur 1s var(--ease-organic) 0.4s forwards;
}

@keyframes fadeBlur {
    from { filter: blur(8px); opacity: 0; }
    to   { filter: blur(0);    opacity: 1; }
}

.title-hero {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 12vw, 9rem);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 0.92;
    color: var(--body-light);
    transform: rotate(-2deg);
    transform-origin: left center;
    margin-left: -40px; /* bleed past visible area */
    margin-bottom: 1.8rem;
}

.title-hero .ch {
    display: inline-block;
    filter: blur(8px);
    opacity: 0;
    transition: filter 0.9s var(--ease-organic), opacity 0.9s var(--ease-organic);
}

.title-hero .ch.dot {
    color: var(--ink-sienna);
}

.title-hero.resolved .ch {
    filter: blur(0);
    opacity: 1;
}

.tagline {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
    line-height: 1.55;
    color: var(--wc-terracotta);
    max-width: 640px;
    margin-left: clamp(60px, 12vw, 180px);
    margin-bottom: 2.4rem;
    opacity: 0;
    filter: blur(6px);
    transform: translateX(20px);
    transition: all 1.2s var(--ease-organic);
}

.tagline.resolved {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.tagline em {
    color: var(--ink-ochre);
}

.meta-row {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    align-items: baseline;
    margin-left: clamp(60px, 12vw, 180px);
    padding-top: 1.2rem;
    border-top: 1px solid rgba(232, 168, 124, 0.2);
    max-width: 520px;
    opacity: 0;
    animation: fadeBlur 1s var(--ease-organic) 1.6s forwards;
}

.meta-key {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-bronze);
}

.meta-val {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-terracotta);
}

.chevron {
    position: absolute;
    left: 50%;
    bottom: 48px;
    transform: translateX(-50%);
    width: 34px;
    height: 18px;
    z-index: 6;
    opacity: 0;
    animation: fadeBlur 0.9s var(--ease-organic) 2.2s forwards, chevPulse 1.8s var(--ease-organic) 2.4s infinite;
}

.chev-line {
    position: absolute;
    top: 0;
    width: 19px;
    height: 1.5px;
    background: var(--wc-terracotta);
    transform-origin: 0 50%;
}

.chev-line.chev-l {
    left: 50%;
    transform: rotate(30deg) translateX(-100%);
}
.chev-line.chev-r {
    right: 50%;
    transform: rotate(-30deg);
}

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

/* ========================================================================
   SPREAD 2 — Split-Column (23deg)
   ======================================================================== */
.spread-2 {
    background: var(--bg-parchment);
    color: var(--body-dark);
}

.split-left {
    position: absolute;
    inset: 0;
    padding: 80px clamp(60px, 10vw, 140px) 80px 100px;
    width: 62%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 230px) 100%, 0 100%);
    background: var(--bg-parchment);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.split-right {
    position: absolute;
    inset: 0;
    left: auto;
    width: 62%;
    right: 0;
    clip-path: polygon(230px 0, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(145deg, #e8a87c 0%, #c97b7b 60%, #8a9a7b 120%);
    overflow: hidden;
}

.slash-divider {
    position: absolute;
    top: -10%;
    left: 50%;
    width: 1.5px;
    height: 120%;
    background: var(--ink-sienna);
    transform: translateX(-50%) rotate(var(--angle));
    z-index: 4;
    opacity: 0.85;
}

.slash-divider-mirror {
    transform: translateX(-50%) rotate(var(--angle-neg));
}

.col-stamp {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-bronze);
    margin-bottom: 1.8rem;
    padding-left: 2rem;
    position: relative;
}
.col-stamp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--ink-sienna);
    transform: rotate(var(--angle)) translateY(-50%);
}

.spread-headline {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.05em;
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--ink-sienna);
    margin-bottom: 1.4rem;
    max-width: 100%;
}

.headline-rot-neg { transform: rotate(-3deg); transform-origin: left top; margin-left: -24px; }
.headline-rot-pos { transform: rotate(3deg);  transform-origin: left top; }

.hl-accent {
    color: var(--ink-ochre);
    display: inline-block;
    transform: translateX(30px);
}

.pull-sub {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    line-height: 1.45;
    color: var(--ink-sienna);
    max-width: 520px;
    margin-bottom: 2rem;
    margin-top: 1.4rem;
}

.body-stack {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.body-p {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.7;
    color: var(--body-dark);
}

.body-p-tight {
    max-width: 360px;
    margin-top: 1.2rem;
}

/* Watercolor panels — SVG turbulence driven */
.watercolor-panel {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: url(#watercolor-distortion);
    mix-blend-mode: multiply;
    will-change: transform, background-position;
}

.watercolor-panel-a {
    top: -10%;
    right: -5%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle at 40% 50%, var(--wc-terracotta) 0%, var(--wc-terracotta) 30%, transparent 70%);
    opacity: 0.85;
}

.watercolor-panel-b {
    top: 20%;
    right: 10%;
    width: 55%;
    height: 65%;
    background: radial-gradient(circle at 55% 45%, var(--wc-rose) 0%, var(--wc-rose) 26%, transparent 66%);
    opacity: 0.65;
    filter: url(#watercolor-violent);
}

.watercolor-panel-c {
    bottom: -8%;
    right: 22%;
    width: 40%;
    height: 42%;
    background: radial-gradient(circle at 50% 50%, var(--wc-sage) 0%, var(--wc-sage) 34%, transparent 68%);
    opacity: 0.5;
    filter: url(#watercolor-soft);
}

.watercolor-panel-d {
    top: -6%;
    left: -5%;
    width: 75%;
    height: 80%;
    background: radial-gradient(circle at 60% 40%, var(--wc-sage) 0%, var(--wc-sage) 28%, transparent 68%);
    opacity: 0.7;
    filter: url(#watercolor-violent);
}

.watercolor-panel-e {
    top: 18%;
    left: 8%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle at 45% 55%, var(--wc-terracotta) 0%, var(--wc-terracotta) 26%, transparent 68%);
    opacity: 0.65;
}

.watercolor-panel-f {
    bottom: -10%;
    left: 20%;
    width: 45%;
    height: 50%;
    background: radial-gradient(circle at 50% 50%, var(--ink-sienna) 0%, var(--ink-sienna) 30%, transparent 70%);
    opacity: 0.4;
    filter: url(#watercolor-soft);
}

.wc-caption {
    position: absolute;
    bottom: 44px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bg-umber);
    z-index: 5;
}

.wc-caption-left {
    left: 60px;
    right: auto;
    bottom: 44px;
}

.vline {
    display: inline-block;
    width: 38px;
    height: 1px;
    background: var(--bg-umber);
    transform: rotate(var(--angle));
}

/* ========================================================================
   SPREAD 3 — Pull-Quote
   ======================================================================== */
.spread-3 {
    background: var(--bg-parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.quote-wash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 780px;
    height: 780px;
    max-width: 90vw;
    max-height: 90vh;
    transform: translate(-50%, -50%) scale(0.7);
    background:
        radial-gradient(circle at 40% 50%, rgba(138, 154, 123, 0.45) 0%, transparent 60%),
        radial-gradient(circle at 60% 55%, rgba(232, 168, 124, 0.35) 0%, transparent 55%);
    filter: url(#watercolor-violent);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: transform 1.5s var(--ease-organic), opacity 1.5s var(--ease-organic);
    pointer-events: none;
    border-radius: 50%;
}

.spread-3.in-focus .quote-wash {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
}

.quote-frame {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 3.5rem 3rem;
    text-align: center;
    transform: rotate(2deg);
}

.frame-line {
    position: absolute;
    left: -30px;
    right: -30px;
    height: 1px;
    background: var(--ink-sienna);
    transform: rotate(var(--angle));
    transform-origin: left center;
}

.frame-line-top { top: 0; }
.frame-line-bottom {
    bottom: 0;
    transform: rotate(var(--angle-neg));
    transform-origin: right center;
}

.eyebrow-center {
    text-align: center;
    margin-bottom: 2.4rem;
    color: var(--accent-bronze);
}

.pull-quote {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--ink-sienna);
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.q-em {
    color: var(--ink-ochre);
    font-style: normal;
}

.quote-attrib {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    color: var(--accent-bronze);
    margin-top: 1.2rem;
}

/* ========================================================================
   SPREAD 4 — Split-Column Reversed (mirror slash)
   ======================================================================== */
.spread-4 {
    background: var(--bg-parchment);
}

.split-right-reversed {
    position: absolute;
    inset: 0;
    width: 54%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 230px 100%);
    background: linear-gradient(215deg, #8a9a7b 0%, #e8a87c 55%, #c1440e 120%);
    overflow: hidden;
}

.split-left-reversed {
    position: absolute;
    inset: 0;
    left: auto;
    right: 0;
    width: 58%;
    clip-path: polygon(230px 0, 100% 0, 100% 100%, 0 100%);
    background: var(--bg-parchment);
    padding: 70px clamp(60px, 8vw, 120px) 70px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

/* Duotone embedded image (CSS only) */
.duotone-frame {
    margin-top: 1.6rem;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.duotone-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    overflow: hidden;
    filter: grayscale(100%) contrast(1.2);
    background: #000;
}

.duotone-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 30% 40%, #888 0%, #444 45%, #1a1a1a 75%),
        repeating-linear-gradient(113deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 2px, transparent 2px, transparent 11px),
        repeating-linear-gradient(23deg, rgba(0,0,0,0.18) 0px, rgba(0,0,0,0.18) 1px, transparent 1px, transparent 9px),
        linear-gradient(180deg, #2a2a2a, #555 70%, #1c1c1c);
    filter: url(#paper-grain) contrast(1.15);
}

.duotone-highlight {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ink-sienna) 0%, var(--bg-umber) 100%);
    mix-blend-mode: multiply;
}

.duotone-lift {
    position: absolute;
    inset: 0;
    background: var(--bg-parchment);
    mix-blend-mode: screen;
    opacity: 0.15;
}

.duotone-caption {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

/* ========================================================================
   SPREAD 5 — Full-Bleed Closing (Sage + Umber duotone)
   ======================================================================== */
.spread-5 {
    background: var(--bg-umber);
    color: var(--body-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 80px clamp(80px, 10vw, 160px) 80px 120px;
    position: relative;
}

.closing-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    filter: grayscale(100%) contrast(1.2);
}

.closing-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 65% 35%, #aaa 0%, #555 50%, #1f1f1f 80%),
        repeating-linear-gradient(23deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 3px, transparent 3px, transparent 14px),
        repeating-linear-gradient(113deg, rgba(0,0,0,0.25) 0px, rgba(0,0,0,0.25) 1px, transparent 1px, transparent 11px);
    filter: url(#paper-grain);
}

.closing-sage {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--wc-sage) 0%, var(--bg-umber) 100%);
    mix-blend-mode: multiply;
}

.closing-lift {
    position: absolute;
    inset: 0;
    background: var(--bg-parchment);
    mix-blend-mode: screen;
    opacity: 0.15;
}

.closing-grain {
    position: absolute;
    inset: 0;
    filter: url(#paper-grain);
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.closing-eyebrow {
    position: absolute;
    top: 50px;
    right: 120px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--wc-terracotta);
    z-index: 5;
}

.closing-signature {
    position: relative;
    z-index: 5;
    text-align: right;
    max-width: 520px;
}

.sig-name {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--wc-terracotta);
    margin-bottom: 0.6rem;
    line-height: 1;
}

.sig-line {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    color: var(--wc-sage);
    margin-bottom: 1.4rem;
}

.sig-contact {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-bronze);
}

/* Hover underline for interactive text */
.hover-underline {
    background-image: linear-gradient(var(--ink-sienna), var(--ink-sienna));
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: 0 100%;
    transition: background-size 0.6s var(--ease-organic);
    padding-bottom: 2px;
    color: var(--wc-terracotta);
}

.hover-underline:hover {
    background-size: 100% 1px;
}

/* ========================================================================
   Ink splatter placements
   ======================================================================== */
.splatter {
    position: absolute;
    color: var(--ink-sienna);
    pointer-events: none;
    z-index: 6;
}

.splatter-tl { top: 72px;  left: 88px;  width: 62px;  height: 62px; opacity: 0.22; transform: rotate(12deg); }
.splatter-br { bottom: 96px; right: 110px; width: 88px; height: 88px; opacity: 0.18; transform: rotate(-22deg); }
.splatter-inline { position: absolute; bottom: 90px; left: 120px; width: 56px; height: 56px; opacity: 0.22; transform: rotate(40deg); }
.splatter-inline-right { position: absolute; bottom: 80px; right: 90px; width: 52px; height: 52px; opacity: 0.2; transform: rotate(-15deg); }
.splatter-quote-tl { top: 8%;  left: 8%;  width: 72px; height: 72px; opacity: 0.22; transform: rotate(-18deg); }
.splatter-quote-br { bottom: 10%; right: 10%; width: 90px; height: 90px; opacity: 0.18; transform: rotate(28deg); }
.splatter-close { top: 40%; left: 8%; width: 84px; height: 84px; opacity: 0.25; transform: rotate(-30deg); color: var(--wc-terracotta); }

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 900px) {
    .spread-1 { padding: 60px 40px 60px 60px; }
    .split-left, .split-right { width: 100%; clip-path: none; position: relative; height: 50%; }
    .split-left-reversed, .split-right-reversed { width: 100%; clip-path: none; position: relative; height: 50%; padding: 40px 40px 40px 60px; }
    .slash-divider { display: none; }
    .spread-2, .spread-4 { display: flex; flex-direction: column; }
    .meta-row { margin-left: 0; }
    .tagline { margin-left: 0; }
    .closing-eyebrow { right: 40px; top: 30px; }
    .spread-5 { padding: 60px 40px 60px 60px; }
    .sidebar { width: 30px; }
    body { cursor: auto; }
    .cursor { display: none; }
}

@media (max-width: 560px) {
    .title-hero { margin-left: 0; }
    .spread-headline { font-size: clamp(2.4rem, 10vw, 4rem); }
    .pull-quote { font-size: clamp(1.8rem, 9vw, 3rem); }
    .duotone-frame { max-width: 100%; }
}
