/* ===========================
   GREENFIELD — EDITORIAL SITE
   =========================== */

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

html { scroll-behavior: smooth; }

body.site {
    font-family: var(--brand-font-sans);
    color: var(--brand-text-primary);
    background: var(--brand-cream);
    overflow-x: hidden;
}

/* Film grain overlay */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===========================
   HEADER
   =========================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
    background: rgba(19, 19, 19, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .logo-wordmark,
.site-header .logo-mark {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.site-nav a:hover { color: var(--brand-gold); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
}

/* ===========================
   STAGES (sections)
   =========================== */

.stage {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.stage-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.stage-inner-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* ===========================
   HERO
   =========================== */

.stage-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--brand-hero-bg);
    color: #fff;
    padding-top: 6rem;
    overflow: hidden;
}

.stage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(90, 107, 46, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(196, 163, 90, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, var(--brand-hero-bg) 0%, #1a1a18 100%);
}

.hero-splash {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(45vw, 420px);
    height: auto;
    opacity: 0.4;
    pointer-events: none;
    filter: saturate(0.9);
    mix-blend-mode: lighten;
}

.stage-hero .stage-inner {
    position: relative;
    z-index: 2;
}

.kicker {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.headline {
    font-family: var(--brand-font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.headline span {
    display: block;
}

.headline-accent {
    color: var(--brand-gold);
    font-style: italic;
}

.lede {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    font-family: var(--brand-font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-glow {
    background: var(--brand-olive);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(90, 107, 46, 0.4);
}

.btn-glow:hover {
    background: var(--brand-gold);
    color: var(--brand-ink);
    box-shadow: 0 8px 32px rgba(196, 163, 90, 0.35);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover {
    border-color: #fff;
    color: #fff;
}

.btn-dark {
    background: var(--brand-ink);
    color: #fff;
}

.btn-dark:hover {
    background: var(--brand-olive);
}

.btn-outline {
    background: transparent;
    color: var(--brand-ink);
    border: 2px solid var(--brand-ink);
}

.btn-outline:hover {
    background: var(--brand-ink);
    color: #fff;
}

/* Legacy btn classes for article pages */
.btn-primary {
    background: var(--brand-olive);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: var(--brand-tracking-wider);
    font-size: var(--brand-text-sm);
    padding: var(--brand-space-4) var(--brand-space-8);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--brand-gold);
    color: var(--brand-ink);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-accent-primary);
    border: var(--brand-border-width) solid var(--brand-accent-primary);
    padding: var(--brand-space-3) var(--brand-space-6);
    text-decoration: none;
}

/* ===========================
   MANIFESTO
   =========================== */

.stage-manifesto {
    background: var(--brand-cream);
}

.pull-quote {
    font-family: var(--brand-font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.35;
    color: var(--brand-ink);
    border: none;
    margin: 0 0 2rem;
    padding: 0;
    position: relative;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    left: -0.15em;
    top: -0.2em;
    font-size: 4rem;
    color: var(--brand-olive);
    opacity: 0.25;
    line-height: 1;
}

.body-copy {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--brand-text-secondary);
    max-width: 580px;
}

.body-copy + .body-copy {
    margin-top: 1.25rem;
}

/* ===========================
   COMPETENCIES — scattered grid
   =========================== */

.stage-competencies {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-olive);
    font-weight: 700;
    margin-bottom: 3rem;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0;
    border: 1px solid rgba(0,0,0,0.08);
}

.comp-cell {
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: var(--brand-text-secondary);
    transition: background 0.2s, color 0.2s;
}

.comp-cell:hover {
    background: var(--brand-ink);
    color: #fff;
}

/* ===========================
   SERVICES — chapters
   =========================== */

.stage-services {
    background: var(--brand-ink);
    color: #fff;
}

.stage-services .section-label {
    color: var(--brand-gold);
}

.chapter-intro {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    margin-bottom: 4rem;
}

.chapters {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chapter {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: start;
}

.chapter-num {
    font-family: var(--brand-font-display);
    font-size: 2.5rem;
    color: var(--brand-gold);
    opacity: 0.6;
    line-height: 1;
}

.chapter-title {
    font-family: var(--brand-font-display);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.chapter-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ===========================
   WHY — Shawshank beat
   =========================== */

.stage-why {
    background: var(--brand-cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-family: var(--brand-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--brand-ink);
}

.why-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brand-text-secondary);
    margin-bottom: 1rem;
}

.why-aside {
    background: var(--brand-ink);
    color: #fff;
    padding: 3rem;
    position: relative;
}

.why-aside::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--brand-gold);
    opacity: 0.3;
    border-radius: 50%;
}

.why-aside p {
    font-family: var(--brand-font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* ===========================
   TECH — terminal wall
   =========================== */

.stage-tech {
    background: #0a0a09;
    color: #a8b89a;
    font-family: var(--brand-font-mono);
    padding: 5rem 2rem;
}

.tech-header {
    font-family: var(--brand-font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 2rem;
}

.tech-block {
    font-size: 0.85rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
}

.tech-block span {
    display: inline-block;
    margin-right: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}

.tech-block span:hover {
    opacity: 1;
    color: var(--brand-gold);
}

.tech-comment {
    color: #4a5a40;
    font-style: italic;
}

/* ===========================
   TESTIMONIALS — letters
   =========================== */

.stage-voices {
    background: #fff;
}

.voices-header {
    text-align: center;
    margin-bottom: 4rem;
}

.voices-header h2 {
    font-family: var(--brand-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--brand-ink);
}

.voices-header p {
    color: var(--brand-text-tertiary);
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.voice-featured {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 3px solid var(--brand-gold);
    border-bottom: 3px solid var(--brand-gold);
}

.voice-featured blockquote {
    font-family: var(--brand-font-display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-style: italic;
    line-height: 1.55;
    color: var(--brand-ink);
    margin-bottom: 1.5rem;
}

.voice-featured cite {
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-olive);
    letter-spacing: 0.05em;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.voice-card {
    padding: 1.75rem;
    background: var(--brand-cream);
    border-left: 3px solid var(--brand-olive);
}

.voice-card blockquote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--brand-text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.voice-card cite {
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    color: var(--brand-olive);
}

.voice-card .role {
    font-weight: 400;
    color: var(--brand-text-tertiary);
}

/* ===========================
   ARTICLES — magazine
   =========================== */

.stage-writing {
    background: var(--brand-ink);
    color: #fff;
}

.stage-writing .section-label {
    color: var(--brand-gold);
    margin-bottom: 2rem;
}

.stage-writing h2 {
    font-family: var(--brand-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 3rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-gold);
    background: rgba(255,255,255,0.07);
}

.article-card-thumb {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-gold);
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.article-card-body {
    padding: 1.5rem;
}

.article-card-category {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
}

.article-card-title {
    font-family: var(--brand-font-display);
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: #fff;
}

.article-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.writing-more {
    text-align: center;
    margin-top: 3rem;
}

/* Articles page light theme overrides */
.articles-page .article-card {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}

.articles-page .article-card:hover {
    border-color: var(--brand-olive);
}

.articles-page .article-card-thumb {
    background: var(--brand-cream);
    color: var(--brand-olive);
    border-bottom-color: rgba(0,0,0,0.06);
}

.articles-page .article-card-title { color: var(--brand-ink); }
.articles-page .article-card-excerpt { color: var(--brand-text-secondary); }
.articles-page .article-card-category { color: var(--brand-olive); }

.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.category-nav button {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--brand-font-sans);
    transition: all 0.2s;
}

.category-nav button:hover,
.category-nav button.active {
    background: var(--brand-ink);
    border-color: var(--brand-ink);
    color: #fff;
}

/* Article single pages */
.article-header {
    padding: 8rem 2rem 0;
    background: var(--brand-cream);
    text-align: center;
}

.article-featured-image {
    max-width: 900px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: clamp(220px, 40vw, 420px);
    object-fit: cover;
    display: block;
}

.article-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.articles-page .article-card-image {
    border-bottom-color: rgba(0,0,0,0.06);
}

.article-meta {
    font-size: 0.8rem;
    color: var(--brand-text-tertiary);
    margin-bottom: 1rem;
}

.article-meta .category {
    color: var(--brand-olive);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.article-header h1 {
    font-family: var(--brand-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--brand-ink);
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.article-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--brand-text-secondary);
    margin-bottom: 1.5rem;
}

.article-body pre {
    background: var(--brand-ink);
    color: #c8d4bc;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    font-family: var(--brand-font-mono);
    font-size: 0.85rem;
    border-left: 4px solid var(--brand-gold);
}

.article-body code {
    font-family: var(--brand-font-mono);
    background: var(--brand-cream);
    padding: 2px 6px;
    font-size: 0.9em;
}

.article-back {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-olive);
    text-decoration: none;
}

.article-back:hover { color: var(--brand-gold); }

.hero-page {
    min-height: 40vh;
    background: var(--brand-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero-page .hero-title {
    font-family: var(--brand-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--brand-ink);
}

.hero-page .hero-subtitle {
    color: var(--brand-text-secondary);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* ===========================
   ESCAPE — final CTA
   =========================== */

.stage-escape {
    background:
        radial-gradient(ellipse at center, rgba(90,107,46,0.15) 0%, transparent 70%),
        var(--brand-cream);
    text-align: center;
    padding: 6rem 2rem;
}

.stage-escape h2 {
    font-family: var(--brand-font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--brand-ink);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stage-escape .sub {
    font-size: 1.1rem;
    color: var(--brand-text-secondary);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.escape-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.escape-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 0.95rem;
}

.escape-contact a {
    color: var(--brand-olive);
    text-decoration: none;
    font-weight: 600;
}

.escape-contact a:hover { color: var(--brand-gold); }

/* ===========================
   CONTACT PAGE
   =========================== */

.stage-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--brand-ink);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    font-family: var(--brand-font-sans);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-olive);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.calendly-block {
    background: var(--brand-ink);
    color: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.calendly-block h3 {
    font-family: var(--brand-font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.calendly-block p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details h3 {
    font-family: var(--brand-font-display);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--brand-ink);
}

.contact-details p {
    color: var(--brand-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--brand-olive);
    font-weight: 600;
    text-decoration: none;
}

.map-embed {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    filter: grayscale(30%) contrast(1.05);
}

/* Contact funnel */
.contact-funnel {
    padding-bottom: 5rem;
}

.calendly-block-prominent {
    text-align: center;
    margin-bottom: 2rem;
}

.calendly-embed-wrap {
    margin-bottom: 4rem;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
}

.contact-form-section {
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-form-section h3 {
    font-family: var(--brand-font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-note {
    color: var(--brand-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form .optional {
    font-weight: 400;
    color: var(--brand-text-tertiary);
    text-transform: none;
    letter-spacing: 0;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status.success { color: var(--brand-olive); }
.form-status.error { color: #9a3b3b; }

.form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
    background: var(--brand-ink);
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.site-footer .brand {
    color: #fff;
    font-family: var(--brand-font-display);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: lighten;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(200px, 320px) 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-brand-lockup {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
}

.about-copy .pull-quote::before {
    left: 0;
}

.contact-wordmark {
    display: block;
    max-width: min(420px, 90vw);
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
}

.contact-hero {
    background: var(--brand-cream);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.footer-nav a:hover { color: var(--brand-gold); }

.footer-copy {
    width: 100%;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
}

/* Legacy footer/article compat */
footer:not(.site-footer) {
    background: var(--brand-ink);
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem;
}

.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-brand { color: #fff; font-weight: 600; }
.footer-tagline { color: rgba(255,255,255,0.5); margin: 0.5rem 0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; }

/* Legacy header for article pages */
header:not(.site-header) {
    background: var(--brand-hero-bg);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

header:not(.site-header) .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header:not(.site-header) .logo-wordmark,
header:not(.site-header) .logo-mark {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

header:not(.site-header) .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

header:not(.site-header) .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.bg-white { background: #fff; }
.bg-parchment { background: var(--brand-cream); }

.section-title {
    font-family: var(--brand-font-display);
    text-align: center;
    color: var(--brand-ink);
}

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--brand-gold);
    margin: 1rem auto 3rem;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
    .stage-why {
        grid-template-columns: 1fr;
    }

    .stage-contact-split {
        grid-template-columns: 1fr;
    }

    .hero-splash {
        opacity: 0.25;
        right: -20%;
    }

    .about-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-brand-lockup {
        max-width: 220px;
    }

    .about-copy .pull-quote::before {
        display: none;
    }

@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-ink);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .site-nav.open { display: flex; }

    .site-header { position: fixed; }
    .nav-toggle { display: block; }

    header:not(.site-header) .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-ink);
        flex-direction: column;
        padding: 1rem 2rem;
    }

    header:not(.site-header) .nav-links.open { display: flex; }

    header:not(.site-header) .nav-container { position: relative; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .actions, .escape-actions {
        flex-direction: column;
        width: 100%;
    }

    .actions .btn, .escape-actions .btn {
        width: 100%;
    }
}

@media print {
    .grain, .site-header, .scroll-hint, .hero-splash { display: none; }
    .stage-hero { min-height: auto; padding: 2rem; }
}
