/* ============================================================
   HARTWELL STRATEGY — Main Stylesheet
   Premium consultancy design · Clean, energetic, modern
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────── */
:root {
    --primary: #420C09;
    --primary-light: #5a1512;
    --primary-dark: #2d0806;
    --text: #1A1A1A;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --cream: #FBF7F0;
    --cream-dark: #F3ECE0;
    --gold: #C9A84C;
    --gold-light: #D4BA6A;
    --gold-dark: #A88B3D;
    --white: #FFFFFF;
    --black: #0a0a0a;
    --border: #e8e2d8;
    --shadow: rgba(66, 12, 9, 0.08);
    --shadow-lg: rgba(66, 12, 9, 0.12);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --container: 1200px;
    --section-pad: clamp(80px, 10vw, 140px);
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--primary); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--gold);
}

.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.8; color: var(--text-light); }

/* ── Reveal Animations ────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navigation ───────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2.25rem 0 1.75rem;
    transition: all 0.4s var(--ease);
    background: transparent;
}
.nav.scrolled {
    background: rgba(251, 247, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 1.5rem 0 1.25rem;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary);
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 0.3rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 100px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--primary-light) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s var(--ease);
    margin: 5px 0;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}
.btn-arrow::after {
    content: '→';
    transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── HERO (Video Background) ───────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* background removed — the v3 rules below control it so that
       mix-blend-mode on the text can see the raw video pixels */
}

/* Video / Image background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Force new stacking context so it stays behind hero-content in DOM order */
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(66, 12, 9, 0.85) 0%, rgba(66, 12, 9, 0.55) 40%, rgba(10, 10, 10, 0.50) 100%),
        linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 40%);
    z-index: 1;
}

/* Hero content — NO z-index, so mix-blend-mode on text
   can see through to the video in .hero's stacking context */
.hero-content {
    position: relative;
    max-width: 800px;
    padding: var(--section-pad) 0;
    padding-top: 160px;
}
.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero .lead {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

/* Light outline button for dark backgrounds */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
    opacity: 0;
}
.scroll-dot {
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { cy: 8; opacity: 1; }
    50% { cy: 16; opacity: 0.3; }
}

/* Nav: light mode on dark hero */
.nav--hero-dark .nav-logo span { color: var(--white); }
.nav--hero-dark .nav-links a { color: rgba(255,255,255,0.8); }
.nav--hero-dark .nav-links a:hover { color: var(--white); }
.nav--hero-dark .nav-toggle span { background: var(--white); }
.nav--hero-dark .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
}
.nav--hero-dark .nav-cta:hover {
    background: var(--gold-dark) !important;
}

/* When scrolled, revert nav to normal (light bg) */
.nav--hero-dark.scrolled .nav-logo span { color: var(--primary); }
.nav--hero-dark.scrolled .nav-links a { color: var(--text); }
.nav--hero-dark.scrolled .nav-toggle span { background: var(--primary); }
.nav--hero-dark.scrolled .nav-cta {
    background: var(--primary) !important;
}
.nav--hero-dark.scrolled .nav-cta:hover {
    background: var(--primary-light) !important;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── PROBLEM SECTION ──────────────────────────────────── */
.problem {
    padding: var(--section-pad) 0;
    background: var(--white);
    position: relative;
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.problem-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
}
.problem-content p strong {
    color: var(--primary);
    font-weight: 600;
}
.problem-visual {
    position: relative;
}
.problem-visual .accent-block {
    background: var(--primary);
    border-radius: 16px;
    padding: clamp(40px, 5vw, 60px);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.problem-visual .accent-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
}
.problem-visual .accent-block p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ── ON TAP SECTION ───────────────────────────────────── */
.ontap {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.ontap-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--gold);
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.35s var(--ease);
    transform-origin: top;
}
.benefit-card:hover::before { transform: scaleY(1); }
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(66, 12, 9, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--primary);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}
.benefit-highlight {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.benefit-highlight .benefit-icon {
    background: rgba(255,255,255,0.15);
    color: var(--gold);
}
.benefit-highlight p { color: rgba(255,255,255,0.9); }
.benefit-highlight:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px var(--shadow-lg);
}
.benefit-highlight::before { background: var(--gold); }

/* ── ABOUT SECTION ────────────────────────────────────── */
.about {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.about-sidebar {
    position: sticky;
    top: 120px;
}
.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 16px;
    background: var(--cream-dark);
    overflow: hidden;
    position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .placeholder-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: rgba(255,255,255,0.2);
    font-size: 6rem;
    font-family: var(--font-display);
}
.about-name-badge {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}
.about-name-badge h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.2rem; }
.about-name-badge p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
}
.about-content p strong { color: var(--primary); }
.about-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}
.about-brands .brand-tag {
    padding: 0.35rem 0.9rem;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--border);
}

/* ── SERVICES SECTION ─────────────────────────────────── */
.services {
    padding: var(--section-pad) 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
    pointer-events: none;
}
.services h2 { color: var(--white); }
.services .section-label { color: var(--gold); }
.services-intro { max-width: 600px; color: rgba(255,255,255,0.7); margin-bottom: 3rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.35s var(--ease);
    backdrop-filter: blur(10px);
}
.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card .subtitle { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; font-style: italic; }
.service-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1rem; }
.service-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}
.service-deliverables span {
    padding: 0.25rem 0.7rem;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}
.service-card .btn-gold { font-size: 0.85rem; padding: 0.7rem 1.5rem; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.testimonials-header {
    max-width: 600px;
    margin-bottom: 3rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 25px;
}
.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-meta .name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.testimonial-meta .role { font-size: 0.82rem; color: var(--text-muted); }

/* ── EMAIL CAPTURE ────────────────────────────────────── */
.email-capture {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.email-capture-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.email-capture h2 { margin-bottom: 1rem; }
.email-capture .lead { margin-bottom: 2rem; }

.email-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.email-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.3s var(--ease);
    outline: none;
}
.email-form input[type="email"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.email-form .btn { white-space: nowrap; }

.consent-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form-message {
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: none;
}
.form-message.success { display: block; background: #e8f5e9; color: #2e7d32; }
.form-message.error { display: block; background: #fce4ec; color: #c62828; }

/* ── BOOKING SECTION ──────────────────────────────────── */
.booking {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.booking-header {
    max-width: 600px;
    margin-bottom: 3rem;
}
.booking-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}

.slots-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
}
.slots-date-group { margin-bottom: 1.5rem; }
.slots-date-group:last-child { margin-bottom: 0; }
.slots-date {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.slots-times {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.slot-btn {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.slot-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}
.slot-btn.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.no-slots {
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem;
    text-align: center;
}

.booking-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-group label .optional {
    font-weight: 400;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.3s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.selected-slot-display {
    padding: 0.75rem 1rem;
    background: rgba(66, 12, 9, 0.04);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    border: 1px dashed var(--border);
}
.selected-slot-display.empty { color: var(--text-muted); font-weight: 400; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo span { color: var(--white); }
.footer-brand .nav-logo svg path { fill: var(--gold); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; line-height: 1.7; }

.footer h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .problem-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-sidebar { position: static; display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; align-items: center; }
    .about-photo { aspect-ratio: 1; }
    .booking-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem !important;
        z-index: 1100 !important; /* above .nav (1000) */
        padding: 2rem !important;
        margin: 0 !important;
        list-style: none;
        opacity: 1 !important;
    }
    .nav-links.open { display: flex !important; }

    /* Force dark, readable text in mobile menu */
    .nav-links a,
    .nav--hero-dark .nav-links a {
        font-size: 1.3rem !important;
        font-weight: 500 !important;
        color: var(--text) !important;
        opacity: 1 !important;
        padding: 0.8rem 1.5rem !important;
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .nav--hero-dark .nav-links a:hover,
    .nav-links a:hover {
        color: var(--primary) !important;
        opacity: 1 !important;
    }
    .nav-links .nav-cta,
    .nav--hero-dark .nav-links .nav-cta {
        background: var(--primary) !important;
        color: #ffffff !important;
        padding: 0.9rem 2rem !important;
        border-radius: 100px !important;
        margin-top: 1rem;
    }
    .nav-toggle { display: block; z-index: 1200 !important; }

    /* Lock body scroll when menu is open */
    body:has(.nav-links.open) { overflow: hidden; }
    
    .hero-content { padding-top: 120px; }
    .hero-scroll-hint { display: none; }
    
    .about-sidebar { grid-template-columns: 1fr; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .email-form { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .benefit-card { padding: 1.5rem; }
    .service-card { padding: 1.5rem; }
}

/* ── Utility ──────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Loading Spinner ──────────────────────────────────── */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   v2 ADDITIONS — Manifesto, Lead form, Logo tweaks
   ============================================================ */

/* ── Minimalist text logo ───────────────────────────────── */
.nav-logo { text-decoration: none; display: inline-flex; align-items: center; gap: 0.65rem; }
.nav-logo .logo-text,
.nav-logo .logo-mark-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: inherit;
}
.nav-logo .logo-img {
    height: 22px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    margin: 0;
}
.footer-brand .nav-logo .logo-img { height: 22px; width: auto; max-width: 200px; margin: 0; }
@media (max-width: 768px) {
    .nav-logo .logo-img { height: 18px; max-width: 150px; margin: 0; }
}

/* ── Manifesto section ──────────────────────────────────── */
.manifesto {
    padding: var(--section-pad) 0;
    background: var(--cream);
    position: relative;
}
.manifesto::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--gold);
}
.manifesto-header {
    max-width: 780px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.manifesto-header .section-label { padding-left: 0; }
.manifesto-header .section-label::before { display: none; }
.manifesto-intro {
    color: var(--text-light);
    margin-top: 1.2rem;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}
.manifesto-body {
    max-width: 720px;
    margin: 0 auto 4rem;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-light);
}
.manifesto-body p + p { margin-top: 1.2rem; }
.manifesto-body p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text);
}

.manifesto-benefits {
    list-style: none;
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    padding-top: 0;
}
.manifesto-benefits li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
}
.manifesto-benefit-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    font-weight: 500;
}
.manifesto-benefit-text {
    color: var(--text);
    font-weight: 500;
}
@media (max-width: 720px) {
    .manifesto-benefits { grid-template-columns: 1fr; gap: 1.5rem; }
    .manifesto-header, .manifesto-body { text-align: left; }
    .manifesto-header { margin-bottom: 2.5rem; }
}

/* ── Lead capture form ──────────────────────────────────── */
.lead-section {
    padding: var(--section-pad) 0;
    background: var(--primary);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.lead-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(201,168,76,0.12), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201,168,76,0.08), transparent 50%);
    pointer-events: none;
}
.lead-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.lead-section .section-label {
    color: var(--gold);
    padding-left: 0;
}
.lead-section .section-label::before { display: none; }
.lead-section h2 { color: var(--cream); margin-top: 0.8rem; }
.lead-section .lead {
    color: rgba(251,247,240,0.85);
    margin: 1rem auto 2.5rem;
    max-width: 560px;
}

.lead-form {
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}
.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.lead-form .form-group { margin-bottom: 1rem; }
.lead-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.lead-form input,
.lead-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(251,247,240,0.18);
    color: var(--cream);
    padding: 0.9rem 1.1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.25s var(--ease);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(251,247,240,0.4);
}
.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}
.lead-form textarea { resize: vertical; min-height: 120px; }
.lead-form button[type="submit"] {
    margin-top: 0.8rem;
    width: 100%;
    background: var(--gold);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.lead-form button[type="submit"]:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.lead-form .form-message {
    margin-top: 1.2rem;
    padding: 1rem 1.4rem;
    border-radius: 10px;
    display: none;
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 500;
    text-align: center;
}
.lead-form .form-message.success {
    display: block;
    background: var(--primary) !important;
    color: var(--white) !important;
    border: none;
    box-shadow: 0 6px 20px var(--shadow-lg);
}
.lead-form .form-message.error {
    display: block;
    background: #2d0806 !important;
    color: #ffd4d2 !important;
    border: 1px solid #5a1512;
}
@media (max-width: 640px) {
    .lead-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   v3 — Narrative redesign (untoldheroes / cleanbreak inspired)
   Typography-first, massive whitespace, minimal decoration
   ============================================================ */

/* Bigger display type across the board */
h1 {
    font-size: clamp(3.2rem, 9vw, 8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.02;
}
h2 {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* More generous section padding */
:root {
    --section-pad: clamp(100px, 13vw, 180px);
}

/* Container for text-heavy narrative sections */
.narrative {
    max-width: 720px;
    margin: 0 auto;
}

/* ── Navigation: always looks "scrolled" — solid frosted bar ── */
.nav {
    padding: 0.3rem 0;
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--border);
}
/* Neutralise legacy .nav--hero-dark rules (but NOT the CTA, which stays white on primary) */
.nav--hero-dark .nav-logo .logo-mark-text,
.nav--hero-dark .nav-logo .logo-text,
.nav--hero-dark .nav-logo span,
.nav--hero-dark .nav-links a:not(.nav-cta) {
    color: var(--text) !important;
}
.nav--hero-dark .nav-links .nav-cta,
.nav--hero-dark .nav-links .nav-cta:hover {
    color: var(--white) !important;
}
.nav--hero-dark .nav-toggle span {
    background: var(--text) !important;
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo: plain text, no backdrop (nav bar is already frosted) */
.nav-logo {
    color: var(--text);
    transition: opacity 0.25s;
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo .logo-mark-text,
.nav-logo .logo-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text);
}

/* Nav links: plain text, higher contrast */
.nav-links { gap: 2.2rem; align-items: center; }
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text);
    opacity: 0.75;
    padding: 6px 0;
    transition: opacity 0.25s;
}
.nav-links a:hover { opacity: 1; }

/* CTA is a solid primary pill */
.nav-links .nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 100px !important;
    font-weight: 600;
    opacity: 1 !important;
    transition: all 0.3s var(--ease);
}
.nav-links .nav-cta:hover {
    background: var(--primary-light) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--shadow-lg);
}

/* .nav.scrolled is no longer needed since base state already looks scrolled */
.nav.scrolled { background: rgba(255,255,255,0.92) !important; }

/* ── Hero: text-dominant, quieter video ──────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 1040px;
}
.hero h1 {
    margin: 0.5rem 0 1.8rem;
    color: inherit;
}
.hero .lead {
    max-width: 620px;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.65;
    opacity: 0.85;
    margin-bottom: 2.5rem;
}
.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}
/* ── Hero with brand gradient background ───────────────── */
.hero {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        #2d0806 30%,
        #420c09 60%,
        #5a1512 100%
    );
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(90,21,18,0.5), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08), transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(45,8,6,0.4), transparent 50%);
    pointer-events: none;
}
.hero:has(.hero-video) { background: transparent; }
.hero:has(.hero-video)::before { display: none; }

.hero-video-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}
.hero .hero-content {
    position: relative;
    z-index: 2;
}
.hero h1,
.hero .hero-tagline,
.hero .lead {
    color: #ffffff !important;
}
.hero-scroll-hint { color: rgba(255,255,255,0.5); }

.hero-actions .btn-outline-light {
    background: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255,255,255,0.35) !important;
}
.hero-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.6) !important;
    transform: translateY(-2px);
}
.hero-actions { gap: 1.5rem; flex-wrap: wrap; }
.hero-actions .btn {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ── Manifesto: full narrative treatment ─────────────────── */
.manifesto {
    padding: var(--section-pad) 0 calc(var(--section-pad) * 0.5);
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        #2d0806 30%,
        #420c09 60%,
        #5a1512 100%
    );
    position: relative;
}
.manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(90,21,18,0.5), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08), transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(45,8,6,0.4), transparent 50%);
    pointer-events: none;
}
.manifesto-header {
    max-width: 860px;
    margin: 0 auto 5rem;
    text-align: center;
}
.manifesto-header .section-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    padding: 0;
    margin-bottom: 2rem;
    display: inline-block;
}
.manifesto-header .section-label::before { display: none; }
.manifesto h2,
.manifesto-header h2 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.02;
    color: #ffffff !important;
}
.manifesto .section-label { color: rgba(255,255,255,0.6) !important; }
.manifesto-intro {
    display: none; /* intro is absorbed into the serif body */
}
.manifesto-body {
    max-width: 720px;
    margin: 0 auto 0;
    color: rgba(255,255,255,0.85);
}
.manifesto-body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
}
.manifesto-body p + p { margin-top: 1rem; }
/* Hide empty paragraphs from Quill editor */
.manifesto-body p:empty,
.manifesto-body p br:only-child { display: none; }
.manifesto-body p:has(> br:only-child) { display: none; }

.manifesto-benefits {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
}
.manifesto-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.55;
    padding: 0.8rem 0;
    margin-left: 0;
}
.manifesto-benefit-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 480px) {
    .manifesto-benefits li { margin-left: 0; }
}
.manifesto-benefit-icon svg {
    width: 22px;
    height: 22px;
}
.manifesto-benefit-text {
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}
@media (max-width: 720px) {
    .manifesto-header { margin-bottom: 3rem; }
    .manifesto-body { margin-bottom: 3rem; }
}

/* ── Services: flatter, quieter cards (overrides v1 dark theme) ── */
.services {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.services h2 { color: var(--text) !important; }
.services .section-label { color: var(--text-muted) !important; }
.services-intro { color: var(--text-light) !important; max-width: 640px; margin: 1.2rem auto 0 !important; }
.services > .container > .reveal {
    max-width: 720px;
    margin: 0 auto 5rem;
    text-align: center;
}
.services > .container > .reveal .section-label {
    padding: 0;
    margin-bottom: 2rem;
    color: var(--text-muted);
    display: inline-block;
}
.services > .container > .reveal .section-label::before { display: none; }
.services-intro {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--text-light);
    margin-top: 1.2rem;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: var(--container);
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.service-card {
    padding: 3.5rem 2rem 3rem;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    position: relative;
    transition: background 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-card > .btn { margin-top: auto; align-self: flex-start; }
.service-card:last-child { border-right: none; }
.service-card:hover {
    background: #fcf9f6;
    transform: none;
    box-shadow: none;
}
.service-card .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 2rem;
    background: transparent;
    color: var(--primary);
}
.service-card .service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
    stroke-width: 1.4;
}
.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
}
.service-card .subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.service-card .service-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.8rem;
}
.service-card .service-deliverables span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--cream-dark);
    color: var(--text-light);
    border-radius: 3px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}
.service-card .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    background: var(--primary) !important;
    color: var(--white) !important;
    border: none;
}
.service-card .btn:hover {
    background: var(--primary-light) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--shadow-lg);
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; border-top: none; }
    .service-card { border-right: none; border-bottom: 1px solid var(--border); }
    .service-card:last-child { border-bottom: none; }
}

/* ── About: narrower, cleaner (override v1 dark theme) ───── */
.about { padding: var(--section-pad) 0; background: var(--white); }
.about-grid {
    max-width: 1000px;
    margin: 0 auto;
    gap: 4rem;
}
.about h2,
.about-content h2 {
    color: var(--text) !important;
    margin-bottom: 1.5rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
}
.about-content p { color: var(--text-light); }
.about .section-label { color: var(--text-muted) !important; }

/* ── Testimonials: quieter cards (override v1 dark theme) ── */
.testimonials {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2d0806 30%, #420c09 60%, #5a1512 100%);
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(90,21,18,0.5), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08), transparent 50%);
    pointer-events: none;
}
.testimonials h2 { color: #ffffff !important; }
.testimonials .section-label { color: rgba(255,255,255,0.6) !important; }
.testimonials-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.testimonials-grid { position: relative; z-index: 1; }
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
    padding: 2.5rem;
    border-radius: 12px;
}
.testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    font-style: normal;
}
.testimonial-card .name { color: #ffffff !important; }
.testimonial-card .role { color: rgba(255,255,255,0.5) !important; }
.testimonial-card .testimonial-quote { color: rgba(255,255,255,0.15); }
.testimonial-card .testimonial-avatar { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

/* ── Lead section: flat, quiet, cream with dark accents ──── */
.lead-section {
    padding: calc(var(--section-pad) * 0.55) 0 var(--section-pad);
    background: linear-gradient(135deg, var(--primary) 0%, #2d0806 30%, #420c09 60%, #5a1512 100%);
    color: #ffffff;
    border-top: none;
    position: relative;
}
.lead-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(90,21,18,0.5), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08), transparent 50%);
    pointer-events: none;
}
/* When lead directly follows another padded section, halve its top padding
   to avoid double-padding feeling empty */
.testimonials + .lead-section,
.about + .lead-section,
.services + .lead-section,
.manifesto + .lead-section {
    padding-top: calc(var(--section-pad) * 0.4);
}
/* Same treatment for sections that follow each other in general */
.manifesto + .services,
.services + .about,
.about + .testimonials,
.testimonials + .lead-section {
    padding-top: calc(var(--section-pad) * 0.45);
}
.lead-section::before { display: none; } /* kill gradients */
.lead-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.lead-section .section-label {
    color: rgba(255,255,255,0.6);
    padding: 0;
    margin-bottom: 2rem;
}
.lead-section .section-label::before { display: none; }
.lead-section h2 {
    color: #ffffff;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}
.lead-section .lead {
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 3rem;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}
.lead-form {
    max-width: 560px;
    text-align: left;
    margin: 0 auto;
}
.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.lead-form .form-group { margin-bottom: 1.1rem; }
.lead-form label {
    display: block;
    color: rgba(255,255,255,0.7);
    opacity: 1;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0.5rem;
}
.lead-form input,
.lead-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #ffffff;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: none;
    transition: all 0.25s var(--ease);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.12);
}
.lead-form textarea { min-height: 140px; resize: vertical; }
@media (max-width: 640px) {
    .lead-form .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
}
.lead-form button[type="submit"] {
    background: var(--gold);
    color: var(--primary) !important;
    border-radius: 100px;
    padding: 1rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: none;
    width: auto;
}
.lead-form button[type="submit"]:hover {
    background: var(--gold-light);
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

/* ── Footer: simpler, high contrast on any light bg ────── */
.footer {
    padding: 5rem 0 2rem;
    background: var(--white);
    border-top: 1px solid var(--border);
    color: var(--text);
}
.footer .footer-brand p,
.footer .footer-bottom span { color: var(--text); opacity: 0.75; }
.footer h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.6;
}
.footer-links a {
    color: var(--text);
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.25s;
}
.footer-links a:hover { color: var(--primary); opacity: 1; }
.footer .nav-logo .logo-text,
.footer .nav-logo .logo-mark-text { color: var(--text); }
.footer-social a { color: var(--text); opacity: 0.6; }
.footer-social a:hover { color: var(--primary); opacity: 1; }

/* ── Kill decorative section-label dash universally ─────── */
.section-label { padding-left: 0 !important; }
.section-label::before { display: none !important; }

/* ── Hart motif in hero ─────────────────────────────── */
.hero-hart {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45vw;
    max-width: 500px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    animation: hartFadeIn 2s ease-out 1s forwards;
    opacity: 0;
}
.hero-hart svg {
    width: 100%;
    height: auto;
}
@keyframes hartFadeIn {
    from { opacity: 0; transform: translateY(-48%) scale(0.95); }
    to { opacity: 1; transform: translateY(-50%) scale(1); }
}
@media (max-width: 768px) {
    .hero-hart {
        width: 60vw;
        right: -5%;
        opacity: 0;
        animation: hartFadeIn 2s ease-out 1s forwards;
    }
}
@media (max-width: 480px) {
    .hero-hart {
        display: none;
    }
}
