/* =========================================================
   Paul Gordon — theatrical "stage to camera" theme
   ========================================================= */

/* ---------- Self-hosted fonts (variable, latin subsets) ---------- */
/* Fraunces (display) and Inter (body), weights 400–600, served locally
   to remove the third-party Google Fonts request chain. */
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('/fonts/fraunces-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('/fonts/fraunces-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --ink: #0e0d12;
    --ink-soft: #16151c;
    --panel: #1c1b24;
    --line: rgba(255, 255, 255, 0.10);
    --paper: #f6f3ec;
    --paper-dim: #d8d3c8;
    --text: #e9e6df;
    --text-dim: #a8a399;
    --gold: #e0a64a;
    --gold-bright: #f2c06b;
    --spot: rgba(224, 166, 74, 0.10);
    --maxw: 1240px;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

p { margin: 0 0 1rem; }

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    letter-spacing: 0.02em;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); color: var(--ink); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 13, 18, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.brand { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; }
.brand-logo { height: 54px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--paper);
    font-size: 1.05rem;
}
.brand-tag {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
    white-space: nowrap;
}
.site-nav a:hover { color: var(--paper); }
.site-nav .nav-cta {
    background: var(--gold);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: 2px;
    white-space: nowrap;
}
.site-nav .nav-cta:hover { background: var(--gold-bright); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--paper); margin: 5px 0; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background:
        radial-gradient(ellipse 60% 80% at 70% -10%, var(--spot), transparent 60%),
        var(--ink);
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.35));
    pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; }
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    color: var(--paper);
    margin-bottom: 1.2rem;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-lead { font-size: 1.25rem; color: var(--paper-dim); max-width: 600px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-roles {
    display: flex;
    gap: 28px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.hero-roles span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--text-dim);
}
.hero-roles span::before { content: "✦ "; color: var(--gold); }

/* Hero with portrait */
.hero-grid { position: relative; display: grid; grid-template-columns: 1.22fr 0.78fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 620px; }
.hero-photo img { width: 100%; height: auto; display: block; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 28px 70px rgba(0,0,0,0.5); }
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-photo { max-width: 420px; }
}

/* ---------- Sections ---------- */
.section { padding: 50px 0; }
.section-dim { background: var(--ink-soft); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--paper); }
.section-head p { color: var(--text-dim); font-size: 1.1rem; }

/* ---------- "As Seen" strip ---------- */
.asseen { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 32px 0; background: var(--ink); }
.asseen-inner { display: flex; align-items: center; justify-content: center; gap: 12px 48px; flex-wrap: wrap; }
.asseen-label { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; color: var(--gold); }
.asseen-item { font-family: var(--serif); font-size: 1.05rem; color: var(--paper-dim); white-space: nowrap; }
.asseen-item::before { content: "✦"; color: var(--gold); margin-right: 9px; font-size: 0.85em; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 34px;
}
/* Hover-lift only on clickable cards, so static info boxes don't imply a link. */
a.card { transition: border-color 0.2s, transform 0.2s; }
a.card:hover { border-color: rgba(224,166,74,0.4); transform: translateY(-3px); }
.card .card-num { font-family: var(--serif); color: var(--gold); font-size: 1.6rem; display: block; margin-bottom: 12px; }
.card h3 { color: var(--paper); font-size: 1.4rem; }
.card p { color: var(--text-dim); margin-bottom: 0; }
.card .card-link { display: inline-block; margin-top: 18px; font-weight: 600; font-size: 0.9rem; color: var(--gold); }
a.card { display: block; text-decoration: none; color: var(--text); }
a.card:hover .card-link { color: var(--gold-bright); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .media {
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--panel), var(--ink));
    border: 1px solid var(--line);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); font-family: var(--serif); font-style: italic;
}
.split .split-photo { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: 6px; }
/* Bio split: photo and text align at the top (photo is landscape, text runs longer). */
.split-bio { align-items: start; }
.split-bio .split-photo { position: sticky; top: 96px; }
.split h2 { color: var(--paper); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.split ul { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.split li { padding: 10px 0 10px 28px; position: relative; color: var(--paper-dim); border-bottom: 1px solid var(--line); }
.split li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
/* Split feature image, cropped to a consistent portrait so layouts stay balanced. */
.split .feature-img { aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; }
.split .feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.testi { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: 32px; }
.testi blockquote { margin: 0 0 22px; color: var(--paper); font-family: var(--serif); font-size: 1.3rem; line-height: 1.5; font-style: italic; }
.testi-result { margin: 0 0 22px; color: var(--paper); font-family: var(--serif); font-size: 1.4rem; line-height: 1.45; }
.testi-result strong { color: var(--gold); font-weight: inherit; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: var(--ink-soft); border: 1px solid var(--line); flex: none; }
.testi-avatar.mono { display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.testi-name { color: var(--paper); font-weight: 600; }
.testi-role { color: var(--text-dim); font-size: 0.85rem; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

/* Inline validation pull-quote (e.g. in the method section) */
.method-quote { margin: 1.8rem 0 0; padding-left: 16px; border-left: 2px solid var(--gold); color: var(--paper-dim); font-family: var(--serif); font-style: italic; }
.method-quote cite { display: block; font-style: normal; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--text-dim); margin-top: 8px; }

/* Testimonial card: stars + bold hook + body + person */
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 16px; }
.testi-hook { color: var(--paper); font-family: var(--serif); font-size: 1.2rem; line-height: 1.3; margin: 0 0 12px; }
.testi-body { color: var(--paper-dim); font-size: 1rem; line-height: 1.65; margin: 0 0 22px; }

/* Result (outcome) cards */
.result-card { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: 30px; }
.result-stat { font-family: var(--serif); color: var(--gold); font-size: 1.85rem; line-height: 1.15; }
.result-detail { color: var(--paper-dim); margin: 10px 0 20px; }

/* Video testimonial cards */
.video-testi { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--panel); }
.video-testi video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: #000; }
.video-testi figcaption { padding: 14px 18px; color: var(--paper-dim); font-size: 0.9rem; }
.video-testi figcaption strong { display: block; color: var(--paper); margin-bottom: 2px; }

/* ---------- Email capture ---------- */
.email-capture { background: linear-gradient(135deg, #241d12, var(--ink-soft)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 70px 0; }
.capture-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.capture-copy { max-width: 480px; }
.capture-copy h2 { color: var(--paper); font-size: 2rem; }
.capture-copy p { color: var(--text-dim); margin: 0; }
.capture-form { display: flex; gap: 10px; flex: 1; min-width: 300px; }
.capture-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 1rem;
}
.capture-form input:focus { outline: none; border-color: var(--gold); }

/* Newsletter signup band at the top of the footer */
.footer-signup { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-signup-copy { max-width: 460px; }
.footer-signup-copy h3 { margin: 0 0 4px; color: var(--paper); font-size: 1.25rem; font-family: var(--serif); }
.footer-signup-copy p { margin: 0; color: var(--paper-dim); }

/* ---------- Page header (interior pages) ---------- */
.page-header { padding: 50px 0 30px; background: radial-gradient(ellipse 50% 70% at 80% 0%, var(--spot), transparent 60%), var(--ink); }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--paper); max-width: 760px; }
.page-header .lead { font-size: 1.2rem; color: var(--paper-dim); max-width: 620px; }

/* Small trademark mark, sized relative to its surrounding text. */
.tm { font-size: 0.45em; vertical-align: super; line-height: 0; }

/* ---------- FAQ (JS accordion: single-open, animated) ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { margin: 0; }
.faq-q button {
    width: 100%; cursor: pointer; background: none; border: 0; color: var(--paper);
    font-family: var(--serif); font-size: 1.2rem; text-align: left; padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-q button::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; flex: none; }
.faq-q button[aria-expanded="true"]::after { content: "\2013"; }
.faq-q button:hover { color: var(--gold); }
.faq-a { overflow: hidden; height: 0; transition: height 0.35s ease; }
.faq-a p { color: var(--paper-dim); font-size: 1.08rem; line-height: 1.7; margin: 0; padding: 0 0 22px; max-width: 680px; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }

/* ---------- Prose (blog / rich text) ---------- */
.prose { max-width: 720px; }
.prose p, .prose li { color: var(--paper-dim); font-size: 1.12rem; line-height: 1.75; }
.prose h2 { color: var(--paper); font-size: 1.9rem; margin-top: 2em; }
.prose h3 { color: var(--paper); font-size: 1.4rem; margin-top: 1.6em; }
.prose blockquote {
    border-left: 3px solid var(--gold);
    margin: 1.8em 0; padding: 0.4em 0 0.4em 1.4em;
    font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--paper);
}
.prose img { max-width: 100%; border-radius: 6px; }
.prose a { text-decoration: underline; }

/* ---------- Blog list ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
    overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, border-color 0.2s;
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(224,166,74,0.4); }
.post-card .thumb { aspect-ratio: 16 / 9; background: linear-gradient(160deg, var(--panel), var(--ink)); background-size: cover; background-position: center; }
.article-hero { display: block; width: 100%; max-width: 820px; margin: 0 auto 8px; border-radius: 8px; border: 1px solid var(--line); }
.post-card .post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 12px; }
.post-card h3 { color: var(--paper); font-size: 1.3rem; }
.post-card p { color: var(--text-dim); font-size: 0.98rem; flex: 1; }
.post-card .read-more { margin-top: 14px; font-weight: 600; font-size: 0.9rem; }

/* Featured strip */
.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.feature-card .thumb { aspect-ratio: 21 / 9; }
.feature-card h3 { font-size: 1.55rem; }

/* Blog toolbar + category filter */
.blog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
    font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
    color: var(--text-dim); background: transparent;
    border: 1px solid var(--line); border-radius: 999px;
    padding: 7px 16px; cursor: pointer; transition: all 0.15s;
}
.filter-pill:hover { color: var(--paper); border-color: var(--gold); }
.filter-pill.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }
a.filter-pill { text-decoration: none; }
.pill-count { opacity: 0.6; font-size: 0.78em; margin-left: 3px; }

/* Slim list cards (no thumbnail) */
.post-card.slim .post-body { padding: 22px 24px; }
.post-card.slim h3 { font-size: 1.18rem; margin-bottom: 8px; }
.post-card.slim p {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.muted-note { color: var(--text-dim); text-align: center; padding: 20px 0; }

/* Book buy box */
.buy-box { margin-top: 28px; padding: 24px; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); }
.buy-meta { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.buy-price { font-family: var(--serif); font-size: 1.5rem; color: var(--paper); }
.buy-formats { color: var(--text-dim); font-size: 0.9rem; }
.buy-note { color: var(--text-dim); font-size: 0.85rem; margin: 14px 0 0; }
.buy-note a { text-decoration: underline; }

/* Video — featured embed + grid */
.video-embed { position: relative; width: 100%; max-width: 860px; margin: 0 auto; aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.video-card { display: block; }
.video-thumb { position: relative; aspect-ratio: 16 / 9; background-size: cover; background-position: center; background-color: #000; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.video-thumb .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #fff; background: rgba(0,0,0,0.28); transition: background 0.15s; }
.video-card:hover .video-thumb .play { background: rgba(0,0,0,0.12); }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-title { color: var(--paper); margin-top: 10px; font-size: 1rem; line-height: 1.4; }
.video-card:hover .video-title { color: var(--gold); }

/* ---------- Article ---------- */
.article-header { padding: 80px 0 40px; text-align: center; }
.article-header .post-meta { justify-content: center; }
.article-header h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--paper); max-width: 820px; margin: 0 auto 16px; }
.article-body { padding: 20px 0 80px; }
.article-body .prose { margin: 0 auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.field input, .field textarea, .field select {
    width: 100%; padding: 13px 16px; background: var(--ink-soft); border: 1px solid var(--line);
    border-radius: 3px; color: var(--text); font-family: var(--sans); font-size: 1rem;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.alert-success { background: var(--spot); border: 1px solid var(--gold); color: var(--gold-bright); padding: 16px 20px; border-radius: 4px; margin-bottom: 24px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 80px 0; text-align: center; background: var(--ink-soft); border-top: 1px solid var(--line); }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--paper); max-width: 680px; margin: 0 auto 12px; }
.cta-band p { color: var(--text-dim); max-width: 540px; margin: 0 auto 28px; }
.cta-band .btn { margin: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-soft); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-brand p { color: var(--text-dim); max-width: 320px; margin-top: 14px; font-size: 0.95rem; }
.footer-col h4 { color: var(--paper); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.95rem; padding: 5px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-base { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; color: var(--text-dim); font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-legal a { color: var(--text-dim); margin-left: 18px; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Landing layout ---------- */
.landing-header { padding: 28px 0; border-bottom: 1px solid var(--line); }
.landing-footer { padding: 28px 0; border-top: 1px solid var(--line); }
.landing-footer .container { display: flex; justify-content: space-between; color: var(--text-dim); font-size: 0.85rem; }
.landing-hero { padding: 90px 0; }
.landing-hero .container { max-width: 760px; text-align: center; }
.landing-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--paper); }
.landing-form { max-width: 460px; margin: 32px auto 0; display: flex; gap: 10px; }
.landing-form input { flex: 1; padding: 15px 18px; background: var(--ink-soft); border: 1px solid var(--line); border-radius: 3px; color: var(--text); font-size: 1rem; }

/* ---------- Pillar pages (Mean It Library) ---------- */
.pillar-section { padding: 60px 0 80px; }
.pillar-back { max-width: 760px; margin: 0 auto 28px; }
.pillar-back a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }

.pillar { max-width: 760px; margin: 0 auto; }
.pillar h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--paper); margin-bottom: 0.5em; }
.pillar h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--paper); margin: 2em 0 0.6em; }
.pillar h3 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--gold); margin: 2em 0 0.8em; }
.pillar p { color: var(--paper-dim); font-size: 1.1rem; line-height: 1.75; }
.pillar ul { padding-left: 1.3em; margin: 0 0 1.4rem; }
.pillar li { color: var(--paper-dim); margin-bottom: 0.5rem; line-height: 1.65; }

.pillar .meta-strip { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 2rem; }

.pillar .lede {
    font-family: var(--serif); font-style: italic; font-size: 1.4rem; line-height: 1.5;
    color: var(--paper); border-left: 3px solid var(--gold); padding-left: 1.2em; margin: 1.5rem 0 2.5rem;
}

.pillar .credentials-bridge {
    background: var(--spot); border-left: 3px solid var(--gold);
    padding: 18px 22px; margin: 0 0 2.5rem; font-size: 1rem; line-height: 1.6; color: var(--paper-dim);
}

.pillar .citable-list { list-style: none; padding-left: 0; }
.pillar .citable-list li {
    padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: var(--paper-dim);
}
.pillar .citable-list li:last-child { border-bottom: none; }

.pillar .faq-item {
    background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--gold);
    border-radius: 4px; padding: 22px 24px; margin-bottom: 18px;
}
.pillar .faq-q { font-family: var(--serif); font-size: 1.2rem; color: var(--paper); margin-bottom: 8px; }
.pillar .faq-a { color: var(--paper-dim); font-size: 1rem; line-height: 1.65; }

.pillar .cta {
    background: linear-gradient(135deg, #241d12, var(--ink-soft));
    border: 1px solid var(--line); border-radius: 6px;
    padding: 40px 32px; margin-top: 56px; text-align: center;
}
.pillar .cta h3 { font-family: var(--serif); text-transform: none; letter-spacing: -0.01em; color: var(--paper); font-size: 1.7rem; margin: 0 0 12px; }
.pillar .cta p { color: var(--text-dim); margin-bottom: 24px; }
.pillar .cta a {
    display: inline-block; background: var(--gold); color: var(--ink);
    padding: 14px 30px; border-radius: 2px; font-weight: 600; letter-spacing: 0.02em;
}
.pillar .cta a:hover { background: var(--gold-bright); }

/* ---------- Quiz (camera magnetism diagnostic) ---------- */
.quiz { max-width: 720px; margin: 0 auto; }
.quiz-q { border: 1px solid var(--line); border-radius: 6px; background: var(--panel); padding: 24px 26px; margin: 0 0 18px; }
.quiz-q legend { font-family: var(--serif); font-size: 1.2rem; color: var(--paper); line-height: 1.4; padding: 0; }
.quiz-q-num { color: var(--gold); margin-right: 6px; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.quiz-opt { position: relative; }
.quiz-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.quiz-opt span {
    display: block; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
    color: var(--text-dim); font-size: 0.92rem; cursor: pointer; transition: all 0.15s;
}
.quiz-opt input:hover + span { border-color: var(--gold); color: var(--paper); }
.quiz-opt input:checked + span { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }
.quiz-opt input:focus-visible + span { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.quiz-error { color: var(--gold-bright); margin: 8px 0 16px; }
.quiz-submit { margin-top: 10px; }

.quiz-result { max-width: 720px; margin: 0 auto; }
.score-badge {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    width: 150px; height: 150px; border-radius: 50%; border: 3px solid var(--gold);
    background: var(--spot); margin-bottom: 28px;
}
.score-num { font-family: var(--serif); font-size: 3.4rem; color: var(--paper); line-height: 1; }
.score-num::after { content: "%"; font-size: 1.4rem; color: var(--gold); }
.score-label { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem; color: var(--gold); margin-top: 6px; }
.quiz-result h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--paper); }
.result-body { color: var(--paper-dim); font-size: 1.12rem; line-height: 1.75; }
.result-rec-head { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--gold); margin: 2em 0 1em; }
.result-recs { display: flex; flex-direction: column; gap: 12px; }
.result-rec {
    display: block; padding: 16px 20px; background: var(--panel); border: 1px solid var(--line);
    border-left: 3px solid var(--gold); border-radius: 4px; color: var(--paper); font-weight: 500;
}
.result-rec:hover { border-color: var(--gold); color: var(--gold-bright); }

.quiz-capture {
    margin-top: 40px; padding: 32px; border-radius: 6px;
    background: linear-gradient(135deg, #241d12, var(--ink-soft)); border: 1px solid var(--line);
}
.quiz-capture h3 { font-family: var(--serif); text-transform: none; letter-spacing: -0.01em; color: var(--paper); font-size: 1.5rem; margin-bottom: 8px; }
.quiz-capture p { color: var(--text-dim); margin-bottom: 20px; }
.quiz-capture .capture-form { max-width: 100%; }
.quiz-retake { margin-top: 28px; text-align: center; }
.quiz-retake a { font-size: 0.9rem; color: var(--text-dim); }
.quiz-retake a:hover { color: var(--gold); }

/* Name/email gate */
.quiz-gate.is-hidden { display: none; }
.quiz-gate { max-width: 620px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 32px; }
.quiz-gate h2 { color: var(--paper); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 4px; }
.gate-fields { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; max-width: 440px; }
.gate-fields input { padding: 13px 16px; background: var(--ink); border: 1px solid var(--line); border-radius: 3px; color: var(--text); font-family: var(--sans); font-size: 1rem; }
.gate-fields input:focus { outline: none; border-color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute; top: 76px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--ink-soft); border-bottom: 1px solid var(--line);
        padding: 12px 24px 20px; display: none;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .site-nav .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0; }
    .grid-2, .grid-3, .post-grid, .featured-grid, .video-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .split-bio .split-photo { position: static; }
    .split { gap: 32px; }
    .footer-grid { gap: 28px; }
    .capture-form { min-width: 0; width: 100%; }
}
