/* ══════════════════════════════════════════
   FONT
══════════════════════════════════════════ */
@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-display: swap;
  font-weight: 1 1000;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  /* ── Core palette ── */
  --navy:         #2F4156;   /* primary: headers, buttons, navbar, footer */
  --teal:         #567C8D;   /* secondary: icons, accents, hover states */
  --sky:          #C8D9E6;   /* light backgrounds, cards, section fills */
  --beige:        #F5EFEB;   /* soft backgrounds, containers, highlights */
  --white:        #FFFFFF;   /* main page background, cards, content */

  /* ── Semantic aliases (replaces old brand/ink/muted/navy-soft etc.) ── */
  --brand:        var(--navy);
  --brand-dark:   #1e2d3d;           /* darkened navy for deeper contrast */
  --accent:       var(--teal);
  --accent-light: rgba(86,124,141,.12);
  --accent-mid:   rgba(86,124,141,.28);

  --dark:         var(--navy);
  --dark-mid:     #3a5068;           /* navy midtone for layered surfaces */

  --ink:          #1C2B38;           /* near-black text, navy-tinted */
  --muted:        #6B8091;           /* muted teal-grey for secondary text */
  --text:         var(--ink);
  --text-muted:   var(--muted);
  --text-light:   rgba(28,43,56,.38);

  --surface:      var(--beige);
  --surface-card: var(--white);
  --cream:        var(--beige);

  --pill:         var(--sky);        /* pill/tag backgrounds */
  --card-border:  #D8E6EE;           /* sky-tinted border */
  --border:       #D8E6EE;
  --border-soft:  var(--card-border);

  --star:         #C99A3B;           /* keep gold star rating as-is */

  /* ── Radius scale ── */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  /* ── Shadow scale (navy-tinted) ── */
  --shadow-sm: 0 2px 12px rgba(47,65,86,.07);
  --shadow-md: 0 8px 32px rgba(47,65,86,.12);
  --shadow-lg: 0 20px 60px rgba(47,65,86,.18);

  /* ── Typography ── */
  --font-display: 'Google Sans Flex', Georgia, serif;
  --font-body:    'Google Sans Flex', system-ui, sans-serif;

  /* ── Fluid spacing scale ── */
  --space-xs:  clamp(.5rem,  1vw,  .75rem);
  --space-sm:  clamp(.75rem, 1.5vw, 1.25rem);
  --space-md:  clamp(1.25rem,2.5vw, 2rem);
  --space-lg:  clamp(2rem,   4vw,  3.5rem);
  --space-xl:  clamp(3rem,   6vw,  7rem);
  --space-2xl: clamp(4rem,   8vw,  9rem);
}
/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { font-family: 'Google Sans Flex','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; }
html { scroll-behavior: smooth; }
body { color: var(--ink); background: var(--cream); overflow-x: hidden; }

img, video, svg { max-width: 100%; display: block; }

#locations { will-change: opacity, transform; }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.reveal-word {
  color: #F1E9D4; font-weight: 300;
  transition: color .15s linear; display: inline-block;
}
.reveal-word.is-bold { font-weight: 600; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--pill); color: var(--ink); font-weight: 500; font-size: 14px;
  padding: .75rem 1.5rem; border-radius: 999px; text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #c4dab2; transform: translateY(-1.5px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy); color: #fff; font-weight: 500; font-size: 14px;
  padding: .75rem 1.5rem; border-radius: 999px; text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-dark:hover { background: #1c3021; transform: translateY(-1.5px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .65rem 1.4rem;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--card-border);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--brand); background: var(--green-light); transform: translateY(-1px); }

.section-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
  color: var(--brand-dark); background: #E8EFE0;
  padding: .3rem .85rem; border-radius: 999px;
  margin-bottom: 1.25rem; text-transform: uppercase;
}

.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--ink);
  transition: width .3s ease;
}
.nav-link:hover::after { width: 100%; }

.card-hover { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -12px rgba(28,34,18,.12); border-color: #D9DEC8; }

.btn-lift { transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; }
.btn-lift:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(28,34,18,.25); }

.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.img-zoom:hover img { transform: scale(1.06); }

/* ── REVEAL / FADE ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.stagger.in-view > *, .stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(1), .stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.in-view > *:nth-child(2), .stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.stagger.in-view > *:nth-child(3), .stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.stagger.in-view > *:nth-child(4), .stagger.visible > *:nth-child(4) { transition-delay: .35s; }
.stagger.in-view > *:nth-child(5), .stagger.visible > *:nth-child(5) { transition-delay: .45s; }
.stagger.in-view > *:nth-child(6), .stagger.visible > *:nth-child(6) { transition-delay: .55s; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-up, .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ── FORM ELEMENTS ── */
input::placeholder, textarea::placeholder { color: #9C9880; }
input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(63,107,51,.18);
  border-color: var(--brand);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #D8D2BC; border-radius: 8px; }

/* ══════════════════════════════════════════
   HAMBURGER MENU
══════════════════════════════════════════ */
.menu-trigger {
  position: relative; width: 44px; height: 44px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: #567C8D; transition: background-color .25s ease, transform .25s ease;
  cursor: pointer; border: none;
}
.menu-trigger:hover { background: #C8D9E6; }
.menu-trigger .bar {
  position: absolute; left: 13px; width: 18px; height: 2px; border-radius: 2px;
  background-color: #ffffff;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease, top .35s cubic-bezier(.2,.8,.2,1);
}
.menu-trigger .bar1 { top: 16px; }
.menu-trigger .bar2 { top: 22px; }
.menu-trigger .bar3 { top: 28px; }
.menu-trigger.is-open .bar1 { top: 22px; transform: rotate(45deg); }
.menu-trigger.is-open .bar2 { opacity: 0; }
.menu-trigger.is-open .bar3 { top: 22px; transform: rotate(-45deg); }

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
#sidebarOverlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(15,20,12,.55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
#sidebarOverlay.is-open { opacity: 1; pointer-events: auto; }

#sidebar {
  position: fixed; top: 0; right: 0; height: 100%; z-index: 90;
  width: min(86vw, 380px); background: var(--navy); color: #CBD3BC;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.16,.84,.24,1);
  box-shadow: -30px 0 60px -20px rgba(0,0,0,.35);
  overflow-y: auto;
}
#sidebar.is-open { transform: translateX(0); }

#sidebar .side-link {
  display: flex; align-items: baseline; gap: 14px;
  font-size: clamp(1.25rem, 4vw, 1.6rem); font-weight: 600; letter-spacing: -0.01em;
  color: #E7ECDC; padding: .55rem 0;
  opacity: 0; transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease, color .25s ease, padding-left .25s ease;
}
#sidebar.is-open .side-link { opacity: 1; transform: translateX(0); }
#sidebar.is-open .side-link:nth-child(1) { transition-delay: .12s; }
#sidebar.is-open .side-link:nth-child(2) { transition-delay: .18s; }
#sidebar.is-open .side-link:nth-child(3) { transition-delay: .24s; }
#sidebar.is-open .side-link:nth-child(4) { transition-delay: .3s; }
#sidebar .side-link:hover { color: #fff; padding-left: 8px; }
#sidebar .side-link .idx { font-size: .85rem; font-weight: 500; color: #6E7A5E; }

#sidebarClose {
  width: 38px; height: 38px; border-radius: 9999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #E7ECDC;
  transition: background-color .25s ease, transform .3s ease;
  border: none; cursor: pointer;
}
#sidebarClose:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }

body.sidebar-locked { overflow: hidden; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,234,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 clamp(1rem, 4vw, 2rem); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.topnav-logo {
  font-weight: 700; font-size: clamp(15px, 2.5vw, 18px);
  color: var(--brand-dark); text-decoration: none; letter-spacing: -.03em;
  flex-shrink: 0;
}
.topnav-links { display: flex; gap: clamp(1rem, 2.5vw, 2rem); }
.topnav-links a { font-size: 13.5px; color: var(--muted); text-decoration: none; transition: color .2s; }
.topnav-links a:hover, .topnav-links a.active { color: var(--ink); }
.topnav-cta { display: flex; gap: .75rem; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: var(--navy); overflow: hidden; position: relative;
  min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg-img { position: absolute; inset: 0; background: center/cover no-repeat; opacity: .18; }
.hero-blob { position: absolute; border-radius: 999px; background: var(--brand); opacity: .12; filter: blur(80px); }
.hero-blob-1 { width: min(600px, 80vw); height: min(600px, 80vw); top: -200px; right: -100px; }
.hero-blob-2 { width: min(400px, 60vw); height: min(400px, 60vw); bottom: -100px; left: -80px; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 5vw, 4rem);
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 2.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb span { color: rgba(255,255,255,.85); }

.hero-title {
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  font-weight: 600; letter-spacing: -.04em;
  line-height: 1.0; color: #fff; margin-bottom: 1.5rem;
}
.hero-title em { font-style: normal; color: #A8D08E; }

.hero-subtitle {
  font-size: clamp(14px, 2vw, 16px); color: rgba(255,255,255,.65);
  line-height: 1.7; max-width: 420px; margin-bottom: 2rem;
}

/* hero grid layouts */
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end;
}
.hero-right { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.hero-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px); border-radius: 20px;
  padding: 1.75rem 2rem; text-align: right; width: 240px;
}
.hero-stat-card .num { font-size: 2.5rem; font-weight: 600; color: #A8D08E; letter-spacing: -.04em; }
.hero-stat-card .label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: .35rem; line-height: 1.4; }

.hero-bottom-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem clamp(1.25rem, 4vw, 2rem);
  display: flex; justify-content: center;
}
.hero-bottom-inner {
  max-width: 1200px; width: 100%;
  display: flex; gap: 3rem; align-items: center; flex-wrap: wrap;
}
.hero-tag { display: flex; align-items: center; gap: .5rem; font-size: 12.5px; color: rgba(255,255,255,.5); }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #A8D08E; }

/* services page hero split */
.hero-content-split { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: end; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-service-chips { display: flex; flex-direction: column; gap: .85rem; align-items: flex-end; }
.service-chip {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px); border-radius: 16px;
  padding: 1rem 1.5rem; color: rgba(255,255,255,.85); font-size: 13.5px; width: 100%;
}
.service-chip-dot { width: 8px; height: 8px; border-radius: 50%; background: #A8D08E; flex-shrink: 0; }
.service-chip-label { font-weight: 500; }
.service-chip-count { margin-left: auto; font-size: 11px; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════
   FEATURED SERVICES — BENTO GRID
══════════════════════════════════════════ */
.services-featured { padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem); max-width: 1200px; margin: 0 auto; }
.services-featured-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; gap: 1.5rem; flex-wrap: wrap;
}
.services-featured-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600; letter-spacing: -.03em; line-height: 1.2; max-width: 400px;
}
.services-featured-sub { font-size: 15px; color: var(--muted); max-width: 340px; line-height: 1.75; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 240px;
  gap: 1.25rem;
}
.bento-card {
  border-radius: 28px; overflow: hidden;
  position: relative; cursor: default;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px -20px rgba(28,34,18,.18); }

.bento-card.b1 { grid-column: span 2; grid-row: span 1; background: var(--navy); }
.bento-card.b2 { grid-column: span 1; background: #E8EFE0; border: 1px solid #c8ddb5; }
.bento-card.b3 { grid-column: span 1; background: #fff; border: 1px solid var(--card-border); }
.bento-card.b4 { grid-column: span 1; background: #fff; border: 1px solid var(--card-border); }
.bento-card.b5 { grid-column: span 2; grid-row: span 1; overflow: hidden; position: relative; }
.bento-card.b6 { grid-column: span 1; background: var(--brand-dark); }

.bento-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.bento-card:hover .bento-card-img { transform: scale(1.05); }
.bento-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,36,26,.85) 0%, rgba(22,36,26,.5) 100%); }

.bento-card-body {
  position: relative; z-index: 2; padding: 2rem; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0;
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-card.b1 .bento-icon { background: rgba(255,255,255,.1); }
.bento-card.b1 .bento-icon svg { stroke: #A8D08E; }
.bento-card.b2 .bento-icon { background: rgba(63,107,51,.15); }
.bento-card.b2 .bento-icon svg { stroke: var(--brand-dark); }
.bento-card.b3 .bento-icon, .bento-card.b4 .bento-icon { background: #E8EFE0; }
.bento-card.b3 .bento-icon svg, .bento-card.b4 .bento-icon svg { stroke: var(--brand-dark); }
.bento-card.b6 .bento-icon { background: rgba(255,255,255,.12); }
.bento-card.b6 .bento-icon svg { stroke: #A8D08E; }

.bento-tag {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: .25rem .65rem; border-radius: 999px; margin-bottom: .75rem;
}
.bento-card.b1 .bento-tag, .bento-card.b5 .bento-tag, .bento-card.b6 .bento-tag { background: rgba(168,208,142,.15); color: #A8D08E; }
.bento-card.b2 .bento-tag, .bento-card.b3 .bento-tag, .bento-card.b4 .bento-tag { background: #E8EFE0; color: var(--brand-dark); }

.bento-title { font-size: 16px; font-weight: 600; margin-bottom: .5rem; line-height: 1.3; }
.bento-card.b1 .bento-title, .bento-card.b5 .bento-title, .bento-card.b6 .bento-title { color: #fff; }
.bento-desc { font-size: 13px; line-height: 1.6; }
.bento-card.b1 .bento-desc, .bento-card.b5 .bento-desc, .bento-card.b6 .bento-desc { color: rgba(255,255,255,.6); }
.bento-card.b2 .bento-desc, .bento-card.b3 .bento-desc, .bento-card.b4 .bento-desc { color: var(--muted); }
.bento-card.b1 .bento-title { font-size: 22px; }
.bento-card.b1 .bento-desc { font-size: 14px; max-width: 320px; }

.bento-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s; flex-shrink: 0;
}
.bento-card.b1 .bento-arrow { background: rgba(255,255,255,.1); }
.bento-card.b1 .bento-arrow svg { stroke: #fff; }
.bento-card.b2 .bento-arrow, .bento-card.b3 .bento-arrow, .bento-card.b4 .bento-arrow { background: #E8EFE0; }
.bento-card.b2 .bento-arrow svg, .bento-card.b3 .bento-arrow svg, .bento-card.b4 .bento-arrow svg { stroke: var(--brand-dark); }
.bento-card.b6 .bento-arrow { background: rgba(255,255,255,.12); }
.bento-card.b6 .bento-arrow svg { stroke: #A8D08E; }
.bento-card:hover .bento-arrow { transform: translate(3px, -3px); }
.bento-arrow svg { width: 15px; height: 15px; }
.bento-bottom { display: flex; align-items: flex-end; justify-content: space-between; }

/* ══════════════════════════════════════════
   WHY CHOOSE — ALTERNATING BLOCKS
══════════════════════════════════════════ */
.why-alt {
  background: var(--surface); border-radius: 32px;
  margin: 0 clamp(.75rem, 2vw, 1.5rem);
  padding: var(--space-xl) clamp(1.25rem, 4vw, 3rem);
}
.why-alt-inner { max-width: 1200px; margin: 0 auto; }
.why-alt-header { text-align: center; margin-bottom: 5rem; }
.why-alt-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 1rem; }
.why-alt-sub { font-size: 15px; color: var(--muted); max-width: 460px; margin: 0 auto; }

.alt-blocks { display: flex; flex-direction: column; gap: 4rem; }
.alt-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.alt-block.reverse { direction: rtl; }
.alt-block.reverse > * { direction: ltr; }

.alt-visual {
  border-radius: 28px; overflow: hidden; background: var(--navy);
  aspect-ratio: 4/3; position: relative;
}
.alt-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: transform .4s ease;
}

.alt-block:hover .alt-visual-img {
  transform: scale(1.05);
}
.alt-visual-content {
  position: relative; z-index: 2; padding: 2.5rem; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.alt-visual-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #A8D08E; margin-bottom: .5rem; }
.alt-visual-title { font-size: 1.75rem; font-weight: 600; color: #fff; letter-spacing: -.03em; line-height: 1.2; }

.alt-text { padding: 1rem 0; }
.alt-text-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 1rem; }
.alt-text h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.25; margin-bottom: 1.25rem; }
.alt-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }

.feature-pills { display: flex; flex-direction: column; gap: .75rem; }
.feature-pill {
  display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 14px; padding: .85rem 1.25rem;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.feature-pill:hover { border-color: #c5d8b2; background: #f7faf4; }
.feature-pill-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: #E8EFE0; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-pill-icon svg { width: 14px; height: 14px; stroke: var(--brand-dark); }

/* ══════════════════════════════════════════
   PROCESS TIMELINE
══════════════════════════════════════════ */
.process-section { padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem); max-width: 1200px; margin: 0 auto; }
.process-header { margin-bottom: 4rem; }
.process-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 1rem; }
.process-sub { font-size: 15px; color: var(--muted); max-width: 400px; }

.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-track::before {
  content: ''; position: absolute; top: 26px; left: 26px; right: 26px; height: 2px;
  background: linear-gradient(to right, var(--brand) 0%, #c8ddb5 100%);
}
.process-step { padding: 0 1rem; position: relative; }
.process-step-dot {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2.5px solid var(--brand); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--brand-dark);
  margin-bottom: 1.5rem; position: relative; z-index: 2;
  transition: background .3s, color .3s, transform .3s;
}
.process-step:hover .process-step-dot { background: var(--brand); color: #fff; transform: scale(1.1); }
.process-step-title { font-size: 14.5px; font-weight: 600; margin-bottom: .5rem; line-height: 1.3; }
.process-step-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.process-step-badge {
  display: inline-block; margin-top: .75rem;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brand-dark);
  background: #E8EFE0; padding: .2rem .6rem; border-radius: 999px;
}

/* ══════════════════════════════════════════
   SERVICE CATEGORIES
══════════════════════════════════════════ */
.categories-section {
  background: var(--navy); border-radius: 32px;
  margin: 0 clamp(.75rem, 2vw, 1.5rem);
  padding: var(--space-xl) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden; position: relative;
}
.categories-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: rgba(92,138,60,.08); filter: blur(80px);
}
.categories-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.categories-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; gap: 1.5rem; flex-wrap: wrap;
}
.categories-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; color: #fff; line-height: 1.2; }
.categories-sub { font-size: 14.5px; color: rgba(255,255,255,.5); max-width: 280px; line-height: 1.7; }

.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cat-card {
  border-radius: 24px; overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  transition: border-color .3s, background .3s, transform .3s; cursor: default;
}
.cat-card:hover { border-color: rgba(168,208,142,.35); background: rgba(255,255,255,.08); transform: translateY(-4px); }
.cat-card-inner { padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.cat-card.full { grid-column: span 2; }
.cat-card.full .cat-card-inner { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.cat-num { font-size: 4rem; font-weight: 700; letter-spacing: -.06em; color: rgba(168,208,142,.15); line-height: 1; }
.cat-card.full .cat-num { font-size: 6rem; }
.cat-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #A8D08E; margin-bottom: .65rem; }
.cat-title { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: .75rem; letter-spacing: -.02em; line-height: 1.25; }
.cat-card.full .cat-title { font-size: 26px; }
.cat-desc { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.5rem; }
.cat-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cat-tag { font-size: 11px; color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: .25rem .7rem; }
.cat-cta { display: inline-flex; align-items: center; gap: .5rem; color: #A8D08E; font-size: 13px; font-weight: 500; text-decoration: none; transition: gap .2s; }
.cat-cta:hover { gap: .8rem; }
.cat-cta svg { width: 14px; height: 14px; stroke: #A8D08E; }

/* ══════════════════════════════════════════
   STATISTICS
══════════════════════════════════════════ */
.stats-section { padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem); max-width: 1200px; margin: 0 auto; }
.stats-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.stats-left h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 1.25rem; }
.stats-left p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.stats-trust {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; border-radius: 18px;
  background: #fff; border: 1px solid var(--card-border);
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}
.stats-trust-avatars { display: flex; }
.stats-trust-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; overflow: hidden; margin-left: -8px; }
.stats-trust-avatar:first-child { margin-left: 0; }
.stats-trust-avatar img { width: 100%; height: 100%; object-fit: cover; }
.stats-trust-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); }

.stats-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-card {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 24px; padding: 2.25rem;
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(28,34,18,.12); }
.stat-card:first-child { background: var(--navy); border-color: transparent; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--brand-dark); letter-spacing: -.04em; line-height: 1;
  display: block; margin-bottom: .5rem;
}
.stat-card:first-child .stat-num { color: #A8D08E; }
.stat-label { font-size: 13px; color: var(--muted); }
.stat-card:first-child .stat-label { color: rgba(255,255,255,.55); }
.stat-trend { margin-top: 1rem; font-size: 11.5px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: .3rem; }
.stat-card:first-child .stat-trend { color: #A8D08E; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem); max-width: 1200px; margin: 0 auto; }
.faq-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left h2 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 1rem; }
.faq-left p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.faq-contact {
  display: flex; align-items: center; gap: .85rem;
  background: var(--navy); border-radius: 18px; padding: 1.25rem 1.5rem;
  color: rgba(255,255,255,.75); font-size: 13.5px; text-decoration: none;
  transition: background .2s;
}
.faq-contact:hover { background: var(--brand-dark); }
.faq-contact-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-contact-icon svg { width: 16px; height: 16px; stroke: #A8D08E; }
.faq-contact-label { font-weight: 500; color: #fff; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--card-border); border-radius: 20px; background: #fff; overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: #c5d8b2; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.75rem; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--ink);
  user-select: none; gap: 1rem;
}
.faq-chevron {
  width: 30px; height: 30px; border-radius: 50%;
  background: #E8EFE0; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .25s, transform .35s;
}
.faq-item.open .faq-chevron { background: var(--brand); transform: rotate(180deg); }
.faq-chevron svg { width: 13px; height: 13px; stroke: var(--brand-dark); transition: stroke .25s; }
.faq-item.open .faq-chevron svg { stroke: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.8,.2,1), padding .45s ease;
  padding: 0 1.75rem; font-size: 14px; color: var(--muted); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.75rem 1.5rem; }

/* ══════════════════════════════════════════
   OUR STORY
══════════════════════════════════════════ */
.story { padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem); max-width: 1200px; margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.story-left { position: sticky; top: 100px; }
.story-img-main { border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.story-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.story-img-main:hover img { transform: scale(1.04); }
.story-float-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--cream); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 40px -12px rgba(28,34,18,.18);
}
.story-float-card .year { font-size: 1.75rem; font-weight: 700; color: var(--brand-dark); letter-spacing: -.04em; }
.story-float-card .year-label { font-size: 11.5px; color: var(--muted); margin-top: .25rem; }
.story-heading { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 2rem; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.timeline-item { display: flex; gap: 1.25rem; padding-bottom: 2rem; position: relative; }
.timeline-item:not(:last-child)::after {
  content: ''; position: absolute; left: 15px; top: 36px;
  width: 1px; bottom: 0; background: linear-gradient(to bottom, var(--brand), transparent);
}
.tl-dot {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: #E8EFE0; border: 2px solid var(--brand);
  display: flex; align-items: center; justify-content: center; margin-top: .2rem;
}
.tl-dot svg { width: 13px; height: 13px; }
.tl-year { font-size: 11.5px; font-weight: 700; color: var(--brand-dark); letter-spacing: .04em; margin-bottom: .35rem; }
.tl-title { font-size: 15.5px; font-weight: 600; margin-bottom: .4rem; }
.tl-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   MISSION & VISION
══════════════════════════════════════════ */
.mv-section { padding: 0 clamp(.75rem, 2vw, 1.5rem) var(--space-xl); }
.mv-wrap {
  max-width: 1200px; margin: 0 auto;
  background: var(--navy); border-radius: 32px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; position: relative;
}
.mv-card { padding: clamp(2rem, 5vw, 4rem); position: relative; z-index: 1; }
.mv-card:first-child { border-right: 1px solid rgba(255,255,255,.1); }
.mv-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 2rem;
}
.mv-icon svg { width: 22px; height: 22px; stroke: #A8D08E; }
.mv-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: #A8D08E; text-transform: uppercase; margin-bottom: .75rem; }
.mv-title { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 600; color: #fff; margin-bottom: 1rem; letter-spacing: -.02em; line-height: 1.25; }
.mv-body { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.75; }
.mv-bg-dec { position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 70% 30%, rgba(92,138,60,.15) 0%, transparent 65%); }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-section {
  padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem);
  background: var(--surface); border-radius: 32px;
  margin: 0 clamp(.75rem, 2vw, 1.5rem) 5rem;
}
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem; }
.why-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.2; }
.why-sub { font-size: 15px; color: var(--muted); line-height: 1.75; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1.25rem; }
.why-card {
  background: var(--cream); border: 1px solid var(--card-border);
  border-radius: 24px; padding: 2.25rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s; cursor: default;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(28,34,18,.14); border-color: #c5d8b2; }
.why-card.large { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.why-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #E8EFE0; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.why-card-icon svg { width: 20px; height: 20px; stroke: var(--brand-dark); }
.why-card h3 { font-size: 15.5px; font-weight: 600; margin-bottom: .6rem; line-height: 1.3; }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.why-card.large .why-card-img { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; }
.why-card.large .why-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.why-card.large:hover .why-card-img img { transform: scale(1.05); }

/* ══════════════════════════════════════════
   MILESTONES
══════════════════════════════════════════ */
.milestones { padding: 80px clamp(1.25rem, 4vw, 2rem) 40px; max-width: 1200px; margin: 0 auto; }
.miles-header { text-align: center; margin-bottom: 5rem; }
.miles-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 1rem; }
.miles-sub { font-size: 15px; color: var(--muted); max-width: 480px; margin: 0 auto; }

.counters-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 5rem; }
.counter-card {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 24px; padding: 2.5rem 2rem; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.counter-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -14px rgba(28,34,18,.12); }
.counter-num {
  font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700;
  color: var(--brand-dark); letter-spacing: -.04em; line-height: 1;
  display: block; margin-bottom: .6rem;
}
.counter-label { font-size: 13px; color: var(--muted); line-height: 1.45; }

.milestones-strip { position: relative; display: flex; gap: 0; overflow: hidden; }
.milestones-strip::before { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: var(--border); }
.mile-item { flex: 1; padding-top: 3rem; padding-right: 1.5rem; position: relative; }
.mile-item::before {
  content: ''; position: absolute; top: 12px; left: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cream); border: 3px solid var(--brand); z-index: 1;
}
.mile-item:hover::before { background: var(--brand); }
.mile-year { font-size: 11px; font-weight: 700; color: var(--brand); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.mile-text { font-size: 14px; font-weight: 600; line-height: 1.45; margin-bottom: .4rem; }
.mile-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team-section { background: var(--cream); padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; gap: 1.5rem; flex-wrap: wrap; }
.team-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; max-width: 400px; line-height: 1.2; }
.team-sub { font-size: 14.5px; color: var(--muted); max-width: 320px; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.team-card {
  border-radius: 24px; overflow: hidden;
  background: #fff; border: 1px solid var(--card-border);
  transition: transform .28s ease, box-shadow .28s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px -18px rgba(28,34,18,.18); }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--surface); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,34,18,.7) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.25rem; gap: .75rem;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s, transform .2s;
}
.social-btn:hover { background: rgba(255,255,255,.4); transform: scale(1.1); }
.social-btn svg { width: 14px; height: 14px; stroke: #fff; }
.team-card-info { padding: 1.25rem 1.5rem; }
.team-card-name { font-size: 15px; font-weight: 600; margin-bottom: .25rem; }
.team-card-role { font-size: 12.5px; color: var(--muted); }

/* ══════════════════════════════════════════
   VALUES
══════════════════════════════════════════ */
.values-section {
  padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem);
  background: var(--surface); margin: 0 clamp(.75rem, 2vw, 1.5rem); border-radius: 32px;
}
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 4rem; }
.values-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 1rem; }
.values-sub { font-size: 15px; color: var(--muted); max-width: 500px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1.25rem; }
.value-card { border-radius: 24px; padding: 2.25rem; position: relative; overflow: hidden; transition: transform .25s; }
.value-card:hover { transform: translateY(-4px); }
.value-card.green { background: #E8EFE0; border: 1px solid #c8ddb5; }
.value-card.white { background: #fff; border: 1px solid var(--card-border); }
.value-card.dark  { background: var(--navy); border: 1px solid transparent; }
.value-card.tall  { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.value-num { font-size: 3.5rem; font-weight: 700; letter-spacing: -.06em; line-height: 1; margin-bottom: 1.5rem; opacity: .18; }
.value-card.dark .value-num { opacity: .22; color: #A8D08E; }
.value-icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.value-card.green .value-icon { background: rgba(92,138,60,.18); }
.value-card.white .value-icon { background: #E8EFE0; }
.value-card.dark  .value-icon { background: rgba(255,255,255,.1); }
.value-icon svg { width: 20px; height: 20px; }
.value-card.green .value-icon svg, .value-card.white .value-icon svg { stroke: var(--brand-dark); }
.value-card.dark  .value-icon svg { stroke: #A8D08E; }
.value-title { font-size: 17px; font-weight: 600; margin-bottom: .6rem; }
.value-card.dark .value-title { color: #fff; }
.value-body { font-size: 13.5px; line-height: 1.65; }
.value-card.green .value-body, .value-card.white .value-body { color: var(--muted); }
.value-card.dark  .value-body { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-section { padding: var(--space-xl) clamp(1.25rem, 4vw, 2rem); }
.testi-inner { max-width: 1200px; margin: 0 auto; }
.testi-header { margin-bottom: 3.5rem; }
.testi-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.2; }
.testi-sub { font-size: 15px; color: var(--muted); max-width: 460px; line-height: 1.7; }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 1.5rem; transition: transform .55s cubic-bezier(.25,.46,.45,.94); }
.testi-card {
  flex: 0 0 calc(33.33% - 1rem);
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 24px; padding: 2.25rem;
  position: relative; overflow: hidden;
}
.testi-card::before { content: '\201C'; position: absolute; top: .5rem; right: 1.5rem; font-size: 6rem; color: var(--brand); opacity: .07; font-weight: 700; line-height: 1; }
.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--star); font-size: 13px; }
.testi-body { font-size: 14px; color: #5A5945; line-height: 1.8; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-name { font-size: 13.5px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--muted); }
.testi-nav { display: flex; gap: .75rem; margin-top: 2.5rem; }
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--card-border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .2s, transform .15s, background .2s;
}
.testi-btn:hover { border-color: var(--brand); background: #E8EFE0; transform: scale(1.05); }
.testi-btn svg { width: 16px; height: 16px; stroke: var(--ink); }
.testi-dots { display: flex; gap: .5rem; align-items: center; margin-top: 1.25rem; }
.testi-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: background .3s, width .3s; }
.testi-dot.active { background: var(--brand); width: 22px; border-radius: 4px; }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section { padding: 4rem clamp(.75rem, 2vw, 1.5rem) 6rem; }
.cta-wrap {
  max-width: 1200px; margin: 0 auto;
  background: var(--navy); border-radius: 32px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
}
.cta-bg-blob, .cta-bg-dec {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 80%, rgba(92,138,60,.2) 0%, transparent 55%);
}
.cta-left { padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem); position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.75rem, 3vw, 3rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.1; color: #fff; margin-bottom: 1.25rem; }
.cta-title span { color: #A8D08E; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 2.5rem; }
.cta-actions, .cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.cta-right {
  background: rgba(255,255,255,.04); border-left: 1px solid rgba(255,255,255,.08);
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; gap: 1.25rem;
}
.cta-right-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .5rem; }
.cta-check { display: flex; align-items: flex-start; gap: .85rem; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.5; }
.cta-check-icon {
  width: 20px; height: 20px; border-radius: 6px;
  background: rgba(168,208,142,.15); border: 1px solid rgba(168,208,142,.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.cta-check-icon svg { width: 10px; height: 10px; stroke: #A8D08E; }
.cta-feature {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  color: rgba(255,255,255,.8); font-size: 14px; transition: background .2s;
}
.cta-feature:hover { background: rgba(255,255,255,.1); }
.cta-feature svg { width: 18px; height: 18px; stroke: #A8D08E; flex-shrink: 0; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--ink); color: rgba(255,255,255,.45);
  text-align: center;
  padding: 1.25rem clamp(1.25rem, 4vw, 2rem);
  font-size: 13px;
}
footer span { color: var(--brand); }

/* ══════════════════════════════════════════
   HERO SHORT VARIANT
══════════════════════════════════════════ */
.hero--short {
  min-height: 0 !important;
  padding-top: .5rem !important;
  padding-bottom: .75rem !important;
  height: auto !important;
}

/* ══════════════════════════════════════════
   CONTACT INFO CARDS
══════════════════════════════════════════ */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: -3.5rem;
  position: relative; z-index: 10;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.contact-info-card {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--brand), #A8D08E);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #c5d8b2; }
.contact-info-card:hover::before { transform: scaleX(1); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #E8EFE0; display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s; flex-shrink: 0;
}
.contact-info-card:hover .contact-card-icon { background: var(--brand); transform: scale(1.08); }
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--brand-dark); transition: stroke .3s; }
.contact-info-card:hover .contact-card-icon svg { stroke: #fff; }
.contact-card-label { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.contact-card-value { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.contact-card-sub { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ── Form + Side Panel Layout ── */
.contact-main {
  max-width: 1200px; margin: 5rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3rem; align-items: start;
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}
.contact-form-heading { font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.25; margin-bottom: .5rem; }
.contact-form-sub { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 2.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.form-label span { color: var(--brand); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  padding: .85rem 1.1rem; border: 1.5px solid var(--card-border);
  border-radius: 14px; font-size: 14px; color: var(--ink);
  background: var(--cream); font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(63,107,51,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: #9C9880; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236E6B58' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.form-note { font-size: 12px; color: var(--muted); line-height: 1.5; display: flex; align-items: center; gap: .4rem; }
.form-note svg { width: 14px; height: 14px; stroke: var(--brand); flex-shrink: 0; }
.btn-submit {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--brand); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: .9rem 2rem; border-radius: 999px;
  border: none; cursor: pointer; font-family: inherit;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-submit:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(63,107,51,.3); }
.btn-submit svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-submit:hover svg { transform: translateX(3px); }

/* ── Side Panel ── */
.contact-side { display: flex; flex-direction: column; gap: 1.5rem; }
.side-cta-card { background: var(--navy); border-radius: var(--radius-md); padding: 2.5rem; position: relative; overflow: hidden; }
.side-cta-card::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(92,138,60,.15); filter: blur(50px); pointer-events: none;
}
.side-cta-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #A8D08E; margin-bottom: .75rem; }
.side-cta-title { font-size: 1.3rem; font-weight: 600; color: #fff; line-height: 1.3; margin-bottom: .75rem; letter-spacing: -.02em; }
.side-cta-body { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.75rem; }
.side-cta-tel { display: flex; align-items: center; gap: .75rem; color: #fff; text-decoration: none; font-size: 15px; font-weight: 600; transition: color .2s; }
.side-cta-tel:hover { color: #A8D08E; }
.side-cta-tel-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(168,208,142,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.side-cta-tel:hover .side-cta-tel-icon { background: rgba(168,208,142,.28); }
.side-cta-tel-icon svg { width: 18px; height: 18px; stroke: #A8D08E; }
.side-hours-card { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 2rem; }
.side-hours-title { font-size: 13.5px; font-weight: 600; margin-bottom: 1.25rem; color: var(--ink); display: flex; align-items: center; gap: .6rem; }
.side-hours-title svg { width: 16px; height: 16px; stroke: var(--brand); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); }
.hours-time { font-weight: 600; color: var(--ink); }
.hours-time.closed { color: #b5b09a; font-weight: 400; }
.status-dot { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--brand); background: rgba(63,107,51,.1); border-radius: 999px; padding: .2rem .65rem; margin-top: 1rem; }
.status-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.75); } }
.side-social-card { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 1.75rem; }
.side-social-title { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.social-links-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-link-pill { display: inline-flex; align-items: center; gap: .6rem; padding: .55rem 1.1rem; border: 1.5px solid var(--card-border); border-radius: 999px; text-decoration: none; font-size: 12.5px; font-weight: 500; color: var(--ink); transition: border-color .2s, background .2s, color .2s, transform .15s; }
.social-link-pill:hover { border-color: var(--brand); background: #E8EFE0; color: var(--brand-dark); transform: translateY(-1px); }
.social-link-pill svg { width: 14px; height: 14px; stroke: currentColor; }

/* ── Map Section ── */
.map-section { max-width: 1200px; margin: 5rem auto 0; padding: 0 clamp(1.25rem, 4vw, 2rem); }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--card-border);
  position: relative; height: 420px;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.map-embed { width: 100%; height: 100%; border: none; display: block; filter: saturate(.9) contrast(.95); transition: filter .3s; }
.map-wrap:hover .map-embed { filter: saturate(1.05) contrast(1); }
.map-overlay-card { position: absolute; left: 2rem; bottom: 2rem; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 1.25rem 1.5rem; box-shadow: var(--shadow-md); display: flex; gap: 1rem; align-items: center; }
.map-overlay-icon { width: 44px; height: 44px; border-radius: 13px; background: #E8EFE0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-overlay-icon svg { width: 20px; height: 20px; stroke: var(--brand-dark); }
.map-overlay-name { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.map-overlay-addr { font-size: 12px; color: var(--muted); line-height: 1.45; }

/* ══════════════════════════════════════════
   BLOG PAGE STYLES
══════════════════════════════════════════ */
.blog-hero {
  position: relative; min-height: 480px;
  border-radius: var(--radius-xl);
  margin: 1rem 1rem 0; overflow: hidden;
  display: flex; align-items: center; background: var(--navy);
}
.blog-hero .hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1400&q=80') center/cover no-repeat; opacity: .45; }
.blog-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,36,26,.88) 0%, rgba(22,36,26,.42) 100%); }
.blog-hero .hero-blob-1 { width: 420px; height: 420px; background: rgba(63,107,51,.18); top: -100px; right: -80px; }
.blog-hero .hero-blob-2 { width: 300px; height: 300px; background: rgba(63,107,51,.10); bottom: -80px; left: 30%; }
.blog-hero .hero-inner { padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem); max-width: 760px; }
.blog-hero .breadcrumb { font-size: 12px; margin-bottom: 1.8rem; }
.blog-hero .breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.blog-hero .breadcrumb a:hover { color: var(--brand); }
.blog-hero .hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 1rem; }
.blog-hero .hero-title em { font-style: italic; color: var(--pill); font-weight: 400; }
.blog-hero .hero-subtitle { font-size: clamp(14px, 2vw, 16px); line-height: 1.75; color: rgba(255,255,255,.62); max-width: 520px; margin-bottom: 2rem; }
.blog-hero .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pill); background: rgba(63,107,51,.18); border: 1px solid rgba(63,107,51,.28); padding: .3rem .8rem; border-radius: 100px; margin-bottom: 1.2rem; }

.hero-search { position: absolute; right: 3.5rem; bottom: 2.5rem; z-index: 2; }
.search-pill { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.14); border-radius: 100px; padding: .6rem 1rem .6rem 1.2rem; color: rgba(255,255,255,.65); font-size: 13px; cursor: pointer; transition: background .2s; width: 220px; }
.search-pill:hover { background: rgba(255,255,255,.13); }
.search-pill input { background: transparent; border: none; outline: none; color: #fff; font-size: 13px; flex: 1; font-family: var(--font-body); }
.search-pill input::placeholder { color: rgba(255,255,255,.4); }
.search-icon { width: 15px; height: 15px; opacity: .5; flex-shrink: 0; }

.blog-section-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 100px; background: var(--green-light); color: var(--brand); margin-bottom: 1rem; }
.blog-section-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

.featured-section { padding: 4rem clamp(1rem, 3vw, 1rem) 0; max-width: 1300px; margin: 0 auto; }
.featured-header { margin-bottom: 2rem; }
.featured-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--surface-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--card-border); transition: box-shadow .35s, transform .35s; }
.featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.featured-img-wrap { position: relative; overflow: hidden; min-height: 440px; }
.featured-img { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=900&q=80') center/cover no-repeat; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.featured-card:hover .featured-img { transform: scale(1.04); }
.featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(22,36,26,.72) 100%); }
.featured-img-badge { position: absolute; top: 1.5rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; background: rgba(220,231,210,.92); color: var(--navy); backdrop-filter: blur(8px); }
.featured-img-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--navy); }
.featured-body { padding: clamp(1.5rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: space-between; }
.featured-meta-top { display: flex; align-items: center; gap: 16px; margin-bottom: 1.4rem; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.meta-item svg { width: 13px; height: 13px; opacity: .7; }
.featured-title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 650; line-height: 1.2; color: var(--ink); margin-bottom: 1rem; letter-spacing: -.01em; }
.featured-excerpt { font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 2rem; }
.featured-author { display: flex; align-items: center; gap: 12px; padding-top: 1.5rem; border-top: 1px solid var(--card-border); }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-light); border: 2px solid var(--green-mid); overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.author-role { font-size: 11px; color: var(--muted); margin-top: 1px; }
.featured-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; padding: .65rem 1.3rem; border: 1.5px solid var(--navy); border-radius: 100px; margin-left: auto; transition: background .2s, color .2s, transform .2s; }
.featured-read-more:hover { background: var(--navy); color: #fff; transform: translateX(3px); }
.featured-read-more svg { transition: transform .2s; }
.featured-read-more:hover svg { transform: translateX(3px); }
.featured-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

.latest-section { padding: 5rem clamp(1rem, 3vw, 1rem) 0; max-width: 1300px; margin: 0 auto; }
.latest-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap; }
.latest-header-left h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 650; line-height: 1.15; letter-spacing: -.01em; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: var(--surface-card); border-radius: var(--radius-md); border: 1px solid var(--card-border); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { position: relative; height: 220px; overflow: hidden; }
.blog-card-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.blog-card:hover .blog-card-img-bg { transform: scale(1.06); }
.blog-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(22,36,26,.5) 100%); }
.card-category { position: absolute; top: 1rem; left: 1rem; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .7rem; border-radius: 100px; background: rgba(220,231,210,.92); color: var(--navy); backdrop-filter: blur(6px); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: .9rem; font-size: 11px; color: var(--muted); flex-wrap: wrap; }
.card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .4; }
.blog-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: .7rem; letter-spacing: -.01em; flex: 1; }
.blog-card-excerpt { font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 1.2rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--card-border); }
.card-author { display: flex; align-items: center; gap: 8px; }
.card-author-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--green-light); border: 1.5px solid var(--green-mid); overflow: hidden; }
.card-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.card-author-name { font-size: 11px; font-weight: 600; color: var(--ink); }
.card-read-btn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; text-decoration: none; transition: transform .2s, background .2s; }
.card-read-btn:hover { background: var(--navy-soft); transform: translate(2px,-2px); }
.card-read-btn svg { width: 14px; height: 14px; }
.blog-card.wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; flex-direction: unset; }
.blog-card.wide .blog-card-img { height: auto; min-height: 280px; }
.blog-card.wide .blog-card-body { padding: 2rem; }
.blog-card.wide .blog-card-title { font-size: 1.35rem; }
.blog-card.wide .blog-card-excerpt { -webkit-line-clamp: 3; }

.popular-section { padding: 5rem clamp(1rem, 3vw, 1rem) 0; max-width: 1300px; margin: 0 auto; }
.popular-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.popular-left h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 650; line-height: 1.18; margin-bottom: .8rem; letter-spacing: -.01em; }
.popular-left p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.popular-hero-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 360px; cursor: pointer; margin-top: 1.5rem; }
.popular-hero-card-img { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=800&q=80') center/cover no-repeat; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.popular-hero-card:hover .popular-hero-card-img { transform: scale(1.05); }
.popular-hero-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(22,36,26,.85) 100%); }
.popular-hero-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; }
.popular-hero-card-content .card-category { position: static; display: inline-flex; margin-bottom: .8rem; }
.popular-hero-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: #fff; line-height: 1.25; margin-bottom: .5rem; }
.popular-hero-card-meta { font-size: 12px; color: rgba(255,255,255,.6); }
.popular-list { display: flex; flex-direction: column; gap: 0; }
.popular-item { display: flex; gap: 16px; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--card-border); text-decoration: none; transition: transform .25s; cursor: pointer; }
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { transform: translateX(4px); }
.popular-item-num { font-size: 11px; font-weight: 700; color: var(--brand); width: 20px; flex-shrink: 0; font-family: var(--font-display); }
.popular-item-thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.popular-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.popular-item:hover .popular-item-thumb img { transform: scale(1.08); }
.popular-item-content { flex: 1; min-width: 0; }
.popular-item-cat { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin-bottom: .3rem; }
.popular-item-title { font-family: var(--font-display); font-size: .9rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popular-item-meta { font-size: 11px; color: var(--muted); }

.blog-categories-section { padding: 5rem clamp(1rem, 3vw, 1rem) 0; max-width: 1300px; margin: 0 auto; }
.categories-head { text-align: center; margin-bottom: 3rem; }
.categories-head h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 650; letter-spacing: -.01em; margin-bottom: .6rem; }
.categories-head p { font-size: 15px; color: var(--muted); }
.cat-pills-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.cat-pill { display: inline-flex; align-items: center; gap: 7px; padding: .55rem 1.2rem; border-radius: 100px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--card-border); background: var(--cream); color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s, transform .2s, color .2s; text-decoration: none; }
.cat-pill:hover, .cat-pill.active { border-color: var(--brand); background: var(--green-light); color: var(--navy); transform: translateY(-2px); }
.cat-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.cat-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.blog-cat-card { background: var(--cream); border-radius: var(--radius-md); border: 1.5px solid var(--card-border); padding: 1.8rem 1.5rem; text-decoration: none; display: flex; flex-direction: column; transition: border-color .25s, transform .3s, box-shadow .3s; cursor: pointer; }
.blog-cat-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-cat-card-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background .25s, transform .25s; }
.blog-cat-card:hover .blog-cat-card-icon { background: var(--green-mid); transform: scale(1.05); }
.blog-cat-card-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.7; }
.blog-cat-card-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: .3rem; font-family: var(--font-display); }
.blog-cat-card-count { font-size: 12px; color: var(--muted); }
.blog-cat-card-arrow { margin-top: auto; padding-top: 1.2rem; display: flex; justify-content: flex-end; }
.blog-cat-card-arrow svg { width: 16px; height: 16px; stroke: var(--muted); transition: stroke .2s, transform .2s; }
.blog-cat-card:hover .blog-cat-card-arrow svg { stroke: var(--brand); transform: translate(2px,-2px); }

.newsletter-section { padding: 5rem clamp(1rem, 3vw, 1rem) 0; max-width: 1300px; margin: 0 auto; }
.newsletter-wrap { background: var(--navy); border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.newsletter-blob-1 { position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(63,107,51,.14); filter: blur(80px); top: -80px; right: -60px; pointer-events: none; }
.newsletter-blob-2 { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(63,107,51,.08); filter: blur(60px); bottom: -40px; left: 20%; pointer-events: none; }
.newsletter-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(63,107,51,.18) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.newsletter-left { position: relative; z-index: 1; }
.newsletter-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pill); background: rgba(63,107,51,.15); border: 1px solid rgba(63,107,51,.25); padding: .3rem .8rem; border-radius: 100px; margin-bottom: 1.2rem; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 650; color: #fff; line-height: 1.18; margin-bottom: 1rem; }
.newsletter-title em { font-style: italic; color: var(--pill); font-weight: 400; }
.newsletter-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.58); }
.newsletter-right { position: relative; z-index: 1; }
.newsletter-perks { margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 10px; }
.newsletter-perk { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.75); }
.newsletter-perk-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(63,107,51,.18); border: 1px solid rgba(63,107,51,.32); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.newsletter-perk-check svg { width: 11px; height: 11px; stroke: var(--pill); fill: none; stroke-width: 2.5; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-input { flex: 1; padding: .85rem 1.2rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 100px; color: #fff; font-size: 14px; font-family: var(--font-body); outline: none; transition: border-color .2s, background .2s; min-width: 0; }
.newsletter-input::placeholder { color: rgba(255,255,255,.32); }
.newsletter-input:focus { border-color: rgba(63,107,51,.45); background: rgba(255,255,255,.1); }
.newsletter-btn { display: inline-flex; align-items: center; gap: 8px; padding: .85rem 1.5rem; background: var(--brand); color: #fff; border: none; border-radius: 100px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font-body); white-space: nowrap; transition: transform .2s, box-shadow .2s, background .2s; }
.newsletter-btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(63,107,51,.35); }
.newsletter-note { font-size: 11px; color: rgba(255,255,255,.32); margin-top: .7rem; }

/* ── Blog Rich Footer ── */
.blog-footer { margin-top: 5rem; background: var(--navy); border-radius: var(--radius-xl) var(--radius-xl) 0 0; margin-left: 1rem; margin-right: 1rem; overflow: hidden; }
.footer-inner { padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem) 2rem; max-width: 1300px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; text-decoration: none; }
.footer-logo-mark { width: 32px; height: 32px; border-radius: 10px; background: var(--brand); display: flex; align-items: center; justify-content: center; }
.footer-logo-mark svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; margin-bottom: 1.4rem; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s, border-color .2s; }
.footer-social:hover { background: rgba(63,107,51,.16); border-color: rgba(63,107,51,.28); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 1.8; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--pill); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; font-size: 12px; color: rgba(255,255,255,.28); flex-wrap: wrap; gap: 8px; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.56); }


/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   Strategy:
     1280px+ — Large desktop (max-width containers kick in)
      1024px — Tablet landscape: multi-col → 2-col
       768px — Tablet portrait: further collapse
       640px — Large mobile: single-col everywhere
       480px — Small mobile: tighten spacing & type
       360px — Minimum supported width
══════════════════════════════════════════ */

/* ── 1280px: wide desktop fine-tuning ── */
@media (max-width: 1280px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-card.b1 { grid-column: span 2; }
  .bento-card.b3, .bento-card.b4 { grid-column: span 1; }
  .bento-card.b5 { grid-column: span 2; }
  .bento-card.b6 { grid-column: span 1; }

  .cat-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 1024px: tablet landscape ── */
@media (max-width: 1024px) {
  /* hero */
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { flex-direction: row; align-items: flex-start; justify-content: flex-start; }
  .hero-stat-card { width: auto; }
  .hero-content-split { grid-template-columns: 1fr; }
  .hero-service-chips { display: none; }

  /* nav */
  .topnav-links, .topnav-cta { display: none; }

  /* story */
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-left { position: relative; top: auto; }

  /* mission */
  .mv-wrap { grid-template-columns: 1fr; }
  .mv-card:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  /* why section */
  .why-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card.large { grid-column: span 2; }

  /* bento */
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-card.b1 { grid-column: span 2; }
  .bento-card.b5 { grid-column: span 2; }
  .bento-card.b2, .bento-card.b3, .bento-card.b4, .bento-card.b6 { grid-column: span 1; }

  /* alt blocks */
  .alt-block { grid-template-columns: 1fr; gap: 2rem; }
  .alt-block.reverse { direction: ltr; }

  /* process */
  .process-track { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-track::before { display: none; }

  /* categories */
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.full { grid-column: span 1; }
  .cat-card.full .cat-card-inner { grid-template-columns: 1fr; }
  .categories-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* stats */
  .stats-wrap { grid-template-columns: 1fr; gap: 3rem; }

  /* faq */
  .faq-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .faq-left { position: relative; top: auto; }

  /* counters / team / values */
  .counters-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card.tall { grid-row: span 1; }

  /* cta */
  .cta-wrap { grid-template-columns: 1fr; }
  .cta-right { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }

  /* contact */
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-side { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .side-cta-card { grid-column: span 2; }

  /* blog */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card.wide { grid-column: span 2; }
  .cat-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .popular-layout { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img-wrap { min-height: 280px; }
  .newsletter-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > *:first-child { grid-column: span 2; }
}

/* ── 768px: tablet portrait ── */
@media (max-width: 768px) {
  /* process - single col */
  .process-track { grid-template-columns: 1fr; }

  /* why-alt blocks stack fully */
  .alt-block { grid-template-columns: 1fr; }

  /* bento: keep 2-col but reduce heights */
  .bento-grid { grid-template-rows: auto; }

  /* team: 2-col */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* milestones: stack */
  .milestones-strip { flex-direction: column; gap: 2rem; }
  .milestones-strip::before { display: none; }
  .mile-item { padding-top: 0; padding-left: 2.5rem; }
  .mile-item::before { top: 0; }

  /* testi: wider cards */
  .testi-card { flex: 0 0 calc(50% - 0.75rem); }

  /* contact side */
  .contact-side { grid-template-columns: 1fr; }
  .side-cta-card { grid-column: span 1; }

  /* map */
  .map-wrap { height: 320px; }

  /* blog footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── 640px: large mobile ── */
@media (max-width: 640px) {
  /* global section spacing tightening */
  .services-featured,
  .process-section,
  .stats-section,
  .faq-section,
  .story,
  .milestones,
  .team-section,
  .testi-section { padding-left: 1rem; padding-right: 1rem; }

  .why-alt,
  .categories-section,
  .values-section,
  .why-section { margin: 0 .75rem; border-radius: 20px; }

  .mv-section { padding-left: .75rem; padding-right: .75rem; }
  .mv-wrap { border-radius: 24px; }

  .cta-section { padding: 3rem .75rem 4rem; }
  .cta-wrap { border-radius: 24px; padding: 2.5rem 1.5rem; }

  /* nav */
  .topnav-links, .topnav-cta, .nav-links, .nav-cta { display: none; }

  /* hero */
  .hero { margin: .5rem .75rem 0; }
  .hero-right { display: none; }
  .hero-bottom-inner { flex-wrap: wrap; gap: .75rem; }

  /* story float card */
  .story-float-card { position: relative; bottom: auto; right: auto; margin-top: 1rem; }

  /* why */
  .why-grid { grid-template-columns: 1fr; }
  .why-card.large { grid-column: span 1; display: flex; flex-direction: column; }

  /* bento: single col */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.b1, .bento-card.b5 { grid-column: span 1; }

  /* services header */
  .services-featured-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* stats */
  .stats-right { grid-template-columns: 1fr; }

  /* team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* values */
  .values-grid { grid-template-columns: 1fr; }

  /* testimonials */
  .testi-card { flex: 0 0 88vw; }
  .testi-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* counters */
  .counters-row { grid-template-columns: repeat(2, 1fr); }

  /* contact */
  .contact-info-grid { grid-template-columns: 1fr; padding: 0 1rem; margin-top: 2rem; }
  .contact-main { padding: 0 1rem; margin-top: 3rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .map-section { padding: 0 1rem; }
  .map-wrap { height: 280px; }
  .map-overlay-card { left: 1rem; right: 1rem; bottom: 1rem; }

  /* blog */
  .blog-hero { min-height: 360px; margin: .5rem .75rem 0; }
  .blog-hero .hero-inner { padding: 2rem 1.25rem; }
  .hero-search { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.wide { grid-column: span 1; display: flex; flex-direction: column; }
  .blog-card.wide .blog-card-img { height: 220px; }
  .latest-header { flex-direction: column; align-items: flex-start; }
  .cat-cards-grid { grid-template-columns: 1fr 1fr; }
  .cat-pill { font-size: 12px; padding: .45rem .9rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > *:first-child { grid-column: span 1; }

  /* process */
  .process-step { padding: 0; }
}

/* ── 480px: small mobile ── */
@media (max-width: 480px) {
  :root {
    --radius-md: 18px;
    --radius-lg: 22px;
    --radius-xl: 28px;
  }

  .hero-title { font-size: clamp(1.85rem, 8vw, 2.5rem); }

  /* team: single col on very small */
  .team-grid { grid-template-columns: 1fr; }

  /* counters: single col */
  .counters-row { grid-template-columns: 1fr; }

  /* cat cards: single col */
  .cat-cards-grid { grid-template-columns: 1fr; }

  /* stats right: already 1-col */

  /* bento body padding reduced */
  .bento-card-body { padding: 1.5rem; }

  /* featured excerpt shorter */
  .featured-excerpt { display: none; }

  /* footer */
  footer { text-align: left; padding: 1.25rem 1rem; }

  .blog-footer { margin-left: .5rem; margin-right: .5rem; }
  .footer-inner { padding: 2rem 1.25rem 1.5rem; }

  /* cta */
  .cta-left { padding: 2rem 1.25rem; }
  .cta-right { padding: 1.5rem 1.25rem 2rem; }

  /* why-alt */
  .why-alt { padding: 3.5rem 1.25rem; }

  /* nav height */
  nav.topnav { height: 56px; }
}

/* ── 360px: minimum width ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.7rem; }
  .btn-primary, .btn-dark { font-size: 13px; padding: .65rem 1.1rem; }
  .side-cta-card { padding: 1.75rem 1.25rem; }
  .contact-form-wrap { padding: 1.25rem 1rem; }
}

/* ══════════════════════════════════════════
   PRINT
══════════════════════════════════════════ */
@media print {
  .menu-trigger, #sidebar, #sidebarOverlay,
  .hero-blob, .hero-service-chips,
  .testi-nav, .testi-dots,
  .newsletter-section, .cta-section { display: none !important; }

  body { background: #fff; color: #000; }
  .hero { background: #f5f5f5; min-height: auto; }
  .hero-title, .hero-subtitle { color: #000; }
  a { color: inherit; text-decoration: underline; }
}

/*@media (max-width: 640px) {*/
/*  #sidebar {*/
/*    background: var(--teal);*/
/*  }*/
/*}*/