/* ============================================================
   DLaurie AI — Global Stylesheet
   Brand: Dark premium forest green + chartreuse + pale yellow
   Fonts: Playfair Display (Hello Paris sub) · Outfit (Lovelo sub)
   NOTE: Replace Google Fonts with Hello Paris + Lovelo
         when licensed web font files are available.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --c-bg:       #0e1505;
  --c-dark:     #1a2208;
  --c-forest:   #242d0a;
  --c-olive:    #2e3a0e;
  --c-mid:      #404f14;
  --c-green:    #93b13e;
  --c-green-lt: #a8c848;
  --c-yellow:   #ffffc1;
  --c-cream:    #f0f0d4;
  --c-muted:    #c8c8a0;
  --c-white:    #ffffff;
  --c-border:   rgba(147, 177, 62, 0.18);
  --c-border-lt:rgba(147, 177, 62, 0.08);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing Scale */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   14px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.25);
  --shadow-md: 0 6px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.45);
  --glow:      0 0 32px rgba(147, 177, 62, 0.18);

  /* Transitions */
  --t-fast:   all 0.18s ease;
  --t-base:   all 0.28s ease;
  --t-slow:   all 0.45s ease;

  /* Layout */
  --max-w:    1180px;
  --nav-h:    88px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--c-bg);
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--t-fast); }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }
h5 { font-size: 0.875rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-green); }

p { margin-bottom: 1rem; color: var(--c-muted); }
p:last-child { margin-bottom: 0; }
p.large { font-size: 1.15rem; color: var(--c-cream); }
p.small { font-size: 0.875rem; }

.text-green  { color: var(--c-green); }
.text-yellow { color: var(--c-yellow); }
.text-cream  { color: var(--c-cream); }
.text-muted  { color: var(--c-muted); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.italic { font-style: italic; }
strong, b { color: var(--c-cream); font-weight: 600; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--sp-3xl) 0;
}
.section-sm {
  padding: var(--sp-2xl) 0;
}
.section-xs {
  padding: var(--sp-xl) 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm    { gap: 1rem; }
.gap-md    { gap: 1.5rem; }
.gap-lg    { gap: 2.5rem; }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--c-green);
  border-radius: var(--r-full);
  margin: 1.5rem auto;
}
.divider.left { margin-left: 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.875rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--t-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #f0f0d4;
  color: var(--c-forest);
}
.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(240,240,212,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-green);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--c-green-lt); gap: 0.75rem; }

.btn-lg {
  font-size: 1.0625rem;
  padding: 1.0625rem 2.25rem;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
}

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

/* ── Label / Tag ─────────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  background: rgba(147, 177, 62, 0.1);
  border: 1px solid rgba(147, 177, 62, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--t-base);
  background: var(--c-dark);
  border-bottom: 1px solid rgba(147, 177, 62, 0.18);
  padding: 0;
}

/* Hide mobile menu on desktop by default */
.nav__mobile-menu {
  display: none;
}

.nav.scrolled {
  background: rgba(26, 34, 8, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 55px;
  width: auto;
}

.nav__logo-text {
  display: none;  /* Logo text hidden per design update */
}
.nav__logo-text span { color: var(--c-green); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-md);
  transition: var(--t-fast);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--c-cream);
  background: rgba(255,255,255,0.06);
}

.nav__cta {
  flex-shrink: 0;
  font-size: 0.875rem !important;
  padding: 0.6rem 1.375rem !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: var(--t-base);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--c-dark);
  background-image:
    radial-gradient(rgba(147, 177, 62, 0.07) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(147,177,62,0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero__glow-2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(64,79,20,0.4) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--c-green);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--c-cream);
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.hero h1 em {
  font-style: italic;
  color: var(--c-yellow);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-muted);
  max-width: 600px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__stat {
  margin-top: 3.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(147, 177, 62, 0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  display: inline-block;
  max-width: 620px;
}

.hero__stat p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  margin: 0;
}

.hero__stat strong {
  color: var(--c-yellow);
}

/* ── Hero Image Text Panel ──────────────────────────────────── */
.hero-image__text-panel {
  position: absolute;
  left: 50%;
  top: calc(50% + var(--nav-h) / 2);
  transform: translate(-50%, -50%);
  width: min(90%, 720px);
  background: rgba(14, 21, 5, 0.83);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(147, 177, 62, 0.22);
  border-radius: var(--r-xl);
  padding: 3rem 3.5rem;
  z-index: 2;
  text-align: center;
}

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--c-forest);
  border-top: 1px solid var(--c-border-lt);
  border-bottom: 1px solid var(--c-border-lt);
  padding: 2.5rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.stats-bar__divider {
  display: none;
}

@media (min-width: 768px) {
  .stats-bar__grid { align-items: start; }
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--c-border);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-item__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ── Section Headers ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.0625rem; color: var(--c-muted); }

.section-header.left { text-align: left; margin-left: 0; }
.section-header.left .divider { margin-left: 0; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--c-forest);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(147,177,62,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t-base);
}

.card:hover {
  border-color: var(--c-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 48px; height: 48px;
  background: rgba(147, 177, 62, 0.1);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
}

.card__number {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.card h4 { margin-bottom: 0.75rem; color: var(--c-cream); }
.card p  { font-size: 0.9375rem; margin-bottom: 1.25rem; }
.card .card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-green);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.card .card__link:hover { gap: 0.625rem; }

/* Service card variant */
.service-card {
  background: var(--c-forest);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card.featured {
  border-color: rgba(147, 177, 62, 0.4);
  background: linear-gradient(145deg, var(--c-olive) 0%, var(--c-forest) 100%);
}

.service-card:hover {
  border-color: var(--c-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-forest);
  background: var(--c-green);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: 0.25rem;
}

.service-card__step {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 0.25rem;
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 0; }
.service-card p  { font-size: 0.9375rem; color: var(--c-muted); flex: 1; }

.service-card__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.service-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
}

/* ── Emotional Trigger Section ───────────────────────────────── */
.trigger-section {
  background: var(--c-dark);
  border-top: 1px solid var(--c-border-lt);
  border-bottom: 1px solid var(--c-border-lt);
}

.trigger-card {
  padding: 2rem;
  border-left: 3px solid var(--c-green);
  background: rgba(147,177,62,0.03);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.trigger-card h3 {
  font-size: 1.1rem;
  color: var(--c-yellow);
  margin-bottom: 0.625rem;
  font-family: var(--font-display);
  font-style: italic;
}

.trigger-card p { font-size: 0.9375rem; color: var(--c-muted); margin: 0; }

/* ── Case Study Block ────────────────────────────────────────── */
.case-study-card {
  background: var(--c-forest);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-study-card__content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.case-study-card__metrics {
  background: var(--c-dark);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  border-left: 1px solid var(--c-border-lt);
}

.metric-big {
  text-align: center;
}

.metric-big__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.metric-big__label {
  font-size: 0.8125rem;
  color: var(--c-muted);
  font-weight: 500;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

/* ── Testimonial ─────────────────────────────────────────────── */
.testimonial {
  padding: 2rem 2.5rem;
  background: rgba(147, 177, 62, 0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--c-green);
  opacity: 0.4;
  position: absolute;
  top: -1rem; left: 1.5rem;
  line-height: 1;
}

.testimonial p {
  font-size: 1.05rem;
  color: var(--c-cream);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.testimonial__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-green);
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-section {
  background: var(--c-dark);
}

.form-card {
  background: var(--c-forest);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 3rem;
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea,
select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-cream);
  transition: var(--t-fast);
  outline: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: rgba(240,240,212,0.35); }

input:focus,
textarea:focus,
select:focus {
  border-color: var(--c-green);
  background: rgba(147,177,62,0.06);
  box-shadow: 0 0 0 3px rgba(147,177,62,0.12);
}

textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note {
  font-size: 0.8125rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 0.875rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success h3 { color: var(--c-green); margin-bottom: 0.5rem; }

/* ── CTA Stripe ──────────────────────────────────────────────── */
.cta-stripe {
  background: var(--c-forest);
  border-top: 1px solid var(--c-border-lt);
  border-bottom: 1px solid var(--c-border-lt);
  text-align: center;
  padding: var(--sp-2xl) 0;
}

.cta-stripe h2 { margin-bottom: 1rem; }
.cta-stripe p  { margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-card {
  background: var(--c-forest);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); border-color: var(--c-border); box-shadow: var(--shadow-md); }

.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--c-border-lt);
}

.blog-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.blog-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
  align-items: center;
}

.blog-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-green);
  background: rgba(147,177,62,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
}

.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.625rem; }
.blog-card p  { font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(200, 200, 160, 0.22);
}

.faq-item:first-child { border-top: 1px solid rgba(200, 200, 160, 0.22); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  transition: var(--t-fast);
  color: var(--c-muted);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-question h3 {
  font-size: 1.0625rem;
  color: var(--c-muted);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
}

.faq-question:hover,
.faq-question:hover h3 { color: var(--c-green); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-green);
  font-size: 1rem;
  transition: var(--t-base);
}

.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--c-green); background: rgba(147,177,62,0.1); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 500px; padding-bottom: 1.5rem; }

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin: 0;
}

/* ── About Teaser ────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split__photo {
  aspect-ratio: 3/4;
  background: var(--c-olive);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-split__placeholder {
  text-align: center;
  padding: 2rem;
}

.about-split__placeholder .icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.about-split__placeholder p {
  font-size: 0.8125rem;
  color: var(--c-muted);
}

.about-split__content { display: flex; flex-direction: column; gap: 1.25rem; }

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.credential-item {
  padding: 1rem 1.25rem;
  background: rgba(147,177,62,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

.credential-item h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.credential-item p { font-size: 0.875rem; margin: 0; }

/* ── Page Header ─────────────────────────────────────────────── */
.page-header {
  background: var(--c-dark);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  border-bottom: 1px solid var(--c-border-lt);
  background-image: radial-gradient(rgba(147, 177, 62, 0.05) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
}

.page-header__inner { max-width: 680px; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; color: var(--c-muted); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-green); }
.breadcrumb__sep { color: rgba(240,240,212,0.3); }
.breadcrumb__current { color: var(--c-green); }

/* ── Case Study Page ─────────────────────────────────────────── */
.cs-card {
  background: var(--c-forest);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

.cs-card__header {
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--c-border-lt);
  background: linear-gradient(135deg, var(--c-olive) 0%, var(--c-forest) 100%);
}

.cs-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cs-meta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}

.cs-card__body { padding: 2.5rem 3rem; }

.cs-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 0.75rem;
}

.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.cs-metric {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(147,177,62,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.cs-metric__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.cs-metric__label {
  font-size: 0.8125rem;
  color: var(--c-muted);
  font-weight: 500;
}

.cs-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cs-extra {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-muted);
}

.cs-extra::before {
  content: '→';
  color: var(--c-green);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.cs-coming-soon {
  background: var(--c-forest);
  border: 1px dashed var(--c-border);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
}

/* ── Footer Brand Logo ───────────────────────────────────────── */
.footer__brand .nav__logo img {
  height: 55px;
  width: auto;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-lt);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border-lt);
  margin-bottom: 2rem;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 260px;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: 1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__col ul a {
  font-size: 0.9rem;
  color: var(--c-muted);
  transition: var(--t-fast);
}

.footer__col ul a:hover { color: var(--c-green); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--t-fast);
  color: var(--c-muted);
}

.social-link:hover {
  background: rgba(147,177,62,0.15);
  border-color: var(--c-green);
  color: var(--c-green);
}

/* ── Scroll Animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ── Contact Page ────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.contact-split__info { padding-top: 0.5rem; }
.contact-split__form {}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-cream);
  transition: var(--t-fast);
  outline: none;
  appearance: none;
  box-sizing: border-box;
}

.form-input::placeholder { color: rgba(240,240,212,0.35); }

.form-input:focus {
  border-color: var(--c-green);
  background: rgba(147,177,62,0.06);
  box-shadow: 0 0 0 3px rgba(147,177,62,0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2393b13e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.req { color: var(--c-green); }

/* ── Service Journey Bar ─────────────────────────────────────── */
.journey-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.journey-step__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: var(--t-fast);
}

.journey-step--active .journey-step__label {
  color: var(--c-forest);
  background: var(--c-green);
  border-color: var(--c-green);
}

.journey-step__arrow {
  color: var(--c-border);
  padding: 0 0.5rem;
  font-size: 1rem;
}

/* ── Service Section ─────────────────────────────────────────── */
.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--c-border-lt);
}

.service-section:last-of-type { border-bottom: none; }

.service-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-section__card {
  background: var(--c-forest);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0;
}

.service-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--c-muted);
}

.service-include-item::before {
  content: '✓';
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.service-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.service-price-note {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
}

/* ── Mobile Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }

  .nav__mobile-menu {
    display: flex;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(10, 16, 3, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: var(--t-base);
  }

  .nav__mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--c-cream);
    padding: 0.75rem 2rem;
    text-align: center;
    transition: var(--t-fast);
  }

  .nav__mobile-menu a:hover { color: var(--c-green); }

  .nav__mobile-menu .btn {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .case-study-card { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__photo { max-width: 320px; margin: 0 auto; aspect-ratio: 1/1; }
  .credentials { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero-image__text-panel { width: 90%; }
  .form-row { grid-template-columns: 1fr; }
  .cs-metrics { grid-template-columns: repeat(2, 1fr); }
  .cs-extras { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 2rem; }
  .service-section__grid { grid-template-columns: 1fr; }
  .service-section__card { position: static; }
}

@media (max-width: 600px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .hero-image__text-panel { width: 94%; padding: 1.75rem 1.5rem; }
  .hero { padding-top: calc(var(--nav-h) + 2.5rem); }
  .section { padding: 4rem 0; }
  .case-study-card__metrics { border-left: none; border-top: 1px solid var(--c-border-lt); }
  .form-card { padding: 1.75rem; }
  .cs-card__header, .cs-card__body { padding: 1.75rem; }
  .cs-metrics { grid-template-columns: 1fr 1fr; }
  .cs-metric__number { font-size: 1.75rem; }
  .metrics-row { grid-template-columns: 1fr; }
  .service-section__card { padding: 1.75rem; }
}
