/* =========================================================
   AKI/SUPPLY — v6
   Photo-led zine layout. No typographic hero. Featured project up
   front. Vertical alternating chapters. Typographic service index.
   Keep: Fraunces italic accent, Inter sans, cream/black/orange.
   ========================================================= */

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bone);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em, i {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.005em;
    font-optical-sizing: auto;
}

:root {
    /* Dark, after-hours palette */
    --bone:  #0E0C0D;      /* primary background (was cream — now warm-black) */
    --cream: #15131A;      /* secondary surface */
    --paper: #1A171C;      /* tertiary surface (slightly lighter) */
    --panel: #221F26;      /* card surface lift */

    --ink:   #ECE7DA;      /* primary text (warm bone, used as foreground) */
    --ink-2: #B8B2A4;      /* secondary text */
    --ink-3: #8A8478;      /* tertiary text */
    --muted: #5F5A52;

    --line:   rgba(236,231,218,0.10);
    --line-2: rgba(236,231,218,0.18);

    --accent: #FF3D17;     /* signal orange — kept punchy */
    --accent-soft: rgba(255,61,23,0.15);
    --shadow: #08060A;     /* deepest surface — masthead, footer, dark bands */
}

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

/* ===== Shared serif lead-in ===== */
.serif-lead {
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 26px);
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.serif-lead i { color: var(--ink); font-weight: 300; margin-right: 2px; }

/* =========================================================
   STATUS BAR
   ========================================================= */
.statusbar {
    background: var(--shadow);
    color: var(--ink);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 0;
}
.statusbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.statusbar i { color: var(--ink); font-size: 13px; text-transform: none; letter-spacing: 0; margin: 0 2px; }
.sb-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 6px;
    box-shadow: 0 0 0 3px rgba(255,61,23,0.25);
    animation: pulse 1.8s ease-in-out infinite;
    vertical-align: middle;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.sb-mid { opacity: 0.6; }
.sb-time { color: var(--accent); }
@media (max-width: 800px) { .sb-mid { display: none; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 68px;
    gap: 24px;
}
.brand { display: flex; line-height: 1; }
.brand-lock {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.04em;
    color: var(--ink);
}
.brand-slash { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--accent); }
.nav-book {
    justify-self: end;
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: color .15s ease, border-color .15s ease;
}
.nav-book i { color: var(--accent); }
.nav-book:hover { color: var(--accent); border-color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }
@media (max-width: 900px) {
    .nav-inner { grid-template-columns: 1fr auto; }
    .nav-links, .nav-book { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--bone);
        flex-direction: column;
        padding: 12px 32px 24px;
        border-bottom: 1px solid var(--line);
        gap: 0;
    }
    .nav-links.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
}

/* =========================================================
   HERO — full-bleed photographic
   ========================================================= */
.hero-img {
    position: relative;
    height: calc(100vh - 68px - 33px);
    min-height: 600px;
    background: var(--ink);
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: contrast(1.1) saturate(1) brightness(0.95);
    transform: scale(1.02);
}
.hero-grade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,6,10,0.55) 0%, rgba(8,6,10,0.15) 30%, rgba(8,6,10,0.2) 55%, rgba(8,6,10,0.88) 100%),
        linear-gradient(90deg, rgba(8,6,10,0.45) 0%, transparent 45%);
    pointer-events: none;
}

.hero-corner-tl {
    position: absolute;
    top: 36px; left: 32px;
    z-index: 2;
    color: #ECE7DA;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 50%;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hc-mark {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.04em;
    color: #ECE7DA;
}
.hc-mark sup { font-size: 9px; vertical-align: super; opacity: 0.7; margin-left: 2px; }
.hc-sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: rgba(236,231,218,0.85);
    line-height: 1.2;
}
.hc-sub i { color: #ECE7DA; }

.hero-corner-tr {
    position: absolute;
    top: 36px; right: 32px;
    z-index: 2;
    color: #ECE7DA;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero-corner-tr i { font-size: 14px; text-transform: none; letter-spacing: 0; color: rgba(236,231,218,0.8); }
.hc-em { color: var(--accent); font-weight: 700; }

.hero-bottom {
    position: absolute;
    left: 0; right: 0;
    bottom: 60px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}
.hero-line {
    max-width: 720px;
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 36px);
    line-height: 1.18;
    color: #ECE7DA;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero-line em {
    color: var(--accent);
    font-weight: 300;
    font-style: italic;
}
.hero-cta {
    display: inline-flex;
    align-items: stretch;
    background: var(--ink);
    color: var(--bone);
    border-radius: 0;
    transition: transform .2s ease;
    flex-shrink: 0;
    align-self: flex-end;
}
.hero-cta span:first-child {
    padding: 16px 22px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
}
.hero-cta .arrow {
    background: var(--bone);
    color: var(--ink);
    padding: 0 18px;
    display: flex;
    align-items: center;
    font-size: 18px;
    transition: background-color .2s ease;
}
.hero-cta:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--accent); }
.hero-cta:hover .arrow { background: var(--accent); color: var(--ink); }

.scroll-cue {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(239,235,226,0.5);
    text-transform: uppercase;
    animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
    50%      { opacity: 1;   transform: translate(-50%, 4px); }
}

@media (max-width: 720px) {
    .hero-img { min-height: 540px; }
    .hero-corner-tl { top: 24px; left: 24px; max-width: 100%; }
    .hero-corner-tr { display: none; }
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        bottom: 40px;
        padding: 0 24px;
    }
    .hero-line { font-size: 22px; }
}

/* =========================================================
   NOW SHOWING — ticker strip
   ========================================================= */
.showing {
    background: var(--shadow);
    color: var(--ink);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(236,231,218,0.06);
    border-bottom: 1px solid rgba(236,231,218,0.06);
}
.showing-track {
    display: flex;
    gap: 28px;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    animation: showingScroll 50s linear infinite;
    white-space: nowrap;
}
.showing-track i {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin-right: 4px;
}
@keyframes showingScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   FEATURED PROJECT — 60/40 spread
   ========================================================= */
.featured {
    background: var(--bone);
    padding: 0;
    border-bottom: 1px solid var(--line);
}
.featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 78vh;
}
.featured-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--shadow);
    overflow: hidden;
    isolation: isolate;
    filter: contrast(1.08) saturate(1) brightness(0.95);
    transition: filter .6s cubic-bezier(.2,.7,.2,1);
}
.featured-image:hover { filter: contrast(1.05) saturate(1.05) brightness(1.02); }
.featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(8,6,10,0.6) 100%);
    pointer-events: none;
}
.featured-caption {
    position: absolute;
    bottom: 24px; left: 24px;
    z-index: 2;
    margin: 0;
    color: var(--bone);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.featured-body {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: var(--bone);
}
.featured-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.featured-tag i { color: var(--ink); font-size: 14px; text-transform: none; letter-spacing: 0; margin-right: 4px; }
.featured-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin: 0;
}
.featured-title em { color: var(--accent); font-style: italic; font-weight: 300; }
.featured-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.fm-brand {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--ink);
}
.fm-detail {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.5;
}
.featured-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.featured-stats li { display: flex; flex-direction: column; gap: 2px; }
.featured-stats strong {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 32px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}
.featured-stats strong i { color: var(--accent); font-size: 0.6em; margin-left: 1px; }
.featured-stats span {
    font-size: 10.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
@media (max-width: 980px) {
    .featured-grid { grid-template-columns: 1fr; }
    .featured-image { min-height: 60vh; }
    .featured-body { padding: 60px 32px; }
    .featured-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   MORE WORK — 4-up grid
   ========================================================= */
.more-work {
    background: var(--bone);
    padding: 90px 0 100px;
    border-bottom: 1px solid var(--line);
}
.mw-head { margin-bottom: 36px; display: flex; align-items: baseline; gap: 24px; }
.mw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 32px;
}
.mw-tile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}
.mw-img {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    background-color: var(--shadow);
    filter: contrast(1.08) saturate(1) brightness(0.92);
    transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
    overflow: hidden;
    position: relative;
}
.mw-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(8,6,10,0.45) 100%);
    pointer-events: none;
}
.mw-tile:hover .mw-img { transform: scale(1.03); filter: contrast(1.05) saturate(1.05) brightness(1.02); }
.mw-meta { display: flex; flex-direction: column; gap: 6px; }
.mw-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--accent);
}
.mw-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.mw-desc {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.4;
}
@media (max-width: 980px) { .mw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mw-grid { grid-template-columns: 1fr; padding: 0 24px; } }

/* =========================================================
   MANIFESTO — narrow column
   ========================================================= */
.manifesto-col {
    background: var(--paper);
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
}
.mc-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}
.mc-body {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(20px, 1.9vw, 26px);
    line-height: 1.55;
    color: var(--ink);
    letter-spacing: -0.015em;
}
.mc-body em {
    color: var(--accent);
    font-weight: 300;
    font-style: italic;
}
.mc-sign {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.mc-sign i { color: var(--ink); font-size: 13px; text-transform: none; letter-spacing: 0; }

/* =========================================================
   NUMBERS — inline meta strip
   ========================================================= */
.numbers-strip {
    background: var(--shadow);
    color: var(--ink);
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.ns-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: baseline;
}
.ns-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.ns-item strong {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(40px, 4vw, 60px);
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.03em;
}
.ns-item strong i { color: var(--accent); font-size: 0.55em; margin-left: 1px; }
.ns-item span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
}
@media (max-width: 720px) {
    .ns-inner { gap: 20px; }
    .ns-item { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* =========================================================
   CHAPTERS — vertical alternating spreads
   ========================================================= */
.chapters {
    background: var(--bone);
    padding: 110px 0 120px;
    border-bottom: 1px solid var(--line);
}
.ch-head {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.ch-sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    color: var(--ink-3);
    line-height: 1.55;
    max-width: 540px;
}
.ch-sub em { color: var(--ink); font-style: italic; font-weight: 400; }

.chapter {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 90px;
    padding: 0 32px;
}
.chapter:last-child { margin-bottom: 0; }
.chapter-rev { grid-template-columns: 1fr 1.1fr; }
.chapter-rev .ch-image { order: 2; }
.chapter-rev .ch-text { order: 1; }

.ch-image {
    aspect-ratio: 5 / 4;
    background-size: cover;
    background-position: center;
    background-color: var(--shadow);
    filter: contrast(1.08) saturate(1) brightness(0.92);
    transition: filter .5s ease;
    position: relative;
}
.ch-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(8,6,10,0.4) 100%);
    pointer-events: none;
}
.chapter:hover .ch-image { filter: contrast(1.05) saturate(1.05) brightness(1.02); }
.ch-text { display: flex; flex-direction: column; gap: 18px; max-width: 460px; }
.ch-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--accent);
}
.ch-num i { color: var(--ink); margin-right: 4px; }
.ch-text h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
}
.ch-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-2);
}
.ch-text p em { color: var(--accent); font-weight: 300; font-style: italic; }

.ch-image-end {
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
}
.ch-end-stamp {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(64px, 8vw, 120px);
    color: var(--ink);
    letter-spacing: -0.03em;
}
.ch-cta {
    margin-top: 12px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--ink);
    color: var(--bone);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    transition: transform .15s ease;
}
.ch-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--accent); }

@media (max-width: 880px) {
    .chapter, .chapter-rev { grid-template-columns: 1fr; gap: 28px; }
    .chapter-rev .ch-image { order: 0; }
    .chapter-rev .ch-text { order: 0; }
    .ch-image { aspect-ratio: 4 / 3; }
}

/* =========================================================
   SERVICES — typographic index list
   ========================================================= */
.services-list {
    background: var(--paper);
    padding: 100px 0 110px;
    border-bottom: 1px solid var(--line);
}
.sl-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}
.sl-foot {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    color: var(--ink-3);
}
.sl-foot i { color: var(--ink); }
.sl-list { border-top: 1px solid var(--ink); }
.sl-list li {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: background-color .15s ease;
}
.sl-list li:hover { background: rgba(255,61,23,0.04); }
.sl-list li:hover .sl-name { color: var(--accent); }
.sl-n {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.1em;
    flex: 0 0 36px;
}
.sl-name {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.2vw, 44px);
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1;
    transition: color .15s ease;
}
.sl-rule {
    flex: 1;
    height: 1px;
    background: var(--line);
    transform: translateY(-6px);
    min-width: 30px;
}
.sl-tag {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    color: var(--ink-3);
    text-align: right;
}
@media (max-width: 720px) {
    .sl-list li { flex-wrap: wrap; gap: 12px; }
    .sl-rule { display: none; }
    .sl-tag { width: 100%; text-align: left; padding-left: 60px; }
}

/* =========================================================
   WALL TEXT QUOTE
   ========================================================= */
.wall-text {
    background: var(--bone);
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
}
.wt-inner {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}
.wt-mark { display: inline-block; margin-bottom: 32px; }
.wt-quote {
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 36px;
}
.wt-quote em { color: var(--accent); font-weight: 300; font-style: italic; }
.wt-attr {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
}
.wt-attr i { color: var(--ink); font-size: 16px; text-transform: none; letter-spacing: 0; margin-right: 4px; }

/* =========================================================
   NOTES — minimal FAQ
   ========================================================= */
.notes {
    background: var(--paper);
    padding: 110px 0;
    border-bottom: 1px solid var(--line);
}
.notes-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.notes-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.notes-side-body { color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 300px; }
.notes-side-body a { color: var(--accent); border-bottom: 1px solid currentColor; }
.notes-list { border-top: 1px solid var(--ink); }
.notes-list li { border-bottom: 1px solid var(--line); }
.n-q {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: -0.02em;
    color: var(--ink);
    transition: color .15s ease;
}
.n-q:hover { color: var(--accent); }
.n-icon {
    width: 28px; height: 28px;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform .25s ease, color .15s ease;
}
.notes-list li.is-open .n-icon { transform: rotate(45deg); color: var(--accent); }
.n-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.n-a p { padding: 0 0 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 640px; }
@media (max-width: 880px) {
    .notes-grid { grid-template-columns: 1fr; gap: 40px; }
    .notes-side { position: static; }
}

/* =========================================================
   BRIEF — final CTA spread
   ========================================================= */
.brief {
    background: var(--accent);
    color: var(--ink);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.brief-inner { max-width: 1000px; margin: 0 auto; }
.brief-mark { display: inline-block; color: var(--ink); margin-bottom: 28px; }
.brief-mark i { color: var(--ink); }
.brief-display {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(48px, 7vw, 116px);
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 32px;
}
.brief-display em { color: var(--ink); font-weight: 300; font-style: italic; border-bottom: 4px solid var(--ink); padding-bottom: 4px; }
.brief-sub {
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.55;
    color: rgba(10,10,10,0.85);
    max-width: 580px;
    margin: 0 auto 48px;
}
.brief-sub i { color: var(--ink); font-weight: 400; }
.brief-actions { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
.brief-cta {
    display: inline-flex;
    align-items: stretch;
    background: var(--ink);
    color: var(--bone);
    transition: transform .2s ease;
}
.brief-cta span:first-child {
    padding: 18px 26px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
}
.brief-cta .arrow {
    background: var(--bone);
    color: var(--ink);
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: 20px;
}
.brief-cta:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--bone); }
.ghost-link {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: opacity .15s ease;
}
.ghost-link:hover { opacity: 0.7; }

/* =========================================================
   MICRO FOOTER
   ========================================================= */
.micro-footer {
    background: var(--shadow);
    color: var(--ink-3);
    padding: 22px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-top: 1px solid var(--line);
}
.micro-footer i { color: var(--ink); font-size: 14px; margin: 0 2px; }
.micro-footer a { color: var(--accent); }
.micro-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.mf-brand {
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 11px;
}
@media (max-width: 720px) { .mf-mid { display: none; } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .8s cubic-bezier(.2,.7,.2,1),
        transform .9s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .sb-dot, .scroll-cue, .showing-track { animation: none !important; }
}
