/* ============================================
   LocateChamp — Shared Stylesheet
   ============================================ */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink: #1a1a1a;
    --paper: #fafaf8;
    --stone: #e8e6e1;
    --muted: #6b6560;
    --accent: #c4550a;
    --accent-light: #f5e6dc;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ---- SKIP NAV (ACCESSIBILITY) ---- */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    padding: 0.75rem 1.5rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-nav:focus {
    top: 0;
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--stone);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.nav-links a {
    transition: color 0.2s;
    color: var(--muted);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
    background: var(--ink);
    color: var(--paper) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }
.nav-cta-audit {
    background: var(--accent) !important;
}
.nav-cta-audit:hover { background: #a8430a !important; }

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}
.btn-primary {
    background: var(--ink);
    color: var(--paper);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--stone);
    color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-arrow::after {
    content: '\2192';
    transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---- SECTION PRIMITIVES ---- */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.section-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 600px;
    margin-bottom: 1rem;
}
.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.7;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    padding: 10rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================
   HOME PAGE
   ============================================ */

/* ---- HOME HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.6;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
/* Photo treatment — reduces AI-generated "smoothness" */
.photo-treat {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.photo-treat img {
    display: block;
    width: 100%;
    height: auto;
    /* Desaturate slightly + add contrast to kill the AI "hyper-color" look */
    filter: saturate(0.88) contrast(1.06) brightness(0.97);
}
/* Film grain overlay — breaks up the plastic smoothness */
.photo-treat::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: 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");
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.hero-image {
    /* inherits photo-treat styles via class in HTML */
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.2s forwards;
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.35s forwards;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.5s forwards;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s 0.65s forwards;
}

/* ---- PROBLEM SECTION ---- */
.problem {
    background: var(--ink);
    color: var(--paper);
}
.problem .section-label { color: var(--accent); }
.problem .section-sub { color: rgba(255,255,255,0.55); }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}
.problem-card {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    transition: background 0.3s;
}
.problem-card:hover { background: rgba(255,255,255,0.06); }
.problem-card .num {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}
.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.problem-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ---- SERVICES PREVIEW ---- */
.services-preview {
    border-top: 1px solid var(--stone);
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.service-card {
    padding: 2.5rem;
    border: 1px solid var(--stone);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.service-card .price {
    font-family: var(--serif);
    font-size: 2.2rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}
.service-card .price-sub {
    font-size: 1rem;
    color: var(--muted);
}
.service-card .price-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}
.tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    background: var(--accent-light);
    border-radius: 4px;
}

/* ---- PROCESS ---- */
.process { border-top: 1px solid var(--stone); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}
.step {
    position: relative;
}
.step .step-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--stone);
    line-height: 1;
    margin-bottom: 1rem;
}
.step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.step p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ---- SERVICE AREA ---- */
.service-area { border-top: 1px solid var(--stone); }
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 2rem;
    margin-top: 3rem;
}
.area-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}
.area-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.area-col li {
    font-size: 0.95rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
}
.area-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}
.area-remote {
    background: var(--ink);
    color: var(--paper);
    padding: 2rem;
    border-radius: 12px;
}
.area-remote p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; }
.area-remote .btn-ghost { border-color: rgba(255,255,255,0.2); color: var(--paper); }
.area-remote .btn-ghost:hover { border-color: var(--paper); }
.area-remote .btn { margin-top: 1rem; }
.remote-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(196,85,10,0.15);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* ---- GBP BEFORE / AFTER COMPARE ---- */
.gbp-compare {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
}
.gbp-compare .section-label { color: var(--accent); }
.gbp-compare .section-sub { color: rgba(255,255,255,0.55); }
.gbp-compare .section-heading { max-width: 700px; }

.gbp-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

/* Shared card base */
.gbp-card {
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gbp-card.visible { opacity: 1; transform: translateY(0); }

/* "Before" / "After" label above each card */
.gbp-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ---- Before card ---- */
.gbp-card--before {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.gbp-card--before .gbp-card-label { color: var(--muted); }
.gbp-card--before .gbp-header-img {
    background: #2a2a2a;
    border-radius: 8px;
    height: 80px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.08);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.gbp-card--before .gbp-biz-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.75rem;
}
.gbp-card--before .gbp-stars { color: rgba(255,255,255,0.12); margin-bottom: 1rem; font-size: 0.85rem; }
.gbp-card--before .gbp-info-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.15);
    margin-bottom: 0.5rem;
}
.gbp-card--before .gbp-info-row .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.gbp-card--before .gbp-photos {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.gbp-card--before .gbp-photo-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #2a2a2a;
}
.gbp-card--before .gbp-services {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.gbp-card--before .gbp-services-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.12);
    margin-bottom: 0.6rem;
}
.gbp-card--before .gbp-service-pill {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ---- After card ---- */
.gbp-card--after {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(196,85,10,0.3);
    transition-delay: 0.15s;
}
.gbp-card--after .gbp-card-label { color: var(--accent); }
.gbp-card--after .gbp-header-img {
    background: linear-gradient(135deg, #3d2a1a 0%, #2a1f17 100%);
    border-radius: 8px;
    height: 80px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.gbp-card--after .gbp-header-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,85,10,0.2) 0%, transparent 60%);
}
.gbp-card--after .gbp-header-photos {
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 1;
}
.gbp-card--after .gbp-header-photos span {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    display: block;
}
.gbp-card--after .gbp-header-photos span:nth-child(1) { background: #5c3a1e; }
.gbp-card--after .gbp-header-photos span:nth-child(2) { background: #4a3020; }
.gbp-card--after .gbp-header-photos span:nth-child(3) { background: #6b4528; }

.gbp-card--after .gbp-biz-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--paper);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.gbp-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4caf50;
    background: rgba(76,175,80,0.12);
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
}
.gbp-card--after .gbp-category {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
}
.gbp-card--after .gbp-stars {
    color: #f9a825;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.gbp-card--after .gbp-stars .review-count {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    margin-left: 0.35rem;
}
.gbp-card--after .gbp-info-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.5rem;
}
.gbp-card--after .gbp-info-row .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.gbp-card--after .gbp-photos {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.gbp-card--after .gbp-photo-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
}
.gbp-card--after .gbp-photo-thumb:nth-child(1) { background: #6b4528; }
.gbp-card--after .gbp-photo-thumb:nth-child(2) { background: #5c3a1e; }
.gbp-card--after .gbp-photo-thumb:nth-child(3) { background: #4a3020; }
.gbp-card--after .gbp-photo-thumb:nth-child(4) { background: #7a5030; }

.gbp-card--after .gbp-services {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.gbp-card--after .gbp-services-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.6rem;
}
.gbp-card--after .gbp-service-pill {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    margin: 0.2rem 0.2rem 0.2rem 0;
    background: rgba(196,85,10,0.12);
    color: var(--accent);
    border: 1px solid rgba(196,85,10,0.25);
}

/* After card glow pulse */
.gbp-card--after.visible {
    animation: gbpGlow 2s 0.8s ease-in-out;
}
@keyframes gbpGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196,85,10,0); }
    50% { box-shadow: 0 0 30px 0 rgba(196,85,10,0.15); }
}

/* ---- CTA SECTION (shared across pages) ---- */
.cta-section {
    text-align: center;
    background: var(--ink);
    color: var(--paper);
    border-radius: 16px;
    margin: 0 2rem 4rem;
    padding: 5rem 2rem;
}
.cta-section .section-label { color: var(--accent); }
.cta-section .section-heading {
    margin: 0 auto 1rem;
    max-width: 500px;
}
.cta-section .section-sub {
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.5);
}
.cta-section .btn-primary {
    background: var(--paper);
    color: var(--ink);
}
.cta-section .btn-primary:hover { background: var(--accent); color: var(--paper); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.about-content h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.about-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.about-content p strong { color: var(--ink); }

.founder-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}
.founder-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    border: 3px solid var(--stone);
}
.founder-section h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.founder-section p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.founder-section p strong { color: var(--ink); }

.values-section {
    padding: 5rem 2rem;
    background: var(--ink);
    color: var(--paper);
}
.values-section .container { max-width: 1200px; margin: 0 auto; }
.values-section .section-label { color: var(--accent); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.value-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.65;
}
.value-card .icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* About CTA spacing override */
.about-content ~ .cta-section,
.values-section ~ .cta-section {
    margin-top: 4rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    border-top: 1px solid var(--stone);
}
.service-detail section { padding: 5rem 2rem; }
.service-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--stone);
}
.service-block:last-child { border-bottom: none; }
.service-meta .tag {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}
.service-meta .price {
    font-family: var(--serif);
    font-size: 3rem;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.service-meta .price-sub {
    font-size: 1rem;
    color: var(--muted);
}
.service-meta .price-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.service-meta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.service-meta .desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.deliverables h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.deliverables ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.deliverables li {
    font-size: 0.95rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}
.deliverables li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ---- ROI SECTION ---- */
.roi-section {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
}
.roi-section .section-label { color: var(--accent); }
.roi-section .section-heading { margin: 0 auto 1.5rem; }
.roi-section .section-sub {
    color: rgba(255,255,255,0.55);
    margin: 0 auto 2.5rem;
    max-width: 540px;
}
.roi-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.roi-stat .roi-number {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--accent);
}
.roi-stat .roi-label {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    text-align: left;
    line-height: 1.4;
}
.roi-context {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
.roi-context strong { color: var(--paper); }

/* ---- PRICING EXTRAS ---- */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.service-tags .tag {
    margin: 0;
}
.price-standard-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.15rem;
    margin-bottom: 1.25rem;
}
.price-tiers {
    border: 1.5px solid var(--stone);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.75rem;
    background: var(--paper);
}
.price-tiers .price-tiers-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--stone);
}
.price-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.price-tier-row + .price-tier-row {
    border-top: 1px solid var(--stone);
}
.price-tier-row span:first-child {
    color: var(--muted);
}
.price-tier-row span:last-child {
    font-weight: 700;
    font-family: var(--sans);
}

/* ---- DELIVERABLES GROUPS ---- */
/* Override base .deliverables styles when using groups */
.deliverables--grouped ul {
    gap: 0;
}
.deliverables-group {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--stone);
}
.deliverables-group:first-child { padding-top: 0; }
.deliverables-group:last-child { border-bottom: none; padding-bottom: 0; }
.deliverables-group h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}
.deliverables-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.deliverables-group li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}
.deliverables-group li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    top: 0.15em;
}

/* ---- ADD-ONS ---- */
.addons-section { border-top: 1px solid var(--stone); }
.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.addon-card {
    padding: 1.75rem 2rem;
    border: 1.5px solid var(--stone);
    border-radius: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.25rem 2rem;
    align-items: start;
}
.addon-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.addon-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    grid-column: 1;
    grid-row: 1;
}
.addon-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.55;
    grid-column: 1;
    grid-row: 2;
    margin: 0;
}
.addon-price {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--accent);
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    text-align: right;
    white-space: nowrap;
}
.addon-price .addon-price-note {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    display: block;
    margin-top: 0.1rem;
    letter-spacing: 0.01em;
}

/* ---- BROADER SEO ---- */
.seo-section {
    background: var(--ink);
    color: var(--paper);
}
.seo-section .section-label { color: var(--accent); }
.seo-section .section-sub { color: rgba(255,255,255,0.55); }

/* Tier cards: horizontal strip */
.seo-tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.seo-tier-card {
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, background 0.3s;
}
.seo-tier-card:hover {
    border-color: rgba(196,85,10,0.4);
    background: rgba(255,255,255,0.06);
}
.seo-tier-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.seo-tier-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex: 1;
}
.seo-tier-card li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    padding-left: 1.15rem;
    position: relative;
    line-height: 1.45;
}
.seo-tier-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    top: 0.15em;
}
.seo-tier-card .seo-tier-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.2s;
    margin-top: auto;
}
.seo-tier-card .seo-tier-cta:hover { color: var(--paper); }

/* Divider between tiers and capabilities */
.seo-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 4rem 0 0;
}
.seo-capabilities-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 3rem;
    margin-bottom: 1.75rem;
}

/* Capabilities: compact 2x3 grid */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.seo-service-item {
    padding: 1.25rem 1.5rem;
    border-left: 2px solid rgba(196,85,10,0.3);
    background: rgba(255,255,255,0.02);
    border-radius: 0 8px 8px 0;
}
.seo-service-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.seo-service-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.55;
    margin: 0;
}

/* ---- CTA ACTIONS (dual buttons) ---- */
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-section .btn-ghost {
    border-color: rgba(255,255,255,0.25);
    color: var(--paper);
}
.cta-section .btn-ghost:hover {
    border-color: var(--paper);
}

/* ---- FAQ ---- */
.faq { background: var(--ink); color: var(--paper); }
.faq .section-label { color: var(--accent); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.faq-item {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.faq-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
}
.contact-info h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.contact-info h1 em { font-style: italic; color: var(--accent); }
.contact-info .lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 3rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-detail {
    padding: 1.5rem;
    border: 1px solid var(--stone);
    border-radius: 10px;
}
.contact-detail .detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.contact-detail .detail-value {
    font-size: 1.05rem;
    font-weight: 500;
}
.contact-detail .detail-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* Form */
.contact-form-wrap {
    background: white;
    border: 1px solid var(--stone);
    border-radius: 16px;
    padding: 2.5rem;
}
.contact-form-wrap h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.contact-form-wrap .form-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--stone);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.95rem;
    background: var(--paper);
    color: var(--ink);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 0.5rem;
}
.form-submit:hover { background: var(--accent); }
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}
.form-success .check {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.form-success h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.form-success p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ============================================
   AUDIT PAGE
   ============================================ */
.audit-hero {
    padding: 10rem 2rem 4rem;
    background: var(--paper);
    text-align: center;
}
.audit-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}
.audit-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.audit-hero h1 em { font-style: italic; color: var(--accent); }
.audit-hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* Two-column layout: form + trust panel */
.audit-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.audit-form-col { /* inherits contact-form-wrap styles */ }
.audit-trust-col { padding-top: 0.5rem; }

/* What You'll Get */
.audit-what-you-get { padding: 2.5rem; background: var(--ink); border-radius: 16px; color: var(--paper); }
.audit-what-you-get .section-label { color: var(--accent); }
.audit-trust-heading {
    font-family: var(--serif);
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 320px;
}
.audit-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.audit-checklist li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.audit-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,85,10,0.2);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.1rem;
}
.audit-checklist strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.audit-checklist p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}
.audit-trust-strip {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 900px) {
    .audit-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .audit-trust-col { padding-top: 0; }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

/* Featured post */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 3rem;
    border: 1px solid var(--stone);
    border-radius: 16px;
    margin-bottom: 3rem;
    transition: border-color 0.3s;
    align-items: center;
}
.featured-post:hover { border-color: var(--accent); }
.featured-thumb {
    background: var(--ink);
    border-radius: 10px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
    font-family: var(--serif);
    font-size: 4rem;
}
.featured-content .post-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.featured-content h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.featured-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.post-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Post grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.post-card {
    border: 1px solid var(--stone);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.post-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.post-thumb {
    background: var(--ink);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.1);
    font-family: var(--serif);
    font-size: 3rem;
}
.post-body {
    padding: 1.5rem;
}
.post-body .post-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.post-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.post-body p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Newsletter */
.newsletter {
    background: var(--ink);
    color: var(--paper);
    border-radius: 16px;
    padding: 3.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.newsletter h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.newsletter p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.newsletter-form input {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: transparent;
    color: var(--paper);
    font-family: var(--sans);
    font-size: 0.9rem;
    width: 260px;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--paper);
    color: var(--ink);
    border: none;
    border-radius: 8px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--accent); color: var(--paper); }

/* ============================================
   FOOTER
   ============================================ */
footer {
    border-top: 1px solid var(--stone);
    padding: 3rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1.2rem;
}
.footer-logo span { color: var(--accent); }
.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 0.85rem;
    color: var(--muted);
}
.footer-links a:hover { color: var(--ink); }
.footer-copy {
    font-size: 0.8rem;
    color: var(--muted);
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--stone);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--stone);
        gap: 1.25rem;
    }

    /* Layout collapses */
    .hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { order: -1; }
    section { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; }
    .cta-section { margin: 0 1rem 3rem; padding: 3.5rem 1.5rem; }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .founder-section { grid-template-columns: 1fr; gap: 2rem; }
    .founder-photo { max-width: 280px; }
    .service-block { grid-template-columns: 1fr; gap: 2rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .seo-tier-grid { grid-template-columns: 1fr 1fr; }
    .seo-services-grid { grid-template-columns: 1fr; }
    .contact-page { grid-template-columns: 1fr; gap: 3rem; padding: 7rem 1.5rem 4rem; }
    .form-row { grid-template-columns: 1fr; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-thumb { height: 200px; }
    .posts-grid { grid-template-columns: 1fr; }
    .newsletter { flex-direction: column; text-align: center; padding: 2.5rem; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }
    .page-hero { padding: 7rem 1.5rem 3rem; }

    /* GBP Compare */
    .gbp-compare-grid { grid-template-columns: 1fr; }

    /* Blog post */
    .blog-post { padding: 7rem 1.5rem 3rem; }
    .post-content { padding: 0; }
    .post-content h2 { font-size: 1.4rem; }
    .post-content blockquote { margin-left: 0; padding-left: 1.25rem; }
}

@media (max-width: 480px) {
    .seo-tier-grid { grid-template-columns: 1fr; }
    .roi-stat { flex-direction: column; align-items: center; gap: 0.25rem; }
    .roi-stat .roi-label { text-align: center; }
}

/* ============================================
   BLOG POST (individual article pages)
   ============================================ */
.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 10rem 2rem 4rem;
}
.post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 2rem;
    transition: color 0.2s;
}
.post-back:hover { color: var(--accent); }
.post-back::before { content: '\2190'; }

.post-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--stone);
}
.post-header .post-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}
.post-header h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}
.post-header-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.post-header-meta time { font-weight: 500; }

/* Prose content */
.post-content h2 {
    font-family: var(--serif);
    font-size: 1.65rem;
    letter-spacing: -0.02em;
    margin: 2.5rem 0 1rem;
    line-height: 1.2;
}
.post-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}
.post-content p {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.post-content p + p { margin-top: 0; }

.post-content ul,
.post-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}
.post-content li {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--ink);
}
.post-content li::marker { color: var(--accent); }

.post-content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--accent);
    background: var(--accent-light);
    border-radius: 0 8px 8px 0;
}
.post-content blockquote p {
    color: var(--ink);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 0;
}

.post-content strong { color: var(--ink); font-weight: 600; }

.post-content hr {
    border: none;
    border-top: 1px solid var(--stone);
    margin: 2.5rem 0;
}

/* Callout box */
.post-callout {
    background: var(--ink);
    color: var(--paper);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}
.post-callout h3 {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}
.post-callout p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}
.post-callout p:last-child { margin-bottom: 0; }
.post-callout ul { padding-left: 1.25rem; }
.post-callout li { color: rgba(255,255,255,0.7); }

/* Post footer CTA */
.post-footer-cta {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--stone);
    text-align: center;
}
.post-footer-cta h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}
.post-footer-cta p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
