/* =====================================================================
   Three Stone — design system
   Palette pulled from the existing brand: forest green #228B22 on
   near-black, with a warm stone off-white for daylight sections.
   Mobile-first: every rule below assumes a 375px viewport until a
   min-width query says otherwise.
   ===================================================================== */

:root {
  --green: #228b22;
  --green-dk: #186118;
  --green-dkr: #0f3d0f;
  --green-lt: #43b843;
  --green-glow: rgba(34, 139, 34, 0.28);

  --ink: #0b0e0c;
  --ink-2: #121613;
  --ink-3: #1b211d;
  --ink-line: rgba(255, 255, 255, 0.11);

  --paper: #fbfbf9;
  --paper-2: #f2f3ef;
  --paper-3: #e6e8e2;
  --line: #dcded7;

  --text: #141815;
  --muted: #5d655e;
  --muted-lt: rgba(255, 255, 255, 0.66);

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --pad: 20px;
  --r: 4px;
  --r-lg: 10px;

  --shadow: 0 1px 2px rgba(11, 14, 12, 0.05), 0 8px 28px -12px rgba(11, 14, 12, 0.16);
  --shadow-lg: 0 2px 4px rgba(11, 14, 12, 0.06), 0 26px 60px -22px rgba(11, 14, 12, 0.3);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img,
svg,
video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
}
.skip:focus { left: 0; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.i { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.i[viewBox='0 0 24 24'] path[d^='M6.6'],
.i[viewBox='0 0 24 24'] path[d^='M20 4'],
.i[viewBox='0 0 24 24'] path[d^='m12 2'] { fill: currentColor; stroke: none; }

/* --------------------------- typography scale -------------------------- */

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 10.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.3rem, 8vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.95rem, 6vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
}

.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  line-height: 1.2;
}

.h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -0.005em;
}

.lead {
  font-size: clamp(1.03rem, 2.4vw, 1.2rem);
  line-height: 1.68;
  color: var(--muted);
  max-width: 62ch;
}

.eyebrow {
  font-size: 0.695rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: none;
}
.eyebrow--light { color: var(--green-lt); }
.eyebrow--center { justify-content: center; }

em.g { font-style: normal; color: var(--green); }

.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* -------------------------------- buttons ------------------------------ */

.btn {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--r);
  font-size: 0.845rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.24), transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.65s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px var(--green-glow); }
.btn:hover::after { transform: translateX(110%); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border-color: currentColor;
  opacity: 0.92;
}
.btn--ghost:hover { background: rgba(34, 139, 34, 0.1); border-color: var(--green); color: var(--green); opacity: 1; }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--sm { min-height: 42px; padding: 0.55rem 1.1rem; font-size: 0.76rem; }
.btn--lg { min-height: 58px; padding: 1rem 2rem; font-size: 0.875rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-dk);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(34, 139, 34, 0.35);
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow::after { content: '→'; transition: transform 0.25s var(--ease); }
.link-arrow:hover { gap: 0.75rem; border-color: var(--green); }

/* -------------------------------- topbar ------------------------------- */

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.79rem;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  z-index: 60;
}
.topbar__in {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 42px;
  justify-content: center;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.topbar__item:hover { color: var(--green-lt); }
.topbar__item--mail { display: none; }
.topbar__badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
}
.topbar__badge .i { color: var(--green-lt); }

/* ---------------------------------- nav -------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(11, 14, 12, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--ink-line);
  transition: background 0.3s var(--ease), border-color 0.3s;
}
.nav.is-stuck { background: rgba(11, 14, 12, 0.98); box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.9); }

.nav__in {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
}

.nav__logo { flex: none; }
.nav__logo img { width: 158px; height: auto; }

.nav__menu { display: none; }
.nav__cta { display: none; }

.burger {
  margin-left: auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* --------------------------------- drawer ------------------------------ */

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: var(--ink);
  color: #fff;
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer[hidden] { display: flex; }
.drawer.is-open { transform: none; }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ink-line);
}
.drawer__head img { width: 150px; }
.drawer__close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.drawer__nav { padding: 8px 20px 20px; flex: 1; }
.drawer__nav > a,
.drawer__nav summary {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-line);
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
}
.drawer__nav summary { list-style: none; position: relative; }
.drawer__nav summary::-webkit-details-marker { display: none; }
.drawer__nav summary::after {
  content: '+';
  position: absolute;
  right: 2px;
  top: 12px;
  font-size: 1.3rem;
  color: var(--green-lt);
  font-weight: 300;
}
.drawer__nav details[open] summary::after { content: '–'; }
.drawer__nav details a {
  display: block;
  padding: 11px 0 11px 16px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  border-left: 1px solid var(--green-dk);
  margin-left: 2px;
}
.drawer__nav a[aria-current='page'] { color: var(--green-lt); }

.drawer__foot { padding: 20px; border-top: 1px solid var(--ink-line); display: grid; gap: 10px; }
.drawer__addr { font-size: 0.83rem; color: var(--muted-lt); margin: 6px 0 0; line-height: 1.55; }

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 7, 0.62);
  backdrop-filter: blur(2px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.scrim[hidden] { display: block; }
.scrim.is-open { opacity: 1; pointer-events: auto; }

/* --------------------------------- hero -------------------------------- */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.55) 0%, rgba(11, 14, 12, 0.26) 30%, rgba(11, 14, 12, 0.6) 74%, rgba(11, 14, 12, 0.92) 100%),
    linear-gradient(100deg, rgba(11, 14, 12, 0.88) 0%, rgba(11, 14, 12, 0.66) 34%, rgba(11, 14, 12, 0.24) 66%, rgba(11, 14, 12, 0.04) 100%);
}

.hero__in {
  position: relative;
  z-index: 2;
  padding-block: clamp(64px, 15vw, 132px) clamp(56px, 12vw, 108px);
  max-width: 780px;
}
.hero .display { color: #fff; }
.hero .display .thin { color: rgba(255, 255, 255, 0.62); }
.hero__p {
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
  margin: 1.4rem 0 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__actions .btn--ghost { color: #fff; }

.hero__rule {
  width: 76px;
  height: 2px;
  background: var(--green);
  margin: 1.5rem 0 0;
  position: relative;
}
.hero__rule::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.9);
  animation: sweep 2.6s var(--ease) 0.5s forwards;
}
@keyframes sweep { to { width: 100%; } }

.hero__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}
.hero__marks li { display: flex; align-items: center; gap: 0.45rem; }
.hero__marks li::before { content: ''; width: 5px; height: 5px; background: var(--green-lt); transform: rotate(45deg); }

/* new-market ribbon */
.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem 0.4rem 0.55rem;
  border: 1px solid rgba(67, 184, 67, 0.45);
  background: rgba(34, 139, 34, 0.16);
  border-radius: 100px;
  font-size: 0.735rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #cdf3cd;
  margin-bottom: 1.4rem;
}
.ribbon b {
  background: var(--green);
  color: #fff;
  padding: 0.16rem 0.55rem;
  border-radius: 100px;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}
.ribbon--dark { color: var(--green-dk); border-color: rgba(34, 139, 34, 0.35); background: rgba(34, 139, 34, 0.07); }

/* page hero (interior pages) */
.phero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.phero__media { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.phero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 14, 12, 0.6) 0%, rgba(11, 14, 12, 0.34) 42%, rgba(11, 14, 12, 0.72) 82%, rgba(11, 14, 12, 0.94) 100%),
    linear-gradient(100deg, rgba(11, 14, 12, 0.86) 0%, rgba(11, 14, 12, 0.6) 38%, rgba(11, 14, 12, 0.2) 72%, rgba(11, 14, 12, 0.04) 100%);
}
.phero__in { position: relative; z-index: 2; padding-block: clamp(48px, 11vw, 92px) clamp(44px, 10vw, 82px); max-width: 720px; }
.phero .h1 { color: #fff; }
.phero__p { color: rgba(255, 255, 255, 0.88); font-size: clamp(1rem, 2.4vw, 1.14rem); max-width: 56ch; margin-top: 1.1rem; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.phero__actions .btn--ghost { color: #fff; }

/* ------------------------------- crumbs -------------------------------- */

.crumbs {
  background: var(--ink-2);
  border-bottom: 1px solid var(--ink-line);
  font-size: 0.755rem;
  color: rgba(255, 255, 255, 0.5);
}
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding-block: 10px; }
.crumbs li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }
.crumbs a:hover { color: var(--green-lt); }
.crumbs [aria-current] { color: rgba(255, 255, 255, 0.82); }

/* ------------------------------- sections ------------------------------ */

.section { padding-block: clamp(56px, 11vw, 104px); }
.section--tight { padding-block: clamp(40px, 8vw, 72px); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .lead { color: rgba(255, 255, 255, 0.68); }
.section--dark .h2, .section--dark .h3 { color: #fff; }
.section--paper { background: var(--paper-2); }
.section--line { border-top: 1px solid var(--line); }

.sec-head { max-width: 68ch; margin-bottom: clamp(28px, 5vw, 52px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ------------------------------ trust strip ---------------------------- */

.trust {
  background: var(--ink-2);
  border-block: 1px solid var(--ink-line);
  color: #fff;
  padding-block: 26px;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
  text-align: center;
}
.trust__item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}
.trust__item span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
  font-weight: 600;
}

/* ------------------------------ split cards ---------------------------- */

.split-cards { display: grid; gap: 14px; }

.scard {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--r-lg);
  isolation: isolate;
  color: #fff;
}
.scard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.scard__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 14, 12, 0.1) 0%, rgba(11, 14, 12, 0.55) 55%, rgba(11, 14, 12, 0.92) 100%);
  transition: background 0.5s;
}
.scard:hover img { transform: scale(1.06); }
.scard:hover .scard__scrim { background: linear-gradient(180deg, rgba(11, 14, 12, 0.08) 0%, rgba(15, 61, 15, 0.5) 55%, rgba(11, 14, 12, 0.94) 100%); }
.scard__in { padding: 26px 24px; width: 100%; position: relative; z-index: 2; }
.scard__in .h3 { color: #fff; }
.scard__in p { color: rgba(255, 255, 255, 0.82); font-size: 0.93rem; margin: 0.5rem 0 1.1rem; max-width: 44ch; }
.scard .link-arrow { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.scard .link-arrow:hover { color: var(--green-lt); border-color: var(--green-lt); }

/* ------------------------------ service grid --------------------------- */

.sgrid { display: grid; gap: 16px; }

.svc {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(34, 139, 34, 0.4); }
.svc__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(11, 14, 12, 0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.34rem 0.7rem;
  border-radius: 100px;
}
.svc__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc__body p { color: var(--muted); font-size: 0.93rem; margin: 0.55rem 0 1.3rem; }
.svc__body .link-arrow { margin-top: auto; align-self: flex-start; }

/* -------------------------------- feature ------------------------------ */

.feature { display: grid; gap: clamp(28px, 6vw, 60px); align-items: center; }
.feature__media { position: relative; }
.feature__media img { width: 100%; border-radius: var(--r-lg); }
.feature__media--framed::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--green);
  border-radius: var(--r-lg);
  z-index: -1;
  opacity: 0.5;
}
.feature__badge {
  position: absolute;
  right: -8px;
  bottom: -18px;
  background: var(--ink);
  color: #fff;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  max-width: 210px;
}
.feature__badge strong { display: block; font-family: var(--serif); font-size: 1.6rem; line-height: 1; font-weight: 500; }
.feature__badge span { font-size: 0.7rem; letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255, 255, 255, 0.58); }

.checks { display: grid; gap: 0.7rem; margin: 1.5rem 0; }
.checks li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; }
.checks li::before {
  content: '';
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(34, 139, 34, 0.12);
  border: 1px solid rgba(34, 139, 34, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23228b22' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.section--dark .checks li::before { border-color: rgba(67, 184, 67, 0.55); background-color: rgba(67, 184, 67, 0.14); }

/* --------------------------------- steps ------------------------------- */

.steps { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.section--dark .steps { background: var(--ink-line); border-color: var(--ink-line); }

.step { background: #fff; padding: 26px 24px; position: relative; }
.section--dark .step { background: var(--ink); }
.step__n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(34, 139, 34, 0.34);
  display: block;
  margin-bottom: 0.6rem;
}
.section--dark .step__n { color: rgba(67, 184, 67, 0.45); }
.step p { color: var(--muted); font-size: 0.93rem; margin: 0.5rem 0 0; }
.section--dark .step p { color: rgba(255, 255, 255, 0.62); }

/* --------------------------------- badges ------------------------------ */

.badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.badge {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.badge:hover { border-color: rgba(34, 139, 34, 0.45); transform: translateY(-3px); }
.badge img { height: 54px; width: auto; max-width: 100%; margin: 0 auto 14px; object-fit: contain; }
.badge__ph {
  height: 54px;
  width: 100px;
  margin: 0 auto 14px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(34, 139, 34, 0.32);
  border-radius: 6px;
  color: var(--green);
  background: rgba(34, 139, 34, 0.05);
}
.badge__ph svg { width: 52px; height: 28px; }
.badge strong { display: block; font-size: 0.83rem; font-weight: 650; line-height: 1.35; }
.badge span { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.45; }

/* -------------------------------- reviews ------------------------------ */

.rev {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.section--dark .rev { background: var(--ink-2); border-color: var(--ink-line); }
.rev__stars { color: var(--green); letter-spacing: 0.14em; font-size: 0.95rem; margin-bottom: 0.9rem; }
.rev__body { font-family: var(--serif); font-size: 1.16rem; line-height: 1.5; color: var(--text); flex: 1; }
.section--dark .rev__body { color: rgba(255, 255, 255, 0.88); }
.rev__by { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.83rem; }
.section--dark .rev__by { border-color: var(--ink-line); }
.rev__by b { display: block; font-weight: 650; }
.rev__by span { color: var(--muted); }
.section--dark .rev__by span { color: rgba(255, 255, 255, 0.5); }

/* -------------------------------- gallery ------------------------------ */

.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.gal__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--paper-3);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  display: block;
}
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; }
.gal__item:hover img { transform: scale(1.07); }
.gal__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 14, 12, 0.55));
  opacity: 0;
  transition: opacity 0.35s;
}
.gal__item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(6, 9, 7, 0.95);
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--r); }
.lightbox__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}
.lightbox button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-content: center;
  font-size: 1.3rem;
  transition: background 0.2s;
}
.lightbox button:hover { background: rgba(34, 139, 34, 0.6); }
.lightbox__nav { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 14px; }

/* ---------------------------------- team ------------------------------- */

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.person { text-align: left; }
.person__ph {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  margin-bottom: 0.7rem;
  position: relative;
}
.person__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.5s; filter: grayscale(0.18); }
.person:hover .person__ph img { transform: scale(1.05); filter: grayscale(0); }
.person__initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.06em;
  background: linear-gradient(150deg, var(--ink-3), var(--ink));
}
.person b { display: block; font-size: 0.93rem; font-weight: 650; line-height: 1.3; }
.person span { display: block; font-size: 0.79rem; color: var(--muted); line-height: 1.4; margin-top: 0.18rem; }
.section--dark .person span { color: rgba(255, 255, 255, 0.52); }

.team-dept { margin-top: clamp(34px, 6vw, 58px); }
.team-dept__h {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  font-weight: 500;
}
.team-dept__h::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.section--dark .team-dept__h::after { background: var(--ink-line); }

/* --------------------------------- areas ------------------------------- */

.areas { display: grid; gap: 12px; }
.area {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: var(--r);
  padding: 20px 20px 22px;
  scroll-margin-top: 100px;
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.area:hover { box-shadow: var(--shadow); transform: translateX(3px); }
.area--new { border-left-color: var(--green-lt); background: linear-gradient(100deg, rgba(34, 139, 34, 0.06), #fff 55%); }
.area__h { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem; }
.area__h h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.area__h em { font-style: normal; font-size: 0.75rem; color: var(--muted); letter-spacing: 0.06em; }
.area p { color: var(--muted); font-size: 0.93rem; margin: 0.6rem 0 0; }
.pill {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 0.22rem 0.55rem;
  border-radius: 100px;
}
.pill--ghost { background: rgba(34, 139, 34, 0.12); color: var(--green-dk); }

/* ----------------------------------- FAQ ------------------------------- */

.faq__in { display: grid; gap: clamp(24px, 5vw, 48px); }
.faq__list { display: grid; gap: 10px; }
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.qa[open] { border-color: rgba(34, 139, 34, 0.4); box-shadow: var(--shadow); }
.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  min-height: 56px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary i {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}
.qa summary i::before,
.qa summary i::after {
  content: '';
  position: absolute;
  background: var(--green);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.qa summary i::before { left: 0; top: 9.2px; width: 20px; height: 1.6px; }
.qa summary i::after { left: 9.2px; top: 0; width: 1.6px; height: 20px; }
.qa[open] summary i::after { transform: rotate(90deg); opacity: 0; }
.qa__a { padding: 0 20px 20px; }
.qa__a p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ---------------------------------- form ------------------------------- */

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.form__h { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; margin: 0; }
.form__sub { color: var(--muted); font-size: 0.92rem; margin: -6px 0 4px; }
.form__row { display: grid; gap: 14px; }
.field { display: grid; gap: 0.38rem; }
.field > span { font-size: 0.78rem; font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.field b { color: var(--green); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d655e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.14);
}
.field input:user-invalid,
.field select:user-invalid { border-color: #c0392b; }
.form__fine { font-size: 0.78rem; color: var(--muted); text-align: center; margin: 0; }
.form--compact { padding: 22px 18px 24px; }

/* ------------------------------- cta band ------------------------------ */

.cta-band {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(34, 139, 34, 0.25), transparent 65%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  color: #fff;
  padding-block: clamp(56px, 11vw, 100px);
  border-top: 1px solid var(--ink-line);
  text-align: center;
}
.cta-band__in { max-width: 720px; margin-inline: auto; }
.cta-band__in .eyebrow { justify-content: center; }
.cta-band__h { font-family: var(--serif); font-weight: 300; font-size: clamp(2.1rem, 7vw, 3.4rem); line-height: 1.08; }
.cta-band__p { color: rgba(255, 255, 255, 0.72); margin: 1rem auto 2rem; max-width: 54ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-band__actions .btn--ghost { color: #fff; }

/* -------------------------------- footer ------------------------------- */

.foot { background: var(--ink); color: rgba(255, 255, 255, 0.68); font-size: 0.9rem; }
.foot__grid { display: grid; gap: 32px; padding-block: clamp(40px, 8vw, 68px); }
.foot h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
.foot h3.mt { margin-top: 1.8rem; }
.foot__col li { margin-bottom: 0.55rem; }
.foot__col a { transition: color 0.2s; }
.foot__col a:hover { color: var(--green-lt); }
.foot__brand img { width: 190px; margin-bottom: 1rem; }
.foot__tag { color: var(--green-lt); font-size: 0.8rem; letter-spacing: 0.06em; margin-bottom: 0.9rem; }
.foot__copy { max-width: 42ch; line-height: 1.6; }
.foot__lic { font-size: 0.79rem; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }
.foot__contact address { font-style: normal; line-height: 1.6; margin: 0.6rem 0 1rem; }
.foot__contact p a:hover { color: var(--green-lt); }
.foot__hours { margin: 0 0 1.1rem; font-size: 0.83rem; }
.foot__hours > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.28rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.foot__hours dt { color: rgba(255, 255, 255, 0.55); }
.foot__hours dd { margin: 0; }
.foot__areas a { font-size: 0.87rem; }

.foot__bar {
  border-top: 1px solid var(--ink-line);
  padding-block: 18px 84px;
  display: grid;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center; }
.foot__legal a:hover { color: var(--green-lt); }
.foot__credit a { color: rgba(255, 255, 255, 0.55); }
.foot__credit a:hover { color: var(--green-lt); }
.foot__bar p { margin: 0; }

/* ---------------------------- mobile CTA bar --------------------------- */

.mobar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1px;
  background: var(--ink-line);
  border-top: 1px solid var(--ink-line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobar a {
  background: var(--ink);
  color: #fff;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobar__cta { background: var(--green); }

/* --------------------------- utility / motion -------------------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.35s; }

.center { text-align: center; }
.mt-l { margin-top: clamp(28px, 5vw, 48px); }
.stack-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.prose p { color: var(--muted); }
.prose h3 { margin-top: 2rem; margin-bottom: 0.6rem; }
.prose ul { margin: 0 0 1.2rem; display: grid; gap: 0.5rem; }
.prose ul li { position: relative; padding-left: 1.1rem; color: var(--muted); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; background: var(--green); transform: rotate(45deg); }
.prose a:not(.btn):not(.link-arrow) { color: var(--green-dk); text-decoration: underline; text-underline-offset: 3px; }

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--ink-2);
  display: grid;
  place-items: center;
}
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.72; }
.video-facade__play {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(34, 139, 34, 0.92);
  display: grid;
  place-content: center;
  box-shadow: 0 0 0 10px rgba(34, 139, 34, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.video-facade:hover .video-facade__play { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(34, 139, 34, 0.15); }
.video-facade__play::after {
  content: '';
  border-left: 16px solid #fff;
  border-block: 10px solid transparent;
  margin-left: 4px;
}
.video-facade__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.notice {
  background: rgba(34, 139, 34, 0.07);
  border: 1px solid rgba(34, 139, 34, 0.28);
  border-radius: var(--r-lg);
  padding: 20px 22px;
}
.notice h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.4rem; }
.notice p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.section--dark .notice { background: rgba(67, 184, 67, 0.1); border-color: rgba(67, 184, 67, 0.3); }
.section--dark .notice p { color: rgba(255, 255, 255, 0.7); }

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 34px;
}
.logo-row img { height: 40px; width: auto; object-fit: contain; opacity: 0.85; filter: grayscale(1); transition: filter 0.3s, opacity 0.3s; }
.logo-row img:hover { filter: none; opacity: 1; }
.logo-row span {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.section--dark .logo-row span { color: rgba(255, 255, 255, 0.55); }

@media (max-width: 559px) {
  .hero__actions .btn,
  .phero__actions .btn,
  .cta-band__actions .btn,
  .stack-actions .btn { flex: 1 1 100%; }
  .hero__marks { display: grid; gap: 0.5rem; }
  .hero__marks li { align-items: flex-start; }
  .hero__marks li::before { margin-top: 0.42em; }
}

/* ------------------------------ breakpoints ---------------------------- */

@media (min-width: 560px) {
  .form__row { grid-template-columns: 1fr 1fr; }
  .form__row:has(.field--sm) { grid-template-columns: 1fr 0.5fr 0.7fr; }
  .badges { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .gal { grid-template-columns: repeat(3, 1fr); }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .topbar__badge { display: inline-flex; }
}

@media (min-width: 760px) {
  :root { --pad: 32px; }
  .sgrid { grid-template-columns: repeat(2, 1fr); }
  .split-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: repeat(2, 1fr); }
  .foot__brand { grid-column: 1 / -1; }
  .topbar__item--mail { display: inline-flex; }
  .foot__bar { grid-template-columns: 1fr auto 1fr; align-items: center; text-align: left; padding-bottom: 22px; }
  .foot__bar .foot__credit { text-align: right; }
  .faq__in { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .faq__head { position: sticky; top: 100px; }
}

@media (min-width: 1000px) {
  html { scroll-padding-top: 116px; }
  body { font-size: 17px; }

  .burger { display: none; }
  .nav__menu { display: block; margin-left: auto; }
  .nav__cta { display: inline-flex; }
  .nav__in { min-height: 78px; gap: 1.6rem; }
  .nav__logo img { width: 186px; }

  .nav__menu > ul { display: flex; align-items: center; gap: 0.2rem; }
  .nav__menu > ul > li > a,
  .nav__menu > ul > li > button {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.65rem 0.75rem;
    background: none;
    border: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 550;
    letter-spacing: 0.04em;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
  }
  .nav__menu > ul > li > a::after,
  .nav__menu > ul > li > button::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.35rem;
    height: 1px;
    background: var(--green-lt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }
  .nav__menu > ul > li > a:hover,
  .nav__menu > ul > li > button:hover { color: #fff; }
  .nav__menu > ul > li > a:hover::after,
  .nav__menu > ul > li > button:hover::after,
  .nav__menu > ul > li > a[aria-current]::after,
  .nav__menu > ul > li[data-open] > button::after { transform: scaleX(1); }
  .nav__menu > ul > li > a[aria-current] { color: #fff; }
  .chev { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; transition: transform 0.25s; }
  .has-sub:hover .chev, .has-sub:focus-within .chev { transform: rotate(180deg); }

  .sub {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 320px;
    background: rgba(11, 14, 12, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--ink-line);
    border-radius: var(--r-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
  }
  .has-sub { position: relative; }
  .has-sub:hover .sub,
  .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
  .sub__list a {
    display: block;
    padding: 11px 14px;
    border-radius: var(--r);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 550;
    transition: background 0.2s, color 0.2s;
  }
  .sub__list a span {
    display: block;
    font-size: 0.755rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.12rem;
    line-height: 1.4;
  }
  .sub__list a:hover { background: rgba(34, 139, 34, 0.18); color: #fff; }
  .sub__list a:hover span { color: rgba(255, 255, 255, 0.66); }

  .mobar { display: none; }
  .foot__bar { padding-bottom: 22px; }

  .sgrid { grid-template-columns: repeat(4, 1fr); }
  .sgrid--3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .steps--3 { grid-template-columns: repeat(3, 1fr); }
  .badges { grid-template-columns: repeat(3, 1fr); }
  .areas { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(5, 1fr); }
  .team-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .gal { grid-template-columns: repeat(4, 1fr); }

  .feature { grid-template-columns: 1fr 1fr; }
  .feature--reverse .feature__media { order: 2; }

  .foot__grid { grid-template-columns: 1.35fr 1fr 1fr 1fr 1.15fr; }
  .foot__brand { grid-column: auto; }

  .scard { min-height: 460px; }
  .scard__in { padding: 34px 32px; }

  .split-form { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
  .split-form__form { position: sticky; top: 116px; }

  .hero__in { padding-block: clamp(96px, 12vw, 170px) clamp(80px, 10vw, 140px); }
}

@media (min-width: 1240px) {
  .sub { min-width: 360px; }
}

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

@media print {
  .nav, .topbar, .drawer, .mobar, .cta-band, .scrim { display: none !important; }
  body { color: #000; background: #fff; }
}
