/* ==================================================================
   ONYX & SAGE — Boutique Stationery Design System (v3)
   A quiet-luxury system for a California transaction coordinator.
   Palette: Onyx / Sage / Alabaster (brand palette v2, unchanged)
   Type:    Marcellus (display + numerals) / Figtree (body + UI)
   Signature: the tick-rule — a hairline timeline with tick marks,
   echoing the escrow deadlines O&S manages. Used as the divider
   motif across the site.
   Rules: no emoji, no textures, no gradients, no drop-shadow soup.
   Hairlines carry the structure.
   ================================================================== */

:root {
    /* Color */
    --onyx: #1C1D1A;
    --ink: #33342F;
    --sage: #4A5D4E;
    --sage-deep: #3A4A3E;
    --sage-mist: #C2CDC1;
    --sage-wash: #EDF1EC;
    --alabaster: #F9F9F6;
    --paper: #FFFFFF;
    --muted: #6E6F68;
    --line: rgba(28, 29, 26, 0.14);
    --line-soft: rgba(28, 29, 26, 0.08);
    --line-light: rgba(249, 249, 246, 0.22);

    /* Type */
    --ff-display: 'Marcellus', Georgia, serif;
    --ff-body: 'Figtree', 'Helvetica Neue', Arial, sans-serif;

    /* Rhythm */
    --radius: 2px;
    --nav-h: 68px;
    --section-pad: 96px;

    /* Signature tick-rule (timeline motif) */
    --tick-rule: repeating-linear-gradient(90deg,
        var(--sage) 0, var(--sage) 1px, transparent 1px, transparent 24px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--alabaster);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; }
a:hover { color: var(--sage); }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 400; color: var(--onyx); line-height: 1.2; }

/* Brand ampersand — the one flourish */
.amp { color: var(--sage); }

/* Eyebrow label */
.eyebrow {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 14px;
}

/* Signature divider: hairline with ticks */
.tick-rule {
    height: 5px;
    width: 168px;
    border-bottom: 1px solid var(--line);
    background: var(--tick-rule);
    background-size: 24px 5px;
    background-repeat: repeat-x;
    margin: 22px 0 0;
}
.tick-rule.center { margin-left: auto; margin-right: auto; }
.tick-rule.light { border-bottom-color: var(--line-light); }

/* Inline icon */
.icon { width: 20px; height: 20px; stroke-width: 1.75; flex-shrink: 0; }

/* Icon stamp — hairline square, like a blind emboss */
.stamp {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--sage);
    margin-bottom: 18px;
}

/* ---- Navigation ---- */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(249, 249, 246, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px;
}
.nav-brand {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    color: var(--onyx);
    letter-spacing: 0.02em;
}
.nav-links { list-style: none; display: flex; gap: 2px; }
.nav-tab {
    display: block;
    position: relative;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 8px 13px;
    transition: color 0.2s;
}
.nav-tab::after {
    content: '';
    position: absolute; left: 13px; right: 13px; bottom: 4px;
    height: 1px; background: var(--sage);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-tab:hover { color: var(--sage); }
.nav-tab:hover::after { transform: scaleX(1); }
.nav-tab.active { color: var(--sage-deep); }
.nav-tab.active::after { transform: scaleX(1); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--onyx); margin: 5px 0; transition: 0.25s; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 15px 34px;
    border: 1px solid var(--sage);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    background: var(--sage);
    color: #fff;
    text-align: center;
}
.btn:hover { background: var(--sage-deep); border-color: var(--sage-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--onyx); border-color: var(--onyx); }
.btn-ghost:hover { background: var(--onyx); border-color: var(--onyx); color: var(--alabaster); }
.btn-ghost.on-dark { color: var(--alabaster); border-color: var(--alabaster); }
.btn-ghost.on-dark:hover { background: var(--alabaster); color: var(--onyx); }
.btn.success { background: var(--sage-deep); border-color: var(--sage-deep); }

/* ---- Hero (home) ---- */
.hero-section {
    min-height: 92vh;
    display: flex; align-items: center;
    background: var(--onyx);
    position: relative;
    overflow: hidden;
}
.hero-media {
    position: absolute; inset: 0;
    background: url('assets/hero.png') center/cover no-repeat;
    animation: heroSettle 14s ease-out both;
}
@keyframes heroSettle { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-content > * { animation: fadeUp 0.8s ease-out both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.22s; }
.hero-content > *:nth-child(3) { animation-delay: 0.34s; }
.hero-content > *:nth-child(4) { animation-delay: 0.46s; }
.hero-content > *:nth-child(5) { animation-delay: 0.58s; }
.hero-content > *:nth-child(6) { animation-delay: 0.7s; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(28,29,26,0.82) 0%, rgba(28,29,26,0.55) 48%, rgba(28,29,26,0.18) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 1200px; width: 100%;
    margin: 0 auto;
    padding: 140px 24px 90px;
}
.hero-content .eyebrow { color: var(--sage-mist); }
.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4.6rem);
    color: var(--alabaster);
    letter-spacing: 0.015em;
}
.hero-sub {
    margin-top: 16px;
    font-size: 1.05rem;
    color: rgba(249,249,246,0.85);
    max-width: 46ch;
}
.hero-terms {
    margin-top: 26px;
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--sage-mist);
    letter-spacing: 0.04em;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Sections ---- */
.section-container { max-width: 1140px; margin: 0 auto; padding: var(--section-pad) 24px; }
.bg-paper { background: var(--paper); }
.bg-wash { background: var(--sage-wash); }
.bg-onyx { background: var(--onyx); }
.bg-onyx h2, .bg-onyx h3 { color: var(--alabaster); }

.section-heading { margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.section-heading.center { text-align: center; }
.section-heading p.lede { margin-top: 14px; color: var(--muted); max-width: 62ch; }
.section-heading.center p.lede { margin-left: auto; margin-right: auto; }

/* ---- Page hero band ---- */
.page-hero { padding-top: var(--nav-h); border-bottom: 1px solid var(--line-soft); background: var(--alabaster); }
.page-hero-inner { max-width: 1140px; margin: 0 auto; padding: 72px 24px 56px; }
.page-title { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-subtitle { display: block; margin-top: 12px; color: var(--muted); font-size: 1.02rem; max-width: 62ch; }

/* ---- Stats band ---- */
.stats-section { border-top: 1px solid var(--line-light); }
.stats-section .section-container { padding-top: 64px; padding-bottom: 64px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 8px 20px; border-left: 1px solid var(--line-light); }
.stat-item:first-child { border-left: none; }
.stat-figure { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-number, .stat-suffix {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--alabaster);
    line-height: 1;
}
.stat-suffix { color: var(--sage-mist); }
.stat-label {
    margin-top: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-mist);
}

/* ---- Split layout (services intro) ---- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.text-panel p { margin-bottom: 18px; font-size: 1.05rem; }
.text-panel p:last-child { margin-bottom: 0; }
.framed-image { position: relative; }
.framed-image img { position: relative; z-index: 1; border: 1px solid var(--line); border-radius: var(--radius); }
.framed-image::after {
    content: '';
    position: absolute; top: 18px; left: 18px; right: -18px; bottom: -18px;
    border: 1px solid var(--sage-mist);
    border-radius: var(--radius);
}

/* ---- Service cards ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.service-card {
    background: var(--paper);
    padding: 36px 30px;
    transition: background 0.25s;
}
.service-card:hover { background: var(--alabaster); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; color: var(--muted); }

/* ---- ROI calculator ---- */
.roi-calculator { max-width: 860px; margin: 0 auto; }
.roi-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.roi-slider-group label {
    display: block;
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.roi-slider-group input[type="range"] {
    width: 100%;
    accent-color: var(--sage);
    height: 2px;
    cursor: pointer;
}
.roi-value {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--ff-display);
    font-size: 1.5rem;
    color: var(--onyx);
}
.roi-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.roi-result-card { background: var(--paper); padding: 28px 16px; text-align: center; }
.roi-result-card.highlight { background: var(--sage-wash); }
.roi-result-number { font-family: var(--ff-display); font-size: 1.7rem; color: var(--onyx); line-height: 1.1; }
.roi-result-card.highlight .roi-result-number { color: var(--sage-deep); }
.roi-result-label {
    margin-top: 10px;
    font-size: 0.6563rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
}
.roi-footnote { text-align: center; margin-top: 22px; font-size: 0.85rem; color: var(--muted); }

/* ---- Platform ledger ---- */
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.platform-badge { background: var(--paper); padding: 22px 20px; display: flex; flex-direction: column; gap: 3px; }
.platform-name { font-family: var(--ff-display); font-size: 1rem; color: var(--onyx); }
.platform-type { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---- About ---- */
.about-layout { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.portrait-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.portrait-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.monogram-placeholder {
    width: 100%; aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    background: var(--sage-wash);
    font-family: var(--ff-display);
    font-size: 4rem;
    color: var(--sage-mist);
    letter-spacing: 0.12em;
}
.nameplate { padding: 18px 4px 0; text-align: center; }
.nameplate h3 { font-size: 1.2rem; }
.nameplate p { margin-top: 4px; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 26px; }
.bio p { margin-bottom: 18px; font-size: 1.03rem; }
.contact-plate { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.contact-item {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--onyx);
    padding: 12px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.contact-item .icon { width: 16px; height: 16px; color: var(--sage); }

/* Credentials line */
.credentials-bar {
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: center; gap: 72px; flex-wrap: wrap;
    text-align: center;
}
.credential-abbr { font-family: var(--ff-display); font-size: 1.5rem; color: var(--sage-deep); }
.credential-label { margin-top: 4px; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---- Process timeline ---- */
.pipeline {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    padding-top: 24px;
}
.pipeline::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 5px;
    border-top: 1px solid var(--line);
    background: var(--tick-rule);
    background-size: 24px 5px;
    background-repeat: repeat-x;
}
.pipeline-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pipeline-step p { font-size: 0.92rem; color: var(--muted); }
.pipeline-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--sage);
    line-height: 1;
    margin-bottom: 14px;
    display: block;
}

/* ---- Intake manifest (Getting started) ---- */
.process-intro { font-size: 1.02rem; color: var(--muted); max-width: 66ch; margin-bottom: 44px; }
.process-intro a { font-weight: 600; }
.manifest { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.manifest-row {
    display: flex; align-items: baseline; gap: 18px;
    padding: 20px 28px;
    border-top: 1px solid var(--line-soft);
}
.manifest-row:first-child { border-top: none; }
.manifest-check {
    width: 14px; height: 14px;
    border: 1.5px solid var(--sage);
    border-radius: 1px;
    flex-shrink: 0;
    position: relative; top: 1px;
}
.manifest-row h4 { font-size: 1.05rem; }
.manifest-row p { font-size: 0.9rem; color: var(--muted); margin-left: auto; text-align: right; }

.manifest-split { align-items: start; }
.manifest-split .manifest-row { flex-wrap: wrap; padding: 18px 24px; }
.manifest-split .manifest-row p { margin-left: 32px; text-align: left; width: 100%; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--sage); }
.featured-ribbon {
    position: absolute; top: -1px; right: 24px;
    background: var(--sage); color: #fff;
    font-size: 0.625rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0 0 var(--radius) var(--radius);
}
.price-card h3 { font-size: 1.15rem; }
.price-amount { font-family: var(--ff-display); font-size: 2.4rem; color: var(--sage-deep); margin: 14px 0 20px; }
.price-card ul { list-style: none; border-top: 1px solid var(--line-soft); }
.price-card li { padding: 11px 0; font-size: 0.92rem; border-bottom: 1px solid var(--line-soft); color: var(--ink); }

/* ---- Testimonials ---- */
.testimonial-stack { display: grid; gap: 40px; max-width: 820px; margin: 0 auto; }
.testimonial-letter {
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 2px solid var(--sage);
    border-radius: var(--radius);
    padding: 48px 56px 42px;
    position: relative;
}
.testimonial-letter::before {
    content: '\201C';
    font-family: var(--ff-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--sage-mist);
    display: block;
    margin-bottom: 6px;
}
.testimonial-letter blockquote p { margin-bottom: 16px; font-size: 1.03rem; }
.testimonial-letter blockquote p:last-child { margin-bottom: 0; }
.testimonial-attrib { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.testimonial-attrib h4 { font-size: 1.1rem; }
.letter-meta { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background: none; border: none; cursor: pointer;
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--onyx);
    text-align: left;
    padding: 24px 4px;
}
.faq-question:hover { color: var(--sage-deep); }
.faq-toggle { font-family: var(--ff-body); font-size: 1.3rem; font-weight: 300; color: var(--sage); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 420px; }
.faq-answer p { padding: 0 4px 26px; color: var(--muted); font-size: 0.98rem; max-width: 68ch; }

/* ---- Resources ---- */
.resource-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
    font-family: var(--ff-body);
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink);
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 9px 18px;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--sage); color: var(--sage-deep); }
.filter-btn.active { background: var(--sage); border-color: var(--sage); color: #fff; }
.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.resource-card { background: var(--paper); padding: 30px 26px; transition: background 0.25s; }
.resource-card:hover { background: var(--alabaster); }
.resource-card.hidden { display: none; }
.resource-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.resource-tag {
    display: inline-block;
    font-size: 0.625rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--sage-deep);
    border: 1px solid var(--sage-mist);
    border-radius: var(--radius);
    padding: 3px 8px;
    margin-bottom: 12px;
}
.resource-card p { font-size: 0.88rem; color: var(--muted); }
.resource-card .stamp { margin-bottom: 14px; width: 38px; height: 38px; }

/* ---- Intake wizard ---- */
.intake-wizard { max-width: 720px; margin: 0 auto; }
.wizard-steps { display: flex; align-items: center; margin-bottom: 40px; }
.wizard-step { display: flex; align-items: center; gap: 10px; }
.wizard-step:not(:last-child)::after {
    content: '';
    width: 48px; height: 1px;
    background: var(--line);
    margin: 0 14px;
}
.step-num {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-display);
    font-size: 0.95rem;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: all 0.25s;
}
.wizard-step.active .step-num { background: var(--sage); border-color: var(--sage); color: #fff; }
.wizard-step.completed .step-num { border-color: var(--sage); color: var(--sage-deep); }
.step-text {
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
}
.wizard-step.active .step-text { color: var(--onyx); }

.wizard-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 44px 48px;
}
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-panel-title { font-size: 1.35rem; margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); }
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }
#wizard-next, #wizard-submit { margin-left: auto; }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    font-family: var(--ff-body);
    font-size: 0.98rem;
    color: var(--ink);
    background: var(--alabaster);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--paper);
}
.review-summary { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 8px 24px; margin-bottom: 22px; }
.review-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.review-row:last-child { border-bottom: none; }
.review-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.review-value { color: var(--onyx); text-align: right; }
.form-note { font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }

.general-contact { margin-top: 72px; text-align: center; }
.general-contact p { color: var(--muted); margin-bottom: 18px; }
.general-contact .contact-plate { justify-content: center; margin-top: 0; }

/* ---- Home narrative ---- */
.narrative { max-width: 66ch; margin: 0 auto; text-align: center; }
.narrative h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.narrative p { margin-top: 20px; font-size: 1.08rem; }
.narrative .tick-rule { margin-top: 30px; }

.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 56px; }
a.teaser { display: block; }
a.teaser h3, a.teaser p { transition: color 0.2s; }
.teaser-more {
    display: inline-block; margin-top: 16px;
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--sage-deep);
    border-bottom: 1px solid var(--sage-mist);
    padding-bottom: 2px;
}
a.teaser:hover .teaser-more { border-bottom-color: var(--sage); }

/* ---- Pull-quote ---- */
.pullquote { max-width: 780px; margin: 0 auto; text-align: center; }
.pullquote blockquote {
    font-family: var(--ff-display);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.5;
    color: var(--onyx);
}
.pullquote blockquote::before {
    content: '\201C';
    display: block;
    font-size: 3.4rem;
    line-height: 0.6;
    color: var(--sage-mist);
    margin-bottom: 18px;
}
.pullquote cite {
    display: block; margin-top: 26px;
    font-style: normal;
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
}
.pullquote .teaser-more { margin-top: 26px; }

/* ---- Closing CTA band ---- */
.cta-band { background: var(--onyx); position: relative; overflow: hidden; }
.cta-band::before {
    content: '&';
    font-family: var(--ff-display);
    position: absolute; right: -30px; bottom: -170px;
    font-size: 30rem; line-height: 1;
    color: var(--sage);
    opacity: 0.13;
    pointer-events: none;
}
.cta-band .section-container { position: relative; z-index: 1; text-align: center; padding-top: 88px; padding-bottom: 88px; }
.cta-band .eyebrow { color: var(--sage-mist); }
.cta-band h2 { color: var(--alabaster); font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.cta-band p { color: var(--sage-mist); margin-top: 14px; font-size: 1.02rem; }
.cta-band .hero-actions { justify-content: center; margin-top: 32px; }

/* ---- Footer ---- */
.site-footer { background: var(--onyx); color: var(--sage-mist); }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 72px 24px 48px; text-align: center; }
.footer-brand { font-family: var(--ff-display); font-size: 1.5rem; color: var(--alabaster); display: block; }
.footer-inner > p { margin-top: 10px; font-size: 0.92rem; color: rgba(194, 205, 193, 0.8); }
.footer-inner .tick-rule { margin: 28px auto; }
.footer-contact { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.footer-contact a {
    display: inline-flex; align-items: center; gap: 9px;
    color: var(--alabaster); font-size: 0.92rem;
}
.footer-contact a:hover { color: var(--sage-mist); }
.footer-contact .icon { width: 15px; height: 15px; color: var(--sage-mist); }
.footer-copy { margin-top: 34px; font-size: 0.78rem; color: rgba(194, 205, 193, 0.5); }

/* ---- Reveal stagger on grids ---- */
:is(.services-grid, .resource-grid, .pricing-grid, .pipeline, .teaser-grid) > .reveal:nth-child(2) { transition-delay: 0.07s; }
:is(.services-grid, .resource-grid, .pricing-grid, .pipeline, .teaser-grid) > .reveal:nth-child(3) { transition-delay: 0.14s; }
:is(.services-grid, .resource-grid, .pricing-grid, .pipeline, .teaser-grid) > .reveal:nth-child(4) { transition-delay: 0.21s; }
:is(.services-grid, .resource-grid, .pricing-grid, .pipeline, .teaser-grid) > .reveal:nth-child(5) { transition-delay: 0.28s; }
:is(.services-grid, .resource-grid, .pricing-grid, .pipeline, .teaser-grid) > .reveal:nth-child(6) { transition-delay: 0.35s; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; transition: none !important; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .resource-grid { grid-template-columns: repeat(3, 1fr); }
    .roi-results { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pipeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: var(--alabaster);
        border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-links.open { max-height: 480px; }
    .nav-tab { padding: 15px 24px; border-bottom: 1px solid var(--line-soft); }
    .nav-tab::after { display: none; }
    .nav-tab.active { color: var(--sage); }
    .split-layout, .about-layout { grid-template-columns: 1fr; gap: 44px; }
    .about-layout .about-photo { max-width: 300px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .stat-item:nth-child(3) { border-left: none; }
    .roi-inputs { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 1024px) {
    .teaser-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    :root { --section-pad: 64px; }
    .framed-image::after { top: 10px; left: 10px; right: -10px; bottom: -10px; }
    .cta-band::before { font-size: 18rem; bottom: -100px; }
    .services-grid, .resource-grid, .pricing-grid, .platform-grid, .pipeline { grid-template-columns: 1fr; }
    .roi-results { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .wizard-card { padding: 32px 22px; }
    .testimonial-letter { padding: 34px 26px 30px; }
    .step-text { display: none; }
    .wizard-step:not(:last-child)::after { width: 24px; }
    .manifest-row { flex-wrap: wrap; }
    .manifest-row p { margin-left: 32px; text-align: left; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .credentials-bar { gap: 40px; }
}
