/* ============================================================
   Jake's Lawn Care — site.css
   Chrome metallic UI + primary CTA emphasis + page polish
   Loaded AFTER /_next/static/css/* so it can override safely.
   ============================================================ */

/* ============================================================
   SITEWIDE LUXURY BACKGROUND
   Layered radial gradients: deep forest greens + small gold
   accent + near-black base. Background-attachment: fixed so it
   doesn't scroll with content. Each page has its own variant
   (same palette, different anchor positions/angles) so pages
   feel distinct without breaking visual cohesion.
   Opacity is kept deliberately low so text stays fully legible.
   ============================================================ */
html { background-color: #000; }

/* Override Tailwind's .bg-black on body so the gradient layers are visible.
   The base color stays near-black so radial fades resolve to black, not white. */
body.bg-black,
body {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  background-image:
    /* gold accent — small, low opacity (the "less" of the three) */
    radial-gradient(58% 32% at 88% 6%,  rgba(212, 160, 23, 0.07) 0%, rgba(212, 160, 23, 0) 55%),
    /* primary deep forest — large body of green */
    radial-gradient(72% 56% at 18% 28%, rgba(26, 77, 46, 0.42)  0%, rgba(13, 38, 24, 0)   65%),
    /* secondary forest — bottom right */
    radial-gradient(56% 46% at 78% 78%, rgba(13, 38, 24, 0.55)  0%, rgba(0, 0, 0, 0)      65%),
    /* base — near-black with a hint of green */
    linear-gradient(155deg, #03060a 0%, #000000 50%, #04080a 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

/* Per-page variants — same palette, rotated anchor points */
body[data-variant="services"] {
  background-image:
    radial-gradient(52% 30% at 12% 10%, rgba(212, 160, 23, 0.06) 0%, rgba(212, 160, 23, 0) 55%),
    radial-gradient(75% 55% at 82% 25%, rgba(26, 77, 46, 0.42)  0%, rgba(13, 38, 24, 0)   65%),
    radial-gradient(62% 46% at 22% 80%, rgba(13, 38, 24, 0.55)  0%, rgba(0, 0, 0, 0)      65%),
    linear-gradient(195deg, #03060a 0%, #000000 50%, #04080a 100%);
}
body[data-variant="about"] {
  background-image:
    radial-gradient(48% 30% at 50% 8%,  rgba(212, 160, 23, 0.07) 0%, rgba(212, 160, 23, 0) 55%),
    radial-gradient(60% 65% at 12% 60%, rgba(26, 77, 46, 0.42)  0%, rgba(13, 38, 24, 0)   65%),
    radial-gradient(55% 50% at 88% 38%, rgba(13, 38, 24, 0.5)   0%, rgba(0, 0, 0, 0)      65%),
    linear-gradient(180deg, #04070b 0%, #000000 50%, #03060a 100%);
}
body[data-variant="portfolio"] {
  background-image:
    radial-gradient(55% 35% at 10% 12%, rgba(212, 160, 23, 0.06) 0%, rgba(212, 160, 23, 0) 55%),
    radial-gradient(65% 50% at 85% 62%, rgba(26, 77, 46, 0.42)  0%, rgba(13, 38, 24, 0)   65%),
    radial-gradient(52% 45% at 22% 78%, rgba(13, 38, 24, 0.5)   0%, rgba(0, 0, 0, 0)      65%),
    linear-gradient(220deg, #03070a 0%, #000000 50%, #050a07 100%);
}
body[data-variant="faq"] {
  background-image:
    radial-gradient(72% 22% at 50% 4%,  rgba(212, 160, 23, 0.07) 0%, rgba(212, 160, 23, 0) 60%),
    radial-gradient(80% 35% at 50% 48%, rgba(26, 77, 46, 0.36)  0%, rgba(13, 38, 24, 0)   65%),
    radial-gradient(70% 32% at 50% 96%, rgba(13, 38, 24, 0.5)   0%, rgba(0, 0, 0, 0)      65%),
    linear-gradient(180deg, #03060a 0%, #000000 50%, #04080a 100%);
}
body[data-variant="contact"] {
  background-image:
    radial-gradient(50% 28% at 50% 8%,  rgba(212, 160, 23, 0.08) 0%, rgba(212, 160, 23, 0) 55%),
    radial-gradient(62% 55% at 10% 48%, rgba(26, 77, 46, 0.42)  0%, rgba(13, 38, 24, 0)   65%),
    radial-gradient(62% 55% at 90% 48%, rgba(13, 38, 24, 0.5)   0%, rgba(0, 0, 0, 0)      65%),
    linear-gradient(165deg, #04070b 0%, #000000 50%, #03060a 100%);
}
body[data-variant="error"] {
  background-image:
    radial-gradient(60% 38% at 50% 28%, rgba(212, 160, 23, 0.06) 0%, rgba(212, 160, 23, 0) 60%),
    radial-gradient(70% 50% at 50% 65%, rgba(26, 77, 46, 0.32)  0%, rgba(13, 38, 24, 0)   65%),
    linear-gradient(180deg, #03060a 0%, #000000 50%, #04080a 100%);
}
body[data-variant="blog"] {
  background-image:
    radial-gradient(50% 28% at 22% 8%,  rgba(212, 160, 23, 0.07) 0%, rgba(212, 160, 23, 0) 55%),
    radial-gradient(68% 55% at 88% 32%, rgba(26, 77, 46, 0.42)  0%, rgba(13, 38, 24, 0)   65%),
    radial-gradient(60% 48% at 18% 72%, rgba(13, 38, 24, 0.5)   0%, rgba(0, 0, 0, 0)      65%),
    linear-gradient(200deg, #03060a 0%, #000000 50%, #04080a 100%);
}
body[data-variant="blog-post"] {
  background-image:
    radial-gradient(45% 26% at 80% 6%,  rgba(212, 160, 23, 0.07) 0%, rgba(212, 160, 23, 0) 55%),
    radial-gradient(62% 50% at 14% 30%, rgba(26, 77, 46, 0.40)  0%, rgba(13, 38, 24, 0)   65%),
    radial-gradient(58% 46% at 82% 78%, rgba(13, 38, 24, 0.5)   0%, rgba(0, 0, 0, 0)      65%),
    linear-gradient(170deg, #04070b 0%, #000000 50%, #03060a 100%);
}

/* Make page-level sections transparent so the body gradient shows
   through continuously. .page-hero keeps its own subtle top glow
   on top of the body backdrop. !important is intentional — we are
   explicitly overriding the per-section solid-black bg rules below. */
.section { background: transparent !important; }
.page-hero {
  background:
    radial-gradient(ellipse at top, rgba(26, 77, 46, 0.20) 0%, transparent 60%) !important;
}
.site-footer { background: transparent !important; }
.home-intro { background: transparent !important; }

/* ============================================================
   SITEWIDE MOUSE GLOW
   Soft forest-green halo that follows the cursor across every
   page. Subtle blur + screen blend so it lightens dark areas
   instead of obscuring text. Auto-disabled on touch and on
   prefers-reduced-motion via JS (which simply doesn't create
   the element).
   ============================================================ */
.site-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(-9999px, -9999px, 0);
  background: radial-gradient(circle,
    rgba(82, 183, 136, 0.12) 0%,
    rgba(82, 183, 136, 0.05) 35%,
    rgba(82, 183, 136, 0)    70%);
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 320ms ease;
  will-change: transform, opacity;
}
/* Make sure interactive content sits above the glow */
.site-nav, main, .site-footer { position: relative; z-index: 2; }

:root {
  /* Chrome palette — refined brushed silver */
  --chrome-top:      #d8dcdf;
  --chrome-hi:       #f4f6f8;
  --chrome-mid:      #c5c9cc;
  --chrome-mid-hi:   #eef0f2;
  --chrome-bot:      #b9bdc0;
  --chrome-text:     #1a1a1a;
  --chrome-border:   rgba(255, 255, 255, 0.4);

  /* Chrome — bolder card variant (dark brushed steel over forest base) */
  --steel-1: #14181b;
  --steel-2: #24292d;
  --steel-3: #1a1f23;
  --steel-edge: rgba(212, 216, 220, 0.22);

  /* Brand (existing) */
  --forest-900: #0d2618;
  --forest-700: #1a4d2e;
  --forest-600: #2d6a4f;
  --forest-500: #3d8b64;
  --forest-400: #52b788;
  --gold-500:   #d4a017;
  --gold-400:   #e8c245;
  --cream-100:  #f5f0e8;

  /* Motion tokens */
  --sheen-fast: 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --sheen-slow: 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --lift-fast:  200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================================
   CHROME — Refined brushed silver (nav, small secondary buttons)
   ============================================================ */
.btn-chrome {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chrome-text);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg,
      var(--chrome-top) 0%,
      var(--chrome-hi) 28%,
      var(--chrome-mid) 52%,
      var(--chrome-mid-hi) 72%,
      var(--chrome-bot) 100%);
  border: 1px solid var(--chrome-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform var(--lift-fast), box-shadow var(--lift-fast);
}
.btn-chrome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 70%);
  transform: translateX(-130%);
  transition: transform var(--sheen-slow);
  pointer-events: none;
  z-index: 1;
}
.btn-chrome > * { position: relative; z-index: 2; }
.btn-chrome:hover::before { transform: translateX(130%); }
.btn-chrome:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.35);
}
.btn-chrome:active { transform: translateY(0); }

/* ============================================================
   CHROME — Bolder dark steel (feature cards: services, portfolio, FAQ)
   ============================================================ */
.card-chrome {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1rem;
  background:
    linear-gradient(135deg,
      var(--steel-1) 0%,
      var(--steel-2) 30%,
      var(--steel-1) 60%,
      var(--steel-2) 100%);
  border: 1px solid var(--steel-edge);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 280ms ease;
}
.card-chrome::before {
  /* Top-edge specular highlight */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.card-chrome::after {
  /* Slow rotating brushed glare on hover */
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 216, 220, 0.14) 45deg,
    transparent 90deg,
    transparent 180deg,
    rgba(212, 216, 220, 0.08) 225deg,
    transparent 270deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
  z-index: 0;
}
.card-chrome > * { position: relative; z-index: 2; }
.card-chrome:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 183, 136, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 44px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(82, 183, 136, 0.15);
}
.card-chrome:hover::after {
  opacity: 1;
  animation: chrome-rotate 7s linear infinite;
}
@keyframes chrome-rotate {
  to { transform: rotate(360deg); }
}

/* Sheen sweep for cards (separate from rotating glare) */
.card-chrome--sheen::before {
  /* Reuse but expand to a sweep */
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%);
  transform: translateX(-130%);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.card-chrome--sheen:hover::before { transform: translateX(130%); }

/* ============================================================
   PRIMARY CTA — Forest green with breathing pulse + lift + sheen
   Used for form submit, "Get a Free Quote" buttons
   ============================================================ */
.cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 2.2rem;
  border-radius: 9999px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg,
    var(--forest-600) 0%,
    var(--forest-700) 55%,
    var(--forest-900) 100%);
  border: 1px solid rgba(82, 183, 136, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(26, 77, 46, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.35);
  animation: cta-breathe 2.8s ease-in-out infinite;
  transition: transform var(--lift-fast), box-shadow var(--lift-fast);
}
.cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 70%);
  transform: translateX(-130%);
  transition: transform var(--sheen-fast);
  pointer-events: none;
  z-index: 1;
}
.cta-primary > * { position: relative; z-index: 2; }
.cta-primary:hover::before { transform: translateX(130%); }
.cta-primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 36px rgba(26, 77, 46, 0.6),
    0 3px 10px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(82, 183, 136, 0.2);
  animation-play-state: paused;
}
.cta-primary:active { transform: translateY(0) scale(0.99); }

@keyframes cta-breathe {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(0, 0, 0, 0.3),
      0 8px 24px rgba(26, 77, 46, 0.45),
      0 2px 6px rgba(0, 0, 0, 0.35),
      0 0 0 0 rgba(82, 183, 136, 0.55);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(0, 0, 0, 0.3),
      0 12px 32px rgba(26, 77, 46, 0.55),
      0 2px 6px rgba(0, 0, 0, 0.35),
      0 0 0 10px rgba(82, 183, 136, 0);
  }
}

/* Primary CTA — large variant (form submit) */
.cta-primary--lg {
  padding: 1.2rem 2.6rem;
  font-size: 1rem;
  border-radius: 1rem;
  width: 100%;
}

/* ============================================================
   SECONDARY CTA — Phone calls; strong but no pulse
   ============================================================ */
.cta-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 9999px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg,
    var(--forest-700) 0%,
    var(--forest-900) 100%);
  border: 1px solid rgba(82, 183, 136, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 14px rgba(26, 77, 46, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform var(--lift-fast), box-shadow var(--lift-fast);
}
.cta-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%);
  transform: translateX(-130%);
  transition: transform var(--sheen-slow);
  pointer-events: none;
  z-index: 1;
}
.cta-secondary > * { position: relative; z-index: 2; }
.cta-secondary:hover::before { transform: translateX(130%); }
.cta-secondary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 22px rgba(26, 77, 46, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.35);
}
.cta-secondary:active { transform: translateY(0); }

/* Outline variant — for "Learn More" type links on dark backgrounds */
.cta-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 9999px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--cream-100);
  background: transparent;
  border: 1.5px solid rgba(245, 240, 232, 0.3);
  transition: all var(--lift-fast);
  overflow: hidden;
}
.cta-outline:hover {
  background: rgba(245, 240, 232, 0.06);
  border-color: var(--forest-400);
  color: var(--forest-400);
  transform: translateY(-1px);
}

/* ============================================================
   TRUST BADGE — Above primary CTAs
   "Free Estimate · No Obligation · 5★ on Google"
   ============================================================ */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.32);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.trust-badge svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }
.trust-badge .dot {
  width: 3px;
  height: 3px;
  border-radius: 9999px;
  background: rgba(212, 160, 23, 0.55);
  display: inline-block;
}

.trust-badge--stack { flex-direction: column; padding: 0.55rem 1.1rem; gap: 0.2rem; }

/* ============================================================
   NAVIGATION — Refined chrome links
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 300ms ease, border-color 300ms ease;
}
.site-nav__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (min-width: 1024px) {
  .site-nav__inner { padding: 0 2rem; }
}
.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.site-nav__brand img { height: 48px; width: auto; display: block; }
.site-nav__brand-text {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 600;
}
.site-nav__brand-text i {
  font-style: italic;
  font-weight: 300;
  color: var(--cream-100);
}
.site-nav__links {
  display: none;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 768px) {
  .site-nav__links { display: inline-flex; }
}
.site-nav__link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 200ms ease;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--forest-400) 50%,
    transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease;
}
.site-nav__link:hover { color: #ffffff; }
.site-nav__link:hover::after { transform: scaleX(1); }
.site-nav__link[aria-current="page"] {
  color: var(--forest-400);
}
.site-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__cta { margin-left: 0.5rem; }

/* Mobile menu toggle */
.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background 200ms ease;
}
.site-nav__toggle:hover { background: rgba(255, 255, 255, 0.12); }
@media (min-width: 768px) { .site-nav__toggle { display: none; } }

.site-nav__drawer {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-nav__drawer.is-open { display: flex; }
.site-nav__drawer a {
  padding: 0.85rem 0.5rem;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-nav__drawer a:last-child { border-bottom: 0; }

/* ============================================================
   PAGE SHELL — Hero strips, headers, sections
   ============================================================ */
.page-hero {
  position: relative;
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(26, 77, 46, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
@media (min-width: 1024px) { .page-hero { padding: 11rem 2rem 6rem; } }

.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest-400);
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--cream-100);
  margin: 0 auto 1.25rem;
  max-width: 60rem;
  font-weight: 500;
}
.page-hero__title i {
  font-style: italic;
  font-weight: 300;
  color: var(--forest-400);
}
.page-hero__lede {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
  max-width: 42rem;
  margin: 0 auto;
}

.section {
  padding: 5rem 1.5rem;
  background: #000000;
}
@media (min-width: 1024px) { .section { padding: 7rem 2rem; } }
.section__inner { max-width: 80rem; margin: 0 auto; }
.section__head { text-align: center; margin-bottom: 4rem; }
.section__eyebrow {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: block;
}
.section__title {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--cream-100);
  margin: 0 auto;
  font-weight: 500;
  max-width: 50rem;
}
.section__title i { font-style: italic; font-weight: 300; color: var(--forest-400); }

/* Breadcrumbs */
.breadcrumbs {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 1.5rem;
}
.breadcrumbs a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 200ms ease;
}
.breadcrumbs a:hover { color: var(--forest-400); }
.breadcrumbs__sep {
  margin: 0 0.5rem;
  color: rgba(245, 240, 232, 0.25);
}

/* ============================================================
   SERVICE / FEATURE CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 16rem;
}
.service-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(82, 183, 136, 0.15) 0%, rgba(26, 77, 46, 0.4) 100%);
  border: 1px solid rgba(82, 183, 136, 0.25);
  color: var(--forest-400);
}
.service-card__icon svg { width: 1.5rem; height: 1.5rem; }
.service-card__title {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--cream-100);
  font-weight: 600;
  margin: 0;
}
.service-card__desc {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.65);
  margin: 0;
  flex-grow: 1;
}
.service-card__cta {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-400);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 200ms ease, gap 200ms ease;
}
.service-card__cta:hover { color: var(--gold-500); gap: 0.7rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.faq-item { /* uses .card-chrome */
  border-radius: 1rem;
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--cream-100);
  text-align: left;
  font-weight: 500;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--forest-400);
  transition: transform 280ms ease, background 280ms ease;
}
.faq-item__icon svg { width: 0.95rem; height: 0.95rem; }
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-item__panel-inner {
  padding: 0 1.75rem 1.75rem;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.72);
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(82, 183, 136, 0.18);
}
.faq-item.is-open .faq-item__panel { max-height: 32rem; }

/* ============================================================
   PORTFOLIO GRID + LIGHTBOX (CSS-only via :target)
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.portfolio-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}
.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.portfolio-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
.portfolio-tile__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
}
.portfolio-tile:hover img { transform: scale(1.06); }
.portfolio-tile:hover .portfolio-tile__label {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox (CSS-only :target) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox:target { display: flex; }
.lightbox img {
  max-width: min(95vw, 1400px);
  max-height: 90vh;
  border-radius: 0.75rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

/* ============================================================
   CONTACT FORM — Form-first emphasis
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--cream-100);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.6rem;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 7rem; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest-400);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.18);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(245, 240, 232, 0.35); }

.field--full { grid-column: 1 / -1; }

.honeypot-row {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* ============================================================
   ENTRANCE ANIMATIONS — Staggered fade-up
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 60ms; }
.reveal[data-delay="2"] { transition-delay: 120ms; }
.reveal[data-delay="3"] { transition-delay: 180ms; }
.reveal[data-delay="4"] { transition-delay: 240ms; }
.reveal[data-delay="5"] { transition-delay: 300ms; }
.reveal[data-delay="6"] { transition-delay: 360ms; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}
.error-page__num {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--forest-400) 0%, var(--forest-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  font-weight: 500;
}

/* ============================================================
   FOOTER — Match existing aesthetic
   ============================================================ */
.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 0;
}
@media (min-width: 1024px) { .site-footer__inner { padding-left: 2rem; padding-right: 2rem; } }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__brand { display: flex; flex-direction: column; gap: 1.25rem; }
.site-footer__heading {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 1.5rem;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list a {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 200ms ease;
}
.site-footer__list a:hover { color: #ffffff; }
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.site-footer__contact-row svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.site-footer__contact-row a,
.site-footer__contact-row span {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  line-height: 1.5;
}
.site-footer__contact-row a:hover { color: #ffffff; }
.site-footer__socials {
  display: flex;
  gap: 0.6rem;
}
.site-footer__social {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}
.site-footer__social svg { width: 1rem; height: 1rem; }
.site-footer__social:hover {
  background: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.4);
}
.site-footer__bar {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 640px) { .site-footer__bar { flex-direction: row; justify-content: space-between; } }
.site-footer__copyright {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}
.site-footer__legal {
  display: flex;
  gap: 1.25rem;
}
.site-footer__legal a {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.site-footer__legal a:hover { color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .cta-primary { animation: none; }
  .cta-primary::before,
  .cta-secondary::before,
  .btn-chrome::before,
  .card-chrome::after,
  .card-chrome--sheen::before { transition: none; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .portfolio-tile img,
  .card-chrome { transition: none; }
}

/* ============================================================
   BLOG — Index grid + prose typography + post chrome
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 720px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.85rem 1.75rem 1.6rem;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  min-height: 19rem;
}
.blog-card__topic {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.blog-card__title {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--cream-100);
  font-weight: 600;
  margin: 0;
}
.blog-card__dek {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.65);
  margin: 0;
  flex-grow: 1;
}
.blog-card__cta {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-400);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 200ms ease, gap 200ms ease;
}
.blog-card:hover .blog-card__cta { color: var(--gold-500); gap: 0.7rem; }

/* Article body */
.blog-post-hero { padding-bottom: 3rem; }
.blog-post-hero .breadcrumbs { justify-content: center; display: flex; }

.blog-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  margin-top: 1.5rem;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.06em;
}
.blog-meta__author { color: var(--forest-400); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.blog-meta__dot { width: 4px; height: 4px; background: rgba(245, 240, 232, 0.3); border-radius: 50%; }

.blog-prose { max-width: 46rem; margin: 0 auto; }
.blog-prose > * { color: rgba(245, 240, 232, 0.82); }
.blog-prose p,
.blog-prose ul,
.blog-prose ol {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.82);
  margin: 0 0 1.4rem;
}
.blog-prose ul, .blog-prose ol { padding-left: 1.4rem; }
.blog-prose li { margin-bottom: 0.55rem; }
.blog-prose li::marker { color: var(--forest-400); }
.blog-prose strong { color: var(--cream-100); font-weight: 700; }
.blog-prose em { color: var(--gold-400); font-style: italic; }
.blog-prose a {
  color: var(--forest-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(82, 183, 136, 0.45);
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.blog-prose a:hover { color: var(--gold-500); text-decoration-color: var(--gold-500); }
.blog-prose h2 {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.18;
  color: var(--cream-100);
  margin: 3rem 0 1.1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.blog-prose h2 i, .blog-prose h2 em { font-style: italic; color: var(--forest-400); font-weight: 400; }
.blog-prose h3 {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--cream-100);
  margin: 2rem 0 0.85rem;
  font-weight: 600;
}
.blog-prose h4 {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 1.6rem 0 0.6rem;
}
.blog-prose blockquote {
  margin: 2rem 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 2px solid var(--forest-500);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.55;
  font-style: italic;
  color: rgba(245, 240, 232, 0.78);
}
.blog-prose blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(82, 183, 136, 0.7);
}
.blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 2rem;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  overflow: hidden;
}
.blog-prose th,
.blog-prose td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
.blog-prose th {
  background: rgba(26, 77, 46, 0.24);
  color: var(--cream-100);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.blog-prose tr:last-child td { border-bottom: 0; }
.blog-prose tr:nth-child(even) td { background: rgba(255, 255, 255, 0.015); }

.blog-callout {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.08) 0%, rgba(26, 77, 46, 0.18) 100%);
  border: 1px solid rgba(82, 183, 136, 0.22);
}
.blog-callout p { margin: 0; font-size: 0.95rem; color: rgba(245, 240, 232, 0.85); }
.blog-callout strong { color: var(--forest-400); }

.blog-cta-block {
  margin: 3rem auto 0;
  padding: 2.2rem 1.75rem;
  border-radius: 1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.35) 0%, rgba(13, 38, 24, 0.4) 100%);
  border: 1px solid rgba(82, 183, 136, 0.25);
}
.blog-cta-block h3 {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.6rem;
  color: var(--cream-100);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.blog-cta-block p {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.blog-cta-row { display: inline-flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.blog-related {
  max-width: 72rem;
  margin: 5rem auto 0;
  padding: 0 1.5rem;
}
.blog-related__title {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.5rem;
  color: var(--cream-100);
  margin: 0 0 1.5rem;
  text-align: center;
  font-weight: 600;
}
.blog-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .blog-related__grid { grid-template-columns: repeat(2, 1fr); } }

/* Compact FAQ used inside blog posts (reuses .faq-list/.faq-item) */
.blog-faq { max-width: 56rem; margin: 3.5rem auto 0; }
.blog-faq__title {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: var(--cream-100);
  margin: 0 0 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* ============================================================
   MOBILE + PERFORMANCE PASS
   - Tighter mobile padding so content has room
   - 44px+ touch targets in nav drawer
   - Horizontally scrollable tables on narrow viewports
   - Improved mobile drawer with a prominent Free Quote CTA
   - Reduced motion + low-data respect
   ============================================================ */
@media (max-width: 767px) {
  /* Tighter section padding on mobile */
  .section { padding: 3rem 1.25rem; }
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .page-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero__lede  { font-size: 0.98rem; }

  /* Brand text shrinks so the hamburger has breathing room */
  .site-nav__brand img { height: 40px; }
  .site-nav__brand-text { font-size: 1.05rem; }
  .site-nav__inner { padding: 0 1rem; height: 4.25rem; }

  /* Make nav-toggle a proper 44px touch target */
  .site-nav__toggle { width: 2.75rem; height: 2.75rem; }

  /* Drawer items: 48px+ touch zones */
  .site-nav__drawer { padding: 0.75rem 1.25rem 1.5rem; }
  .site-nav__drawer a {
    padding: 0.95rem 0.5rem;
    font-size: 0.88rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Card grids: 1 column, slimmer gap, tighter card padding */
  .cards-grid    { gap: 1.1rem; }
  .blog-grid     { gap: 1.1rem; }
  .service-card  { padding: 1.75rem 1.4rem; min-height: 14rem; }
  .blog-card     { padding: 1.5rem 1.4rem; min-height: 16rem; }

  /* CTAs: bigger touch targets, fill width when stacked */
  .cta-primary { padding: 1rem 1.6rem; font-size: 0.95rem; }
  .cta-secondary { padding: 0.95rem 1.5rem; font-size: 0.88rem; }
  .blog-cta-row { width: 100%; }
  .blog-cta-row .cta-primary,
  .blog-cta-row .cta-secondary { width: 100%; justify-content: center; }

  /* Blog typography slightly tighter for narrow screens */
  .blog-prose p,
  .blog-prose ul,
  .blog-prose ol { font-size: 0.97rem; line-height: 1.7; }
  .blog-prose h2 { margin-top: 2.25rem; }
  .blog-faq__title { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  /* FAQ on mobile: bigger tap area, less internal padding so questions wrap cleanly */
  .faq-item__btn { padding: 1.25rem 1.25rem; font-size: 1.02rem; }
  .faq-item__panel-inner { padding: 0 1.25rem 1.5rem; font-size: 0.92rem; }

  /* Footer: stack with breathing room */
  .site-footer__inner { padding: 3rem 1.25rem 0; }
  .site-footer__grid { gap: 2.25rem; padding-bottom: 2.5rem; }

  /* Form fields: 16px font-size minimum to stop iOS auto-zoom-on-focus */
  .field input,
  .field select,
  .field textarea { font-size: 16px; }
}

/* Horizontally scrollable wrapper for any wide table on small viewports.
   Wrap a table in this when you need it; the blog tables already work because
   of the .blog-prose table {width:100%} rule plus the smaller font, but
   complex tables with many columns can opt in to scroll. */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0 2rem;
}
.table-scroll table { margin: 0; min-width: 100%; }

/* Blog tables: enable horizontal scrolling when content exceeds viewport.
   Wrap the table itself in a scrolling container at narrow widths. */
@media (max-width: 600px) {
  .blog-prose table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    white-space: nowrap;
  }
  .blog-prose table th,
  .blog-prose table td { white-space: normal; }
}

/* Drawer CTA — surfaces the Free Quote chrome button INSIDE the mobile drawer.
   Add markup later: <a class="site-nav__drawer-cta btn-chrome" href="/contact">… */
.site-nav__drawer-cta {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* Site-glow on mobile: respect data-saver and reduce blur for perf */
@media (max-width: 767px) {
  .site-glow {
    width: 480px;
    height: 480px;
    filter: blur(40px);
  }
}
@media (prefers-reduced-data: reduce) {
  .site-glow { display: none; }
}

/* Image rendering hint — speeds up paint on tinier devices */
img { image-rendering: auto; }

/* Reduce motion catch-all */
@media (prefers-reduced-motion: reduce) {
  .home-hero__video,
  .home-hero__glow,
  .site-glow,
  .cta-primary,
  .card-chrome::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   UTILITY — Hide visually but keep accessible
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
