/* ============================================================
   LIMB LANDSCAPING & DESIGN — style.css (v2 — photo-driven)
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --forest:      #1a3d2b;
  --mid:         #2d6a4f;
  --leaf:        #52b788;
  --accent:      #74c69d;
  --cream:       #e8e4d9;
  --cream-light: #f2efe8;
  --cream-pale:  #faf8f3;
  --dark:        #0f2019;
  --ink:         #14221b;

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-accent:  'DM Serif Display', serif;
  --ff-body:    'DM Sans', sans-serif;

  --max-w:       1240px;
  --nav-h:       82px;
  --utility-h:   36px;
  --gap:         24px;
  --pad-xl:      120px;
  --pad-lg:      88px;
  --pad-md:      56px;

  --shadow-sm: 0 2px 12px rgba(15, 32, 25, 0.06);
  --shadow-md: 0 10px 32px rgba(15, 32, 25, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 32, 25, 0.18);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body {
  font-family: var(--ff-body);
  background: var(--cream-pale);
  color: var(--ink);
  overflow-x: clip;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── GRAIN OVERLAY ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--leaf);
}
.section-label--light { color: var(--accent); }
.section-label--light::before { background: var(--accent); }
.section-label--center { justify-content: center; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--forest);
}
.section-title--light { color: var(--cream-pale); }

.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-label { justify-content: center; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  line-height: 1;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--leaf);
  color: var(--forest);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(82, 183, 136, 0.4);
}
.btn--forest {
  background: var(--forest);
  color: var(--cream-pale);
}
.btn--forest:hover {
  background: var(--mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 61, 43, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--cream-pale);
  border: 1.5px solid rgba(242, 239, 232, 0.45);
}
.btn--outline:hover {
  border-color: var(--cream-pale);
  background: rgba(242, 239, 232, 0.1);
}
.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn--outline-dark:hover {
  background: var(--forest);
  color: var(--cream-pale);
}
.btn--lg { padding: 18px 38px; font-size: 14px; }
.btn svg { width: 14px; height: 14px; stroke-width: 2; }

/* ============================================================
   NAV — UTILITY BAR + MAIN NAV
   ============================================================ */
.nav-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Utility strip */
.nav-utility {
  background: var(--forest);
  height: var(--utility-h);
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(242, 239, 232, 0.72);
  text-transform: uppercase;
}
.nav-utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 36px;
}
.nav-utility__left,
.nav-utility__right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-utility__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-utility__item svg {
  width: 12px;
  height: 12px;
  stroke: var(--leaf);
  stroke-width: 2;
}
.nav-utility__dot {
  width: 5px; height: 5px;
  background: var(--leaf);
  border-radius: 50%;
}

/* Main nav */
.nav {
  background: var(--cream-pale);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(26, 61, 43, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 36px;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav__logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: var(--leaf);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav__links a:hover,
.nav__links a.active { color: var(--mid); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Spacer no longer needed (nav is sticky), but kept for backward compat */
.nav-offset { display: none; }

/* ============================================================
   HERO — PHOTO-DRIVEN
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--utility-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.6, 1);
  will-change: opacity;
}
.hero__media video.is-active {
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(12, 30, 19, 0.88) 0%,
      rgba(26, 61, 43, 0.72) 38%,
      rgba(26, 61, 43, 0.35) 65%,
      rgba(26, 61, 43, 0.5) 100%
    );
}
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 30, 19, 0.7) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 140px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 72px;
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--leaf);
  flex-shrink: 0;
}
.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--cream-pale);
  margin-bottom: 28px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  max-width: 14ch;
}
.hero__headline em {
  font-family: var(--ff-accent);
  color: var(--leaf);
  font-size: 0.78em;
  letter-spacing: 0;
  text-shadow: none;
}
.hero__tagline {
  font-size: 18px;
  color: rgba(242, 239, 232, 0.88);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 44px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero__tagline-mark {
  position: relative;
  display: inline;
  font-weight: 700;
  color: var(--cream-pale);
  background-image: linear-gradient(
    180deg,
    transparent 58%,
    rgba(82, 183, 136, 0.55) 58%,
    rgba(82, 183, 136, 0.55) 94%,
    transparent 94%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 3px;
  margin: 0 -3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero quick-quote form card */
.hero__form-card {
  position: relative;
  background: rgba(242, 239, 232, 0.97);
  border-radius: 4px;
  padding: 32px 30px 28px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32), 0 2px 6px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(82, 183, 136, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-form__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.hero-form__eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--leaf);
}
.hero-form__title {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--forest);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-form__sub {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.72;
  margin-bottom: 20px;
  line-height: 1.55;
}
.hero-form__group { margin-bottom: 12px; }
.hero-form__group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.hero-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.hero-form__group input,
.hero-form__group select {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(26, 61, 43, 0.14);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--forest);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.hero-form__group input:focus,
.hero-form__group select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.14);
}
.hero-form__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d6a4f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.hero-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.hero-form__fine {
  font-size: 11px;
  color: var(--mid);
  opacity: 0.7;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.06em;
}
.hero-form-success { margin-top: 0; }

/* Bottom stat bar */
.hero__stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(12, 30, 19, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(82, 183, 136, 0.2);
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.hero__stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(82, 183, 136, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--leaf);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.7);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--forest);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(82, 183, 136, 0.1);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--cream-pale);
  white-space: nowrap;
}
.marquee__dot {
  color: var(--leaf);
  font-size: 14px;
  line-height: 1;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STORY TEASER
   ============================================================ */
.story {
  padding: var(--pad-xl) 0;
  background: var(--cream-pale);
  position: relative;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__heading {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.92;
  color: var(--forest);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.story__body {
  font-size: 16px;
  color: var(--ink);
  opacity: 0.78;
  line-height: 1.85;
  margin-bottom: 24px;
}
.story__quote {
  font-family: var(--ff-accent);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--forest);
  line-height: 1.5;
  padding: 24px 28px;
  border-left: 3px solid var(--leaf);
  background: var(--cream-light);
  margin-bottom: 36px;
  border-radius: 0 4px 4px 0;
}

.story__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--cream-pale);
  padding: 18px 22px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.story__visual-badge img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.story__visual-badge-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--forest);
  font-weight: 500;
}
.story__visual-badge-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 2px;
}

/* ============================================================
   SERVICES — PHOTO CARDS
   ============================================================ */
.services {
  padding: var(--pad-xl) 0;
  background: var(--cream-light);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding: 4px 0;
}
/* Center the orphan when 10 cards land in a 3-col grid */
.service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.service-card {
  background: var(--cream-pale);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-card__photo img {
  transform: scale(1.04);
}
.service-card__photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(82, 183, 136, 0.14) 0%, transparent 60%),
    #fbfaf5;
  border-bottom: 1px solid rgba(26, 61, 43, 0.06);
  position: relative;
}
.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 58%;
  padding: 14px 18px 8px;
  transition: transform 0.6s ease;
  mix-blend-mode: multiply;
}
.service-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--leaf);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 1;
}
.service-card__body {
  padding: 28px 28px 32px;
  flex: 1;
}
.service-card__name {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--forest);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1;
}
.service-card__desc {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.75;
  line-height: 1.7;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--pad-xl) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.process__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2352b788' stroke-width='0.5' opacity='0.1'%3E%3Ccircle cx='200' cy='200' r='80'/%3E%3Ccircle cx='200' cy='200' r='120'/%3E%3Ccircle cx='200' cy='200' r='160'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 1;
}
.process-step {
  position: relative;
  padding: 36px 32px 40px;
  border-radius: 18px;
  border: 1px solid rgba(116, 198, 157, 0.12);
  background: rgba(255, 255, 255, 0.015);
  transition:
    background-color 0.45s ease,
    border-color 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.45s ease;
  cursor: default;
}
.process-step:hover,
.process-step.is-active {
  background: var(--cream-light);
  border-color: var(--cream-light);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45);
}
.process-step:hover .process-step__num,
.process-step.is-active .process-step__num {
  color: var(--leaf);
  opacity: 0.35;
}
.process-step:hover .process-step__icon,
.process-step.is-active .process-step__icon {
  color: var(--forest);
}
.process-step:hover .process-step__title,
.process-step.is-active .process-step__title {
  color: var(--forest);
}
.process-step:hover .process-step__desc,
.process-step.is-active .process-step__desc {
  color: rgba(26, 61, 43, 0.78);
}
.process-step__num,
.process-step__icon,
.process-step__title,
.process-step__desc {
  transition: color 0.45s ease, opacity 0.45s ease;
}
.process-step__num {
  font-family: var(--ff-display);
  font-size: 110px;
  line-height: 1;
  color: var(--leaf);
  opacity: 0.18;
  margin-bottom: -28px;
  letter-spacing: -0.02em;
}
.process-step__icon {
  width: 46px;
  height: 46px;
  color: var(--accent);
  margin-bottom: 20px;
  stroke-width: 1.5;
}
.process-step__title {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--cream-pale);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step__desc {
  font-size: 15px;
  color: rgba(242, 239, 232, 0.65);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--pad-xl) 0;
  background: var(--cream-light);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testimonial-card {
  background: var(--cream-pale);
  border-radius: 3px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px; right: 20px;
  font-family: var(--ff-accent);
  font-size: 120px;
  color: var(--leaf);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-card__stars {
  color: var(--leaf);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card__quote {
  font-family: var(--ff-accent);
  font-size: 17px;
  color: var(--forest);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.testimonial-card__loc {
  font-size: 12px;
  color: var(--mid);
  margin-top: 4px;
  opacity: 0.7;
}

/* ============================================================
   CTA BANNER — PHOTO BACKGROUND
   ============================================================ */
.cta-banner {
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(12, 30, 19, 0.88) 0%,
    rgba(26, 61, 43, 0.78) 100%
  );
}
.cta-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 96px);
  color: var(--cream-pale);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.cta-banner__sub {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.005em;
  color: rgba(242, 239, 232, 0.82);
  margin-bottom: 44px;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(242, 239, 232, 0.06);
  margin-bottom: 28px;
}
.footer__brand { max-width: 340px; }
.footer__logo {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: -18px 0 8px -18px;
}
.footer__tagline {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(242, 239, 232, 0.62);
  line-height: 1.6;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(242, 239, 232, 0.7);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__info {
  font-size: 14px;
  color: rgba(242, 239, 232, 0.6);
  line-height: 1.8;
}
.footer__info strong {
  display: block;
  color: var(--cream-pale);
  font-weight: 600;
  margin-bottom: 2px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 12px;
  color: rgba(242, 239, 232, 0.35);
  letter-spacing: 0.08em;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg,
      rgba(12, 30, 19, 0.82) 0%,
      rgba(26, 61, 43, 0.6) 60%,
      rgba(26, 61, 43, 0.45) 100%
    );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-hero__eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--leaf);
}
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.9;
  color: var(--cream-pale);
  letter-spacing: 0.02em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: var(--pad-xl) 0;
  background: var(--cream-pale);
}
.about-story__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-story__body {
  font-size: 16px;
  color: var(--ink);
  opacity: 0.82;
  line-height: 1.88;
  margin-bottom: 26px;
}
.about-story__heading {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  color: var(--forest);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

/* Behind the name — typographic moment */
.name-layers {
  padding: var(--pad-lg) 0;
  background: var(--cream);
  border-top: 1px solid rgba(26, 61, 43, 0.08);
  border-bottom: 1px solid rgba(26, 61, 43, 0.08);
}
.name-layers__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.name-layers__phrase {
  font-family: var(--ff-accent);
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.04;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin: 22px 0 26px;
}
.name-layers__mark {
  color: var(--leaf);
  display: inline-block;
  transform: translateY(0.04em);
  margin-right: 4px;
}
.name-layers__mark--close {
  margin-right: 0;
  margin-left: 2px;
}
.name-layers__intro {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.55;
  margin-bottom: 72px;
}
.name-layers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
}
.name-layer {
  padding: 0 36px;
  position: relative;
  transition: opacity 0.55s ease;
}
.name-layers__grid:hover .name-layer:not(.is-active),
.name-layer:not(.is-active) {
  opacity: 0.42;
}
.name-layer.is-active {
  opacity: 1;
}
.name-layer__num,
.name-layer__label,
.name-layer__desc {
  transition: color 0.55s ease;
}
.name-layer.is-active .name-layer__num {
  color: var(--forest);
}
.name-layer:first-child { padding-left: 0; }
.name-layer:last-child { padding-right: 0; }
.name-layer + .name-layer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(26, 61, 43, 0.14);
}
.name-layer__num {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--leaf);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.name-layer__label {
  font-family: var(--ff-accent);
  font-size: 26px;
  color: var(--forest);
  margin-bottom: 14px;
  line-height: 1.15;
}
.name-layer__desc {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.78;
  line-height: 1.72;
}
.about-story__visual { position: sticky; top: calc(var(--nav-h) + var(--utility-h) + 32px); }
.about-visual {
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--cream-pale);
  padding: 16px 20px;
  border-left: 3px solid var(--leaf);
  border-radius: 0 2px 2px 0;
  font-family: var(--ff-accent);
  font-size: 14px;
  color: var(--forest);
  line-height: 1.55;
  box-shadow: var(--shadow-md);
}

/* Values */
.values {
  padding: var(--pad-lg) 0;
  background: var(--cream-light);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26, 61, 43, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.value-item {
  text-align: center;
  padding: 56px 36px;
  background: var(--cream-pale);
  transition: background 0.6s ease;
  cursor: default;
}
.value-item__icon {
  width: 48px;
  height: 48px;
  color: var(--mid);
  margin: 0 auto 22px;
  stroke-width: 1.5;
  transition: color 0.6s ease, transform 0.6s ease;
}
.value-item__title {
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--forest);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  transition: color 0.6s ease;
}
.value-item__desc {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.78;
  line-height: 1.72;
  transition: color 0.6s ease, opacity 0.6s ease;
}
.value-item.is-active {
  background: var(--forest);
}
.value-item.is-active .value-item__icon {
  color: var(--leaf);
  transform: scale(1.08);
}
.value-item.is-active .value-item__title {
  color: var(--cream-pale);
}
.value-item.is-active .value-item__desc {
  color: var(--cream-pale);
  opacity: 0.88;
}

/* Stats strip */
.stats-strip { background: var(--forest); }
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(82, 183, 136, 0.1);
}
.stat-item {
  padding: 56px 32px;
  background: var(--forest);
  text-align: center;
}
.stat-item__num {
  font-family: var(--ff-display);
  font-size: 64px;
  color: var(--leaf);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--pad-xl) 0;
  background: var(--cream-pale);
}
.service-map {
  padding: var(--pad-lg) 0;
  background: var(--cream-light);
}
.service-map .section-header { margin-bottom: 36px; }
.service-map__embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 61, 43, 0.08);
  background: var(--cream-pale);
}
.service-map__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.service-map__caption {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.7;
  line-height: 1.6;
}
.contact__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}
.contact-info__title {
  font-family: var(--ff-display);
  font-size: 42px;
  color: var(--forest);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1;
}
.contact-info__sub {
  font-size: 15px;
  color: var(--ink);
  opacity: 0.78;
  line-height: 1.72;
  margin-bottom: 44px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.contact-detail__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 5px;
}
.contact-detail__value {
  font-size: 15px;
  color: var(--forest);
  line-height: 1.55;
  font-weight: 500;
}
.contact-note {
  margin-top: 40px;
  padding: 22px 24px;
  background: var(--cream-light);
  border-radius: 3px;
  border-left: 3px solid var(--leaf);
}
.contact-note p {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.82;
  line-height: 1.65;
}
.contact-note strong { color: var(--forest); font-weight: 700; }

/* Form */
.quote-form {
  background: var(--cream-light);
  border-radius: 3px;
  padding: 52px 44px;
  box-shadow: var(--shadow-sm);
}
.quote-form__title {
  font-family: var(--ff-display);
  font-size: 42px;
  color: var(--forest);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  line-height: 1;
}
.quote-form__sub {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream-pale);
  border: 1px solid rgba(26, 61, 43, 0.12);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--forest);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d6a4f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 12px;
  color: var(--mid);
  opacity: 0.7;
}
.form-success {
  display: none;
  margin-top: 24px;
  padding: 28px;
  background: rgba(82, 183, 136, 0.14);
  border: 1px solid rgba(82, 183, 136, 0.3);
  border-radius: 3px;
}
.form-success p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
}
.form-success strong {
  color: var(--forest);
  display: block;
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-story__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero__content { grid-template-columns: 1fr; gap: 40px; padding: 72px 0 180px; }
  .hero__copy { max-width: 640px; }
  .hero__form-card { max-width: 520px; }
  .hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: none; }
  .hero__stat:nth-child(3) { border-top: 1px solid rgba(82, 183, 136, 0.15); }
  .hero__stat:nth-child(4) { border-top: 1px solid rgba(82, 183, 136, 0.15); }
}

@media (max-width: 900px) {
  .nav-utility { display: none; }
  .story__grid,
  .about-story__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-story__visual { position: static; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { max-width: none; }
  .process__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .values__grid { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: 1fr; }
  .name-layers__grid { grid-template-columns: 1fr; gap: 36px; }
  .name-layer { padding: 0; }
  .name-layer:first-child { padding-left: 0; }
  .name-layer:last-child { padding-right: 0; }
  .name-layer + .name-layer::before {
    top: -18px;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
  }
  .name-layers__intro { margin-bottom: 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child:nth-child(3n + 1) { grid-column: auto; }
}

@media (max-width: 768px) {
  :root { --pad-xl: 76px; --pad-lg: 52px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Mobile menu drops below the nav row using flex-wrap */
  .nav {
    height: auto;
    min-height: var(--nav-h);
  }
  .nav__inner {
    flex-wrap: wrap;
    row-gap: 0;
    align-items: center;
    min-height: var(--nav-h);
  }
  .nav__brand { min-height: var(--nav-h); display: flex; align-items: center; }

  .nav.mobile-open {
    background: var(--cream-pale);
    box-shadow: var(--shadow-md);
  }
  .nav.mobile-open .nav__links {
    display: flex;
    flex-basis: 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 12px;
    margin: 0;
    border-top: 1px solid rgba(26, 61, 43, 0.08);
  }
  .nav.mobile-open .nav__cta {
    display: inline-flex;
    flex-basis: calc(100% - 8px);
    order: 4;
    margin: 4px 4px 16px;
    justify-content: center;
  }
  .nav.mobile-open .nav__links a {
    display: block;
    font-size: 16px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(26, 61, 43, 0.06);
  }
  .nav.mobile-open .nav__links li:last-child a { border-bottom: none; }
  .nav.mobile-open .nav__links a::after { display: none; }

  /* Stats bar moves below the hero on mobile so it doesn't sit behind the form */
  .hero {
    min-height: 0;
    padding-top: var(--nav-h);
    display: block;
  }
  .hero__content { padding: 48px 0 56px; gap: 32px; }
  .hero__form-card { padding: 26px 22px 22px; }
  .hero-form__title { font-size: 28px; }
  .hero__stats-bar {
    position: static;
    background: var(--forest);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }

  /* Full-width, centered CTAs on mobile */
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero__actions .btn { width: 100%; }

  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 32px 24px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .nav__inner { padding: 0 20px; }
  .hero__stats-inner { grid-template-columns: 1fr; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(82, 183, 136, 0.15); }
  .hero__stat:last-child { border-bottom: none; }
}

/* ============================================================
   PROJECT SHOWCASE — Recent Work (before/after)
   ============================================================ */
.project-showcase {
  padding: var(--pad-xl) 0;
  background: var(--cream-pale);
}
.project-showcase__lede {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.78;
}
.project-showcase .section-header { margin-bottom: 56px; }

/* ── Project carousel (home page — manual horizontal scroll + arrow nav) ── */
.project-carousel {
  position: relative;
  padding: 8px 0;
}
.project-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 20px 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.project-carousel__track::-webkit-scrollbar { display: none; }

.project-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--cream-pale);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.project-carousel__btn:hover { background: var(--mid); transform: translateY(-50%) scale(1.06); }
.project-carousel__btn:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; }
.project-carousel__btn[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }
.project-carousel__btn svg { width: 20px; height: 20px; }
.project-carousel__btn--prev { left: 8px; }
.project-carousel__btn--next { right: 8px; }

.project-tile {
  position: relative;
  flex: 0 0 auto;
  width: 380px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
  padding: 0;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.project-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.project-tile:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; }
.project-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.project-tile:hover > img { transform: scale(1.05); }
.project-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px;
  background: linear-gradient(180deg, rgba(12, 30, 19, 0) 40%, rgba(12, 30, 19, 0.9) 100%);
  color: var(--cream-pale);
  gap: 8px;
}
.project-tile__tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--forest);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
}
.project-tile__title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--cream-pale);
  margin: 4px 0 2px;
  text-shadow: 0 2px 14px rgba(12, 30, 19, 0.5);
}
.project-tile__loc {
  font-size: 13px;
  opacity: 0.9;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(12, 30, 19, 0.6);
}
.project-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.project-tile__cta svg { width: 14px; height: 14px; }
.project-tile:hover .project-tile__cta,
.project-tile:focus-visible .project-tile__cta {
  opacity: 1;
  transform: translateY(0);
}

.project-tile--placeholder {
  cursor: default;
  box-shadow: none;
  background: transparent;
  border: 1.5px dashed rgba(26, 61, 43, 0.22);
  transition: none;
}
.project-tile--placeholder:hover { transform: none; box-shadow: none; }
.project-tile__placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--forest);
  opacity: 0.45;
  padding: 24px;
}
.project-tile__placeholder-inner svg { width: 36px; height: 36px; }
.project-tile__placeholder-inner p {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.project-tile--placeholder .project-tile__tag {
  background: transparent;
  color: var(--forest);
  opacity: 0.85;
  padding: 4px 10px;
  border: 1px solid rgba(26, 61, 43, 0.3);
}

/* Small screens: hide arrow buttons, add scroll-snap for touch-swipe feel */
@media (max-width: 768px) {
  .project-carousel__btn { display: none; }
  .project-carousel__track {
    padding: 4px 16px 18px;
    scroll-snap-type: x mandatory;
  }
  .project-carousel__track > * { scroll-snap-align: center; }
}

/* ── Project detail modal ── */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.project-modal[hidden] { display: none; }
.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 19, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: pm-fade 0.25s ease;
}
.project-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 2px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: pm-rise 0.35s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.project-modal__dialog .project-card {
  box-shadow: none;
  max-width: none;
  margin: 0;
}
.project-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(15, 32, 25, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.project-modal__close:hover { background: #fff; transform: scale(1.05); }
.project-modal__close:focus-visible { outline: 3px solid var(--leaf); outline-offset: 2px; }
.project-modal__close svg { width: 20px; height: 20px; }

@keyframes pm-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pm-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

body.is-modal-open { overflow: hidden; }

.project-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1080px;
  margin: 0 auto;
}
.project-card__banner {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.project-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 30, 19, 0) 35%, rgba(12, 30, 19, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--cream-pale);
}
.project-card__banner-overlay .section-label {
  color: var(--accent);
  margin-bottom: 10px;
}
.project-card__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream-pale);
  margin-bottom: 8px;
}
.project-card__scope {
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: 0.88;
  margin: 0;
}
.project-card__pairs {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.project-pair__caption {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.72;
  text-align: center;
  font-weight: 500;
}
.project-card__foot {
  padding: 0 32px 40px;
  text-align: center;
}

/* Side-by-side before/after pair */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ba-pair__side {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
}
.ba-pair__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-pair__side figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
}
.ba-pair__side:first-child figcaption {
  background: rgba(15, 32, 25, 0.82);
  color: var(--cream-pale);
}
.ba-pair__side:last-child figcaption {
  background: var(--leaf);
  color: var(--forest);
}

/* Gallery variant — no Before/After labels, just bare images */
.ba-pair--gallery .ba-pair__side figcaption { display: none; }

/* Solo-image project card (used for single-image lawn-care tiles) */
.project-card--solo .project-card__banner--tall { aspect-ratio: 3 / 2; }
.project-card__note {
  padding: 32px 32px 8px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.project-card__note p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.82;
  margin: 0;
}
@media (max-width: 768px) {
  .project-card__note { padding: 24px 20px 4px; }
  .project-card__note p { font-size: 15px; }
}

@media (max-width: 768px) {
  .project-card__banner-overlay { padding: 24px 20px; }
  .project-card__pairs { padding: 28px 20px; gap: 32px; }
  .project-card__foot { padding: 0 20px 32px; }
  .ba-pair { grid-template-columns: 1fr; gap: 6px; }
  .ba-pair__side { aspect-ratio: 4 / 3; }
  .project-tile { width: 78vw; max-width: 340px; }
  .project-tile__overlay { padding: 18px; }
  .project-modal { padding: 0; }
  .project-modal__dialog { max-height: 100vh; border-radius: 0; }
}
