:root {
  /* Off-white palette */
  --c-bg: #fafaf6;
  --c-surface-1: #f1eee3;
  --c-surface-2: #e6e1cf;
  --c-forest: #1f8c44;
  --c-forest-deep: #142519;
  --c-forest-shade: #176b34;
  --c-moss: #3fb56a;
  --c-moss-light: #7ca265;
  --c-earth: #2b231a;
  --c-text: #1a1612;
  --c-text-muted: rgba(26, 22, 18, 0.62);
  --c-text-dim: rgba(26, 22, 18, 0.4);
  --c-border: rgba(26, 22, 18, 0.12);
  --c-on-dark: #fafaf6;
  --c-on-dark-muted: rgba(250, 250, 246, 0.66);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-eyebrow: clamp(11px, 0.85vw, 13px);
  --text-body-sm: clamp(14px, 1vw, 16px);
  --text-body: clamp(16px, 1.15vw, 18px);
  --text-body-lg: clamp(18px, 1.35vw, 22px);
  --text-h3: clamp(22px, 2.2vw, 32px);
  --text-h2: clamp(36px, 5.2vw, 76px);
  --text-h1: clamp(54px, 9vw, 132px);
  --text-page-title: clamp(44px, 7vw, 96px);

  --s-1: clamp(4px, 0.5vw, 6px);
  --s-2: clamp(8px, 0.8vw, 12px);
  --s-3: clamp(12px, 1.2vw, 18px);
  --s-4: clamp(18px, 1.8vw, 28px);
  --s-5: clamp(28px, 3vw, 48px);
  --s-6: clamp(40px, 5vw, 72px);
  --s-7: clamp(60px, 7vw, 110px);
  --s-8: clamp(80px, 10vw, 160px);
  --s-9: clamp(120px, 14vw, 220px);

  --container-max: 1440px;
  --container-pad: clamp(24px, 5vw, 96px);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(20, 37, 25, 0.05), 0 12px 32px -16px rgba(20, 37, 25, 0.18);
  --shadow-card-hover: 0 6px 12px rgba(20, 37, 25, 0.08), 0 28px 60px -22px rgba(20, 37, 25, 0.32);
  --shadow-cta-hover: 0 10px 28px -10px rgba(31, 140, 68, 0.45);

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; border: none; cursor: pointer; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--c-forest); color: var(--c-on-dark); }

/* ===== Layout primitives ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--s-8); position: relative; }
.section--tight { padding-block: var(--s-7); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-forest);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-forest);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-text);
  max-width: 18ch;
  margin-block: var(--s-3) var(--s-4);
}
.section-heading em { font-style: italic; font-weight: 300; color: var(--c-forest); }

.section-lead {
  font-size: var(--text-body-lg);
  line-height: 1.55;
  color: var(--c-text-muted);
  max-width: 52ch;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  transition: all 0.32s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary { background: var(--c-forest); color: var(--c-on-dark); }
.btn--primary:hover { background: var(--c-forest-shade); transform: translateY(-1px); box-shadow: var(--shadow-cta-hover); }
.btn--ghost { background: transparent; color: var(--c-text); border-color: var(--c-border); }
.btn--ghost:hover { border-color: var(--c-forest); color: var(--c-forest); }
.btn--on-dark { background: var(--c-on-dark); color: var(--c-forest-deep); }
.btn--on-dark:hover { background: #fff; transform: translateY(-1px); }
.btn__arrow { display: inline-block; transition: transform 0.32s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================ NAV ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--s-3);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(250, 250, 246, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--c-border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }
.nav__brand {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.01em;
  color: var(--c-forest-deep);
}
.nav__brand-mark {
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}
.nav__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav__links { display: flex; align-items: center; gap: var(--s-5); list-style: none; }
.nav__link {
  font-size: var(--text-body-sm); font-weight: 500;
  color: var(--c-text); opacity: 0.78;
  transition: opacity 0.24s var(--ease-out);
  position: relative;
}
.nav__link:hover, .nav__link[aria-current="page"] { opacity: 1; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--c-forest);
  transition: width 0.32s var(--ease-out);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

.nav__cta { padding: var(--s-2) var(--s-4); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; border-radius: 50%;
}
.nav__toggle-bar { width: 22px; height: 1.5px; background: var(--c-text); transition: transform 0.32s var(--ease-out), opacity 0.32s var(--ease-out); }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

.nav__drawer {
  position: fixed; inset: 0;
  background: var(--c-forest-deep);
  z-index: 200;
  padding: var(--s-6) var(--container-pad);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav__drawer--open { opacity: 1; pointer-events: auto; }
.nav__drawer-close {
  position: absolute; top: var(--s-4); right: var(--container-pad);
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--c-on-dark); font-size: 28px;
  display: grid; place-items: center;
}
.nav__drawer-links { list-style: none; display: flex; flex-direction: column; gap: var(--s-4); }
.nav__drawer-link {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 500;
  color: var(--c-on-dark);
  letter-spacing: -0.02em; line-height: 1.1;
}
.nav__drawer-link em { font-style: italic; font-weight: 300; color: var(--c-moss-light); }

/* ============================================================ PAGE HERO ============================================================ */
.page-hero {
  padding-top: clamp(140px, 16vw, 220px);
  padding-bottom: var(--s-7);
  background: var(--c-bg);
}
.page-hero__eyebrow { margin-bottom: var(--s-3); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-page-title);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--c-forest-deep);
  max-width: 14ch;
}
.page-hero__title em { font-style: italic; font-weight: 300; color: var(--c-moss); }
.page-hero__lead {
  margin-top: var(--s-4);
  font-size: var(--text-body-lg);
  line-height: 1.5;
  color: var(--c-text-muted);
  max-width: 52ch;
}

/* ============================================================ HERO (home) ============================================================ */
.hero {
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: var(--s-7);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}
.hero__content { display: flex; flex-direction: column; gap: var(--s-4); }
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--c-forest-deep);
  margin-top: var(--s-3);
}
.hero__headline em { font-style: italic; font-weight: 300; color: var(--c-moss); }
.hero__sub {
  font-size: var(--text-body-lg);
  line-height: 1.55;
  color: var(--c-text-muted);
  max-width: 44ch;
  margin-top: var(--s-2);
}
.hero__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-3); }
.hero__meta {
  display: flex; align-items: center; gap: var(--s-4);
  margin-top: var(--s-5); padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
  font-size: var(--text-body-sm);
  color: var(--c-text-muted);
  flex-wrap: wrap;
}
.hero__meta-item { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero__meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-moss); }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero__image { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.hero__visual:hover .hero__image { transform: scale(1.04); }

.hero__badge {
  position: absolute;
  bottom: var(--s-4); left: var(--s-4); right: var(--s-4);
  background: rgba(250, 250, 246, 0.96);
  backdrop-filter: blur(8px);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: var(--s-3);
  font-size: var(--text-body-sm);
}
.hero__badge-icon { font-size: 22px; flex-shrink: 0; }
.hero__badge-text strong { display: block; font-weight: 600; color: var(--c-forest-deep); }
.hero__badge-text span { color: var(--c-text-muted); font-size: 13px; }

/* ============================================================ MARQUEE ============================================================ */
.strip {
  background: var(--c-forest-deep);
  color: var(--c-on-dark);
  padding: var(--s-4) 0;
  overflow: hidden;
  border-block: 1px solid rgba(250, 250, 246, 0.08);
}
.strip__track {
  display: flex; gap: var(--s-7);
  animation: scroll 32s linear infinite;
  white-space: nowrap; width: max-content;
}
.strip__item {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: var(--s-7);
}
.strip__item em { font-style: italic; font-weight: 300; color: var(--c-moss-light); }
.strip__item::after { content: "✦"; color: var(--c-moss); font-style: normal; font-weight: 400; font-size: 0.7em; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================ SERVICES ============================================================ */
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-6);
}
@media (max-width: 860px) { .services__header { grid-template-columns: 1fr; gap: var(--s-3); } }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 860px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--c-surface-1);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
  position: relative; overflow: hidden;
  min-height: clamp(320px, 30vw, 420px);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: #f5f1e6;
}
.service-card__number { display: none; }
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-forest-deep);
  margin-top: auto;
}
.service-card__desc { font-size: var(--text-body-sm); line-height: 1.55; color: var(--c-text-muted); }
.service-card__icon {
  position: absolute; top: var(--s-5); right: var(--s-5);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-forest); color: var(--c-on-dark);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease-out);
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.service-card:hover .service-card__icon { transform: rotate(-12deg) scale(1.08); }

/* Service card variant with image header */
.service-card--media {
  padding: 0;
  overflow: hidden;
  min-height: clamp(380px, 32vw, 460px);
}
.service-card--media .service-card__icon { display: none; }
.service-card--media .service-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-surface-2);
  margin-bottom: var(--s-4);
}
.service-card--media .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.service-card--media:hover .service-card__image img { transform: scale(1.06); }
.service-card--media .service-card__title {
  padding: 0 var(--s-5);
  margin-top: 0;
}
.service-card--media .service-card__desc {
  padding: 0 var(--s-5) var(--s-5);
}

.services__footer {
  margin-top: var(--s-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); padding: var(--s-4) var(--s-5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface-1);
  flex-wrap: wrap;
}
.services__footer-text { display: flex; align-items: center; gap: var(--s-3); font-size: var(--text-body-sm); }
.services__footer-emoji { font-size: 22px; }

/* ============================================================ FEATURE / SIGNATURE SERVICE ============================================================ */
.feature {
  background: var(--c-bg);
}
.feature__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 960px) { .feature__grid { grid-template-columns: 1fr; gap: var(--s-5); } }

.feature__list { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-4); }
.feature__list li {
  font-size: var(--text-body);
  line-height: 1.5;
  padding-left: 32px;
  position: relative;
  color: var(--c-text);
}
.feature__list li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--c-moss);
  font-size: 14px;
}

.feature__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.feature__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================ ADD-ONS ============================================================ */
.addons { background: var(--c-surface-1); padding-block: var(--s-7); }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}
@media (max-width: 960px) { .addons__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .addons__grid { grid-template-columns: 1fr; } }
.addon {
  padding: var(--s-4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-bg);
  transition: border-color 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
.addon:hover { border-color: var(--c-moss); transform: translateY(-2px); }
.addon__title {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: 500;
  color: var(--c-forest-deep);
  line-height: 1.2;
  margin-bottom: var(--s-2);
}
.addon__desc { font-size: var(--text-body-sm); line-height: 1.5; color: var(--c-text-muted); }

/* ============================================================ RESULTS STRIP ============================================================ */
.results-strip {
  background: var(--c-bg);
  padding-block: var(--s-7);
}
.results-strip--sand { background: var(--c-surface-1); }
.results-strip__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-5);
}
@media (max-width: 860px) {
  .results-strip__head { grid-template-columns: 1fr; gap: var(--s-3); }
}
.results-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--c-text);
  max-width: 16ch;
  margin-block: var(--s-3) 0;
}
.results-strip__heading em { font-style: italic; font-weight: 300; color: var(--c-forest); }
.results-strip__lead {
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--c-text-muted);
  max-width: 44ch;
}
.results-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 700px) {
  .results-strip__grid { grid-template-columns: 1fr; }
}
.results-strip__item {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface-2);
  position: relative;
}
.results-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.results-strip__item:hover img { transform: scale(1.06); }
.results-strip__footer {
  margin-top: var(--s-5);
  display: flex;
  justify-content: flex-end;
}

/* ============================================================ DIFFERENCE PROOF IMAGE ============================================================ */
.difference__col-image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--s-4);
  background: var(--c-surface-2);
}
.difference__col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.difference__col-image:hover img { transform: scale(1.04); }

/* ============================================================ ACCORDION ============================================================ */
.accordion { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-5); }

.accordion-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.32s var(--ease-out), background 0.32s var(--ease-out);
}
.accordion-item[open] {
  border-color: var(--c-forest);
  background: var(--c-bg);
}
.accordion-item > summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-4);
  align-items: center;
  transition: background 0.24s var(--ease-out);
}
.accordion-item > summary::-webkit-details-marker { display: none; }
.accordion-item > summary:hover { background: rgba(31, 140, 68, 0.05); }

.accordion-item__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-forest);
  color: var(--c-on-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}
.accordion-item__num svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.accordion-item:hover .accordion-item__num { transform: rotate(-6deg) scale(1.06); }
.accordion-item--featured .accordion-item__num {
  width: 48px;
  height: 48px;
}
.accordion-item--featured .accordion-item__num svg { width: 24px; height: 24px; }

/* Featured accordion variant — used for high-value items like the Bundle */
.accordion-item--featured .accordion-item__title {
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--c-forest-deep);
}

.accordion-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--c-forest);
  color: var(--c-on-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 6px;
  line-height: 1;
}
.accordion-item__badge::before {
  content: "✦";
  font-size: 11px;
  letter-spacing: 0;
}
.accordion-item__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.accordion-item__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-forest-deep);
}
.accordion-item__lead {
  font-size: var(--text-body-sm);
  line-height: 1.5;
  color: var(--c-text-muted);
}
.accordion-item__toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-forest);
  display: grid;
  place-items: center;
  color: var(--c-on-dark);
  transition: background 0.32s var(--ease-out), transform 0.32s var(--ease-out);
  flex-shrink: 0;
}
.accordion-item[open] .accordion-item__toggle {
  background: var(--c-forest-deep);
  transform: rotate(45deg);
}
.accordion-item__toggle::before {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.accordion-item__body {
  padding: 0 var(--s-5) var(--s-5) calc(var(--s-5) + 48px);
  border-top: 1px solid var(--c-border);
  padding-top: var(--s-4);
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 720px) {
  .accordion-item__body { grid-template-columns: 1fr; padding-left: var(--s-5); }
}
.accordion-item__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.accordion-item__body p {
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--c-text);
  max-width: 60ch;
}
.accordion-item__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.accordion-item__checklist li {
  font-size: var(--text-body-sm);
  line-height: 1.5;
  color: var(--c-text);
  padding-left: 28px;
  position: relative;
}
.accordion-item__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-forest);
  font-weight: 600;
}
.accordion-item__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--c-forest);
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--c-forest);
  border-radius: var(--r-pill);
  transition: all 0.32s var(--ease-out);
  white-space: nowrap;
  margin-top: var(--s-2);
  align-self: flex-start;
}
.accordion-item__cta:hover {
  background: var(--c-forest);
  color: var(--c-on-dark);
}

/* Image inside expanded accordion body — sits in right column */
.accordion-item__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface-2);
  align-self: stretch;
}
.accordion-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.accordion-item__image:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .accordion-item__image { order: -1; aspect-ratio: 16/9; }
}

/* Sub-options grid inside accordion (mulch colours, bundle variants) */
.subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px dashed var(--c-border);
  grid-column: 1 / -1;
}
@media (max-width: 640px) { .subgrid { grid-template-columns: 1fr; } }

.suboption {
  padding: var(--s-4);
  background: var(--c-surface-1);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.suboption__title {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: 500;
  color: var(--c-forest-deep);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.suboption__swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
}
.suboption__swatch--black { background: #1a1612; }
.suboption__swatch--brown { background: #6b4a2b; }
.suboption__swatch--red   { background: #8b2e1c; }
.suboption__swatch--cedar { background: #c9a06a; }
.suboption__desc { font-size: var(--text-body-sm); line-height: 1.5; color: var(--c-text-muted); }
.suboption__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-body);
  color: var(--c-moss);
  margin-top: auto;
  padding-top: var(--s-2);
}
.suboption__cta {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--c-forest);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: var(--s-2);
}

/* ============================================================ BUNDLE OPTIONS (inside accordion, mirrors .suboption) ============================================================ */
.bundle-option {
  padding: var(--s-4);
  background: var(--c-surface-1);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: background 0.32s var(--ease-out);
}
.bundle-option:hover { background: #efece2; }
.bundle-option__title {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: 500;
  color: var(--c-forest-deep);
  line-height: 1.2;
}
.bundle-option__desc { font-size: var(--text-body-sm); line-height: 1.5; color: var(--c-text-muted); }
.bundle-option__price {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--c-forest);
  margin-top: var(--s-2);
}

/* ============================================================ DIFFERENCE ============================================================ */
.difference { background: var(--c-forest-deep); color: var(--c-on-dark); }
.difference .eyebrow { color: var(--c-moss-light); }
.difference .eyebrow::before { background: var(--c-moss-light); }
.difference__heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-block: var(--s-3) var(--s-4);
  max-width: 18ch;
}
.difference__heading em { font-style: italic; font-weight: 300; color: var(--c-moss-light); }
.difference__lead {
  font-size: var(--text-body-lg);
  line-height: 1.55;
  color: var(--c-on-dark-muted);
  max-width: 56ch;
  margin-bottom: var(--s-6);
}
.difference__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 860px) { .difference__grid { grid-template-columns: 1fr; } }
.difference__col {
  padding: var(--s-5);
  border-radius: var(--r-lg);
  border: 1px solid rgba(250, 250, 246, 0.12);
}
.difference__col--bad { background: rgba(250, 250, 246, 0.04); opacity: 0.7; }
.difference__col--good { background: var(--c-forest); border-color: var(--c-forest); }
.difference__col-label {
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  opacity: 0.85;
}
.difference__col-title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: var(--s-4);
}
.difference__list { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); }
.difference__item { font-size: var(--text-body); line-height: 1.5; padding-left: 28px; position: relative; }
.difference__item::before { position: absolute; left: 0; top: 0.05em; font-size: 16px; }
.difference__col--bad .difference__item::before { content: "✕"; opacity: 0.6; }
.difference__col--good .difference__item::before { content: "✓"; }

.difference__quote {
  margin-top: var(--s-6);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  max-width: 64ch;
  color: var(--c-on-dark);
}
.difference__quote span { color: var(--c-moss-light); font-style: normal; font-weight: 500; }

.difference__about {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(244, 239, 228, 0.12);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--c-on-dark-muted);
}
.difference__about a {
  color: var(--c-moss-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.24s var(--ease-out), transform 0.24s var(--ease-out);
  margin-left: var(--s-2);
}
.difference__about a:hover {
  color: var(--c-on-dark);
}
.difference__about a span {
  transition: transform 0.32s var(--ease-out);
  display: inline-block;
}
.difference__about a:hover span { transform: translateX(4px); }

/* ============================================================ ABOUT ============================================================ */
.about { background: var(--c-bg); }
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-7); align-items: center; }
@media (max-width: 960px) { .about__grid { grid-template-columns: 1fr; } }
.about__visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__visual-tag {
  position: absolute; top: var(--s-4); left: var(--s-4);
  background: var(--c-bg);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  font-size: var(--text-body-sm);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.about__copy { display: flex; flex-direction: column; gap: var(--s-4); }
.about__copy p { font-size: var(--text-body); line-height: 1.7; color: var(--c-text); }
.about__copy p:not(:first-of-type) { color: var(--c-text-muted); }
.about__signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--text-body-lg);
  color: var(--c-forest);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
  margin-top: var(--s-3);
}

/* ============================================================ VALUES ============================================================ */
.values { background: var(--c-surface-1); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); margin-top: var(--s-6); }
@media (max-width: 960px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values__grid { grid-template-columns: 1fr; } }
.value { display: flex; flex-direction: column; gap: var(--s-3); }
.value__num {
  font-family: var(--font-display);
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 500;
  color: var(--c-forest);
  letter-spacing: 0.1em;
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--c-border);
}
.value__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-forest-deep);
}
.value__desc { font-size: var(--text-body-sm); line-height: 1.6; color: var(--c-text-muted); }

/* ============================================================ GALLERY ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (max-width: 860px) { .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 540px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--c-surface-2);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 37, 25, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute; bottom: var(--s-3); left: var(--s-3);
  color: var(--c-on-dark);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-body);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

.gallery__item--a { grid-column: span 5; grid-row: span 2; }
.gallery__item--b { grid-column: span 4; grid-row: span 1; }
.gallery__item--c { grid-column: span 3; grid-row: span 1; }
.gallery__item--d { grid-column: span 3; grid-row: span 1; }
.gallery__item--e { grid-column: span 4; grid-row: span 1; }
.gallery__item--f { grid-column: span 4; grid-row: span 2; }
.gallery__item--g { grid-column: span 4; grid-row: span 1; }
.gallery__item--h { grid-column: span 4; grid-row: span 1; }
.gallery__item--i { grid-column: span 3; grid-row: span 1; }
.gallery__item--j { grid-column: span 5; grid-row: span 1; }
.gallery__item--k { grid-column: span 6; grid-row: span 1; }
.gallery__item--l { grid-column: span 6; grid-row: span 1; }

@media (max-width: 860px) {
  .gallery__item--a { grid-column: span 6; grid-row: span 2; }
  .gallery__item--b, .gallery__item--c, .gallery__item--d,
  .gallery__item--e, .gallery__item--f, .gallery__item--g,
  .gallery__item--h, .gallery__item--i, .gallery__item--j,
  .gallery__item--k, .gallery__item--l { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 540px) {
  .gallery__item, .gallery__item--a { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================ TESTIMONIAL ============================================================ */
.testimonial { background: var(--c-forest-deep); color: var(--c-on-dark); }
.testimonial__inner { display: grid; grid-template-columns: 0.4fr 1fr; gap: var(--s-6); align-items: start; }
@media (max-width: 860px) { .testimonial__inner { grid-template-columns: 1fr; gap: var(--s-4); } }
.testimonial .eyebrow { color: var(--c-moss-light); }
.testimonial .eyebrow::before { background: var(--c-moss-light); }

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.testimonial__quote::before {
  content: "“";
  display: block;
  font-size: clamp(80px, 8vw, 120px);
  line-height: 0.6;
  color: var(--c-moss-light);
  font-weight: 300;
  margin-bottom: var(--s-3);
}
.testimonial__attr { margin-top: var(--s-5); display: flex; align-items: center; gap: var(--s-3); font-size: var(--text-body-sm); }
.testimonial__attr-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-forest);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.testimonial__attr-name { font-weight: 500; }
.testimonial__attr-meta { color: var(--c-on-dark-muted); font-size: 13px; }
.testimonial__stars { color: var(--c-moss-light); letter-spacing: 4px; font-size: 14px; margin-bottom: var(--s-3); }

/* ============================================================ CTA BAND ============================================================ */
.cta-band { background: var(--c-bg); position: relative; overflow: hidden; }
.cta-band__inner {
  background: var(--c-surface-1);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-5);
  align-items: center;
  border: 1px solid var(--c-border);
}
@media (max-width: 860px) { .cta-band__inner { grid-template-columns: 1fr; padding: var(--s-6) var(--s-5); } }
.cta-band__heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--c-forest-deep);
}
.cta-band__heading em { font-style: italic; font-weight: 300; color: var(--c-moss); }
.cta-band__lead { margin-top: var(--s-3); color: var(--c-text-muted); max-width: 44ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: var(--s-3); }
.cta-band__call {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4);
  background: var(--c-bg);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.cta-band__call-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-forest); color: var(--c-on-dark);
  display: grid; place-items: center; font-size: 18px;
}
.cta-band__call-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-text-muted); display: block;
}
.cta-band__call-value {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: 500;
  color: var(--c-forest-deep);
}

/* ============================================================ CONTACT ============================================================ */
.contact { background: var(--c-bg); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s-6); }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__info { display: flex; flex-direction: column; gap: var(--s-4); }
.contact__channels { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-4); }
.contact__channel {
  display: flex; align-items: flex-start; gap: var(--s-3);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--c-border);
}
.contact__channel:last-child { border-bottom: 1px solid var(--c-border); }
.contact__channel-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-surface-1);
  color: var(--c-forest);
  display: grid; place-items: center;
  flex-shrink: 0; font-size: 16px;
}
.contact__channel-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-text-muted);
}
.contact__channel-value {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: 500;
  color: var(--c-forest-deep);
  line-height: 1.3;
}
.contact__channel-meta { font-size: var(--text-body-sm); color: var(--c-text-muted); margin-top: 4px; }

.contact__form {
  background: var(--c-surface-1);
  padding: var(--s-5);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.contact__form-title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-forest-deep);
  margin-bottom: var(--s-2);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-muted); font-weight: 500;
}
.field__input, .field__select, .field__textarea {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  padding: var(--s-3);
  border-radius: var(--r-sm);
  transition: border-color 0.24s var(--ease-out);
  width: 100%;
}
.field__input:focus, .field__select:focus, .field__textarea:focus { outline: none; border-color: var(--c-forest); }
.field__textarea { min-height: 120px; resize: vertical; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 540px) { .field__row { grid-template-columns: 1fr; } }

/* ============================================================ PILL MULTI-SELECT ============================================================ */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: 4px;
}
.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  cursor: pointer;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 500;
  transition: all 0.24s var(--ease-out);
  user-select: none;
  line-height: 1.2;
}
.pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.pill__check {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  color: var(--c-on-dark);
  flex-shrink: 0;
  transition: all 0.24s var(--ease-out);
  font-size: 11px;
}
.pill__check::before { content: ""; line-height: 1; }
.pill:hover {
  border-color: var(--c-forest);
  color: var(--c-forest);
}
.pill:hover .pill__check { border-color: var(--c-forest); }
.pill:has(input:checked) {
  background: var(--c-forest);
  color: var(--c-on-dark);
  border-color: var(--c-forest);
}
.pill:has(input:checked) .pill__check {
  background: var(--c-on-dark);
  border-color: var(--c-on-dark);
  color: var(--c-forest);
}
.pill:has(input:checked) .pill__check::before { content: "✓"; font-weight: 700; }
.pill:has(input:focus-visible) {
  outline: 2px solid var(--c-moss);
  outline-offset: 2px;
}

.pills--sub {
  margin-top: var(--s-3);
  padding: var(--s-3);
  background: var(--c-bg);
  border: 1px dashed var(--c-border);
  border-radius: var(--r-md);
  display: none;
  flex-direction: column;
  gap: var(--s-2);
}
.pills--sub.is-open { display: flex; }
.pills--sub__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.pills--sub__label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--c-moss);
}
.pills--sub__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.pill--sm {
  padding: 6px 12px;
  font-size: 13px;
}
.pill--sm .pill__check { width: 14px; height: 14px; }

/* ============================================================ FOOTER ============================================================ */
.footer { background: var(--c-forest-deep); color: var(--c-on-dark); padding-block: var(--s-7) var(--s-5); }
.footer__top {
  display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(250, 250, 246, 0.12);
}
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr; gap: var(--s-5); } }
.footer__brand {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 1.8vw, 28px);
}
.footer__brand-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: transparent;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer__about {
  margin-top: var(--s-3);
  color: var(--c-on-dark-muted);
  font-size: var(--text-body-sm);
  line-height: 1.6;
  max-width: 38ch;
}
.footer__col-title {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-moss-light); font-weight: 500;
  margin-bottom: var(--s-3);
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); }
.footer__list a {
  color: var(--c-on-dark);
  opacity: 0.78;
  font-size: var(--text-body-sm);
  transition: opacity 0.24s var(--ease-out);
}
.footer__list a:hover { opacity: 1; color: var(--c-moss-light); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3); padding-top: var(--s-4);
  font-size: 13px; color: var(--c-on-dark-muted);
  flex-wrap: wrap;
}

/* ============================================================ HOW IT WORKS ============================================================ */
.how-it-works { background: var(--c-bg); }
.how-it-works__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-6);
}
@media (max-width: 860px) {
  .how-it-works__head { grid-template-columns: 1fr; gap: var(--s-3); }
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  position: relative;
}
@media (max-width: 860px) {
  .how-it-works__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

.how-it-works__step {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}

.how-it-works__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: var(--c-forest);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--s-3);
}

.how-it-works__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-forest-deep);
}

.how-it-works__desc {
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--c-text-muted);
  margin-top: var(--s-2);
}

.how-it-works__footer {
  margin-top: var(--s-6);
  display: flex;
  justify-content: center;
}

/* ============================================================ DARK SECTION VARIANT ============================================================ */
.section--dark { background: var(--c-forest-deep); color: var(--c-on-dark); }
.section--dark .eyebrow { color: var(--c-moss-light); }
.section--dark .eyebrow::before { background: var(--c-moss-light); }
.section--dark .section-heading { color: var(--c-on-dark); }
.section--dark .section-heading em { color: var(--c-moss-light); }
.section--dark .section-lead { color: var(--c-on-dark-muted); }

.section--dark .service-card {
  background: rgba(250, 250, 246, 0.05);
  border: 1px solid rgba(250, 250, 246, 0.08);
  min-height: clamp(260px, 22vw, 320px);
}
.section--dark .service-card:hover {
  background: rgba(250, 250, 246, 0.09);
  border-color: rgba(250, 250, 246, 0.18);
}
.section--dark .service-card__title { color: var(--c-on-dark); }
.section--dark .service-card__desc { color: var(--c-on-dark-muted); }
.section--dark .service-card__number { color: var(--c-moss-light); }
.section--dark .service-card__icon {
  background: var(--c-forest);
  color: var(--c-on-dark);
}

.section--dark .services__footer {
  background: rgba(250, 250, 246, 0.04);
  border-color: rgba(250, 250, 246, 0.12);
}
.section--dark .services__footer-text { color: var(--c-on-dark-muted); }
.section--dark .services__footer-text strong { color: var(--c-on-dark); }

.section--dark .btn--ghost {
  color: var(--c-on-dark);
  border-color: rgba(250, 250, 246, 0.22);
}
.section--dark .btn--ghost:hover {
  border-color: var(--c-moss-light);
  color: var(--c-moss-light);
}

/* Grid override: 3x2 layout for the 6-service module */
.services__grid--six {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .services__grid--six { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services__grid--six { grid-template-columns: 1fr; }
}

/* 7-service layout: 3 across, with the last card (Bundle) spotlighted centered on row 3 */
.services__grid--seven {
  grid-template-columns: repeat(3, 1fr);
}
.services__grid--seven > .service-card:last-child {
  grid-column: 2 / 3;
}
@media (max-width: 960px) {
  .services__grid--seven { grid-template-columns: repeat(2, 1fr); }
  .services__grid--seven > .service-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services__grid--seven { grid-template-columns: 1fr; }
  .services__grid--seven > .service-card:last-child { grid-column: 1; }
}

/* ============================================================ LIGHTBOX ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 37, 25, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 300;
  display: grid;
  place-items: center;
  padding: var(--s-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease-out), visibility 0.32s var(--ease-out);
}
.lightbox--open {
  opacity: 1;
  visibility: visible;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: block;
}
.lightbox__caption {
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  color: var(--c-on-dark);
  background: rgba(20, 37, 25, 0.7);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-pill);
  font-weight: 500;
  max-width: 80vw;
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 250, 246, 0.12);
  color: var(--c-on-dark);
  display: grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.24s var(--ease-out), transform 0.24s var(--ease-out);
  border: 1px solid rgba(250, 250, 246, 0.18);
  font-family: var(--font-body);
  line-height: 1;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(250, 250, 246, 0.22);
}
.lightbox__close {
  top: var(--s-4);
  right: var(--s-4);
}
.lightbox__nav--prev {
  left: var(--s-4);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--next {
  right: var(--s-4);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox__counter {
  position: absolute;
  top: calc(var(--s-4) + 14px);
  left: var(--s-5);
  color: var(--c-on-dark);
  font-size: var(--text-body-sm);
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.05em;
}
@media (max-width: 720px) {
  .lightbox__nav { width: 40px; height: 40px; font-size: 20px; }
  .lightbox__close { width: 40px; height: 40px; }
  .lightbox__counter { top: var(--s-4); }
}

/* Make gallery items show as clickable */
.gallery__item { cursor: zoom-in; }

/* ============================================================ REVEAL ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
