/* Prepared & Polished — Editorial Considered Density v2 */

:root {
  /* Color tokens — refined warm palette (Aesop / Le Labo / premium hospitality) */
  --bg-ivory: #F5EFE2;        /* warm polished cream */
  --bg-cream: #F5EFE2;        /* alias */
  --surface: #FFFFFF;
  --charcoal: #0F0E0C;        /* deep warm near-black */
  --slate: #3D3A33;           /* warm slate body */
  --muted: #7A746B;
  --emerald: #1A3B2E;         /* deep evergreen brand */
  --emerald-hover: #122A21;
  --border-subtle: #E5DECE;   /* warm taupe border */
  --border-strong: #D2C9B5;
  --copper: #C9A05F;          /* refined brass — slightly saturated for more energy */
  --brass: #C9A05F;           /* alias */
  --brass-bright: #DDB36F;    /* punchier brass for pop accents */
  --brass-hover: #A88349;
  --success: #2E7D5B;
  --error: #B23A2A;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Layout */
  --max: 1280px;
  --content: 760px;
  --header-h: 72px;

  /* Radius */
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --d-fast: 150ms;
  --d-med: 250ms;
  --d-slow: 400ms;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14, 22, 20, 0.04), 0 2px 4px rgba(14, 22, 20, 0.04);
  --shadow-md: 0 4px 12px rgba(14, 22, 20, 0.08), 0 8px 24px rgba(14, 22, 20, 0.06);
  --shadow-lg: 0 12px 32px rgba(14, 22, 20, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--bg-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

/* ============ Typography ============ */

h1 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin: 0 0 var(--s-4);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2.25rem, 5.5vw + 0.25rem, 4.25rem);
}
h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--charcoal);
  margin: 0 0 var(--s-4);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h2 { font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.4rem); letter-spacing: -0.025em; }
h3 { font-size: 1.2rem; line-height: 1.3; }
h4 { font-size: 1rem; }
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--emerald);
  font-weight: 400;
}

p { margin: 0 0 1em; color: var(--slate); }

.lede { font-size: 1.15rem; line-height: 1.55; max-width: 56ch; color: var(--slate); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: var(--s-3);
}
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color var(--d-fast) var(--ease);
}
a:hover { color: var(--emerald-hover); }

/* ============ Layout primitives ============ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
@media (min-width: 720px) {
  .container { padding: 0 var(--s-12); }
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: var(--s-2); top: var(--s-2);
  background: var(--charcoal); color: var(--bg-ivory);
  padding: var(--s-2) var(--s-4);
  z-index: 100;
}

.section { padding: var(--s-20) 0; }
.section-tight { padding: var(--s-12) 0; }
.section-loose { padding: var(--s-32) 0; }
@media (max-width: 720px) {
  .section { padding: var(--s-16) 0; }
  .section-loose { padding: var(--s-24) 0; }
}

.section-header {
  max-width: 740px;
  margin-bottom: var(--s-12);
}
.section-header p { font-size: 1.05rem; color: var(--slate); }

/* ============ Header ============ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner {
  display: flex; align-items: center;
  height: var(--header-h);
  gap: var(--s-4);
}
.brand {
  display: inline-flex; align-items: center;
  gap: var(--s-3);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand:hover { color: var(--charcoal); }
.brand-logo {
  display: block;
  max-width: 230px;
  height: auto;
}

.brand-mobile-text {
  display: none;
}

.footer-brand-text {
  font-weight: 700;
  color: var(--color-emerald, #123f32);
}

@media (max-width: 768px) {
  /* Show the actual horizontal logo on mobile, larger than desktop's
     230px is fine — at 220px it sits at ~35px tall, plenty readable. */
  .brand-logo {
    display: block;
    max-width: 220px;
  }
  .brand-mobile-text {
    display: none;
  }

  /* Solid (non-translucent) header background on mobile so the logo's
     emerald text contrasts unambiguously. */
  .site-header {
    background: var(--bg-ivory);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Mobile header: hide the entire CTA cluster — hero CTAs immediately
     below cover Call/Text, so duplicating in the header is noise. */
  .header-cta { display: none !important; }

  /* Mobile header sizing: tall enough to fit the logo + breathing room. */
  .header-inner {
    height: auto;
    min-height: 56px;
    padding: 0.5rem 0;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  /* User direction 2026-05-10: drop the bottom sticky CTA bar on mobile
     entirely. Hero CTAs already cover Call + Request-a-Quote. */
  .mobile-cta-bar { display: none !important; }
  body { padding-bottom: 0 !important; }
}

.primary-nav { margin: 0 auto; }
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: var(--s-6);
}
.primary-nav a {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
}
.primary-nav a:hover { color: var(--emerald); }

.header-cta {
  display: flex; align-items: center; gap: var(--s-2);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  width: 44px; height: 44px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--charcoal); margin: 2px 0;
  border-radius: 2px;
  transition: transform var(--d-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg-ivory);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-110%);
    transition: transform var(--d-med) var(--ease), visibility 0s linear var(--d-med);
    margin: 0;
    box-shadow: var(--shadow-md);
    visibility: hidden;
  }
  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--d-med) var(--ease), visibility 0s linear 0s;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: var(--s-2) var(--s-6) var(--s-6);
  }
  .primary-nav li {
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
  }
  .primary-nav li:last-child { border-bottom: 0; padding-top: var(--s-3); }
  .primary-nav a { display: block; padding: var(--s-4) 0; font-size: 1rem; }
  .header-cta .header-quote { display: none; }
}
@media (min-width: 881px) {
  .header-cta .header-call-mobile { display: none; }
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  min-height: 48px;
  transition: background-color var(--d-fast) var(--ease),
              border-color var(--d-fast) var(--ease),
              color var(--d-fast) var(--ease),
              transform var(--d-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--charcoal); color: var(--bg-ivory); }
.btn-primary:hover { background: #000; color: var(--bg-ivory); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--bg-ivory); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border-subtle);
}
.btn-ghost:hover { border-color: var(--charcoal); }
.btn-emerald { background: var(--emerald); color: var(--bg-ivory); }
.btn-emerald:hover { background: var(--emerald-hover); color: var(--bg-ivory); }
.btn-on-dark { background: var(--bg-ivory); color: var(--charcoal); }
.btn-on-dark:hover { background: #fff; color: var(--charcoal); }
.btn-on-dark.btn-secondary { background: transparent; color: var(--bg-ivory); border-color: rgba(248, 245, 238, 0.4); }
.btn-on-dark.btn-secondary:hover { background: rgba(248, 245, 238, 0.1); color: var(--bg-ivory); border-color: var(--bg-ivory); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; min-height: 40px; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; min-height: 56px; }
.btn-block { width: 100%; }

.icon { width: 18px; height: 18px; flex-shrink: 0; stroke-width: 1.75; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  padding: var(--s-12) 0 var(--s-16);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--border-subtle);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(248, 245, 238, 0.96) 0%, rgba(248, 245, 238, 0.85) 35%, rgba(248, 245, 238, 0.4) 65%, rgba(248, 245, 238, 0.15) 100%);
  z-index: -1;
}
.hero-content {
  display: grid; gap: var(--s-12);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-content {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s-16);
  }
}

.hero-text h1 { margin-bottom: var(--s-6); }
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--slate);
  max-width: 44ch;
  margin-bottom: var(--s-6);
}
.hero-bullets {
  list-style: none; padding: 0; margin: var(--s-6) 0 0;
  display: grid; gap: var(--s-3);
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}
.hero-bullets svg { color: var(--emerald); margin-top: 0.2em; flex-shrink: 0; }

/* Hero form card — HHH-style banner + brass CTA (high conversion energy) */
.hero-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 16px 40px rgba(14, 22, 20, 0.18), 0 4px 12px rgba(14, 22, 20, 0.1);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.hero-form-banner {
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 153, 104, 0.18), transparent 55%),
    linear-gradient(135deg, var(--emerald) 0%, #1f4a36 60%, var(--emerald-hover) 100%);
  padding: var(--s-8) var(--s-6) var(--s-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-form-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
}
.hero-form-banner h3 {
  font-family: var(--font-display);
  color: var(--bg-cream);
  font-size: clamp(1.65rem, 2vw + 0.5rem, 2rem);
  font-weight: 700;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hero-form-underline {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--brass);
  margin: 0 auto var(--s-3);
  border-radius: 2px;
  position: relative;
}
.hero-form-underline::before,
.hero-form-underline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--brass);
  transform: translateY(-50%);
}
.hero-form-underline::before { left: -28px; }
.hero-form-underline::after { right: -28px; }
.hero-form-banner-sub {
  font-family: var(--font-body);
  color: rgba(245, 239, 226, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-form-body {
  padding: var(--s-6);
}
.hero-form-body .form { gap: var(--s-3); }
.hero-form-card .form-meta {
  margin-top: var(--s-3);
  text-align: center;
}

/* Brass CTA button — high-contrast, energetic, action-driving */
.btn-quote-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  background: linear-gradient(180deg, #c8a571 0%, var(--brass) 50%, var(--brass-hover) 100%);
  color: var(--charcoal);
  border: 1px solid var(--brass-hover);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  min-height: 56px;
  box-shadow: 0 4px 12px rgba(184, 153, 104, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease), background var(--d-fast) var(--ease);
}
.btn-quote-cta:hover {
  background: linear-gradient(180deg, #d3b27e 0%, #b89968 50%, #9a7a4d 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 153, 104, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: var(--charcoal);
  text-decoration: none;
}
.btn-quote-cta:active { transform: translateY(0); }

/* ============================================
   BTN-QUOTE-POP — unified high-energy CTA used
   for EVERY "Request a Quote Now!" button across
   the site. Brass gradient + lifting shadow +
   hover shimmer sweep + sliding arrow.
   ============================================ */
.btn-quote-pop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #d4ad7e 0%, #b89968 50%, #9a7a4d 100%);
  color: var(--charcoal);
  border: 1px solid var(--brass-hover);
  border-radius: var(--radius);
  padding: 1rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  min-height: 52px;
  box-shadow:
    0 6px 18px rgba(184, 153, 104, 0.5),
    0 2px 4px rgba(14, 22, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease), background var(--d-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-quote-pop::before {
  /* Built-in arrow at the end of the label */
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F0E0C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  order: 2;
  transition: transform var(--d-fast) var(--ease);
}
.btn-quote-pop::after {
  /* Shimmer sweep on hover */
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-quote-pop:hover {
  background: linear-gradient(135deg, #e0bb87 0%, #c8a571 50%, #a78656 100%);
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(184, 153, 104, 0.6),
    0 4px 8px rgba(14, 22, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  color: var(--charcoal);
  text-decoration: none;
}
.btn-quote-pop:hover::before { transform: translateX(4px); }
.btn-quote-pop:hover::after { left: 130%; }
.btn-quote-pop:active { transform: translateY(0); }
.btn-quote-pop:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}

/* Size modifiers */
.btn-quote-pop.btn-sm,
.btn-quote-pop-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  min-height: 42px;
  letter-spacing: 0.04em;
  gap: 0.4rem;
}
.btn-quote-pop.btn-sm::before,
.btn-quote-pop-sm::before { width: 16px; height: 16px; }

.btn-quote-pop.btn-lg,
.btn-quote-pop-lg {
  padding: 1.15rem 1.85rem;
  font-size: 1.05rem;
  min-height: 60px;
  gap: 0.7rem;
}
.btn-quote-pop.btn-lg::before,
.btn-quote-pop-lg::before { width: 24px; height: 24px; }

.btn-quote-pop.btn-block,
.btn-quote-pop-block {
  width: 100%;
}

/* Subtle attention-pulse — once per ~6s, very gentle (only one pulse so it's noticeable not annoying) */
@keyframes brassNudge {
  0%, 88%, 100% { transform: translateY(0); }
  92% { transform: translateY(-2px); }
  96% { transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .btn-quote-pop:not(:hover):not(:focus-visible) {
    animation: brassNudge 6s ease-in-out infinite;
  }
}
.hero-call-link {
  display: block;
  text-align: center;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}
.hero-call-link:hover { color: var(--emerald); }

/* ============ Trust strip ============ */

.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--s-8) 0;
}
.trust-strip ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--s-6);
}
@media (min-width: 720px) {
  .trust-strip ul {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-12);
  }
}
.trust-strip li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.45;
}
.trust-strip svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ============ Service rows (alternating image+text) ============ */

.services-section { padding: var(--s-24) 0; }

.service-row {
  display: grid; gap: var(--s-8);
  align-items: center;
  padding: var(--s-12) 0;
  border-top: 1px solid var(--border-subtle);
}
.service-row:first-of-type { border-top: 0; padding-top: 0; }
@media (min-width: 880px) {
  .service-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-16);
  }
  .service-row.row-reverse > .service-image { order: 2; }
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border-subtle);
  position: relative;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease);
}
.service-row:hover .service-image img { transform: scale(1.02); }

.service-content > .eyebrow { color: var(--emerald); }
.service-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  font-weight: 500;
  margin-bottom: var(--s-3);
}
.service-anchor {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--emerald);
  background: rgba(20, 61, 42, 0.07);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: var(--s-4);
}
.service-content > p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: var(--s-5);
}
.service-content ul {
  list-style: none; padding: 0;
  margin: 0 0 var(--s-6);
  display: grid; gap: var(--s-2);
}
.service-content ul li {
  position: relative;
  padding-left: var(--s-5);
  color: var(--slate);
  font-size: 0.95rem;
}
.service-content ul li::before {
  content: '';
  position: absolute; left: 0; top: 0.7em;
  width: 12px; height: 1px;
  background: var(--emerald);
}
.service-actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
}

/* ============ Pull-quote moment (full-bleed) ============ */

.pull-quote {
  position: relative;
  padding: var(--s-32) 0;
  overflow: hidden;
}
.pull-quote-image {
  position: absolute; inset: 0;
  z-index: -2;
}
.pull-quote-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pull-quote-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14, 22, 20, 0.65) 0%, rgba(14, 22, 20, 0.35) 100%);
  z-index: 1;
}
.pull-quote-content { position: relative; z-index: 2; max-width: 680px; }
.pull-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw + 0.25rem, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bg-ivory);
  font-weight: 400;
  font-style: italic;
}
.pull-quote-attr {
  display: block;
  margin-top: var(--s-6);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  font-style: normal;
}

/* ============ Standards (commitments) ============ */

.standards-section { padding: var(--s-24) 0; }
.standards-grid {
  display: grid;
  gap: var(--s-12) var(--s-8);
}
@media (min-width: 720px) {
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
}
.standard-item {
  border-top: 1px solid var(--charcoal);
  padding-top: var(--s-4);
}
.standard-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: var(--s-3);
  letter-spacing: 0.05em;
}
.standard-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--s-2);
}
.standard-item p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}

/* ============ Process — DARK editorial cards w/ icons + brass numbers ============ */

.process-section {
  padding: var(--s-20) 0;
  background: var(--charcoal);
  color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.18), transparent 70%);
  pointer-events: none;
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26, 59, 46, 0.45), transparent 70%);
  pointer-events: none;
}
.process-section .container { position: relative; z-index: 1; }
.process-section .section-header h2 {
  color: var(--bg-cream);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
}
.process-section .section-header h2 em {
  color: var(--brass);
  font-style: italic;
}
.process-section .section-header .eyebrow { color: var(--brass); }
.process-section .section-header p { color: rgba(245, 239, 226, 0.75); }

.process-steps {
  display: grid; gap: var(--s-5);
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 720px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  background: rgba(245, 239, 226, 0.04);
  border: 1px solid rgba(245, 239, 226, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6) var(--s-6);
  position: relative;
  overflow: hidden;
  transition: transform var(--d-fast) var(--ease), background var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, transparent 100%);
}
.process-step:hover {
  transform: translateY(-4px);
  background: rgba(245, 239, 226, 0.08);
  border-color: var(--brass);
}
.process-step .step-num {
  position: absolute;
  top: var(--s-4);
  left: var(--s-5);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.02em;
}
.process-step .step-icon {
  position: absolute;
  top: var(--s-4);
  right: var(--s-5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 153, 104, 0.15);
  border: 1px solid rgba(184, 153, 104, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
}
.process-step .step-icon svg { width: 20px; height: 20px; }
.process-step h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-cream);
  letter-spacing: -0.02em;
  margin: var(--s-12) 0 var(--s-2);
}
.process-step p {
  font-size: 0.95rem;
  color: rgba(245, 239, 226, 0.75);
  line-height: 1.55;
  margin: 0;
}
.process-step p strong { color: var(--bg-cream); font-weight: 700; }

/* ============ Areas (dark editorial section) ============ */

.areas-section {
  background: var(--charcoal);
  color: var(--bg-ivory);
  padding: var(--s-24) 0;
}
.areas-section h2 { color: var(--bg-ivory); }
.areas-section .eyebrow { color: var(--copper); }
.areas-section p { color: rgba(248, 245, 238, 0.75); }
.areas-section .section-header p { font-size: 1.1rem; max-width: 56ch; }

.areas-grid {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-8);
}
@media (min-width: 720px) {
  .areas-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 719px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
.area-link {
  display: block;
  background: rgba(248, 245, 238, 0.04);
  border: 1px solid rgba(248, 245, 238, 0.12);
  border-radius: var(--radius);
  padding: var(--s-5) var(--s-4);
  color: var(--bg-ivory);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  transition: background var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease), transform var(--d-fast) var(--ease);
}
.area-link:hover {
  background: rgba(248, 245, 238, 0.08);
  border-color: var(--copper);
  color: var(--bg-ivory);
  transform: translateY(-2px);
}

/* ============ Launch note ============ */

.launch-section { padding: var(--s-20) 0; }
.launch-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--s-12);
  display: grid; gap: var(--s-6);
}
@media (min-width: 720px) {
  .launch-card { grid-template-columns: 1fr auto; align-items: center; gap: var(--s-12); }
}
.launch-card h2 { font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem); margin-bottom: var(--s-3); }
.launch-card p { font-size: 1.05rem; max-width: 56ch; margin: 0; }

/* ============ FAQ ============ */

.faq-section { padding: var(--s-20) 0; }
.faq-list {
  display: grid; gap: 0;
  max-width: 880px;
}
.faq-item {
  border-top: 1px solid var(--border-subtle);
}
.faq-item:last-child { border-bottom: 1px solid var(--border-subtle); }
.faq-item summary {
  padding: var(--s-6) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--emerald);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--d-med) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-bottom: var(--s-6);
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.6;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-footer {
  margin-top: var(--s-8);
  display: flex; align-items: center; gap: var(--s-3);
  font-size: 0.95rem;
}

/* ============ Final CTA (full-bleed photo) ============ */

.final-cta {
  position: relative;
  padding: var(--s-24) 0;
  overflow: hidden;
}
.final-cta-image {
  position: absolute; inset: 0;
  z-index: -2;
}
.final-cta-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.final-cta-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(248, 245, 238, 0.96) 0%, rgba(248, 245, 238, 0.85) 40%, rgba(248, 245, 238, 0.5) 100%);
}
.final-cta-grid {
  display: grid; gap: var(--s-12);
  align-items: center;
}
@media (min-width: 880px) {
  .final-cta-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-16); }
}
.final-cta h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem); margin-bottom: var(--s-4); }
.final-cta-text p { font-size: 1.15rem; max-width: 44ch; }

/* ============ Forms ============ */

.form { display: grid; gap: var(--s-3); }
.form-row { display: grid; gap: 0.4rem; }
.form-row label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.form-row .help { font-size: 0.78rem; color: var(--muted); margin-top: 0; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease);
  min-height: 48px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(20, 61, 42, 0.12);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7370' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-grid { display: grid; gap: var(--s-3); }
@media (min-width: 720px) {
  .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.checkbox-row {
  display: flex; align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-row input {
  width: 18px; height: 18px;
  margin-top: 0.15em;
  accent-color: var(--emerald);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-row a { color: var(--emerald); border-bottom: 1px solid currentColor; }

.checkbox-grid { display: grid; gap: var(--s-2); grid-template-columns: 1fr; }
@media (min-width: 600px) { .checkbox-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .checkbox-grid { grid-template-columns: 1fr 1fr 1fr; } }

.honeypot { position: absolute; left: -10000px; top: auto; height: 1px; width: 1px; overflow: hidden; }

.field-error {
  color: var(--error);
  font-size: 0.8rem;
  min-height: 0;
}
.form-error, .form-success {
  display: none;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.form-error {
  background: rgba(178, 58, 42, 0.08);
  border: 1px solid rgba(178, 58, 42, 0.3);
  color: var(--error);
}
.form-success {
  background: rgba(46, 125, 91, 0.08);
  border: 1px solid rgba(46, 125, 91, 0.3);
  color: var(--success);
}
.form-error.is-visible, .form-success.is-visible { display: block; }

.form-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.form-meta a { color: var(--muted); border-bottom: 1px solid var(--border-subtle); }

/* ============ Footer ============ */

.site-footer {
  background: var(--charcoal);
  color: rgba(248, 245, 238, 0.7);
  padding: var(--s-16) 0 var(--s-6);
  margin-top: 0;
}
.site-footer h3 {
  font-family: var(--font-body);
  color: var(--bg-ivory);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.site-footer a { color: rgba(248, 245, 238, 0.7); }
.site-footer a:hover { color: var(--bg-ivory); }
.footer-grid {
  display: grid; gap: var(--s-12);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.6fr; }
}
.footer-brand {
  font-family: var(--font-display);
  color: var(--bg-ivory);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--s-3);
  display: flex; align-items: center; gap: var(--s-3);
}
.footer-legal {
  font-size: 0.85rem;
  color: rgba(248, 245, 238, 0.5);
  line-height: 1.6;
  margin: 0;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--s-2);
  font-size: 0.92rem;
}
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(248, 245, 238, 0.1);
  margin-top: var(--s-12);
  padding-top: var(--s-6);
  font-size: 0.8rem;
}
.footer-contact a { color: var(--bg-ivory); }

/* ============ Mobile sticky CTA bar ============ */

.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--bg-ivory);
  border-top: 1px solid var(--border-subtle);
  padding: var(--s-3) var(--s-4) calc(var(--s-3) + env(safe-area-inset-bottom));
  gap: var(--s-2);
  box-shadow: 0 -4px 20px rgba(14, 22, 20, 0.08);
}
.mobile-cta-bar .btn {
  flex: 1;
  min-height: 48px;
  font-size: 0.95rem;
  padding-left: 0.6rem; padding-right: 0.6rem;
}
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 88px; }
}

/* ============ Scroll reveal ============ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--d-slow) var(--ease), transform var(--d-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Util ============ */

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}
.text-center { text-align: center; }
.tag-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-3); }

/* ============ Backwards-compat for unrebuilt pages ============ */
/* Keeps old service/area/FAQ pages from looking broken until chunks 2 & 3 */

.hero-grid { display: grid; gap: var(--s-8); }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-12); align-items: center; } }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }
.trust-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.trust-bullets li { padding-left: var(--s-6); position: relative; color: var(--slate); }
.trust-bullets li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: var(--s-6); display: flex; flex-direction: column; transition: border-color var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease); }
.card:hover { border-color: var(--charcoal); box-shadow: var(--shadow-md); }
.card h3 { font-family: var(--font-display); }
.card p { color: var(--slate); flex-grow: 1; }
.card-icon { width: 44px; height: 44px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: rgba(20,61,42,0.08); color: var(--emerald); margin-bottom: var(--s-3); font-weight: 700; font-size: 1rem; font-family: var(--font-body); }
.card-actions { margin-top: var(--s-4); display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.card-actions .link { font-weight: 600; color: var(--charcoal); }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding-left: var(--s-6); position: relative; margin-bottom: var(--s-2); color: var(--charcoal); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.4em; width: 16px; height: 16px; background: rgba(20,61,42,0.12); border-radius: 4px; }
.checklist li::after { content: ""; position: absolute; left: 4px; top: 0.6em; width: 8px; height: 4px; border-left: 2px solid var(--emerald); border-bottom: 2px solid var(--emerald); transform: rotate(-45deg); }
.bulletlist { padding-left: 1.25rem; }
.bulletlist li { margin-bottom: 0.4rem; color: var(--slate); }
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: var(--s-4); }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: var(--s-5); counter-increment: step; }
.steps li::before { content: counter(step); display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--emerald); color: var(--bg-ivory); font-weight: 700; margin-bottom: var(--s-3); font-family: var(--font-body); }
.steps h3 { margin: 0 0 0.4rem; }
.steps p { color: var(--slate); margin: 0; }
.area-list { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.area-list a { background: var(--surface); border: 1px solid var(--border-subtle); padding: 0.45rem 0.85rem; border-radius: 999px; font-size: 0.9rem; color: var(--charcoal); }
.area-list a:hover { border-color: var(--emerald); text-decoration: none; }
.area-card { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: var(--s-5); }
.area-card h3 { margin-bottom: 0.4rem; }
.area-card p { color: var(--slate); margin-bottom: var(--s-3); }
.cta-banner { background: var(--charcoal); color: var(--bg-ivory); border-radius: var(--radius-lg); padding: var(--s-10) var(--s-6); text-align: center; }
.cta-banner h2 { color: var(--bg-ivory); }
.cta-banner p { color: rgba(248,245,238,0.85); }
.cta-banner .btn-primary { background: var(--bg-ivory); color: var(--charcoal); }
.cta-banner .btn-primary:hover { background: #fff; color: var(--charcoal); }
.cta-banner .btn-secondary { background: transparent; color: var(--bg-ivory); border-color: rgba(248,245,238,0.4); }
.cta-banner .btn-secondary:hover { background: rgba(248,245,238,0.1); color: var(--bg-ivory); }
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--s-8); }
.prose h3 { margin-top: var(--s-6); }
.prose p, .prose li { color: var(--charcoal); }
section.alt { background: var(--surface); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
section.tinted { background: var(--surface); }
section.tight { padding: var(--s-12) 0; }
section { padding: var(--s-16) 0; }
section.section { padding: var(--s-20) 0; }
.hero { padding-top: var(--s-12); padding-bottom: var(--s-12); }
.tag { background: var(--surface); border: 1px solid var(--border-subtle); color: var(--slate); border-radius: 999px; padding: 0.25rem 0.7rem; font-size: 0.82rem; }
