/* ═══════════════════════════════════════════════════════════
   NORTHAMPTON NURSERY — Light Forest Design System
   Built on taste-skill: DESIGN_VARIANCE 8 · MOTION_INTENSITY 6 · VISUAL_DENSITY 4
   Palette: cool neutrals, single forest accent, pure-white surfaces
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & FOUNDATIONS ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: rgba(83, 125, 79, 0.25);
  color: #1a1a1a;
}

::-moz-selection {
  background: rgba(83, 125, 79, 0.25);
  color: #1a1a1a;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

:root {
  /* ── Brand accent (single accent, <80% saturation) ── */
  --forest: #537d4f;
  --forest-deep: #3a5937;
  --forest-light: #6b9a60;
  --sage: #ddf4b0;
  --sage-light: #ebf8d0;
  --accent: #d8fbaa;
  --accent-soft: #edfdd5;

  /* ── Cool neutral scale (slate-based, replaces warm browns) ── */
  --cream: #efefeb;
  /* page background — off-white */
  --cream-warm: #efefeb;
  /* subtle sage-tinted wash */
  --stone: #d5d4d6;
  /* slate-200 — borders/dividers */
  --surface: #efefeb;
  /* pure white cards */
  --white: #efefeb;

  /* ── Ink (off-black, never #000 per §7) ── */
  --charcoal: #0f172a;
  --charcoal-light: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  /* slate-600 body copy */
  --text-muted: #94a3b8;
  /* slate-400 meta */

  /* ── Hairline border (tinted to ink) ── */
  --border: rgba(15, 23, 42, 0.06);
  --border-strong: rgba(15, 23, 42, 0.1);

  /* ── Star/rating gold, desaturated ── */
  --gold: #c99434;

  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* ── Radii (premium rounded surfaces per §9A) ── */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-2xl: 44px;

  /* ── Typography scale — hierarchy by weight, not oversizing (§7) ── */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.375rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.75rem;

  /* ── Transitions ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;

  /* ── Shadows — diffusion style, cool-tinted (§9A) ── */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px -6px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 30px 80px -20px rgba(15, 23, 42, 0.12);
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.6);

  --nav-height: 80px;
  --top-bar-height: 0px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-secondary);
  background-color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.003em;
}

/* Headlines inherit ink, not body muted tone */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 500;
}

/* Body paragraphs breathe, capped at 65ch per §3 Rule 1 */
p {
  max-width: 65ch;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

/* ─── SECTION EYEBROW ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  visibility: hidden;
}

/* ═══════════════════════════════════════
   TOP BAR — hairline light row
   ═══════════════════════════════════════ */
.top-bar {
  display: none;
  /* Hidden to support floating pill nav aesthetic */
  background: var(--cream);
  color: var(--text-secondary);
  height: 0;
  align-items: center;
  font-size: 0.75rem;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.top-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.top-bar__phone svg {
  color: var(--forest);
}

.top-bar__phone:hover {
  color: var(--forest);
}

.top-bar__social {
  display: flex;
  gap: 0.5rem;
}

.top-bar__social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition:
    background var(--duration-fast) var(--ease-out-expo),
    color var(--duration-fast) var(--ease-out-expo),
    border-color var(--duration-fast) var(--ease-out-expo),
    transform var(--duration-fast) var(--ease-spring);
}

.top-bar__social-link:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  pointer-events: none;
  padding: 0 1.5rem;
}

.nav.scrolled {
  transform: translateY(-0.25rem);
}

.nav__inner {
  max-width: 1200px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.nav.scrolled .nav__inner {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.06);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  top: -4px;
  left: -10px;
}

.nav__logo-icon {
  transition: transform var(--duration-normal) var(--ease-spring);
}

.nav__logo:hover .nav__logo-icon {
  transform: rotate(15deg);
}

.nav__logo-icon-svg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.nav__logo:hover .nav__logo-icon-svg {
  transform: rotate(15deg) scale(1.05);
}

.nav__logo-text {
  display: block;
  line-height: 1.15;
  white-space: nowrap;
}

.nav__logo-name {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  display: inline;
}

.nav__logo-sub {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  display: inline;
  margin-left: 0.15rem;
}

.nav__logo-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

/* Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.9rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  position: relative;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--forest);
  border-radius: 1px;
  transition: all var(--duration-normal) var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 60%;
}

.nav__link--active {
  color: var(--forest);
  font-weight: 600;
}

.nav.scrolled .nav__link {
  color: var(--text-secondary);
}

.nav.scrolled .nav__link::after {
  background: var(--forest);
}

.nav.scrolled .nav__link:hover {
  color: var(--text-primary);
}

.nav.scrolled .nav__link--active {
  color: var(--forest);
}

.nav__link--active::after {
  width: 60%;
}

/* Dropdown */
.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link--dropdown svg {
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--white);
  border: 1px solid rgba(163, 184, 153, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out-expo);
  z-index: 50;
}

/* Invisible bridge so hover isn't lost crossing the gap */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown:hover .nav__link--dropdown svg,
.nav__dropdown.is-open .nav__link--dropdown svg {
  transform: rotate(180deg);
}

.nav__dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: 8px;
  text-decoration: none !important;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.nav__dropdown-item:hover {
  background: var(--cream);
  color: var(--forest);
  padding-left: 1.25rem;
}

.nav__cta {
  padding: 0.875rem 2rem;
  background: var(--forest);
  border: 1px solid var(--forest);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(83, 125, 79, 0.25);
}

.nav__cta:hover {
  background: var(--deep, #3a5937);
  border-color: var(--deep, #3a5937);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 125, 79, 0.35);
}

.nav__cta:active {
  transform: translateY(0) scale(0.98);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out-expo);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   KINETIC NAVIGATION CSS
   ═══════════════════════════════════════════════════════════ */

.fullscreen-menu-container {
  /* hidden by default, toggled via GSAP display prop */
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.nav-overlay-wrapper {
  position: absolute;
  inset: 0;
  display: none;
  /* Controlled by GSAP */
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  /* GSAP animates to 1 */
  visibility: hidden;
  cursor: pointer;
}

.menu-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 500px;
  height: 100%;
  height: 100dvh;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.menu-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.backdrop-layer {
  position: absolute;
  inset: 0;
  background: var(--white);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
}

.backdrop-layer.first {
  background: var(--forest);
}

.backdrop-layer.second {
  background: var(--sage);
}

/* Background Shapes */
.ambient-background-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  width: 150%;
  height: 150%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bg-shape.active {
  opacity: 1;
  visibility: visible;
}

/* Menu Content Elements */
.menu-content-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4rem 3rem 2rem;
  z-index: 5;
  overflow-y: auto;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-list-item {
  margin: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  overflow: hidden;
  border-radius: 12px;
  min-height: 4.5rem;
}

.nav-link-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-base);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.nav-link-hover-bg {
  position: absolute;
  inset: 0;
  background: var(--sage-light);
  border-radius: 12px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* Hover effects */
@media (hover: hover) {
  .nav-link:hover .nav-link-text {
    transform: translateX(10px) scale(0.98);
    color: var(--forest);
  }

  .nav-link:hover .nav-link-hover-bg {
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* Menu Footer */
.kinetic-menu-footer {
  margin-top: auto;
  padding-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(83, 125, 79, 0.1);
}

.kinetic-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kinetic-footer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.kinetic-footer-link {
  font-size: 1.1rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.kinetic-footer-link:hover {
  opacity: 0.7;
}

.kinetic-footer-flex {
  display: flex;
  gap: 1rem;
}

/* Make sure the main nav sits below the fullscreen menu when open, but above every other page element */
.nav {
  z-index: 900;
}

/* ═══════════════════════════════════════
   SERVICE HERO
   ═══════════════════════════════════════ */
.service-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 180px 24px 100px;
  overflow: hidden;
  background-color: var(--charcoal);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  /* radial-gradient(circle at center, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%); */
  z-index: 1;
}

.service-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-hero__bg.loaded {
  opacity: 1;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.service-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  margin-top: 15vh;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.service-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.service-hero__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--sage);
  font-weight: 400;
}

.service-hero__desc {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Sprinklers page: "Heads Up" is wrapped in this span so it never breaks
   into two separate words. On desktop it sits inline next to the em. */
.service-hero__nowrap {
  white-space: nowrap;
}

/* MOBILE: unify every service hero title — same size, weight, alignment, stacked words.
   This is the single source of truth for the mobile hero typography across all 5
   service pages, so they read identically regardless of which page you're on. */
@media (max-width: 768px) {
  .service-hero__title {
    font-size: 4rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-weight: 500;
    text-align: center;
    /* Each word lands on its own line. Locked in via word-spacing because it
       works regardless of HTML structure (with or without inline em/spans). */
    word-spacing: 100vw;
  }

  /* Pull the title closer to the vertical centre of the hero — the desktop
     15vh push leaves the content sitting too low on phones, but zero pushes it
     too high. A small offset lands it in the visual sweet spot. */
  .service-hero__inner {
    margin-top: 7vh;
  }

  .service-hero {
    padding-top: 140px;
  }

  /* Lock em weight so the second half doesn't look thinner / different across pages. */
  .service-hero__title em {
    font-weight: 400;
  }

  /* Sprinklers — keep "Heads Up" joined as ONE line, then push "Sprinklers"
     to the next line. The nowrap span becomes a block, which forces any inline
     content after it (em "Sprinklers") to start on a fresh line.
     word-spacing: normal is CRITICAL — without it the parent's 100vw spacing
     gets applied to the space between "Heads" and "Up", shoving "Heads" off
     the left side of the screen. */
  .service-hero__nowrap {
    display: block;
    word-spacing: normal;
  }

  /* Collapse the desktop spacing gap — not needed when words are stacked. */
  .service-hero__gap {
    display: none;
  }

  .service-hero__desc {
    font-size: 1rem;
    line-height: 1.55;
    /* Narrow the line length so the desc breaks into ~3 lines on phones
       instead of 2 squashed lines. */
    max-width: 280px;
  }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  /* robust spacing clears nav natively */
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background:
    linear-gradient(to bottom, transparent 60%, rgba(247, 250, 247, 0.5) 80%, #d5d4d6 100%),
    radial-gradient(ellipse 40% 100% at 0% 100%, #d5d4d6 0%, transparent 70%),
    radial-gradient(ellipse 40% 100% at 100% 100%, #d5d4d6 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Content overlay — anchored to left/white wall area */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 5%;
}

/* ── Glass Pill (eyebrow) ── */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(83, 125, 79, 0.45);
  /* translucent forest green */
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #efefeb;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ── Glass Card (supporting copy) ── */
.hero__card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2.8rem 1.1rem;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero__copy {
  max-width: 560px;
}

.hero__title {
  margin: 0 0 1rem;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero__title-main {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.3rem);
  line-height: 1;
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.hero__title-lower {
  display: block;
  margin-top: 0.35rem;
}

.hero__title-italic {
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
  margin: 0;
  max-width: 440px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.16),
    0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ── Glass Button (CTA) ── */
.hero__btn {
  display: inline-block;
  background: rgba(83, 125, 79, 0.55);
  /* bolder translucent green */
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #efefeb;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero__btn:hover {
  background: rgba(83, 125, 79, 0.75);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}






.hero__title-line {
  display: block;
}

.hero__title-line--light {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.hero__title-line--bold {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero__subtitle {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: -0.005em;
  transition:
    transform var(--duration-fast) var(--ease-spring),
    box-shadow var(--duration-normal) var(--ease-out-expo),
    background var(--duration-fast) var(--ease-out-expo),
    color var(--duration-fast) var(--ease-out-expo);
  will-change: transform;
}

.hero__cta--primary {
  background: var(--forest);
  color: var(--white);
  box-shadow:
    0 10px 24px -8px rgba(83, 125, 79, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__cta--primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px -10px rgba(83, 125, 79, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__cta--primary:active {
  transform: translateY(0) scale(0.99);
}

.hero__cta--secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-strong);
}

.hero__cta--secondary:hover {
  background: var(--surface);
  border-color: var(--forest);
  color: var(--forest);
  transform: translateY(-1px);
}

.hero__cta--secondary:active {
  transform: translateY(0) scale(0.99);
}

.hero__cta svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.hero__cta:hover svg {
  transform: translateX(3px);
}

/* Trust row */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.4;
}

.hero__trust-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Right column: image + floating cards ── */
.hero__visual {
  position: relative;
  height: min(620px, 75vh);
  display: flex;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 80px -30px rgba(15, 23, 42, 0.18),
    0 20px 40px -20px rgba(15, 23, 42, 0.1);
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(249, 250, 251, 0.5) 100%);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroFloat 22s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.07) translate3d(-1.5%, -1%, 0);
  }
}

/* Overlapping certification badge */
.hero__badge {
  position: absolute;
  left: -1.75rem;
  bottom: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.375rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 2;
  max-width: 260px;
  animation: badgeFloat 7s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -6px, 0);
  }
}

.hero__badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.hero__badge-text strong {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.hero__badge-text span {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Live status pill (top-right of visual) */
.hero__status {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  z-index: 2;
}

.hero__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  position: relative;
  box-shadow: 0 0 0 0 rgba(83, 125, 79, 0.6);
  animation: statusPulse 2.4s ease-out infinite;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(83, 125, 79, 0.5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(83, 125, 79, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(83, 125, 79, 0);
  }
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(0.55);
  }

  50% {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

.hero__scroll-text {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {

  .hero__image,
  .hero__badge,
  .hero__eyebrow-dot,
  .hero__status-dot,
  .hero__scroll-line {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════
   ABOUT — asymmetric two-column, light
   ═══════════════════════════════════════ */
.about {
  position: relative;
  background: var(--cream);
  padding: 7rem 0 6rem;
}

.about__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 5.5rem;
  align-items: center;
}

#about .about__visual {
  order: 2;
}

#about .about__text {
  order: 1;
}

/* ── Visual column ── */
.about__visual {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  z-index: 2;
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.about__visual:hover .about__image-frame img {
  transform: scale(1.03);
}

/* Sage plate behind the image, offset down-right, asymmetric whitespace */
.about__image-plate {
  position: absolute;
  inset: 3rem -2.5rem -2.5rem 3rem;
  background: var(--accent-soft);
  border-radius: var(--radius-2xl);
  z-index: 1;
}

/* Large floating year badge, top-right overlap */
.about__image-badge {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  animation: badgeFloat 8s ease-in-out infinite alternate;
}

.about__badge-number {
  font-size: 3rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-feature-settings: "tnum";
}

.about__badge-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ── Text column ── */
.about__text {
  max-width: 560px;
}

.about__text .section-eyebrow {
  margin-bottom: 1.25rem;
}

.about__title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 18ch;
}

.about__title strong {
  font-weight: 600;
  color: var(--forest);
}

.about__paragraph {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 58ch;
}

.about__paragraph--lede {
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Owner signers row */
.about__signers {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.25rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__signer {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.about__signer-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.about__signer-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 1px;
}

.about__signer-divider {
  width: 1px;
  height: 32px;
  background: var(--border-strong);
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.75rem;
  background: var(--forest);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition:
    transform var(--duration-fast) var(--ease-spring),
    background var(--duration-fast) var(--ease-out-expo),
    box-shadow var(--duration-normal) var(--ease-out-expo);
  box-shadow:
    0 10px 22px -10px rgba(83, 125, 79, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.about__cta:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.about__cta:active {
  transform: translateY(0) scale(0.99);
}

.about__cta svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.about__cta:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   VALUES — Bento 2.0 (§9)
   ═══════════════════════════════════════ */
.values {
  position: relative;
  background: var(--cream);
  padding: 5rem 0 8rem;
}

.values__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values__header {
  max-width: 620px;
  margin-bottom: 4rem;
}

.values__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
}

.values__lede {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 60ch;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 1.25rem;
}

.value-card {
  position: relative;
  padding: 2rem 2rem 2.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform var(--duration-normal) var(--ease-out-expo),
    box-shadow var(--duration-normal) var(--ease-out-expo),
    border-color var(--duration-normal) var(--ease-out-expo);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

/* Asymmetric bento layout (6-col grid)
   Row 1: feature spans 3, two stacked narrow = 3    → 3 + 3
   Row 2: two cards of 3 + 3 (04 + 05)              → 3 + 3
*/
.value-card--feature {
  grid-column: span 3;
  grid-row: span 2;
}

.value-card:nth-child(2) {
  grid-column: span 3;
}

.value-card:nth-child(3) {
  grid-column: span 3;
}

.value-card:nth-child(4) {
  grid-column: span 3;
}

.value-card--feature-sm {
  grid-column: span 3;
}

.value-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.value-card__index {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  font-feature-settings: "tnum";
}

.value-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  background: var(--accent-soft);
  border-radius: 999px;
}

.value-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.875rem;
  max-width: 22ch;
}

.value-card--feature .value-card__title {
  font-size: 1.875rem;
  max-width: 16ch;
}

.value-card__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: auto;
  max-width: 42ch;
}

.value-card__media {
  margin-top: 2rem;
  position: relative;
}

/* Card 01 — timeline */
.value-card__timeline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.value-card__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, var(--border) 0%, var(--forest) 50%, var(--border) 100%);
}

.value-card__tick {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  flex: 1;
}

.value-card__tick span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  font-feature-settings: "tnum";
}

.value-card__tick em {
  font-style: normal;
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.value-card__tick--now span {
  color: var(--forest);
}

.value-card__tick--now::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  margin-bottom: 4px;
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulseDot 3s ease-in-out infinite;
}

/* Card 02 — check */
.value-card__media--check {
  color: var(--forest);
  opacity: 0.85;
}

/* Card 03 — chat bubbles */
.value-card__media--chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.value-card__bubble {
  padding: 0.625rem 0.9rem;
  border-radius: 14px;
  font-size: 0.8125rem;
  line-height: 1.4;
  max-width: 75%;
}

.value-card__bubble--them {
  background: var(--cream-warm);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}

.value-card__bubble--us {
  align-self: flex-end;
  background: var(--forest);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

/* Card 04 — steps checklist */
.value-card__media--steps {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.value-card__step {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.value-card__step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}

.value-card__step--active {
  color: var(--text-primary);
  font-weight: 500;
}

.value-card__step--active .value-card__step-dot {
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Card 05 — map */
.value-card__media--map {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.value-card__pin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.value-card__pin span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.value-card__counties {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.value-card__counties li {
  padding: 0.3rem 0.65rem;
  background: var(--cream-warm);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Stagger reveal */
.value-card.reveal-up {
  transition-delay: calc(var(--index, 0) * 90ms);
}

/* ═══════════════════════════════════════
   POPULAR SERVICES — circle carousel
   ═══════════════════════════════════════ */
.pop-services {
  background: var(--white);
  padding: 6rem 0;
  overflow: hidden;
}

.pop-services__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header row */
.pop-services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.pop-services__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pop-services__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pop-services__leaf {
  display: inline-block;
  vertical-align: middle;
}

.pop-services__see-all {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pop-services__see-all:hover {
  color: var(--forest);
}

/* Cards row */
.pop-circles {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.pop-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.pop-track.pop-track--no-transition {
  transition: none;
}

.pop-card--dim {
  opacity: 0.6;
  transform: scale(0.95);
}

.pop-card--highlight {
  border-color: var(--forest);
  background: rgba(83, 125, 79, 0.06);
}

.pop-card {
  flex-shrink: 0;
  width: 18rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
  cursor: pointer;
}

.pop-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pop-card--highlight {
  border-color: var(--forest);
}

.pop-card__img {
  position: relative;
  height: 14rem;
}

.pop-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pop-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-primary);
}

.pop-card__body {
  padding: 0.95rem 1rem 1.05rem;
  background: #ddf4b0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pop-card__pill {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  width: 100%;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pop-card__pill--tag {
  font-size: 0.8rem;
  padding: 0.32rem 0.9rem;
  font-weight: 500;
  background: #d8fbaa;
  color: #3a5937;
  justify-content: center;
  text-align: center;
}

.pop-card__pill--name {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.42rem 1rem;
  background: #f4f7ef;
  color: #2f3d31;
}

.pop-card__pill--name:hover {
  background: #edf4e2;
  color: var(--forest);
}

/* Arrow buttons */
.pop-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 0.75rem;
}

.pop-arrows__btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.pop-arrows__btn:hover {
  color: var(--text-primary);
}

/* Active info */
.pop-info {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.pop-info__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

/* min-height locks the description box so swapping between services
   (different copy lengths) doesn't make the whole section jump */
.pop-info__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  min-height: 4.95em;
  /* fits the longest 3-line description without shifting layout */
}

/* Pill tabs */
.pop-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
}

.pop-tab {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.pop-tab:hover {
  color: var(--text-primary);
}

.pop-tab.active {
  background: var(--accent-soft);
  color: var(--forest);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

.pop-tab.active .pop-tab__arrows {
  display: inline;
}

/* The JS-injected row break between tab 3 and tab 4 — only active on mobile.
   On desktop it must be invisible AND non-flex-item to avoid creating a visible gap. */
.pop-tabs__break {
  display: none;
}

.pop-tab__leaf {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

.pop-tab__arrows {
  display: none;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   SERVICES — zig-zag rows (§7 no 3-col cards)
   ═══════════════════════════════════════ */
.services {
  background: var(--cream);
  padding: 7rem 0 7rem;
  position: relative;
}

.services__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services__header {
  max-width: 640px;
  margin-bottom: 5rem;
}

.services__title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
}

.services__subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 58ch;
  line-height: 1.65;
}

/* ── Rows ── */
.services__rows {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  transition-delay: calc(var(--index, 0) * 80ms);
}

.service-row--reverse {
  grid-template-columns: 1fr 1.05fr;
}

.service-row--reverse .service-row__media {
  order: 2;
}

.service-row--reverse .service-row__body {
  order: 1;
}

/* Media (image) */
.service-row__media {
  position: relative;
}

.service-row__image-link {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3.2;
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
}

.service-row__image-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.1));
  pointer-events: none;
  z-index: 1;
}

.service-row__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.service-row__image-link:hover img {
  transform: scale(1.04);
}

/* Icon media (cards without hero photos) */
.service-row__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-row__icon-frame {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, var(--accent-soft) 0%, transparent 65%),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  position: relative;
}

.service-row__icon-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.35rem 0.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Body column */
.service-row__body {
  max-width: 540px;
}

.service-row__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.service-row__index {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.14em;
  font-feature-settings: "tnum";
}

.service-row__rule {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--border-strong);
}

.service-row__kicker {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-row__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.service-row__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 54ch;
}

.service-row__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.service-row__tags li {
  padding: 0.4rem 0.875rem;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
  transition:
    background var(--duration-fast) var(--ease-out-expo),
    border-color var(--duration-fast) var(--ease-out-expo),
    color var(--duration-fast) var(--ease-out-expo);
}

.service-row__tags li:hover {
  background: var(--accent-soft);
  border-color: var(--forest);
  color: var(--forest);
}

.service-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  transition:
    gap var(--duration-normal) var(--ease-out-expo),
    border-color var(--duration-fast) var(--ease-out-expo);
}

.service-row__link:hover {
  gap: 0.875rem;
  border-bottom-color: var(--forest);
}

.service-row__link svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.service-row__link:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   SCROLL MORPH — overlay animation + reveal
   ═══════════════════════════════════════ */
.scroll-morph {
  position: relative;
  height: 500vh;
  background: var(--cream, #efefeb);
}

.scroll-morph__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Card stage — on top */
.scroll-morph__stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Intro text — centered in stage */
.scroll-morph__intro {
  position: absolute;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.scroll-morph__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-primary, #0f172a);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.scroll-morph__heading em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest, #537d4f);
}

.scroll-morph__cue {
  margin-top: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted, #94a3b8);
}

/* Reveal layer — centered in viewport, appears inside circle */
.scroll-morph__reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.scroll-morph__reveal .green-oasis__stage {
  pointer-events: auto;
}

/* Individual morph card */
.morph-card {
  position: absolute;
  width: 60px;
  height: 85px;
  will-change: transform, opacity;
  cursor: pointer;
  perspective: 1000px;
}

/* Admin toggle: when the floating images are hidden, also drop the 500vh scroll room,
   the pinned sticky behavior, the "Your outdoor vision realized" intro, and the
   scroll-driven opacity/transform animation. Just leave the Why Choose Us reveal as
   a normal-flow section. */
.scroll-morph--cards-off {
  height: auto !important;
}

.scroll-morph--cards-off .scroll-morph__sticky {
  position: static !important;
  height: auto !important;
  overflow: visible !important;
}

.scroll-morph--cards-off .scroll-morph__stage,
.scroll-morph--cards-off .scroll-morph__intro {
  display: none !important;
}

.scroll-morph--cards-off .morph-card {
  display: none !important;
}

.scroll-morph--cards-off .scroll-morph__reveal {
  position: relative !important;
  inset: auto !important;
  opacity: 1 !important;
  transform: none !important;
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  pointer-events: auto !important;
}

.scroll-morph--cards-off .scroll-morph__reveal .green-oasis__svg {
  opacity: 1 !important;
  /* Undo GSAP's gsap.set(revealRings, { scale: 0.8 }) so the icon rings render
     at full size. The SVG-native <animateMotion> animations continue running. */
  transform: none !important;
  scale: none !important;
}

.scroll-morph--cards-off .scroll-morph__reveal .green-oasis__center {
  opacity: 1 !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.scroll-morph--cards-off .scroll-morph__reveal .green-oasis__stage {
  margin: 0 auto !important;
}

.scroll-morph--cards-off .scroll-morph__reveal .green-oasis__btn {
  margin-top: 1.25rem !important;
}

.morph-card__flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.morph-card:hover .morph-card__flip {
  transform: rotateY(180deg);
}

.morph-card__front,
.morph-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.morph-card__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.morph-card__front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.3s;
}

.morph-card:hover .morph-card__front::after {
  background: transparent;
}

.morph-card__back {
  transform: rotateY(180deg);
  background: var(--charcoal, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.morph-card__back-label {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--forest-light, #6b9a60);
  margin-bottom: 2px;
}

.morph-card__back-text {
  font-size: 11px;
  font-weight: 500;
  color: #efefeb;
}

@media (max-width: 768px) {
  .scroll-morph {
    height: 350vh;
  }

  .morph-card {
    width: 48px;
    height: 68px;
  }
}

/* ═══════════════════════════════════════
   ZOOM PARALLAX — scroll-driven image gallery
   ═══════════════════════════════════════ */
.zoom-parallax {
  position: relative;
  height: 300vh;
  background: var(--cream, #efefeb);
  /* Hidden by default — admin toggle adds .zoom-parallax--enabled */
  display: none;
}

/* Admin toggle: show on desktop when enabled */
.zoom-parallax.zoom-parallax--enabled {
  display: block;
}

.zoom-parallax__sticky {
  height: 100vh;
  overflow: hidden;
}

/* Each frame covers the viewport, uses flex to center, then scales via GSAP */
.zp-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

/* Outer images on top — they fly away first, revealing centre last */
.zp-frame--0 {
  z-index: 1;
}

.zp-frame--1 {
  z-index: 2;
}

.zp-frame--2 {
  z-index: 3;
}

.zp-frame--3 {
  z-index: 4;
}

.zp-frame--4 {
  z-index: 5;
}

.zp-frame--5 {
  z-index: 6;
}

.zp-frame--6 {
  z-index: 7;
}

.zp-frame__inner {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.zp-frame__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Frame 0 — centre hero */
.zp-frame--0 .zp-frame__inner {
  width: 25vw;
  height: 25vh;
}

/* Frame 1 — top-left */
.zp-frame--1 .zp-frame__inner {
  width: 35vw;
  height: 30vh;
  top: -30vh;
  left: 5vw;
}

/* Frame 2 — far-left column */
.zp-frame--2 .zp-frame__inner {
  width: 20vw;
  height: 45vh;
  top: -10vh;
  left: -25vw;
}

/* Frame 3 — right offset */
.zp-frame--3 .zp-frame__inner {
  width: 25vw;
  height: 25vh;
  left: 27.5vw;
}

/* Frame 4 — lower-left */
.zp-frame--4 .zp-frame__inner {
  width: 20vw;
  height: 25vh;
  top: 27.5vh;
  left: 5vw;
}

/* Frame 5 — lower-right wide */
.zp-frame--5 .zp-frame__inner {
  width: 30vw;
  height: 25vh;
  top: 27.5vh;
  left: -22.5vw;
}

/* Frame 6 — far-right small */
.zp-frame--6 .zp-frame__inner {
  width: 15vw;
  height: 15vh;
  top: 22.5vh;
  left: 25vw;
}

/* Mobile: hide the zoom parallax section entirely — the scroll-driven layout doesn't translate well to phones */
@media (max-width: 768px) {
  .zoom-parallax {
    display: none;
  }

  .zoom-parallax__sticky {
    overflow: hidden;
  }

  /* Compact frames — separated, no overlap at start */
  .zp-frame--0 .zp-frame__inner {
    width: 40vw;
    height: 24vh;
  }

  .zp-frame--1 .zp-frame__inner {
    width: 35vw;
    height: 18vh;
    top: -20vh;
    left: 5vw;
  }

  .zp-frame--2 .zp-frame__inner {
    width: 28vw;
    height: 24vh;
    top: -4vh;
    left: -22vw;
  }

  .zp-frame--3 .zp-frame__inner {
    width: 30vw;
    height: 16vh;
    left: 22vw;
    top: 0;
  }

  .zp-frame--4 .zp-frame__inner {
    width: 28vw;
    height: 16vh;
    top: 18vh;
    left: 4vw;
  }

  .zp-frame--5 .zp-frame__inner {
    width: 32vw;
    height: 16vh;
    top: 18vh;
    left: -20vw;
  }

  .zp-frame--6 .zp-frame__inner {
    width: 22vw;
    height: 12vh;
    top: 14vh;
    left: 24vw;
  }
}

/* ═══════════════════════════════════════
   PROJECT SHOWCASE — exact reference match
   All images LEFT (small thumbs + big selected) · info RIGHT
   ═══════════════════════════════════════ */
.showcase {
  background: var(--surface);
  padding: var(--space-lg) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}

/* Thin decorative arc sweeping under the heading */
.showcase::before {
  content: '';
  position: absolute;
  top: -430px;
  left: -15%;
  width: 130%;
  height: 670px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.showcase__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ── Header: ✦ Projects left · heading centre · See All → right ── */
.showcase__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-top: 0.6rem;
}

.showcase__tag svg {
  color: var(--forest);
}

.showcase__heading {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.05;
  font-family: 'Outfit', sans-serif;
}

.showcase__heading-icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.15em;
  position: relative;
  top: -0.1em;
}

.showcase__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  white-space: nowrap;
  justify-self: end;
  margin-top: 0.6rem;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.showcase__see-all svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.showcase__see-all:hover {
  color: var(--forest);
}

.showcase__see-all:hover svg {
  transform: translateX(4px);
}

/* ══ Feature layout ══
   Left column  = title/location at top, thumbs at bottom
   Right column = main image (wider)
   ══════════════════════ */
.showcase__feature {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr;
  grid-template-rows: auto 1fr;
  gap: 2rem;
  align-items: stretch;
  overflow: hidden;
}

/* ── Thumbs: bottom-left ── */
.showcase__thumbs {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-self: start;
  align-self: end;
  padding-bottom: 1rem;
  z-index: 3;
  position: relative;
}

.showcase__thumb {
  width: 100px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--surface);
  cursor: pointer;
  background: var(--cream);
  padding: 0;
  transition: all var(--duration-normal) var(--ease-out-expo),
    width 0.4s ease, height 0.4s ease, opacity 0.3s ease,
    margin 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase__thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}


/* ── Main image: fills the right column width, same height as before ── */
.showcase__main-img {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: stretch;
  align-self: end;
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 440px;
  width: 100%;
  flex-shrink: 0;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.showcase__main-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--duration-normal) var(--ease-out-expo);
}

/* Carousel > arrow at bottom-centre of image */
.showcase__next {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--duration-fast) var(--ease-out-expo);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.showcase__next:hover {
  background: var(--surface);
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ══ Details: top-left, above the thumbs ══ */
.showcase__details {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.showcase__project-tag {
  display: none !important;
  align-items: center;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background-color: rgba(83, 125, 79, 0.08);
  border: 1px solid rgba(83, 125, 79, 0.25);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #537d4f;
}

.showcase__project-label {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-primary);
}

.showcase__project-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.showcase__project-location::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23537d4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

.showcase__project-cats {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.showcase__cat-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.showcase__cat-item svg {
  flex-shrink: 0;
  color: var(--forest, #537d4f);
}

.showcase__project-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 36ch;
  margin-bottom: 2.5rem;
  height: 8.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* Stat chips — rounded bordered boxes, side by side */
.showcase__stats {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.showcase__stat {
  padding: 1.15rem 1.6rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 110px;
}

.showcase__stat-value {
  font-family: 'Outfit', sans-serif;
  font-feature-settings: 'tnum' on, 'lnum' on;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.showcase__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Learn More — circular icon with label text below */
.showcase__learn-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  width: fit-content;
}

.showcase__learn-more-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.showcase__learn-more-wrap:hover .showcase__learn-more-circle {
  border-color: var(--forest);
  background: var(--accent-soft);
  transform: scale(1.06);
}

.showcase__learn-more-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Customer attribution */
.showcase__client {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.showcase__client-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.showcase__client-name {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   TESTIMONIALS — light, editorial quote card
   ═══════════════════════════════════════ */
.testimonials {
  background: var(--cream-warm);
  padding: 7rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.testimonials__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.testimonials__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1rem;
}

.testimonials__title strong {
  font-weight: 500;
  color: var(--forest);
}

.testimonials__subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.65;
}

.testimonials__carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.testimonials__track {
  position: relative;
  min-height: 380px;
}

/* Testimonial Card */
.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.testimonial-card--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-card--exit {
  opacity: 0;
  transform: translateX(-32px);
}

.testimonial-card__quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.25rem 3.5rem 3rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote-icon {
  display: none;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  left: 2.5rem;
  font-family: 'Outfit', serif;
  font-size: 5rem;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.18;
  line-height: 1;
}

.testimonial-card__quote p {
  font-size: 1.1875rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.012em;
  max-width: 62ch;
  position: relative;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
}

.testimonial-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.testimonial-card__name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.testimonial-card__project {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.testimonial-card__stars svg {
  fill: var(--gold) !important;
}

/* Testimonial Dots */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.testimonials__dot {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out-expo),
    width var(--duration-normal) var(--ease-spring);
  padding: 0;
}

.testimonials__dot--active {
  background: var(--forest);
  width: 44px;
}

.testimonials__dot:hover {
  background: var(--forest-light);
}

/* Testimonial Arrows */
.testimonials__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--duration-fast) var(--ease-spring),
    background var(--duration-fast) var(--ease-out-expo),
    color var(--duration-fast) var(--ease-out-expo),
    border-color var(--duration-fast) var(--ease-out-expo);
  z-index: 5;
}

.testimonials__arrow:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.testimonials__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonials__arrow--prev {
  left: -72px;
}

.testimonials__arrow--next {
  right: -72px;
}

/* ═══════════════════════════════════════
   STATS — hairline-divided editorial row (§3 Rule 4 anti-card)
   ═══════════════════════════════════════ */
.stats {
  background: var(--surface);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
}

.stats::before,
.stats::after {
  content: '';
  position: absolute;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: var(--border-strong);
}

.stats::before {
  top: 0;
}

.stats::after {
  bottom: 0;
}

.stats__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-lg);
  align-items: center;
}

.stats__lede {
  max-width: 34ch;
}

.stats__lede-copy {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: baseline;
  column-gap: 0;
  position: relative;
}

.stats__row::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border-strong), var(--border-strong)),
    linear-gradient(var(--border-strong), var(--border-strong)),
    linear-gradient(var(--border-strong), var(--border-strong));
  background-size: 1px 72%, 1px 72%, 1px 72%;
  background-repeat: no-repeat;
  background-position: 25% 50%, 50% 50%, 75% 50%;
}

.stats__item {
  padding: 0.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
}

.stats__number {
  font-family: 'Outfit', sans-serif;
  font-feature-settings: 'tnum' on, 'lnum' on;
  font-size: clamp(2.75rem, 5.4vw, 4.25rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.stats__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CONTACT SECTION — editorial asymmetric
   ═══════════════════════════════════════ */
.contact-section {
  background: var(--cream-warm);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.6;
}

.contact-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}

.contact-section__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section__title {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: var(--space-md);
}

.contact-section__title strong {
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
}

.contact-section__desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: var(--space-lg);
}

.contact-section__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-strong);
}

.contact-section__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.contact-section__detail svg {
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 3px;
  padding: 0.35rem;
  box-sizing: content-box;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 18px;
  height: 18px;
}

.contact-section__detail a {
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.contact-section__detail a:hover {
  color: var(--forest);
}

/* Contact Form — floating label, pure white card */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: var(--shadow-inner);
  pointer-events: none;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__group {
  margin-bottom: 0.35rem;
  position: relative;
}

.contact-form__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.4rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--duration-normal) var(--ease-out-expo);
}

.contact-form__input::placeholder {
  color: var(--text-muted);
  opacity: 0.55;
}

.contact-form__input:focus {
  border-bottom-color: var(--forest);
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 56px;
  padding-left: 0;
  padding-right: 0;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.3rem;
  background: var(--text-primary);
  color: var(--surface);
  border: none;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
  box-shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-top: 0.5rem;
}

.contact-form__submit:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(83, 125, 79, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-form__submit:active {
  transform: translateY(0) scale(0.98);
}

.contact-form__submit svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.contact-form__submit:hover svg {
  transform: translateX(3px) translateY(-2px);
}

/* Success state */
.contact-form__submit--success {
  background: var(--forest);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   MAILING LIST — light inline editorial
   ═══════════════════════════════════════ */
.mailing {
  background: var(--cream-warm);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.mailing::before {
  content: '';
  position: absolute;
  left: -15%;
  top: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.7;
}

.mailing__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.mailing__content {
  max-width: 38ch;
}

.mailing__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.mailing__title::after {
  content: '.';
  color: var(--forest);
  font-weight: 500;
  font-style: italic;
}

.mailing__desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 36ch;
  line-height: 1.65;
}

.mailing__form {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  box-shadow: var(--shadow-md);
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow var(--duration-normal) var(--ease-out-expo),
    border-color var(--duration-normal) var(--ease-out-expo);
}

.mailing__form:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow-md);
}

.mailing__field {
  flex: 1;
  min-width: 0;
  position: relative;
}

.mailing__field+.mailing__field::before {
  content: '';
  position: absolute;
  left: -0.375rem;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--border-strong);
}

.mailing__input {
  width: 100%;
  padding: 0.95rem 0.25rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
}

.mailing__input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.mailing__submit {
  flex-shrink: 0;
  padding: 0.85rem 1.9rem;
  background: var(--text-primary);
  color: var(--surface);
  border: none;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--duration-normal) var(--ease-out-expo);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mailing__submit:hover {
  background: var(--forest);
  transform: translateX(2px);
}

.mailing__submit:active {
  transform: translateX(0) scale(0.98);
}

/* ═══════════════════════════════════════
   MAP
   ═══════════════════════════════════════ */
.map-section {
  width: 100%;
  line-height: 0;
  border-top: 1px solid var(--border-strong);
}

.map-section iframe {
  filter: saturate(0.85) contrast(1.02);
}

/* ═══════════════════════════════════════
   FOOTER — editorial, hairline-divided
   ═══════════════════════════════════════ */
.footer {
  background: radial-gradient(circle at 50% 100%, #537d4f 0%, #8cc25a 30%, #b8de7a 50%, #d0f09e 75%, #ddf4b0 100%);
  color: var(--text-secondary);
  padding-top: var(--space-xl);
  font-family: var(--font-primary);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  /* reduced from var(--space-xl) */
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    padding-bottom: 2rem;
    /* reduced negative space above map */
  }
}

/* Footer Brand */
.footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer__logo svg circle {
  stroke: var(--forest);
}

.footer__logo svg circle:nth-child(2) {
  fill: var(--white);
}

.footer__logo svg text {
  fill: var(--forest);
}

.footer__logo-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Certifications (Replacing SOC2/HIPAA) */
.footer__badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  cursor: help;
  /* indicates a native title tooltip is available */
}

.footer__badge:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.footer__badge-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin: 0;
  border-radius: 4px;
}

/* Footer Links */
.footer__links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__links-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 1rem;
    padding-left: 2rem;
  }
}

.footer__link-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link-col h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__link:hover {
  color: var(--forest);
}

.footer__link svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  color: var(--forest);
}

.footer__link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom Map Section */
.footer__vine {
  position: absolute;
  bottom: 455px;
  left: auto;
  right: 62%;
  transform: translateX(50%);
  margin-left: 0;
  width: 200px;
  height: 400px;
  object-fit: contain;
  object-position: bottom;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .footer__vine {
    display: block;
    left: auto;
    right: -40px;
    bottom: 460px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .footer__vine {
    right: -20px;
    bottom: 480px;
    /* moved up */
    width: 220px;
    /* noticeably larger */
    height: 440px;
  }
}

@media (max-width: 480px) {
  .footer__vine {
    right: -10px;
    bottom: 420px;
    /* moved up */
    width: 180px;
    /* noticeably larger */
    height: 360px;
  }
}

.footer__map-wrapper {
  width: 100%;
  height: 380px;
  position: relative;
  z-index: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: saturate(0.85) contrast(1.02);
  mix-blend-mode: normal;
}

/* Copyright Row */
.footer__copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer__copyright-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer__copyright-row a {
  color: inherit;
  text-decoration: none;
}

.footer__copyright-row a:hover {
  color: var(--forest);
}

/* ═══════════════════════════════════════
   SCROLL TO TOP — glass FAB
   ═══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: all var(--duration-normal) var(--ease-out-expo);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 70;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  color: var(--forest);
  border-color: var(--forest);
  transform: translateY(-3px) scale(1);
}

.scroll-top:active {
  transform: translateY(0) scale(0.94);
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST COLLAPSE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about__visual {
    max-width: 520px;
  }

  .about__image-plate {
    inset: 2.5rem -1.5rem -2rem 2rem;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .value-card,
  .value-card--feature,
  .value-card--feature-sm,
  .value-card:nth-child(2),
  .value-card:nth-child(3),
  .value-card:nth-child(4) {
    grid-column: span 1;
    grid-row: auto;
  }

  .value-card--feature {
    grid-column: 1 / -1;
  }

  .services__rows {
    gap: 4.5rem;
  }

  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-row--reverse .service-row__media {
    order: 1;
  }

  .service-row--reverse .service-row__body {
    order: 2;
  }

  .service-row__body {
    max-width: 100%;
  }

  .showcase__feature {
    gap: 1.5rem;
  }

  .showcase__thumbs {
    margin-left: calc(-2rem - 2vw);
  }

  .showcase__thumb {
    width: 72px;
    height: 80px;
  }

  .showcase__main-img {
    height: 420px;
  }

  .stats__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stats__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.25rem;
  }

  .stats__row::before {
    background-image:
      linear-gradient(var(--border-strong), var(--border-strong)),
      linear-gradient(var(--border-strong), var(--border-strong)),
      linear-gradient(var(--border-strong), var(--border-strong));
    background-size: 1px 35%, 100% 1px, 1px 35%;
    background-position: 50% 0%, 50% 50%, 50% 100%;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-section__info {
    position: static;
  }

  .mailing__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__certifications {
    grid-column: 1 / -1;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
    --text-7xl: 3.5rem;
    --nav-height: 70px;
  }

  .top-bar {
    display: none;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }


  .nav__logo-tag {
    font-size: 0.6rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 1.25rem 3.5rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__copy {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.25rem 1rem;
    margin-bottom: 0;
  }

  .hero__copy .hero__title {
    margin: 0 0 0.5rem;
  }

  .hero__copy .hero__subtitle {
    margin: 0;
  }

  .hero__title-line--bold {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .hero__title-line--light {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .hero__subtitle {
    font-size: var(--text-base);
    margin-bottom: 2rem;
  }

  .hero__actions {
    margin-bottom: 2rem;
  }

  .hero__visual {
    height: 62vh;
    min-height: 380px;
  }

  .hero__badge {
    left: 1rem;
    bottom: 1rem;
    padding: 0.875rem 1rem;
    max-width: calc(100% - 2rem);
  }

  .hero__badge-icon {
    width: 38px;
    height: 38px;
  }

  .hero__status {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.875rem;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .about {
    padding: 4.5rem 0 3.5rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about__visual {
    max-width: 440px;
    margin: 0 auto;
    width: calc(100% - 1.5rem);
    transform: translateX(-0.5rem);
  }

  .about__image-frame {
    aspect-ratio: 4 / 3.4;
  }

  .about__image-plate {
    inset: 2rem -1rem -1.5rem 1rem;
  }

  .about__image-badge {
    top: -1rem;
    right: -0.5rem;
    padding: 1rem 1.125rem;
  }

  .about__badge-number {
    font-size: 2.25rem;
  }

  .about__text {
    max-width: 100%;
  }

  .about__signers {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .about__signer-divider {
    display: none;
  }

  .values {
    padding: 3rem 0 5rem;
  }

  .values__header {
    margin-bottom: 2.5rem;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-card,
  .value-card--feature,
  .value-card--feature-sm,
  .value-card:nth-child(2),
  .value-card:nth-child(3),
  .value-card:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .value-card {
    padding: 1.75rem 1.5rem 2rem;
  }

  .value-card--feature .value-card__title {
    font-size: 1.5rem;
  }

  .services {
    padding: 4.5rem 0 4.5rem;
  }

  .services__header {
    margin-bottom: 3rem;
  }

  .services__rows {
    gap: 4rem;
  }

  .service-row__title {
    font-size: 1.625rem;
  }

  .service-row__desc {
    font-size: 1rem;
  }

  .pop-services {
    padding: 3rem 0;
  }

  .pop-services__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .pop-services__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    justify-content: center;
  }

  .pop-services__label {
    margin-bottom: 0;
  }

  .pop-circles {
    margin-bottom: 0.5rem;
  }

  .svc-prefix {
    display: none;
  }

  .pop-card {
    width: 14rem;
  }

  .pop-card__img {
    height: 10rem;
  }

  .pop-arrows {
    gap: 2rem;
    margin-bottom: 0.1rem;
  }

  .pop-info {
    margin-bottom: 0.5rem;
  }

  .pop-info__title {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    margin-bottom: 0.5rem;
  }

  .pop-info__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    /* Mobile uses a tighter line-height — bump min-height to fit ~4 lines so longer copy doesn't push tabs around */
    min-height: 6.2em;
  }

  .pop-tabs {
    /* 3+2 row layout: items 1-3 share row 1, items 4-5 wrap to row 2 via the JS-injected break
       element below. justify-content: center keeps both rows centered. */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.4rem;
  }

  .pop-tabs .pop-tab {
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 500 !important;
    /* Lock padding equal for active + inactive so selecting Landscaping/Hardscaping
       doesn't widen its pill and push Maintenance off row 1 */
    padding: 0.45rem 0.7rem !important;
  }

  /* Hide the leaf icon on mobile — its 14px width was widening the active pill enough
     to push Maintenance onto row 2. Background color still communicates the active state. */
  .pop-tabs .pop-tab__leaf {
    display: none;
  }

  .pop-tabs__break {
    flex-basis: 100%;
    width: 0;
    height: 0;
    display: block;
  }

  .showcase {
    padding: var(--space-lg) 0;
  }

  .showcase::before {
    display: none;
  }

  .showcase__header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .showcase__tag {
    justify-content: center;
    margin-top: 0;
  }

  .showcase__heading {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 400;
    margin: 0;
  }

  .showcase__see-all {
    justify-self: center;
    margin-top: 0;
  }

  .showcase__feature {
    grid-template-columns: 1fr 108px;
    gap: 1.25rem;
    padding: 0 1.25rem 1.25rem;
  }

  .showcase__main-img {
    max-height: none;
    aspect-ratio: 16 / 11;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: auto;
    border-radius: var(--radius-xl);
  }

  .showcase__thumbs {
    position: static;
    margin-left: 0;
    display: grid !important;
    grid-template-columns: repeat(2, 50px) !important;
    grid-template-rows: repeat(2, 50px) !important;
    gap: 8px !important;
    padding-bottom: 0;
    order: 3;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
  }

  .showcase__thumb {
    width: 50px !important;
    height: 50px !important;
    border-radius: var(--radius-md) !important;
    border-width: 2px;
  }

  .showcase__details {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-self: center;
  }

  .showcase__project-label {
    margin-bottom: 0.15rem;
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .showcase__project-location {
    font-size: 0.95rem;
  }

  .showcase__project-cats {
    margin-top: 0.3rem;
    gap: 0.25rem;
  }

  .showcase__cat-item {
    font-size: 0.9rem;
  }

  .showcase__project-desc {
    max-width: 100%;
    grid-column: 1 / -1;
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }

  .showcase__stats {
    grid-column: 1;
    margin-bottom: 0;
    gap: 0.5rem;
  }

  .showcase__stat {
    padding: 0.5rem 0.75rem;
    min-width: 0;
    flex: 1;
  }

  .showcase__stat-value {
    font-size: 1.2rem;
  }

  .showcase__learn-more-wrap {
    grid-column: 2;
    grid-row: 3;
    margin-bottom: 0;
    align-self: center;
  }

  .showcase__learn-more-circle {
    width: 54px;
    height: 54px;
  }

  .showcase__client {
    grid-column: 1 / -1;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .testimonials__track {
    min-height: 380px;
  }

  .testimonial-card__quote {
    padding: 1.5rem;
  }

  .stats {
    padding: var(--space-lg) 0;
  }

  .stats__item {
    padding: 0.25rem 0.75rem;
  }

  .stats__row {
    row-gap: 2rem;
  }

  .contact-section {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .contact-section__inner {
    padding: 0 1.25rem;
    gap: var(--space-md);
  }

  .contact-section__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .contact-section__title br {
    display: none;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }

  .mailing {
    padding: var(--space-lg) 0;
  }

  .mailing__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: var(--space-md);
  }

  .mailing__form {
    flex-direction: column;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    width: 100%;
    align-items: stretch;
    gap: 0.5rem;
  }

  .mailing__field+.mailing__field::before {
    display: none;
  }

  .mailing__field {
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 0.25rem;
  }

  .mailing__field:nth-child(2) {
    border-bottom: none;
  }

  .mailing__input {
    padding: 0.85rem 1rem;
  }

  .mailing__submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 1.9rem;
  }

  .mailing__desc {
    max-width: 100%;
  }

  .footer {
    padding-top: var(--space-lg);
  }

  .footer__top {
    padding: 0 1.25rem var(--space-lg);
    gap: var(--space-lg);
  }

  .footer__brand-col {
    max-width: 100%;
  }

  .footer__badges {
    flex-wrap: wrap;
    gap: 0.625rem;
  }

  .footer__links-grid {
    gap: 1.5rem 1.25rem;
  }

  .footer__map-wrapper {
    height: 300px;
    margin-top: 1rem;
  }

  .footer__copyright-row {
    padding: 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --text-5xl: 2rem;
    --text-7xl: 2.5rem;
  }

  .hero__cta {
    width: auto;
    max-width: 100%;
    justify-content: center;
    white-space: nowrap;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;
  }

  .stats__number {
    font-size: 2.5rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-section__detail span br {
    display: none;
  }

  .footer__badge {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .footer__badge-icon {
    width: 24px;
    height: 24px;
  }

  .footer__links-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__map-wrapper {
    height: 240px;
  }

  .pop-services {
    padding: 2.5rem 0;
  }

  .pop-card {
    width: 15rem;
  }

  .pop-card__img {
    height: 9rem;
  }

  .pop-arrows {
    gap: 1.5rem;
  }

  .showcase__feature {
    padding: 0 1rem 1rem;
    gap: 1rem;
  }

  .showcase__thumb {
    width: 52px;
    height: 52px;
  }

  .showcase__stat {
    padding: 0.65rem 0.85rem;
  }

  .showcase__stat-value {
    font-size: 1.25rem;
  }

  .showcase__learn-more-circle {
    width: 48px;
    height: 48px;
  }
}

/* ═══════════════════════════════════════
   SUB-PAGE STYLES — PREMIUM ELEVATED
   ═══════════════════════════════════════ */

/* ── Page Hero (cinematic, taller) ── */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: pageHeroZoom 20s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}

@keyframes pageHeroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(26, 30, 26, 0.95) 0%,
      rgba(26, 30, 26, 0.75) 30%,
      rgba(26, 30, 26, 0.4) 60%,
      rgba(26, 30, 26, 0.15) 100%),
    linear-gradient(135deg,
      rgba(83, 125, 79, 0.25) 0%,
      transparent 70%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--sage);
  padding-left: 2.5rem;
  margin-top: 4rem;
  /* push down slightly to center vertically taking navbar into account */
  animation: heroReveal 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--sage-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(83, 125, 79, 0.3);
  border: 1px solid rgba(163, 184, 153, 0.25);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  align-self: flex-start;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-hero__title strong {
  font-weight: 800;
  background: linear-gradient(135deg, #efefeb 0%, var(--sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.page-hero__subtitle {
  display: inline-block;
  font-size: var(--text-base);
  font-weight: 400;
  color: rgba(239, 239, 235, 0.9);
  margin-top: 1.5rem;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ── Decorative bottom wave ── */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

/* ── Page Content ── */
.page-content {
  background: var(--white);
  padding: var(--space-lg) 0 var(--space-2xl);
  position: relative;
}

.page-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-content__heading {
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: var(--space-md);
  display: inline-block;
  cursor: default;
}

.page-content__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--sage));
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.page-content__heading:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── Intro section with decorative accent ── */
.page-content__intro {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--sage-light);
  margin-bottom: var(--space-xl);
}

.page-content__intro .about__paragraph {
  font-size: var(--text-lg);
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 72ch;
}

.page-content__intro .about__paragraph:first-child {
  font-size: var(--text-xl);
  color: var(--text-primary);
  font-weight: 400;
}

.page-content__services {
  margin-top: var(--space-xl);
  text-align: center;
}

/* ── Service Columns ── */
.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .service-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-columns {
    grid-template-columns: 1fr;
  }
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-column__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--forest-deep);
  border-bottom: 2px solid var(--sage);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

/* ── Service List — numbered cards ── */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  counter-reset: service-counter;
}

.service-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(163, 184, 153, 0.15);
  border-radius: 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  position: relative;
  transition: all var(--duration-normal) var(--ease-out-expo);
  counter-increment: service-counter;
  overflow: hidden;
}

.service-list__item::before {
  content: counter(service-counter, decimal-leading-zero);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(163, 184, 153, 0.08);
  line-height: 1;
  pointer-events: none;
  transition: color var(--duration-normal) var(--ease-out-expo);
}

.service-list__item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  padding: 3px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: var(--white);
  border-radius: 6px;
  flex-shrink: 0;
}

.service-list__item:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.service-list__item:hover::before {
  color: rgba(83, 125, 79, 0.1);
}

/* ── Project Showcase — glassmorphic cards ── */
.page-content__projects {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--stone);
}

.project-showcase {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(163, 184, 153, 0.15);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}

.project-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--forest), var(--sage));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out-expo);
}

.project-showcase:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(163, 184, 153, 0.25);
}

.project-showcase:hover::before {
  opacity: 1;
}

.project-showcase__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.project-showcase__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.3rem 0.85rem;
  background: rgba(83, 125, 79, 0.06);
  border: 1px solid rgba(83, 125, 79, 0.12);
  border-radius: 50px;
}

.project-showcase__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ── Split layout — text left, image right ── */
.project-showcase--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.project-showcase__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.project-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.project-showcase--split:hover .project-showcase__image img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .project-showcase--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-showcase__image {
    order: -1;
  }
}

/* ── Sub-page CTA — full-width forest gradient band ── */
.cta-section {
  background: var(--cream);
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 2;
}

.premium-cta {
  margin: 0;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--forest-deep) 50%, var(--charcoal) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(22, 33, 21, 0.4);
}

.premium-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(83, 125, 79, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(163, 184, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.premium-cta h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.premium-cta p {
  font-size: var(--text-lg);
  color: var(--sage);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.premium-cta .hero__cta {
  position: relative;
  z-index: 1;
}

/* ── Sub-page responsive ── */
@media (max-width: 1024px) {
  .page-content__inner {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 50vh;
  }

  .page-hero__content {
    border-left: 3px solid var(--sage);
    padding-left: 1.5rem;
    margin-left: 1rem;
    margin-top: 2rem;
  }

  .page-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-hero::after {
    height: 30px;
  }

  .page-content__intro {
    padding-left: 1.25rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list__item::before {
    font-size: 2rem;
    right: 0.75rem;
  }

  .project-showcase {
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
  }

  .page-content__cta {
    padding: var(--space-lg) var(--space-md);
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 45vh;
  }

  .page-hero__content {
    margin-left: 0.5rem;
    padding-left: 1.25rem;
  }

  .page-content__heading {
    font-size: var(--text-2xl);
  }

  .service-list__item {
    padding: 0.9rem 1rem;
  }
}

/* ─── GRAIN TEXTURE OVERLAY (performance-safe) ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════
   PROJECT GALLERY
   ═══════════════════════════════════════ */
/* ── Editorial Header ── */
.edit-header {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem 4rem;
  background: transparent;
  border-bottom: none;
}

.edit-header__inner {
  max-width: 1200px;
  margin: -4rem auto 0;
}

.edit-header__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  text-transform: none;
  letter-spacing: -0.04em;
  color: var(--text, #1a1e1a);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.edit-header__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest, #537d4f);
  text-transform: none;
}

.edit-header__desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: 0;
  text-transform: none;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Project Archive Section ── */
.proj-archive {
  padding: 4rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  background: #fdfdfb;
}

.proj-archive .page-content__services {
  margin-top: 0;
  margin-bottom: 6rem;
}

.proj-archive .page-content__heading {
  /* Hidden — filter pills provide enough context */
  display: none !important;
}

.proj-archive .page-content__heading::after {
  display: none !important;
}

/* ── Gallery Grid ── */
/* ── Gallery Grid (Lusion 2-Col) ── */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 3rem;
}

.project-gallery__item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  group: hover;
}

.project-gallery__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background: var(--stone);
  margin-bottom: 0.6rem;
  /* Basic box shadow, depth added via scroll later */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, clip-path;
}

.project-gallery__item:hover .project-gallery__img-wrap {
  transform: scale(1.03);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.15);
}

.project-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.project-gallery__item:hover .project-gallery__img {
  transform: scale(1.05);
}

.project-gallery__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 40%);
  opacity: 1;
  pointer-events: none;
}

/* Legacy glass-pill badges are no longer rendered — tags now sit inline after location */
.project-gallery__badge { display: none; }

/* Meta row: location + category tags inline below each project image */
.project-gallery__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0.25rem 0 0;
}

/* Reset the standalone-location styles since it now lives inside .project-gallery__meta */
.project-gallery__meta .project-gallery__location {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary, #6b7280);
}

.project-gallery__cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest, #537d4f);
  text-transform: none;
}

.project-gallery__cat-tag svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.project-gallery__meta-container {
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
}

.project-gallery__bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.project-gallery__bento-tag {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: var(--stone);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.project-gallery__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-gallery__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--charcoal);
  margin: 0;
  transition: color 0.3s ease;
  text-align: left;
}

.project-gallery__item:hover .project-gallery__title {
  color: var(--forest);
}

.project-gallery__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery__item:hover .project-gallery__arrow {
  background: var(--forest);
  border-color: var(--forest);
  color: #efefeb;
  transform: translate(4px, -4px);
}

.project-gallery__desc,
.project-gallery__caption,
.project-gallery__overlay,
.project-gallery__overlay-title,
.project-gallery__overlay-arrow,
.project-gallery__num {
  display: none;
}

.project-gallery__location {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary, #6b7280);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
}

.project-gallery__location::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23537d4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

/* ── Enhanced category heading ── */
.proj-archive .page-content__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 1.25rem;
  border-left: 4px solid var(--forest, #537d4f);
}

.proj-archive .page-content__heading::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-strong, rgba(15, 23, 42, 0.1)), transparent);
}

/* ── Skeleton loading shimmer ── */
.entry-list__loading {
  position: relative;
  overflow: hidden;
}

.entry-list__loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(83, 125, 79, 0.05), transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Section spacing handled by margin-bottom on each .page-content__services — no extra padding-top
   so filtered views all start at the same vertical position as Landscape / All Projects. */

@media (max-width: 1024px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .proj-archive .page-content__heading {
    font-size: 2rem;
    padding-left: 1rem;
    border-left-width: 3px;
  }

  .project-gallery__num {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .edit-header {
    padding: 8rem 1.5rem 3rem;
  }

  .proj-archive {
    padding: 2.5rem 1.5rem 1rem;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-gallery__overlay-title {
    font-size: 0.75rem;
  }

  .project-gallery__overlay-arrow {
    width: 30px;
    height: 30px;
  }
}

/* ═══════════════════════════════════════
   PROJECT GALLERY — Multi-Image Badge
   ═══════════════════════════════════════ */
.project-gallery__multi-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  z-index: 3;
}

.project-gallery__item {
  cursor: pointer;
}

/* ═══════════════════════════════════════
   PROJECT LIGHTBOX
   ═══════════════════════════════════════ */
/* Full-screen horizontal scroll viewer */
.proj-viewer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0f0a;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  display: flex;
  flex-direction: column;
}

.proj-viewer--open {
  opacity: 1;
  visibility: visible;
}

.proj-viewer__topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(10, 15, 10, .85), rgba(10, 15, 10, 0));
  pointer-events: none;
}

.proj-viewer__topbar>* {
  pointer-events: auto;
}

.proj-viewer__meta {
  color: #fff;
}

.proj-viewer__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  letter-spacing: -.01em;
}

.proj-viewer__location {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  margin: 0;
  letter-spacing: .02em;
}

.proj-viewer__topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proj-viewer__counter {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .15em;
  font-variant-numeric: tabular-nums;
}

.proj-viewer__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s, border-color .2s;
}

.proj-viewer__close:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .3);
  transform: scale(1.05);
}

.proj-viewer__track {
  flex: 1;
  display: flex;
  gap: 2vw;
  padding: 7rem 8vw 9rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-behavior: smooth;
}

.proj-viewer__track::-webkit-scrollbar {
  display: none;
}

.proj-viewer__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.proj-viewer__track.is-dragging img {
  pointer-events: none;
}

.proj-viewer__slide {
  flex: 0 0 auto;
  width: min(82vw, calc(85vh * 1.5));
  max-width: 1400px;
  height: 100%;
  margin: 0;
  scroll-snap-align: center;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.proj-viewer__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.proj-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(20, 30, 20, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
  transition: background .2s, transform .2s, border-color .2s;
}

.proj-viewer__nav:hover {
  background: rgba(83, 125, 79, .55);
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-50%) scale(1.08);
}

.proj-viewer__nav--left {
  left: 2rem;
}

.proj-viewer__nav--right {
  right: 2rem;
}

.proj-viewer__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.25rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 15, 10, .85), rgba(10, 15, 10, 0));
  text-align: center;
  pointer-events: none;
}

.proj-viewer__footer>* {
  pointer-events: auto;
}

.proj-viewer__desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  margin: 0 auto .75rem;
  max-width: 70ch;
  line-height: 1.55;
}

.proj-viewer__dots {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: .5rem;
}

.proj-viewer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: background .2s, transform .2s, width .25s;
}

.proj-viewer__dot:hover {
  background: rgba(255, 255, 255, .5);
}

.proj-viewer__dot.is-active {
  background: #8aad6e;
  width: 24px;
  border-radius: 4px;
}

.proj-viewer__hint {
  font-size: .7rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .proj-viewer__topbar {
    padding: 1rem 1rem;
  }

  .proj-viewer__title {
    font-size: 1.15rem;
  }

  .proj-viewer__location {
    font-size: .75rem;
  }

  .proj-viewer__track {
    padding: 5rem 6vw 8rem;
    gap: 4vw;
  }

  .proj-viewer__slide {
    width: 88vw;
    border-radius: 6px;
  }

  .proj-viewer__nav {
    display: none;
  }

  .proj-viewer__footer {
    padding: 1rem 1rem 1.25rem;
  }

  .proj-viewer__desc {
    font-size: .8rem;
  }

  .proj-viewer__hint {
    display: none;
  }
}

/* ═══════════════════════════════════════
   BLUEPRINT EDITORIAL HEADER
   ═══════════════════════════════════════ */
.blueprint-header {
  padding: 10rem 2rem 5rem;
  background: var(--stone);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.blueprint-header__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blueprint-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background-color: rgba(83, 125, 79, 0.08);
  /* faint var(--forest) */
  border: 1px solid rgba(83, 125, 79, 0.25);
  border-radius: 999px;
  color: #537d4f;
  /* var(--forest) */
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.blueprint-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.blueprint-title__sans {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: #1a1e1a;
  letter-spacing: -0.05em;
  text-transform: none;
}

.blueprint-title__serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #537d4f;
  /* var(--forest) */
  letter-spacing: -0.02em;
  text-transform: none;
}

.blueprint-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: rgba(26, 30, 26, 0.65);
  max-width: 650px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

@media (max-width: 600px) {
  .blueprint-header {
    padding: 8rem 1.5rem 3rem;
  }
}

/* ═══════════════════════════════════════
   BLOG / NEWS LAYOUT
   ═══════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.blog-layout__posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card:last-child {
  border-bottom: none;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.blog-card__category {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest, #537d4f);
  background: rgba(83, 125, 79, 0.08);
  border-radius: 999px;
}

.blog-card__date {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(26, 30, 26, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text, #1a1e1a);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.blog-card__body {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: rgba(26, 30, 26, 0.7);
  line-height: 1.7;
}

.blog-card__body p {
  margin-bottom: 1.5rem;
}

.blog-card__body p:last-child {
  margin-bottom: 0;
}

.blog-card__body ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.blog-card__body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-card__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.6;
}

.blog-card__body a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.blog-card__body a:hover {
  color: var(--forest-deep);
}

/* ═══════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(83, 125, 79, 0.05);
  /* very light forest */
  color: var(--forest, #537d4f);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--forest, #537d4f);
  color: var(--white);
}

/* ═══════════════════════════════════════
   NEWS PAGE - CARD GRID
   ═══════════════════════════════════════ */
.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest);
  background: rgba(83, 125, 79, 0.06);
  border-radius: 50px;
  text-decoration: none !important;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.blog-card__readmore:hover {
  background: var(--forest);
  color: var(--white) !important;
  transform: translateX(4px);
}

.blog-card__readmore svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.blog-card__readmore:hover svg {
  transform: translateX(3px);
}

/* Blog Sidebar */
.blog-layout__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.blog-sidebar__section {
  background: transparent;
  padding: 0 1rem;
  margin-bottom: 2.5rem;
}

.blog-sidebar__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text, #1a1e1a);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--forest, #537d4f);
}

.blog-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(232, 230, 225, 0.5);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.blog-sidebar__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-sidebar__list a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.blog-sidebar__list a:hover {
  color: var(--forest);
}

.blog-sidebar__date,
.blog-sidebar__count {
  font-size: var(--text-xs);
  color: var(--text-muted);
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   BLOG / PROJECT RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-layout__sidebar {
    position: static;
  }


}

@media (max-width: 600px) {


  .blog-card {
    padding: 1.25rem 0.25rem;
  }

  .blog-card__title {
    font-size: var(--text-xl);
  }
}

/* Mobile: reduce the page-content wrapper's horizontal padding so newsletter article bodies get usable width */
@media (max-width: 768px) {
  .page-content__inner {
    padding: 0 0.75rem;
  }
}

/* ─── Constant Contact newsletter article view — make CC's table-based HTML readable on mobile ─── */
@media (max-width: 768px) {

  /* Drop the giant inline 2.5rem article title */
  .blog-card__title {
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.25rem !important;
  }

  /* The opened-article body */
  .blog-card__body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.98rem;
  }

  /* Every child clamps to the viewport, breaks long words/URLs */
  .blog-card__body * {
    max-width: 100% !important;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Constant Contact's fixed-width tables — strip widths and linearize cells */
  .blog-card__body table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    margin: 0 auto !important;
    border-collapse: collapse;
  }

  .blog-card__body tr {
    display: block;
    width: 100%;
  }

  .blog-card__body td,
  .blog-card__body th {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 0.4rem 0 !important;
  }

  /* Images — always responsive */
  .blog-card__body img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0.75rem auto;
    border-radius: 6px;
  }

  /* Reset CC's inline font sizes that look giant on phones */
  .blog-card__body font[size],
  .blog-card__body [style*="font-size"] {
    font-size: inherit !important;
  }

  .blog-card__body h1,
  .blog-card__body h2 {
    font-size: 1.35rem !important;
    line-height: 1.25;
  }

  .blog-card__body h3 {
    font-size: 1.15rem !important;
    line-height: 1.3;
  }

  .blog-card__body h4 {
    font-size: 1.02rem !important;
  }

  /* Inline fixed widths/excessive padding on wrapper divs */
  .blog-card__body div[style*="width"] {
    width: 100% !important;
  }

  .blog-card__body [style*="padding"] {
    padding: 0.5rem 0.25rem !important;
  }
}

/* ═══════════════════════════════════════
   TAILGATE TALK — NEWSLETTER ARCHIVE LIST (GSAP / Project Showcase feature)
   ═══════════════════════════════════════ */
.tailgate-list {
  margin-top: 2rem;
  max-width: 900px;
  position: relative;
}

.tailgate-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Base item link */
.ts-item {
  display: block;
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-out;
  text-decoration: none;
  overflow: visible;
}

/* Background hover highlight */
.ts-bg {
  position: absolute;
  inset: 0 -1rem;
  background: rgba(83, 125, 79, 0.04);
  border-radius: 0.5rem;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.ts-item:hover .ts-bg {
  opacity: 1;
  transform: scale(1);
}

/* Content layout */
.ts-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1;
}

/* Title setup */
.ts-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ts-title {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* Animated underline */
.ts-underline {
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  height: 1px;
  width: 0;
  background: var(--text-primary);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-item:hover .ts-underline {
  width: 100%;
}

/* Slide in arrow */
.ts-arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-item:hover .ts-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--forest);
}

/* Description text */
.ts-desc {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.6;
  max-width: 500px;
  transition: color 0.3s ease;
}

.ts-item:hover .ts-desc {
  color: var(--text-secondary);
}

/* Badge / Date */
.ts-badge {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.ts-item:hover .ts-badge {
  color: var(--text-secondary);
}

/* ── FLOATING PREVIEW CONTAINER ── */
.ts-preview-wrap {
  pointer-events: none;
  position: fixed;
  z-index: 100;
  width: 320px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
  will-change: transform, opacity;
  opacity: 0;
  transform: scale(0.8) translate3d(0, 0, 0);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-preview-wrap.is-visible {
  opacity: 1;
  /* Transform scale is overridden via JS for tracking, but base opacity unlocks */
}

/* Preview Inner Image Setup */
.ts-preview-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--stone);
  border-radius: 12px;
  overflow: hidden;
}

.ts-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(10px);
  transition: all 0.5s ease-out;
  will-change: transform, opacity, filter;
}

.ts-preview-img.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

/* Subtle gradient overlay */
.ts-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   NEWS PAGE — BLOG CARD GRID (ported from React)
   ═══════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}

.news-card:hover {
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* ── Image container ── */
.news-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  margin-bottom: 0;
}

.news-card__img-el {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--surface-2, #f8f9fa);
  transition: transform 0.6s var(--ease-out-expo);
}

.news-card:hover .news-card__img-el {
  transform: scale(1.03);
}

.news-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
  color: var(--text-muted);
}

/* ── Category badge (overlaid on image) ── */
.news-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  padding: 0.3rem 0.75rem;
  z-index: 2;
}

/* ── Card body ── */
.news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
}

.news-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.news-card__excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Footer row: Read more + date ── */
.news-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

/* Read more link */
.news-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.news-card:hover .news-card__readmore {
  color: var(--forest);
}

/* Arrow box container */
.news-card__arrow-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card__arrow-wrap {
  background: var(--forest);
  border-color: var(--forest);
  color: #efefeb;
}

/* Dual arrow animation */
.news-card__arrow--visible {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.news-card__arrow--hidden {
  position: absolute;
  left: -1.25rem;
  transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card__arrow--visible {
  transform: translateX(2rem);
  opacity: 0;
}

.news-card:hover .news-card__arrow--hidden {
  left: 50%;
  transform: translateX(-50%);
}

/* Date with line separator */
.news-card__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.news-card__date-line {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

/* Old classes kept for backward compat */
.news-card__category {
  display: none;
}

.news-card--placeholder {
  opacity: 0.65;
}

.news-articles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-card__img {
    aspect-ratio: 4 / 3;
  }

  .news-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}


/* ═══════════════════ GREEN OASIS ABOUT ═══════════════════ */
@keyframes goFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goSpinLeaf {

  0%,
  100% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(8deg);
  }
}

.green-oasis {
  background: #d5d4d6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem 4rem;
  overflow: hidden;
  position: relative;
}

.green-oasis::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background:
    linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.5) 80%, #efefeb 100%),
    radial-gradient(ellipse 50% 100% at 50% 100%, #efefeb 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.green-oasis__stage {
  position: relative;
  width: 700px;
  max-width: 100%;
  height: 600px;
  animation: goFadeUp 0.9s ease-out forwards;
}

.green-oasis__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.green-oasis__center {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(360px, 90%);
  z-index: 5;
}

.green-oasis__leaf-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #a8cca8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.green-oasis__leaf {
  font-size: 18px;
  display: inline-block;
  animation: goSpinLeaf 3s ease-in-out infinite;
}

.green-oasis__eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8ab89a;
  margin: 0 0 16px;
  font-weight: 500;
  font-family: 'DM Sans', 'Outfit', sans-serif;
}

.green-oasis__body {
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 0 22px;
  color: #2d4a35;
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-weight: 400;
}

.green-oasis__serif {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-style: italic;
  color: #1b3a27;
}

.green-oasis__btn {
  background: #3a6b4a;
  color: #efefeb;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 12px;
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(58, 107, 74, 0.2);
  text-decoration: none;
}

.green-oasis__btn:hover {
  background: #1b4332;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 107, 74, 0.27);
}

@media (max-width: 640px) {
  .green-oasis__stage {
    height: 460px;
  }

  .green-oasis__center {
    top: 44%;
    width: min(230px, 64%);
  }

  .green-oasis__body {
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 18px;
  }

  .green-oasis__eyebrow {
    margin-bottom: 12px;
  }

  .green-oasis__btn {
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .green-oasis__center {
    width: min(210px, 60%);
  }

  .green-oasis__body {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .green-oasis__btn {
    margin-top: 18px;
  }
}

/* Mobile Dropdown styles */
.has-dropdown {
  flex-direction: column;
  align-items: flex-start !important;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 2rem;
  width: 100%;
}

.mobile-dropdown-item {
  display: block;
  font-size: 1.6rem;
  color: var(--forest);
  text-decoration: none;
  padding: 0.8rem 0;
  opacity: 0.8;
  font-family: var(--font-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
  opacity: 1;
  transform: translateX(10px);
}

.mobile-dropdown-icon {
  transition: transform 0.3s ease;
}

.is-open .mobile-dropdown-icon {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════
   DYNAMIC FRAME GRID
   ═══════════════════════════════════════ */
.df-grid {
  display: grid;
  gap: 4px;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 700px;
  border-radius: 16px;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    grid-template-columns 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.df-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: #d5d4d6;
}

.df-cell__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--text, #1a1e1a);
  letter-spacing: 0.01em;
  padding: 1rem;
  z-index: 3;
  transition: opacity 0.35s ease;
}

.df-cell__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.df-cell__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.4s ease;
  z-index: 2;
}

.df-cell:hover .df-cell__img,
.df-cell--active .df-cell__img {
  opacity: 1;
  transform: scale(1);
}

.df-cell:hover .df-cell__overlay,
.df-cell--active .df-cell__overlay {
  background: linear-gradient(to top, rgba(26, 30, 26, 0.7) 0%, rgba(26, 30, 26, 0.2) 50%, transparent 100%);
}

.df-cell:hover .df-cell__label,
.df-cell--active .df-cell__label {
  opacity: 0;
}

.df-cell__icon {
  display: none;
}

/* Mobile */
@media (max-width: 640px) {
  .df-grid {
    aspect-ratio: auto;
    max-height: none;
    gap: 3px;
    border-radius: 12px;
  }

  .df-grid[data-cols="3"] {
    grid-template-columns: 1fr 1fr !important;
  }

  .df-cell {
    min-height: 120px;
  }

  .df-cell__label {
    font-size: 0.8rem;
  }
}

/* ═══════════════════ TESTIMONIALS DOM MIGRATION (MARQUEE) ═══════════════════ */
.testimonials-v2 {
  background-color: #efefeb;
  color: var(--text, #1a1e1a);
  padding: 8rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.testm__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testm__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 1.5rem auto;
}

.testm__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.testm__pill svg {
  color: var(--forest, #537d4f);
}

.testm__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 1.25rem 0;
  color: var(--text, #1a1e1a);
}

.testm__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest, #537d4f);
  text-transform: none;
}

.testm__subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.testm__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.testm__rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b400;
}

.testm__rating-stars svg {
  width: 18px;
  height: 18px;
}

.testm__rating-text {
  font-size: 0.92rem;
  color: #4a4a4a;
  letter-spacing: 0.01em;
}

.testm__rating-text strong {
  color: var(--text-primary, #111);
  font-weight: 700;
}

.google-icon-svg {
  display: none !important;
}

.google-text-rest {
  display: inline-flex;
}

@media (max-width: 768px) {
  .google-icon-svg {
    display: inline-block !important;
  }

  .google-text-rest {
    display: none !important;
  }

  .google-text-g {
    display: none !important;
  }
}

.testm__scroller-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0;
  max-height: none;
  overflow: hidden;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent);
  mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent);
}

.testm__col {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex: 0 0 auto;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Hide columns 2 & 3 — all cards go into a single horizontal track */
.testm__col-2,
.testm__col-3 {
  display: none !important;
}

.testm__list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.testm__card {
  background: #ffffff;
  border: 1px solid rgba(83, 125, 79, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  width: 320px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic 0.16 1 0.3 1;
  cursor: default;
}

.testm__card::before {
  content: "★★★★★";
  display: block;
  color: #f5b400;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.testm__card:hover,
.testm__card:focus,
.testm__card:focus-within,
.testm__card.is-tapped {
  /* No rise/scale — just green outline and shadow */
  transform: none;
  background: #ffffff;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px var(--accent-soft, rgba(83, 125, 79, 0.18)), 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  outline: none;
}

.testm__text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.testm__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.testm__footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.testm__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest, #537d4f);
  color: #efefeb;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.testm__meta {
  display: flex;
  flex-direction: column;
}

.testm__meta strong {
  color: var(--text, #1a1e1a);
  font-size: 0.9rem;
  font-weight: 600;
}

.testm__meta span {
  color: #737373;
  font-size: 0.8rem;
}

/* Narrower desktop — tighten cards so all 3 marquee columns keep fitting */
@media (max-width: 1080px) {
  .testm__card {
    width: 280px;
    padding: 2rem;
    min-height: 270px;
  }

  .testm__scroller-wrap {
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .testm__card {
    width: 240px;
    padding: 1.5rem;
    min-height: 250px;
  }

  .testm__scroller-wrap {
    gap: 0.75rem;
  }

  .testm__text {
    font-size: 0.92rem;
  }
}

@media (max-width: 820px) {
  .testm__card {
    width: 220px;
    padding: 1.25rem;
    min-height: 240px;
  }

  .testm__text {
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

/* Mobile-only horizontal marquee track — populated by JS from existing cards */
.testm__mobile-track {
  display: none;
}

@media (max-width: 768px) {
  .testimonials-v2 {
    padding: 5rem 0;
  }

  .testm__header {
    padding: 0 1.25rem;
    margin-bottom: 0.5rem;
  }

  .testm__pill {
    margin-bottom: 0.5rem;
  }

  .testm__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
  }

  .testm__rating {
    margin-top: 0.75rem;
  }

  .testm__text {
    line-height: 1.4;
  }

  .testm__scroller-wrap {
    flex-direction: row;
    overflow: hidden;
    max-height: none;
    gap: 0;
    /* Vertical padding gives lifted/scaled cards room to grow on tap without being clipped at the top */
    padding: 1.5rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent);
    mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent);
  }

  /* Hide the desktop 3-column structure on mobile (JS sets display:none on .testm__col) */
  .testm__col,
  .testm__col-2,
  .testm__col-3 {
    animation: none !important;
  }

  .testm__mobile-track {
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
    flex: 0 0 auto;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    /* JS drives the translateX with requestAnimationFrame for a continuous loop */
  }

  .testm__mobile-track .testm__card {
    width: 280px;
    flex: 0 0 280px;
    padding: 1.75rem;
    margin: 0;
  }
}

/* ═══════════════ TESTIMONIAL AVATAR LETTER CIRCLES ═══════════════ */
.testm__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest, #537d4f);
  color: #efefeb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   HERO GLASS STAT CARDS
   ═══════════════════════════════════════ */
.hero__stats-row {
  display: flex;
  gap: 0.75rem;
  margin-top: -1.25rem;
  margin-bottom: 0.5rem;
}

.hero__stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__stat-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero__stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #efefeb;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero__stat-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .hero__stats-row {
    margin-top: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero__stat-card {
    width: auto;
    min-width: 72px;
    height: 72px;
    padding: 0 0.75rem;
    border-radius: 12px;
  }

  .hero__stat-num {
    font-size: 1.15rem;
  }

  .hero__stat-lbl {
    font-size: 0.5rem;
  }
}

/* ═══════════════════════════════════════
   TRUSTED BY — LIGHT SPARKLE SLIDER
   ═══════════════════════════════════════ */
.powered-slider {
  background: var(--cream-warm, #d5d4d6);
  padding: 1.5rem 0 2rem;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(61, 107, 53, 0.08);
  border-bottom: 1px solid rgba(61, 107, 53, 0.06);
}

.powered-slider__fade-in {
  display: none;
}

.powered-slider__label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--forest, #3d6b35);
  opacity: 0.45;
  margin: 0 auto;
  padding: 0 0 1.25rem;
  font-family: 'Outfit', sans-serif;
}

.powered-slider__viewport {
  position: relative;
  width: 100%;
  height: 56px;
  overflow: hidden;
}

.powered-slider__blur {
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.powered-slider__blur--l {
  left: 0;
  background: linear-gradient(90deg, var(--cream-warm, #d5d4d6) 0%, rgba(248, 246, 241, 0.85) 40%, transparent 100%);
}

.powered-slider__blur--r {
  right: 0;
  background: linear-gradient(270deg, var(--cream-warm, #d5d4d6) 0%, rgba(248, 246, 241, 0.85) 40%, transparent 100%);
}

.powered-slider__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  height: 100%;
  animation: ps-scroll 35s linear infinite;
}

.powered-slider__track:hover {
  animation-play-state: paused;
}

@keyframes ps-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.powered-slider__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.6rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(61, 107, 53, 0.1);
  border-radius: 999px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.powered-slider__item:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(61, 107, 53, 0.1);
}

.powered-slider__icon {
  width: 24px;
  height: 24px;
  padding: 3px;
  color: var(--forest, #3d6b35);
  background: rgba(61, 107, 53, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

.powered-slider__name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: 0;
  white-space: nowrap;
}

/* Sparkle zone — hidden (removed from design) */
.powered-slider__sparkle-wrap {
  display: none;
}

@media (max-width: 768px) {
  .powered-slider {
    padding: 1rem 0 1.25rem;
  }

  .powered-slider__fade-in {
    display: none;
  }

  .powered-slider__label {
    padding: 0 0 0.75rem;
    font-size: 0.6rem;
  }

  .powered-slider__viewport {
    height: 48px;
  }

  .powered-slider__track {
    gap: 1.25rem;
  }

  .powered-slider__blur {
    width: 60px;
  }

  .powered-slider__item {
    padding: 0.35rem 0.75rem 0.35rem 0.5rem;
  }

  .powered-slider__icon {
    width: 20px;
    height: 20px;
    padding: 2px;
  }

  .powered-slider__name {
    font-size: 0.72rem;
  }
}

/* ═══════════════════════════════════════
   PHILOSOPHY SECTION
   ═══════════════════════════════════════ */
.philosophy {
  position: relative;
  padding: 10rem 1.5rem;
  background-color: #f0f2f5;
  color: #3d6b35;
  overflow: hidden;
}

.philosophy::before,
.philosophy::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 6;
  pointer-events: none;
}

.philosophy::before {
  top: 0;
  background: linear-gradient(to bottom, #efefeb 0%, transparent 100%);
}

.philosophy::after {
  bottom: 0;
  background: linear-gradient(to top, #efefeb 0%, transparent 100%);
}

@media (min-width: 768px) {
  .philosophy {
    padding: 10rem 3rem;
  }
}

@media (min-width: 1024px) {
  .philosophy {
    padding: 10rem 6rem;
  }
}

.philosophy__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Lookthrough variant — window slot from inside looking out */
.philosophy--lookthrough .philosophy__bg {
  opacity: 0.85;
}

.philosophy__slot-frame {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  /* Soft white/grey vignette creating a "window slot" frame */
  box-shadow:
    inset 0 0 120px 60px rgba(240, 242, 245, 0.95),
    inset 0 0 200px 100px rgba(240, 242, 245, 0.75),
    inset 0 0 60px 20px rgba(240, 242, 245, 0.5);
  border-radius: 0;
}

/* On wider screens, deepen the slot effect */
@media (min-width: 768px) {
  .philosophy__slot-frame {
    box-shadow:
      inset 0 0 180px 80px rgba(240, 242, 245, 0.97),
      inset 0 0 300px 140px rgba(240, 242, 245, 0.75),
      inset 0 0 80px 30px rgba(240, 242, 245, 0.5);
  }
}

.philosophy__content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
}

.philosophy__text {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 2.25rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .philosophy__text {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .philosophy__text {
    font-size: 4.5rem;
  }
}

.philosophy-word {
  display: inline-block;
  margin-right: 0.25em;
  opacity: 1;
  /* managed by GSAP */
}

/* ── Philosophy Mobile Fix ── */
@media (max-width: 767px) {
  .philosophy {
    padding: 5rem 1.25rem;
  }

  .philosophy__bg {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }

  .philosophy__slot-frame {
    box-shadow:
      inset 0 0 60px 30px rgba(240, 242, 245, 0.95),
      inset 0 0 100px 50px rgba(240, 242, 245, 0.7);
  }

  .philosophy::before,
  .philosophy::after {
    height: 40px;
  }

  .philosophy__text {
    font-size: 1.6rem;
    line-height: 1.35;
  }
}

/* ═══════════════════════════════════════
   MOBILE MENU SOCIAL ICONS
   ═══════════════════════════════════════ */
.kinetic-footer-social {
  display: flex;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(83, 125, 79, 0.1);
  margin-top: 0.5rem;
}

.kinetic-footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(83, 125, 79, 0.1);
  color: var(--forest, #537d4f);
  text-decoration: none;
  transition: all 0.3s ease;
}

.kinetic-footer-social a:hover {
  background: var(--forest, #537d4f);
  color: #efefeb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 125, 79, 0.3);
}

/* ═══════════════════════════════════════
   FOOTER SOCIAL ICONS
   ═══════════════════════════════════════ */
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-secondary, #64748b);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--forest, #537d4f);
  color: #efefeb;
  border-color: var(--forest, #537d4f);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(83, 125, 79, 0.3);
}

/* ═══════════════════════════════════════
   GRID CARD COUNT — RESPONSIVE ENFORCEMENT
   Mobile:  6, 8, or 10 cards (2-col grid)
   Desktop: 6, 9, or 12 cards (3-col grid)
   ═══════════════════════════════════════ */
@media (max-width: 640px) {
  .df-grid .df-cell:nth-child(n+9) {
    display: none;
  }
}

/* Desktop: enforce max 12 cards (fills 4 rows of 3) */
@media (min-width: 641px) {
  .df-grid .df-cell:nth-child(n+13) {
    display: none;
  }
}

/* ═══════════════════════════════════════
   ABOUT PAGE — HERO STAT ROW
   ═══════════════════════════════════════ */
.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.about-hero-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.about-hero-stats__num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white, #efefeb);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.about-hero-stats__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-stats__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .about-hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem 1.5rem;
  }

  .about-hero-stats__divider {
    display: none;
  }

  .about-hero-stats__item {
    flex: 0 0 calc(50% - 1rem);
  }
}

/* ═══════════════════════════════════════
   ABOUT PAGE — EDITORIAL NARRATIVE
   ═══════════════════════════════════════ */
.about-narrative {
  padding: 5rem 2rem;
  background: var(--surface, #efefeb);
}

.about-narrative__inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-narrative .section-eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 1.25rem;
}

.about-narrative__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  text-align: center;
}

.about-narrative__title strong {
  font-weight: 600;
  color: var(--forest, #537d4f);
}

.about-narrative__lede {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  color: var(--text-primary, #1a1e1a);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.about-narrative__body {
  font-family: 'Outfit', sans-serif;
  font-size: var(--text-base, 1rem);
  color: var(--text-secondary, #5a6558);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Full-bleed image break */
.about-narrative__image-break {
  margin: 3rem -2rem;
  border-radius: var(--radius-2xl, 20px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg, 0 10px 40px rgba(0, 0, 0, 0.1));
}

.about-narrative__image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-narrative__image-break {
    margin: 3.5rem -4rem;
  }
}

/* Signer block (reused) */
.about-narrative__signers {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border, #d5d4d6);
  border-bottom: 1px solid var(--border, #d5d4d6);
}

.about-narrative__signer-name {
  font-family: 'Outfit', sans-serif;
  font-size: var(--text-base, 1rem);
  font-weight: 600;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: -0.01em;
}

.about-narrative__signer-role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted, #94a3b8);
  letter-spacing: 0.02em;
  margin-top: 1px;
}

/* Certification badges */
.about-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0 2.5rem;
  padding: 1.5rem 0;
}

.about-certs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.about-certs__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-certs__item:hover .about-certs__icon {
  opacity: 1;
  transform: translateY(-2px);
}

.about-certs__name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted, #94a3b8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 480px) {
  .about-certs {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .about-certs__icon {
    width: 36px;
    height: 36px;
  }
}

/* Narrative CTA */
.about-narrative__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.75rem;
  background: var(--forest, #537d4f);
  color: var(--white, #efefeb);
  font-family: 'Outfit', sans-serif;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: -0.005em;
  text-decoration: none !important;
  transition:
    transform var(--duration-fast, 0.15s) var(--ease-spring, ease),
    background var(--duration-fast, 0.15s) var(--ease-out-expo, ease),
    box-shadow var(--duration-normal, 0.3s) var(--ease-out-expo, ease);
  box-shadow:
    0 10px 22px -10px rgba(83, 125, 79, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.about-narrative__cta:hover {
  background: var(--forest-deep, #3a5937);
  transform: translateY(-2px);
}

.about-narrative__cta svg {
  transition: transform var(--duration-normal, 0.3s) var(--ease-out-expo, ease);
}

.about-narrative__cta:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   ABOUT PAGE — VERTICAL PROCESS TIMELINE
   ═══════════════════════════════════════ */
.about-process-v {
  padding: 6rem 2rem;
  background: var(--cream-warm, #efefeb);
}

.about-process-v__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-process-v__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-process-v__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 0.75rem;
}

.about-process-v__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest, #537d4f);
}

.about-process-v__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical connector line */
.about-process-v__steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom,
      var(--border, #d5d4d6),
      var(--forest, #537d4f) 20%,
      var(--forest, #537d4f) 80%,
      var(--border, #d5d4d6));
  border-radius: 2px;
}

.about-process-v__step {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.75rem 0;
  position: relative;
}

.about-process-v__step-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest, #537d4f), var(--forest-light, #6f9d6a));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #efefeb);
  box-shadow:
    0 4px 16px rgba(83, 125, 79, 0.25),
    0 0 0 6px rgba(83, 125, 79, 0.08);
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-process-v__step:hover .about-process-v__step-icon {
  transform: scale(1.08);
  box-shadow:
    0 8px 24px rgba(83, 125, 79, 0.35),
    0 0 0 8px rgba(83, 125, 79, 0.12);
}

.about-process-v__step-content {
  padding-top: 0.5rem;
}

.about-process-v__step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--forest, #537d4f);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.about-process-v__step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.about-process-v__step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.925rem;
  color: var(--text-secondary, #5a6558);
  line-height: 1.7;
  max-width: 500px;
}

@media (max-width: 600px) {
  .about-process-v__steps::before {
    left: 23px;
  }

  .about-process-v__step {
    gap: 1.25rem;
  }

  .about-process-v__step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .about-process-v__step-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ═══════════════════════════════════════
   ABOUT STATS — COUNTER BAND (legacy)
   ═══════════════════════════════════════ */
.about-stats {
  padding: 3.5rem 2rem;
  background: var(--cream-warm, #efefeb);
  position: relative;
  overflow: hidden;
}

.about-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Flip card container */
.about-stats__flip {
  perspective: 800px;
  cursor: pointer;
}

.about-stats__flip-inner {
  position: relative;
  width: 180px;
  height: 150px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  pointer-events: none;
}

.about-stats__flip.flipped .about-stats__flip-inner {
  transform: rotateY(180deg);
}

.about-stats__front,
.about-stats__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-stats__back {
  transform: rotateY(180deg);
  background: rgba(83, 125, 79, 0.12) !important;
  border-color: rgba(83, 125, 79, 0.25) !important;
}

.about-stats__cert-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.about-stats__cert-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest, #537d4f);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}

/* Divider lines between cards */
.about-stats .about-stats__divider {
  width: 1px;
  height: 50px;
  background: var(--border-strong, #cbd5e1);
  flex-shrink: 0;
  display: block;
}

/* Glass card overrides for about page */
.about-stats .hero__stat-card {
  width: 180px;
  height: 150px;
  background: rgba(83, 125, 79, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(83, 125, 79, 0.18);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(83, 125, 79, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-stats .hero__stat-num {
  font-size: 2.4rem;
  color: var(--text-primary, #0f172a);
  text-shadow: none;
}

.about-stats .hero__stat-lbl {
  font-size: 0.75rem;
  color: var(--forest, #537d4f);
  text-shadow: none;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  flex: 1;
}

.about-stats__num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-stats__unit {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--forest, #537d4f);
  display: inline;
  vertical-align: super;
  margin-left: 2px;
}

.about-stats__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted, #94a3b8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-stats__divider {
  width: 1px;
  height: 50px;
  background: var(--border-strong, #cbd5e1);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-stats__inner {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .about-stats__item {
    flex: 0 0 calc(50% - 1rem);
  }

  .about-stats__divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-stats {
    padding: 3rem 1.5rem;
  }

  .about-stats__item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

/* ═══════════════════════════════════════
   ABOUT PROCESS — TIMELINE STEPS
   ═══════════════════════════════════════ */
.about-process {
  padding: 6rem 2rem;
  background: var(--surface, #efefeb);
}

.about-process__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-process__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 0.75rem;
}

.about-process__title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest, #537d4f);
}

.about-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.about-process__step {
  flex: 1;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  transition-delay: calc(var(--index, 0) * 120ms);
}

.about-process__step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--forest, #537d4f);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-process__step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest, #537d4f), var(--forest-light, #6f9d6a));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
  box-shadow:
    0 4px 16px rgba(83, 125, 79, 0.25),
    0 0 0 6px rgba(83, 125, 79, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-process__step:hover .about-process__step-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 8px 24px rgba(83, 125, 79, 0.35),
    0 0 0 8px rgba(83, 125, 79, 0.12);
}

.about-process__step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.about-process__step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary, #5a6558);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

.about-process__connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--border, #d5d4d6), var(--forest, #537d4f), var(--border, #d5d4d6));
  margin-top: 55px;
  /* align with center of icon */
  border-radius: 2px;
  position: relative;
}

.about-process__connector::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--forest, #537d4f);
  border-right: 2px solid var(--forest, #537d4f);
  transform: rotate(45deg);
  opacity: 0.5;
}

@media (max-width: 900px) {
  .about-process__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .about-process__step {
    padding: 1.5rem 0;
  }

  .about-process__connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--border, #d5d4d6), var(--forest, #537d4f), var(--border, #d5d4d6));
    margin-top: 0;
  }

  .about-process__connector::after {
    right: -3px;
    top: auto;
    bottom: -3px;
    transform: rotate(135deg);
  }
}

/* ═══════════════════════════════════════
   PROJECT FILTER BAR — POP-TAB STYLE
   ═══════════════════════════════════════ */
.proj-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 0;
  background: none;
  border: none;
}

.proj-filter-bar .filter-btn {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
}

.proj-filter-bar .filter-btn:hover {
  color: var(--text-primary);
}

.proj-filter-bar .filter-btn.active {
  background: var(--accent-soft, rgba(83, 125, 79, 0.08));
  color: var(--forest, #537d4f);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

.filter-btn__leaf {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

.filter-btn__arrows {
  display: none;
  color: var(--text-muted);
}

.filter-btn.active .filter-btn__arrows {
  display: inline;
}

.filter-btn.active .filter-btn__leaf {
  display: inline-block;
}

@media (max-width: 600px) {
  .proj-filter-bar {
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .proj-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .proj-filter-bar .filter-btn {
    flex-shrink: 0;
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════
   HERO EYEBROW PILL (About page)
   ═══════════════════════════════════════ */
.hero__eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-pill svg {
  opacity: 0.7;
}

/* ==========================================================================
   ABOUT US MODERN SECTION (21st.dev inspired)
   ========================================================================== */
.about-modern {
  position: relative;
  width: 100%;
  padding: 6rem 1rem;
  background: linear-gradient(to bottom, #efefeb, #efefeb);
  color: #0f172a;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

/* Decorative background elements */
.about-modern__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.about-modern__bg-blob--1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(83, 125, 79, 0.05);
  /* #537d4f */
}

.about-modern__bg-blob--2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(221, 244, 176, 0.05);
  /* #ddf4b0 */
}

.about-modern__bg-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: float-y 4s ease-in-out infinite;
}

.about-modern__bg-dot--1 {
  top: 50%;
  left: 25%;
  width: 1rem;
  height: 1rem;
  background-color: rgba(83, 125, 79, 0.3);
  animation-duration: 3s;
}

.about-modern__bg-dot--2 {
  bottom: 33%;
  right: 25%;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(221, 244, 176, 0.3);
  animation-delay: 1s;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-15px);
    opacity: 1;
  }
}

.about-modern__container {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.about-modern__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  text-align: center;
}

.about-modern__eyebrow {
  color: #537d4f;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-modern__title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-modern__divider {
  width: 6rem;
  height: 4px;
  background-color: #537d4f;
  border-radius: 2px;
}

.about-modern__desc {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem auto;
  color: rgba(15, 23, 42, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-modern__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .about-modern__grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
  }
}

.about-modern__col {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-modern__service {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  cursor: default;
}

.about-modern__service:hover {
  transform: translateY(-5px);
}

.about-modern__service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.about-modern__service-icon-wrapper {
  position: relative;
  color: #537d4f;
  background-color: rgba(83, 125, 79, 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

.about-modern__service:hover .about-modern__service-icon-wrapper {
  background-color: rgba(83, 125, 79, 0.2);
  transform: rotate(-5deg);
}

.about-modern__service-secondary-icon {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  color: #ddf4b0;
  width: 1rem;
  height: 1rem;
}

.about-modern__service-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f172a;
  transition: color 0.3s ease;
}

.about-modern__service:hover .about-modern__service-title {
  color: #537d4f;
}

.about-modern__service-desc {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.8);
  line-height: 1.6;
  padding-left: 3rem;
  /* Align with text */
}

.about-modern__service-link {
  margin-top: 0.75rem;
  padding-left: 3rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #537d4f;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.about-modern__service:hover .about-modern__service-link {
  opacity: 1;
  transform: translateY(0);
}

/* Center Image */
.about-modern__center {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-modern__center {
    order: 0;
    margin-bottom: 0;
  }
}

.about-modern__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 0.375rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.about-modern__img-wrapper:hover {
  transform: scale(1.03);
}

.about-modern__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
  display: block;
}

.about-modern__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
  border-radius: 0.375rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.about-modern__img-btn {
  background-color: #efefeb;
  color: #0f172a;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.about-modern__img-btn:hover {
  transform: scale(1.05);
}

.about-modern__img-border {
  position: absolute;
  inset: -0.75rem;
  border: 4px solid #ddf4b0;
  border-radius: 0.375rem;
  z-index: -1;
}

.about-modern__float {
  position: absolute;
  border-radius: 50%;
}

.about-modern__float--1 {
  top: -1rem;
  right: -2rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(83, 125, 79, 0.1);
}

.about-modern__float--2 {
  bottom: -1.5rem;
  left: -2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(221, 244, 176, 0.15);
}

/* Stats Section */
.about-modern__stats {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .about-modern__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-modern__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-modern__stat {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.about-modern__stat:hover {
  background-color: #efefeb;
  transform: translateY(-5px);
}

.about-modern__stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #537d4f;
  transition: all 0.8s ease;
}

.about-modern__stat:hover .about-modern__stat-icon {
  background-color: rgba(83, 125, 79, 0.1);
  transform: rotate(360deg);
}

.about-modern__stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
}

.about-modern__stat-label {
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.about-modern__stat-line {
  width: 2.5rem;
  height: 2px;
  background-color: #537d4f;
  margin-top: 0.75rem;
  transition: width 0.3s ease;
}

.about-modern__stat:hover .about-modern__stat-line {
  width: 4rem;
}

/* CTA Section */
.about-modern__cta {
  margin-top: 5rem;
  background-color: #0f172a;
  color: #efefeb;
  padding: 2rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-modern__cta {
    flex-direction: row;
    text-align: left;
    padding: 2rem 3rem;
  }
}

.about-modern__cta-text h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.about-modern__cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.about-modern__cta-btn {
  background-color: #537d4f;
  color: #efefeb;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.about-modern__cta-btn:hover {
  background-color: rgba(83, 125, 79, 0.9);
  transform: scale(1.05);
}

.about-modern__cta-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   ABOUT NARRATIVE SPLIT LAYOUT
   ========================================================================== */
.about-narrative-split {
  padding: var(--space-xl) var(--space-sm);
  background-color: var(--surface);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.about-narrative-split__inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-narrative-split__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-narrative-split__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {

  .about-narrative-split__top,
  .about-narrative-split__bottom {
    grid-template-columns: 1fr 1.5fr;
  }

  .about-narrative-split__bottom-right {
    position: sticky;
    top: 120px;
    height: fit-content;
  }
}

.about-narrative-split__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  font-weight: 300;
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

.about-narrative-split__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-narrative-split__lede {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

.about-narrative-split__image-break {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border);
}

.about-narrative-split__image-break img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-narrative-split__cards {
  display: grid;
  gap: var(--space-md);
}

.about-narrative-split__card {
  background: var(--cream);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.about-narrative-split__signer {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(83, 125, 79, 0.2);
  display: flex;
  flex-direction: column;
}

.about-narrative-split__signer-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.125rem;
}

.about-narrative-split__signer-role {
  font-size: 0.875rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.about-certs-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .about-certs-bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-certs-bento__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-certs-bento__item:hover {
  transform: translateY(-3px);
  border-color: var(--forest);
}

.about-certs-bento__item img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.about-certs-bento__item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 900px) {
  .about-narrative-split__top-right {
    margin-top: 5.5rem;
  }
}

/* Global Service Heading Centering */
.page-content__heading {
  text-align: center;
}

/* ═══════════════════════════════════════
   SITE VISIT CTA — heritage-blueprint card
   ═══════════════════════════════════════ */
.site-visit {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background:
    radial-gradient(circle at 78% 25%, #f7f8f1 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, #eaf3d6 0%, transparent 50%),
    #efefeb;
  color: #1f3220;
  isolation: isolate;
}

.site-visit__topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .55;
  animation: site-visit-drift 28s ease-in-out infinite alternate;
}

@keyframes site-visit-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  100% {
    transform: translate3d(-3%, -1.5%, 0) scale(1.06);
  }
}

.site-visit__corner {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 1;
  opacity: .6;
}

.site-visit__corner::before,
.site-visit__corner::after {
  content: "";
  position: absolute;
  background: rgba(83, 125, 79, .45);
}

.site-visit__corner::before {
  width: 1px;
  height: 100%;
}

.site-visit__corner::after {
  width: 100%;
  height: 1px;
}

.site-visit__corner--tl {
  top: 28px;
  left: 28px;
}

.site-visit__corner--tl::before {
  top: 0;
  left: 0;
}

.site-visit__corner--tl::after {
  top: 0;
  left: 0;
}

.site-visit__corner--tr {
  top: 28px;
  right: 28px;
}

.site-visit__corner--tr::before {
  top: 0;
  right: 0;
}

.site-visit__corner--tr::after {
  top: 0;
  right: 0;
}

.site-visit__corner--bl {
  bottom: 28px;
  left: 28px;
}

.site-visit__corner--bl::before {
  bottom: 0;
  left: 0;
}

.site-visit__corner--bl::after {
  bottom: 0;
  left: 0;
}

.site-visit__corner--br {
  bottom: 28px;
  right: 28px;
}

.site-visit__corner--br::before {
  bottom: 0;
  right: 0;
}

.site-visit__corner--br::after {
  bottom: 0;
  right: 0;
}

.site-visit__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: 0rem;
  align-items: center;
}

.site-visit__seal-col {
  display: flex;
  justify-content: center;
}

.site-visit__seal {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-visit__seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: site-visit-spin 30s linear infinite;
}

/* Stationary compass body — sits over the rotating ring, doesn't spin */
.site-visit__compass {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes site-visit-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-visit__seal-core {
  position: relative;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(83, 125, 79, .10), rgba(83, 125, 79, .02));
  border: 1px solid rgba(83, 125, 79, .35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(2px);
}

.site-visit__seal-core::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(83, 125, 79, .3);
}

.site-visit__seal-est {
  font-size: .65rem;
  letter-spacing: .35em;
  color: rgba(58, 89, 55, .75);
  font-weight: 500;
}

.site-visit__seal-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3a5937;
  line-height: 1;
  margin: .2rem 0 .35rem;
  letter-spacing: -.01em;
}

.site-visit__seal-yrs {
  font-size: .65rem;
  letter-spacing: .25em;
  color: rgba(58, 89, 55, .6);
  text-transform: uppercase;
}

.site-visit__action {
  max-width: 640px;
}

.site-visit__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #3a5937;
  background: rgba(255, 255, 255, .55);
  padding: .45rem .85rem;
  border: 1px solid rgba(83, 125, 79, .3);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.site-visit__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #537d4f;
  box-shadow: 0 0 0 0 rgba(83, 125, 79, .8);
  animation: site-visit-pulse 2.2s ease-out infinite;
}

@keyframes site-visit-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(83, 125, 79, .55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(83, 125, 79, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(83, 125, 79, 0);
  }
}

.site-visit__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: #1f3220;
  margin: 0 0 1.25rem;
}

.site-visit__title-script {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #537d4f;
}

.site-visit__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(31, 50, 32, .75);
  max-width: 52ch;
  margin: 0 0 2.25rem;
}

.site-visit__btn-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.site-visit__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 1.15rem 2.25rem;
  border-radius: 999px;
  background: transparent;
  color: #3a5937;
  font-weight: 600;
  letter-spacing: .02em;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), color .3s ease;
  border: 1px solid rgba(83, 125, 79, .4);
  box-shadow: 0 10px 30px -16px rgba(83, 125, 79, .35);
  will-change: transform;
}

.site-visit__btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ffffff 0%, #f4f7e8 100%);
  z-index: -1;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  transform-origin: left center;
}

.site-visit__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ddf4b0, #c8e6a3);
  z-index: -2;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.site-visit__btn:hover .site-visit__btn-bg {
  transform: scaleX(0);
  transform-origin: right center;
}

.site-visit__btn:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-visit__btn:hover {
  color: #1f3220;
}

.site-visit__btn-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.05rem;
}

.site-visit__btn-arrow {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.site-visit__btn:hover .site-visit__btn-arrow {
  transform: translateX(5px);
}

.site-visit__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #537d4f;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(83, 125, 79, .35);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}

.site-visit__link:hover {
  color: #1f3220;
  border-bottom-color: #1f3220;
}

.site-visit__link svg {
  transition: transform .3s ease;
}

.site-visit__link:hover svg {
  transform: translate(2px, -2px);
}

.site-visit__metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(83, 125, 79, .2);
  padding-top: 1.5rem;
}

.site-visit__metrics li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.site-visit__metrics strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #1f3220;
  letter-spacing: -.01em;
}

.site-visit__metrics span {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(58, 89, 55, .65);
}

/* Mailing list — spans full width below seal + action, text under seal, form right */
.site-visit__mailing {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════
   WEBGL CANVAS DIVIDER
   ═══════════════════════════════════════ */
.site-visit__canvas-divider {
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  height: 220px;
  margin-top: -1.5rem;
  margin-bottom: 0rem;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

#flower-canvas {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 200px;
  display: block;
  z-index: 1;
  cursor: pointer;
}

.flower-divider__line {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(83, 125, 79, 0.22);
  z-index: 0;
  pointer-events: none;
}

.site-visit__mailing-left {
  text-align: left;
}

.site-visit__mailing-left .mailing__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f3220;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.site-visit__mailing-left .mailing__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(58, 89, 55, 0.75);
  margin: 0;
  max-width: 260px;
}

.site-visit__mailing-form {
  margin: 0;
}

@media (max-width: 860px) {
  .site-visit__mailing {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-visit__mailing-left {
    text-align: center;
  }

  .site-visit__mailing-left .mailing__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 860px) {
  .site-visit__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .site-visit__action {
    margin: 0 auto;
  }

  .site-visit__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .site-visit__btn-row {
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .site-visit__btn {
    padding: 0.7rem 1.2rem;
  }

  .site-visit__btn-label {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .site-visit__link {
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .site-visit__metrics {
    justify-content: center;
    gap: 1.75rem;
  }

  .site-visit__corner {
    width: 24px;
    height: 24px;
  }

  .site-visit__corner--tl,
  .site-visit__corner--tr {
    top: 16px;
  }

  .site-visit__corner--bl,
  .site-visit__corner--br {
    bottom: 16px;
  }

  .site-visit__corner--tl,
  .site-visit__corner--bl {
    left: 16px;
  }

  .site-visit__corner--tr,
  .site-visit__corner--br {
    right: 16px;
  }
}

@media (max-width: 480px) {
  .site-visit__seal {
    width: 200px;
    height: 200px;
  }

  .site-visit__seal-core {
    width: 118px;
    height: 118px;
  }

  .site-visit__seal-year {
    font-size: 2rem;
  }

  .site-visit__metrics {
    gap: 1.25rem 2rem;
  }

  .site-visit__metrics strong {
    font-size: 1.4rem;
  }

  /* Force "Let's design something" onto a single line above "worth coming home to" */
  .site-visit__title {
    font-size: 1.6rem;
    white-space: nowrap;
    line-height: 1.2;
  }

  .site-visit__title-script {
    white-space: normal;
  }

  /* Keep the "Now booking..." pill on a single line */
  .site-visit__eyebrow {
    white-space: nowrap;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    padding: 0.4rem 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .site-visit__topo,
  .site-visit__seal-ring,
  .site-visit__eyebrow-dot {
    animation: none;
  }
}

/* ═══════════════════════════════════════
   ABOUT — OUR STORY (editorial split)
   ═══════════════════════════════════════ */
.about-story {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background: #fdfdfb url('images/about-leaf-bg.jpeg') no-repeat;
  background-size: 70% auto;
  background-position: -8% center;
  overflow: hidden;
}

.about-story__corner-label {
  position: absolute;
  left: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 89, 55, 0.55);
}

.about-story__corner-label--top {
  top: 2rem;
}

.about-story__corner-label--bottom {
  bottom: 2rem;
}

.about-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

/* LEFT column */
.about-story__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about-story__visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 5 / 6;
}

.about-story__leaf {
  width: 100%;
  height: 100%;
  display: block;
}

.about-story__portrait {
  position: absolute;
  top: -5%;
  left: 36%;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
}

.about-story__portrait svg {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 12px 30px -10px rgba(58, 89, 55, 0.35);
  overflow: hidden;
  flex-shrink: 0;
}

.about-story__portrait-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary, #5a6358);
  line-height: 1.35;
}

.about-story__portrait-caption strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary, #1f3220);
  letter-spacing: -0.01em;
  margin-bottom: 0.1rem;
}

/* Stat block — compact square tucked into the bottom-left corner cut of the leaf */
.about-story__stat {
  position: absolute;
  left: -2%;
  bottom: 27%;
  width: 150px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 1rem;
  background: rgba(253, 253, 251, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 14px;
  box-shadow: 0 12px 30px -16px rgba(58, 89, 55, 0.35);
  z-index: 3;
}

.about-story__stat-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(58, 89, 55, 0.7);
  background: #fff;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(83, 125, 79, 0.2);
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.about-story__stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1f3220;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-story__stat-num sup {
  font-size: 0.55em;
  color: #537d4f;
  font-weight: 500;
  margin-left: 2px;
}

.about-story__stat-desc {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: var(--text-secondary, #5a6358);
  line-height: 1.4;
}

/* RIGHT column */
.about-story__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-story__lede {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.35;
  color: #1f3220;
  letter-spacing: -0.015em;
  margin: 0;
}

.about-story__lede strong {
  font-weight: 600;
  color: #537d4f;
}

.about-story__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-story__card {
  background: #fff;
  border: 1px solid rgba(83, 125, 79, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-story__card:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 125, 79, 0.3);
  box-shadow: 0 18px 40px -20px rgba(83, 125, 79, 0.35);
}

.about-story__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(221, 244, 176, 0.55);
  color: #3a5937;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story__card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f3220;
  margin: 0;
  letter-spacing: -0.005em;
}

.about-story__card-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary, #5a6358);
  margin: 0;
}

/* Certs */
.about-story__certs {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(83, 125, 79, 0.12);
}

.about-story__certs-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(58, 89, 55, 0.55);
}

.about-story__certs-grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.about-story__cert {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-secondary, #5a6358);
}

.about-story__cert img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 0.75;
}

@media (max-width: 920px) {
  .about-story {
    background-image: none;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-story__corner-label--bottom {
    display: none;
  }

  .about-story__visual {
    max-width: 380px;
    margin: 0 auto;
    background: url('images/about-leaf-bg.jpeg') no-repeat 20% 80%;
    background-size: 200%;
  }

  .about-story__portrait {
    position: absolute;
    top: 3%;
    right: -6%;
    left: auto;
    width: auto;
  }

  .about-story__portrait svg {
    width: 80px;
    height: 80px;
  }

  .about-story__stat {
    left: 12%;
    bottom: 25%;
  }
}

@media (max-width: 560px) {
  .about-story__cards {
    grid-template-columns: 1fr;
  }

  .about-story__portrait svg {
    width: 90px;
    height: 90px;
  }

  .about-story__lede {
    font-size: 1.3rem;
  }

  /* True mobile: nudge the 45+ years stat card slightly down and left */
  .about-story__stat {
    left: 7%;
    bottom: 18%;
  }
}

/* ═══════════════════════════════════════
   ABOUT — TIMELINE TRIGGER + VIDEO SECTION
   ═══════════════════════════════════════ */
.about-story__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.about-story__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2rem;
  background: #1f3220;
  color: #fdfdfb;
  border: none;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 30px -12px rgba(31, 50, 32, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.35s ease;
}

.about-story__cta:hover {
  background: #3a5937;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(31, 50, 32, 0.55);
}

.about-story__cta svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story__cta:hover svg {
  transform: translateY(3px);
}

.about-timeline {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: #1f3220;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-timeline__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.about-timeline__hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 253, 251, 0.7);
  background: rgba(31, 50, 32, 0.55);
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-timeline__hint.is-hidden {
  opacity: 0;
  transform: translate(-50%, 10px);
}

/* ═══════════════════════════════════════
   HOMEPAGE HERO (hp-hero) — GreenScape-style light
   ═══════════════════════════════════════ */
.hp-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  isolation: isolate;
}

/* ═══════════════════════════════════════
   HOMEPAGE HERO SLIDER & PROGRESS LOADER
   ═══════════════════════════════════════ */
.hp-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hp-hero__slide.active {
  opacity: 1;
  z-index: 1;
}

.hp-hero__slide .hp-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-hero__slide.active .hp-hero__bg-img {
  transform: scale(1.1);
  /* Slow, smooth Ken Burns zoom */
}

.hp-hero__indicator-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  gap: 4px;
}

.hp-hero__indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hp-hero__indicator:hover,
.hp-hero__indicator.active {
  opacity: 1;
}

.hp-hero__indicator-track {
  width: 100%;
  height: 5px;
  /* Cinematic sleek height */
  background: rgba(31, 50, 32, 0.12);
  /* Glassy muted track */
  overflow: hidden;
}

.hp-hero__indicator-progress {
  width: 0%;
  height: 100%;
  background: #a8d591;
  /* Premium bright sage green progress */
  transition: width 0.1s linear;
}

.hp-hero__indicator-label {
  display: none;
  /* Keep the edge-to-edge cinematic bar ultra-clean */
}

/* Light wash to brighten the photo + improve contrast for dark type */
.hp-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 75% 105% at left center, rgba(253, 253, 251, 0.54) 0%, rgba(253, 253, 251, 0.34) 45%, rgba(253, 253, 251, 0) 85%);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 75% 105% at left center, black 0%, rgba(0, 0, 0, 0.8) 45%, rgba(0, 0, 0, 0) 85%);
  mask-image: radial-gradient(ellipse 75% 105% at left center, black 0%, rgba(0, 0, 0, 0.8) 45%, rgba(0, 0, 0, 0) 85%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/* Trust pill sits at the top of the main content stack */
.hp-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1rem 0.55rem 0.6rem;
  margin-bottom: 1.5rem;
  background: rgba(253, 253, 251, 0.85);
  border: 1px solid rgba(83, 125, 79, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px -12px rgba(31, 50, 32, 0.25);
  align-self: flex-start;
}

.hp-hero__avatars {
  display: inline-flex;
}

.hp-hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fdfdfb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: -10px;
}

.hp-hero__avatar:first-child {
  margin-left: 0;
}

.hp-hero__trust-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: #1f3220;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

/* Main content — left-aligned, shifted below center */
.hp-hero__main {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: clamp(2.5rem, 5vh, 4.5rem);
  /* Elegant tighter vertical spacing */
  margin-left: clamp(2rem, 6vw, 5rem);
  max-width: 640px;
  padding: clamp(1rem, 4vh, 2rem) 0;
  /* Compact premium layout padding */
}

.hp-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #1f3220;
  margin: 0 0 1.25rem;
}

.hp-hero__title-italic {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 108%;
  letter-spacing: 0.015em;
  color: #3a5937;
}

.hp-hero__title-lower {
  display: block;
  margin-top: 0.35rem;
}

.hp-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary, #1a1e1a);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 2rem;
}

.hp-hero__subtitle-line {
  display: inline;
}

.hp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  background: #1f3220;
  color: #fdfdfb;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px -14px rgba(31, 50, 32, 0.55);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.35s ease;
}

.hp-hero__btn:hover {
  background: #3a5937;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(31, 50, 32, 0.65);
}

.hp-hero__btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #6b9a60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-hero__btn:hover .hp-hero__btn-arrow {
  transform: translateX(3px) rotate(-8deg);
}

/* Bottom-right floating glass cards */
.hp-hero__floating {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3.5rem);
  right: clamp(2rem, 6vw, 5rem);
  z-index: 3;
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
}

.hp-hero__stat-card,
.hp-hero__services-card {
  background: rgba(253, 253, 251, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 18px 40px -18px rgba(31, 50, 32, 0.3);
}

.hp-hero__stat-card {
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-hero__stat-card--split {
  width: 150px;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
}

.hp-hero__stat-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-hero__stat-half .hp-hero__stat-num {
  font-size: 1.6rem;
  margin-bottom: 0.15rem;
}

.hp-hero__stat-half .hp-hero__stat-label {
  font-size: 0.62rem;
  margin-bottom: 0.1rem;
}

.hp-hero__stat-half .hp-hero__stat-desc {
  font-size: 0.65rem;
}

.hp-hero__stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(83, 125, 79, 0.15);
}

.hp-hero__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(58, 89, 55, 0.75);
  margin-bottom: 0.25rem;
}

.hp-hero__stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1f3220;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.hp-hero__stat-desc {
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(58, 89, 55, 0.75);
  margin: 0;
}

.hp-hero__services-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.9rem;
}

.hp-hero__service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(83, 125, 79, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1f3220;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, transform 0.3s ease, border-color 0.25s ease;
}

.hp-hero__service-pill svg {
  color: #537d4f;
  flex-shrink: 0;
}

.hp-hero__service-pill:hover {
  background: #fdfdfb;
  border-color: rgba(83, 125, 79, 0.3);
  transform: translateX(3px);
}

@media (max-width: 960px) {
  .hp-hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: center;
  }

  .hp-hero__trust {
    padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  }

  .hp-hero__avatar {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .hp-hero__main {
    margin-left: 0;
    margin-top: clamp(6rem, 14vh, 9rem);
    padding: 0 1.5rem;
    width: 100%;
  }

  .hp-hero__subtitle {
    color: #1a1a1a;
  }

  .hp-hero__subtitle-line {
    display: block;
  }

  .hp-hero__wash {
    background: radial-gradient(ellipse 110% 80% at 10% 45%, rgba(253, 253, 251, 0.64) 0%, rgba(253, 253, 251, 0.41) 40%, rgba(253, 253, 251, 0) 75%);
    -webkit-mask-image: radial-gradient(ellipse 110% 80% at 10% 45%, black 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
    mask-image: radial-gradient(ellipse 110% 80% at 10% 45%, black 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }

  .hp-hero__floating {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 1rem 1.25rem 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    z-index: 3;
  }

  .hp-hero__stat-card {
    width: 100%;
  }

  .hp-hero__stat-card--split {
    flex-direction: row;
    width: 100%;
    gap: 0;
    align-items: center;
    border-radius: 18px 18px 0 0;
  }

  .hp-hero__stat-divider {
    width: 1px;
    height: 50px;
    margin: 0 1rem;
  }

  .hp-hero__stat-half {
    flex: 1;
  }

  .hp-hero__services-card {
    display: none;
  }

  .hp-hero__indicator-bar {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    margin: -1.5rem 1.25rem 1.5rem;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    z-index: 11;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0.5rem;
  }

  .hp-hero__indicator-track {
    height: 4px;
  }
}

@media (max-width: 560px) {
  .hp-hero__title {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .hp-hero__trust-text {
    font-size: 0.72rem;
    white-space: normal;
  }

  .hp-hero__subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .svc-prefix {
    display: none;
  }
}