@charset "UTF-8";
/* ============================================================================
   Art Design — design system
   Palette is drawn from the materials the company actually works in:
   travertine, granite, slate, foliage. Photography carries the page; the type
   stays quiet around it.
   ========================================================================= */

/* ── Fonts ───────────────────────────────────────────────────────────────── */
/* One subset per family. The latin range covers French completely — every
   accented vowel, the ligature œ, the guillemets and the typographic dashes —
   so the latin-ext files are not shipped. A glyph outside it (none occur in this
   site's copy) would fall back to a system face for that character alone. */
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'InterVar';
  src: url('/fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --moss-900: #1c2418;
  --moss-800: #26311f;
  --moss-700: #35442b;
  --moss-600: #465a39;
  --moss-500: #5c7548;
  --moss-400: #7d9a63;
  --moss-300: #a5bb8d;

  --sand-100: #faf8f3;
  --sand-200: #f2eee4;
  --sand-300: #e6e0d1;
  --sand-400: #d3cab4;
  --sand-500: #b3a68a;

  --ink-900: #14170f;
  --ink-800: #1e2319;
  --ink-700: #2b3225;
  --ink-500: #545c4a;
  --ink-400: #7a8271;

  --clay: #a8553a;

  /* Semantic — remapped wholesale in the dark block below. */
  --bg: var(--sand-100);
  --bg-sunk: var(--sand-200);
  --bg-raised: #fff;
  --bg-invert: var(--ink-900);
  --fg: var(--ink-900);
  --fg-muted: var(--ink-500);
  --fg-faint: var(--ink-400);
  --fg-invert: var(--sand-100);
  --line: color-mix(in oklab, var(--ink-900) 12%, transparent);
  --line-strong: color-mix(in oklab, var(--ink-900) 22%, transparent);
  --accent: var(--moss-600);
  --accent-hover: var(--moss-700);
  --accent-fg: #fff;
  --focus: var(--moss-500);

  --shadow-sm: 0 1px 2px rgb(20 23 15 / 0.06), 0 2px 8px rgb(20 23 15 / 0.04);
  --shadow-md: 0 4px 12px rgb(20 23 15 / 0.08), 0 12px 32px rgb(20 23 15 / 0.06);
  --shadow-lg: 0 8px 24px rgb(20 23 15 / 0.1), 0 32px 64px rgb(20 23 15 / 0.12);

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'InterVar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;

  /* Fluid type scale, 320px → 1400px viewport. */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.44rem, 1.29rem + 0.75vw, 1.94rem);
  --step-3: clamp(1.73rem, 1.46rem + 1.35vw, 2.59rem);
  --step-4: clamp(2.07rem, 1.62rem + 2.26vw, 3.45rem);
  --step-5: clamp(2.49rem, 1.75rem + 3.7vw, 4.6rem);
  --step-6: clamp(2.99rem, 1.79rem + 5.98vw, 6.14rem);

  --gutter: clamp(1.15rem, 0.9rem + 1.2vw, 2rem);
  --measure: 68ch;
  --wrap: 1280px;
  --wrap-tight: 940px;
  --radius: 4px;
  --radius-lg: 8px;

  --section-y: clamp(3.5rem, 2.2rem + 6.5vw, 8rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #101309;
    --bg-sunk: #0a0c06;
    --bg-raised: #191d12;
    --bg-invert: #05060a;
    --fg: #eceadf;
    --fg-muted: #a8ad9c;
    --fg-faint: #7f8574;
    --fg-invert: #eceadf;
    --line: color-mix(in oklab, #eceadf 14%, transparent);
    --line-strong: color-mix(in oklab, #eceadf 26%, transparent);
    --accent: var(--moss-400);
    --accent-hover: var(--moss-300);
    --accent-fg: #101309;
    --focus: var(--moss-300);
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3), 0 2px 8px rgb(0 0 0 / 0.24);
    --shadow-md: 0 4px 12px rgb(0 0 0 / 0.34), 0 12px 32px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 8px 24px rgb(0 0 0 / 0.4), 0 32px 64px rgb(0 0 0 / 0.44);
  }
}
/* The header toggle stamps data-theme on <html>; it must beat the media query
   in both directions. */
:root[data-theme='dark'] {
  --bg: #101309;
  --bg-sunk: #0a0c06;
  --bg-raised: #191d12;
  --bg-invert: #05060a;
  --fg: #eceadf;
  --fg-muted: #a8ad9c;
  --fg-faint: #7f8574;
  --fg-invert: #eceadf;
  --line: color-mix(in oklab, #eceadf 14%, transparent);
  --line-strong: color-mix(in oklab, #eceadf 26%, transparent);
  --accent: var(--moss-400);
  --accent-hover: var(--moss-300);
  --accent-fg: #101309;
  --focus: var(--moss-300);
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3), 0 2px 8px rgb(0 0 0 / 0.24);
  --shadow-md: 0 4px 12px rgb(0 0 0 / 0.34), 0 12px 32px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 8px 24px rgb(0 0 0 / 0.4), 0 32px 64px rgb(0 0 0 / 0.44);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
/* Icons are inlined as bare <svg> all over the markup; without an intrinsic size
   they stretch to the width of whatever contains them. */
svg { width: 1em; height: 1em; }
img { height: auto; background: var(--bg-sunk); }
/* `display: contents` makes <picture> vanish from layout so the <img> inherits
   sizing from the real container. Without it, `height: 100%` on the img resolves
   against an auto-height <picture> and full-bleed images overflow their box. */
picture { display: contents; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:where(a) { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
:where(a:hover) { text-decoration-color: var(--accent); }

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--moss-400); color: #fff; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.017em;
  text-wrap: balance;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.2; }
h4 { font-size: var(--step-1); line-height: 1.3; }
p { text-wrap: pretty; }

.display { font-size: var(--step-6); line-height: 1.02; letter-spacing: -0.028em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: '';
  width: clamp(1.5rem, 3vw, 2.75rem);
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: 0.65;
}
.eyebrow--center { justify-content: center; }

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 58ch;
}

.prose { max-width: var(--measure); }
.prose > * + * { margin-block-start: 1.1em; }
.prose h2 { font-size: var(--step-3); margin-block-start: 2em; }
.prose h3 { font-size: var(--step-1); margin-block-start: 1.7em; }
.prose ul, .prose ol { padding-inline-start: 1.3em; }
.prose li + li { margin-block-start: 0.45em; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--accent); text-decoration: underline; }
.prose strong { font-weight: 650; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}
.wrap--tight { width: min(100% - var(--gutter) * 2, var(--wrap-tight)); }
.section { padding-block: var(--section-y); }
.section--sunk { background: var(--bg-sunk); }
.section--invert {
  background: var(--bg-invert);
  color: var(--fg-invert);
  --fg: var(--fg-invert);
  --fg-muted: color-mix(in oklab, var(--fg-invert) 68%, transparent);
  --line: color-mix(in oklab, var(--fg-invert) 16%, transparent);
  --accent: var(--moss-300);
}
.stack > * + * { margin-block-start: var(--stack-gap, 1rem); }

.section-head { max-width: 62ch; margin-block-end: clamp(2rem, 4vw, 3.5rem); }
.section-head .eyebrow { margin-block-end: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  --_bg: var(--accent);
  --_fg: var(--accent-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  background: var(--_bg);
  color: var(--_fg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.btn:hover { --_bg: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--ghost {
  --_bg: transparent;
  --_fg: var(--fg);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  --_bg: color-mix(in oklab, var(--accent) 10%, transparent);
  --_fg: var(--fg);
  border-color: var(--accent);
}
.btn--wa { --_bg: #1fa855; --_fg: #fff; }
.btn--wa:hover { --_bg: #178f47; }
.btn--lg { padding: 1.1em 2em; font-size: var(--step-0); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Text link with a sliding arrow. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-block-end: 1px solid transparent;
}
/* Over a hero the header is transparent with light text; once scrolled — or on
   any page without a hero — it becomes a solid bar. */
.header[data-over-hero='true']:not([data-scrolled='true']) {
  background: linear-gradient(to bottom, rgb(10 12 6 / 0.5), transparent);
  color: #fff;
}
.header[data-over-hero='true']:not([data-scrolled='true']) .header__logo-mark { color: #fff; }
.header:not([data-over-hero='true']),
.header[data-scrolled='true'] {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-block-end-color: var(--line);
}
.header[data-scrolled='true'] { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.5rem;
  padding-block: 0.6rem;
}
@media (min-width: 900px) { .header__inner { min-height: 5.25rem; } }

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-inline-end: auto;
  flex: none;
}
.header__logo-mark { width: 2.1rem; height: 2.1rem; color: var(--accent); flex: none; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.header__logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
  font-weight: 500;
}

.nav { display: none; }
@media (min-width: 1080px) {
  .nav { display: flex; align-items: center; gap: 0.15rem; }
}
.nav__link {
  position: relative;
  display: block;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link:hover { background: color-mix(in oklab, currentColor 9%, transparent); }
.nav__link[aria-current='page'] { color: var(--accent); font-weight: 650; }
.header[data-over-hero='true']:not([data-scrolled='true']) .nav__link[aria-current='page'] { color: #fff; }
.nav__link[aria-current='page']::after {
  content: '';
  position: absolute;
  inset-inline: 0.8rem;
  bottom: 0.28rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.nav__item { position: relative; }
.nav__item--has-menu > .nav__link { display: flex; align-items: center; gap: 0.3em; }
.nav__chev { width: 0.75em; height: 0.75em; opacity: 0.6; transition: transform 0.2s var(--ease); }
.nav__item--has-menu:hover .nav__chev,
.nav__item--has-menu:focus-within .nav__chev { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  inset-inline-start: 0;
  min-width: 19rem;
  padding: 0.5rem;
  background: var(--bg-raised);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.88rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.16s var(--ease), color 0.16s var(--ease);
}
.nav__menu a:hover { background: var(--bg-sunk); color: var(--accent); }

.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

/* Theme toggle */
.theme-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: inherit;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  flex: none;
}
.theme-toggle:hover { background: color-mix(in oklab, currentColor 9%, transparent); }
.theme-toggle svg { width: 1.1rem; height: 1.1rem; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme='dark'] .theme-toggle .icon-moon,
:root:not([data-theme='light']) .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .theme-toggle .icon-sun { display: none; }
  :root:not([data-theme='light']) .theme-toggle .icon-moon { display: block; }
}
:root[data-theme='dark'] .theme-toggle .icon-sun { display: none; }
:root[data-theme='dark'] .theme-toggle .icon-moon { display: block; }
:root[data-theme='light'] .theme-toggle .icon-sun { display: block; }
:root[data-theme='light'] .theme-toggle .icon-moon { display: none; }

/* Mobile menu */
.burger {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-inline-end: -0.5rem;
  border-radius: var(--radius);
  flex: none;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease);
}
.burger span + span { margin-top: 4.5px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  padding: 5.5rem var(--gutter) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5%);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease-out), visibility 0.28s;
}
.drawer[data-open='true'] { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1080px) { .drawer { display: none; } }
.drawer__list { list-style: none; padding: 0; }
.drawer__list > li { border-block-end: 1px solid var(--line); }
.drawer__list a {
  display: block;
  padding: 1rem 0.25rem;
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-decoration: none;
}
.drawer__list a[aria-current='page'] { color: var(--accent); }
.drawer__sub { list-style: none; padding: 0 0 0.85rem 0.9rem; }
.drawer__sub a {
  font-family: var(--font-body);
  font-size: var(--step-0);
  padding: 0.45rem 0;
  color: var(--fg-muted);
}
.drawer__foot { margin-block-start: 2rem; display: grid; gap: 0.75rem; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin-block-start: calc(-1 * var(--header-h, 5.25rem));
  min-height: min(94svh, 56rem);
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
}
.hero--compact { min-height: min(62svh, 34rem); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgb(8 10 5 / 0.88) 0%, rgb(8 10 5 / 0.55) 32%, rgb(8 10 5 / 0.15) 62%, rgb(8 10 5 / 0.42) 100%),
    linear-gradient(to right, rgb(8 10 5 / 0.5), transparent 65%);
}
.hero__inner {
  /* .hero is pulled up under the transparent header by --header-h; add it back
     as padding so the eyebrow never sits behind the logo bar. */
  padding-block: calc(var(--header-h, 5.25rem) + clamp(1.5rem, 5vw, 3.5rem))
    clamp(2.5rem, 6vw, 4.5rem);
}
.hero__eyebrow { color: var(--moss-300); margin-block-end: 1.15rem; }
.hero__title { max-width: 19ch; color: #fff; }
.hero--compact .hero__title { max-width: 24ch; font-size: var(--step-4); }
.hero__lead {
  margin-block-start: 1.5rem;
  max-width: 52ch;
  color: rgb(255 255 255 / 0.86);
  font-size: var(--step-1);
}
.hero__actions { margin-block-start: 2.25rem; }
.hero .btn--ghost { --_fg: #fff; border-color: rgb(255 255 255 / 0.45); }
.hero .btn--ghost:hover { background: rgb(255 255 255 / 0.14); border-color: #fff; }

/* Trust strip pinned under the hero */
.hero__strip {
  position: relative;
  z-index: 2;
  background: var(--bg-invert);
  color: var(--fg-invert);
  border-block-start: 1px solid rgb(255 255 255 / 0.1);
}
.hero__strip ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__strip li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 1.25rem;
  font-size: var(--step--1);
  border-inline-start: 1px solid rgb(255 255 255 / 0.1);
}
.hero__strip li:first-child { border-inline-start: 0; }
.hero__strip svg { width: 1.15rem; height: 1.15rem; color: var(--moss-300); flex: none; }

/* ── Cards & grids ───────────────────────────────────────────────────────── */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.75rem); }
/* Fixed column counts rather than auto-fit: auto-fit would slip a 2-up grid to
   3 columns on a wide viewport and leave an orphan card on the last row. */
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 800px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 420px) { .grid--4 { grid-template-columns: 1fr; } }

/* Service card: photo with a gradient and text laid over it. */
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(18rem, 32vw, 25rem);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-decoration: none;
}
.svc__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgb(8 10 5 / 0.9) 8%, rgb(8 10 5 / 0.45) 45%, rgb(8 10 5 / 0.12) 100%);
  transition: background 0.4s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.05); }
.svc:hover::after { background: linear-gradient(to top, rgb(20 32 12 / 0.94) 8%, rgb(8 10 5 / 0.5) 50%, rgb(8 10 5 / 0.15) 100%); }
.svc__num {
  position: absolute;
  top: 1.4rem;
  inset-inline-end: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.svc__title { font-size: var(--step-2); color: #fff; }
.svc__text {
  margin-block-start: 0.6rem;
  font-size: var(--step--1);
  color: rgb(255 255 255 / 0.82);
  max-width: 34ch;
}
.svc__more {
  margin-block-start: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--moss-300);
}
.svc__more svg { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.svc:hover .svc__more svg { transform: translateX(4px); }

/* Generic surface card */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-sunk); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.35rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.card__title { font-size: var(--step-1); }
.card__title a { text-decoration: none; }
.card__title a::after { content: ''; position: absolute; inset: 0; }
.card__text { font-size: var(--step--1); color: var(--fg-muted); }
.card__foot { margin-block-start: auto; padding-block-start: 0.5rem; }

.tag {
  display: inline-block;
  padding: 0.28em 0.7em;
  background: color-mix(in oklab, var(--accent) 13%, transparent);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Pillars (why us) */
.pillar { display: flex; gap: 1rem; }
.pillar__icon {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
}
.pillar__icon svg { width: 1.3rem; height: 1.3rem; }
.pillar h3 { font-size: var(--step-1); margin-block-end: 0.35rem; }
.pillar p { font-size: var(--step--1); color: var(--fg-muted); }

/* Stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { background: var(--bg); padding: clamp(1.25rem, 3vw, 2rem); text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat__label {
  margin-block-start: 0.45rem;
  font-size: var(--step--1);
  color: var(--fg-muted);
  text-wrap: balance;
}

/* Split feature (text + image) */
.split {
  display: grid;
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse > :first-child { order: 2; }
}
.split--top { align-items: start; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; }

/* Checklist */
.checks { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.checks li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--step-0); }
.checks svg { width: 1.15rem; height: 1.15rem; color: var(--accent); flex: none; margin-block-start: 0.28em; }

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15.5rem), 1fr));
  gap: 0.6rem;
}
.gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-sunk);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  width: 100%;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(8 10 5 / 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
/* Every 7th tile spans two columns — breaks the grid without a masonry library. */
.gallery__item:nth-child(7n + 1) { grid-column: span 2; aspect-ratio: 16 / 10; }
@media (max-width: 480px) { .gallery__item:nth-child(7n + 1) { grid-column: span 1; aspect-ratio: 4 / 3; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgb(6 8 4 / 0.96);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lightbox[data-open='true'] { opacity: 1; visibility: visible; }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; padding: 1rem var(--gutter); color: rgb(255 255 255 / 0.75); font-size: var(--step--1); }
.lightbox__stage { display: grid; place-items: center; padding: 0 clamp(0.5rem, 4vw, 4rem); min-height: 0; }
.lightbox__stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); }
.lightbox__cap { padding: 1rem var(--gutter) 1.75rem; color: rgb(255 255 255 / 0.8); text-align: center; font-size: var(--step--1); max-width: 70ch; margin-inline: auto; text-wrap: pretty; }
.lightbox__btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  transition: background 0.2s var(--ease);
}
.lightbox__btn:hover { background: rgb(255 255 255 / 0.22); }
.lightbox__btn svg { width: 1.25rem; height: 1.25rem; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.lightbox__nav--prev { inset-inline-start: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav--next { inset-inline-end: clamp(0.5rem, 2vw, 1.5rem); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { border-block-start: 1px solid var(--line); }
.faq details { border-block-end: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.3;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: '';
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin-block-start: 0.25em;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
  /* plus sign, drawn with a mask so it inherits colour */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
}
.faq details[open] summary { color: var(--accent); }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq__body { padding-block-end: 1.5rem; max-width: var(--measure); color: var(--fg-muted); }
.faq__body > * + * { margin-block-start: 0.8em; }

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgb(12 18 8 / 0.94) 0%, rgb(12 18 8 / 0.78) 45%, rgb(12 18 8 / 0.5) 100%);
}
.cta__inner { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.cta h2 { color: #fff; max-width: 20ch; }
.cta p { margin-block-start: 1.15rem; max-width: 52ch; color: rgb(255 255 255 / 0.86); font-size: var(--step-1); }
.cta .btn-row { margin-block-start: 2rem; }
.cta .btn--ghost { --_fg: #fff; border-color: rgb(255 255 255 / 0.45); }
.cta .btn--ghost:hover { background: rgb(255 255 255 / 0.14); border-color: #fff; }

/* ── Contact panel ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.05fr 1fr; align-items: start; } }
.contact-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 0.95rem; align-items: flex-start; }
.contact-list svg { width: 1.25rem; height: 1.25rem; color: var(--accent); flex: none; margin-block-start: 0.25em; }
.contact-list dt { font-size: 0.75rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--fg-faint); font-weight: 600; margin-block-end: 0.2rem; }
.contact-list dd { margin: 0; font-size: var(--step-0); }
.contact-list a { text-decoration: none; font-weight: 550; }
.contact-list a:hover { color: var(--accent); text-decoration: underline; }
.contact-phone { font-family: var(--font-display); font-size: var(--step-2); letter-spacing: -0.01em; }

.hours { width: 100%; border-collapse: collapse; font-size: var(--step--1); table-layout: fixed; }
.hours th, .hours td { padding: 0.5rem 0; text-align: start; border-block-end: 1px solid var(--line); }
.hours th { font-weight: 500; color: var(--fg-muted); }
.hours td { text-align: end; font-variant-numeric: tabular-nums; white-space: nowrap; padding-inline-start: 1rem; }
.hours tr:last-child th, .hours tr:last-child td { border-block-end: 0; }
.hours .is-closed { color: var(--fg-faint); }

.map-embed {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-sunk);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.crumbs { padding-block: 1.1rem; font-size: 0.82rem; color: var(--fg-muted); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; list-style: none; padding: 0; }
.crumbs li { display: flex; align-items: center; gap: 0.4rem; }
.crumbs li + li::before { content: '/'; opacity: 0.45; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumbs [aria-current='page'] { color: var(--fg); }

/* ── Article ─────────────────────────────────────────────────────────────── */
.article__head { padding-block: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.article__meta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; font-size: var(--step--1); color: var(--fg-muted); margin-block-start: 1.25rem; }
.article__hero { border-radius: var(--radius-lg); overflow: hidden; margin-block-end: clamp(2rem, 4vw, 3rem); }
.article__hero img { width: 100%; }
.toc {
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-block-end: 2.5rem;
}
.toc h2 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 650; letter-spacing: 0; margin-block-end: 0.7rem; }
.toc ol { list-style: none; padding: 0; display: grid; gap: 0.4rem; counter-reset: toc; }
.toc li { counter-increment: toc; font-size: var(--step--1); }
.toc li::before { content: counter(toc) '. '; color: var(--accent); font-weight: 650; }
.toc a { color: var(--fg-muted); text-decoration: none; }
.toc a:hover { color: var(--accent); text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-invert);
  color: var(--fg-invert);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  --fg-muted: rgb(236 234 223 / 0.62);
  --line: rgb(236 234 223 / 0.14);
}
.footer a { color: inherit; }
.footer__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h3 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--moss-300);
  margin-block-end: 1.1rem;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; font-size: var(--step--1); }
.footer ul a { text-decoration: none; color: var(--fg-muted); transition: color 0.18s var(--ease); }
.footer ul a:hover { color: var(--fg-invert); }
.footer__brand-name { font-family: var(--font-display); font-size: var(--step-2); margin-block-end: 0.6rem; }
.footer__blurb { font-size: var(--step--1); color: var(--fg-muted); max-width: 34ch; }
.footer__social { display: flex; gap: 0.6rem; margin-block-start: 1.35rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__social a:hover { background: var(--moss-600); border-color: var(--moss-600); }
.footer__social svg { width: 1.05rem; height: 1.05rem; }
.footer__bottom {
  margin-block-start: clamp(2.5rem, 5vw, 4rem);
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }

/* ── Sticky mobile call bar ──────────────────────────────────────────────── */
/* The site has no contact form by design — every path leads to phone or
   WhatsApp — so the bar is the primary conversion surface on mobile. */
.callbar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-strong);
  border-block-start: 1px solid var(--line);
  transform: translateY(101%);
  transition: transform 0.32s var(--ease-out);
  padding-block-end: env(safe-area-inset-bottom);
}
.callbar[data-show='true'] { transform: none; }
@media (min-width: 900px) { .callbar { display: none; } }
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  background: var(--bg-raised);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.callbar a:first-child { color: var(--accent-fg); background: var(--accent); }
.callbar a:last-child { color: #fff; background: #1fa855; }
.callbar svg { width: 1.15rem; height: 1.15rem; }
@media (max-width: 899px) { body { padding-block-end: 3.6rem; } }

/* ── Zone list ───────────────────────────────────────────────────────────── */
.zones { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 13rem), 1fr)); gap: 0.6rem; }
.zone {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.zone:hover { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 7%, var(--bg-raised)); transform: translateY(-1px); }
.zone__name { font-weight: 600; font-size: var(--step-0); }
.zone__meta { font-size: 0.74rem; color: var(--fg-faint); font-variant-numeric: tabular-nums; }

/* Plain comma list of secondary communes */
.commune-list { columns: 2; column-gap: 2rem; list-style: none; padding: 0; font-size: var(--step--1); color: var(--fg-muted); }
@media (min-width: 700px) { .commune-list { columns: 3; } }
@media (min-width: 1000px) { .commune-list { columns: 4; } }
.commune-list li { break-inside: avoid; padding-block: 0.2rem; }

/* ── Partners ────────────────────────────────────────────────────────────── */
.partners { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 13rem), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.partner { background: var(--bg); padding: 1.5rem 1.25rem; text-align: center; }
.partner__name { font-family: var(--font-display); font-size: var(--step-1); }
.partner__note { margin-block-start: 0.3rem; font-size: 0.8rem; color: var(--fg-muted); }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  [data-reveal].is-in { opacity: 1; transform: none; }
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  inset-inline-start: 0.5rem;
  top: -100%;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.5rem; }
.text-center { text-align: center; }
.mt-0 { margin-block-start: 0; }
.muted { color: var(--fg-muted); }
[hidden] { display: none !important; }
