

:root {

  --forest:   #1f3a34;
  --forest-2: #16302a;
  --sage:     #7f9c8e;
  --sage-soft:#b9ccc1;
  --sand:     #f3ede2;
  --cream:    #faf7f1;
  --clay:     #c5774f;
  --clay-dark:#ad6440;
  --ink:      #25302c;
  --ink-soft: #51605a;
  --line:     #e3ddd0;
  --white:    #ffffff;

  --shadow-sm: 0 1px 2px rgba(31,58,52,.06), 0 2px 8px rgba(31,58,52,.05);
  --shadow-md: 0 8px 24px rgba(31,58,52,.10);
  --shadow-lg: 0 24px 60px rgba(31,58,52,.16);

  --radius:   18px;
  --radius-sm:12px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

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

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; color: var(--forest); }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--clay);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest); color: #dfe7e2; }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--white); }
.section--forest p { color: #b8c7c0; }

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure.center { margin-inline: auto; }
.stack > * + * { margin-top: 1.1rem; }
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }

.section-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-weight: 600; font-size: .98rem;
  padding: .85em 1.6em;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), background .3s, box-shadow .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary { background: var(--clay); color: #fff; box-shadow: 0 6px 18px rgba(197,119,79,.32); }
.btn--primary:hover { background: var(--clay-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(197,119,79,.42); }
.btn--dark { background: var(--forest); color: #fff; }
.btn--dark:hover { background: var(--forest-2); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--forest); background: var(--white); }
.btn--ghost:hover { border-color: var(--sage); background: var(--sand); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(250,247,241,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-family: var(--serif); font-size: 1.16rem; color: var(--forest); line-height: 1.05; }
.brand__name span { display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-top: 2px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  padding: .5em .85em; border-radius: var(--radius-pill);
  font-size: .95rem; font-weight: 500; color: var(--ink);
  transition: color .25s, background .25s;
}
.nav__menu a:not(.nav__cta):hover, .nav__menu a[aria-current="page"]:not(.nav__cta) { color: var(--forest); background: rgba(127,156,142,.16); }
.nav__cta { margin-left: 8px; }
/* the primary CTA keeps its clay button look even on its own page (don't let the
   nav active-state pill override it) */
.nav__menu a.nav__cta[aria-current="page"] { background: var(--clay); color: var(--ink); }
.nav__menu a.nav__cta[aria-current="page"]:hover { background: var(--clay-dark); }
.nav__phone { display: inline-flex; align-items: center; gap: .4em; color: var(--forest); font-weight: 600; white-space: nowrap; }
.nav__phone svg { width: 1.05em; height: 1.05em; }
.nav__phone:hover { color: var(--clay); background: transparent; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--forest);
  position: relative; transition: transform .35s var(--ease), opacity .25s;
}
.nav__toggle span { margin-inline: auto; }
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top:  7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; padding-top: clamp(130px, 18vh, 200px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(1100px 600px at 78% -10%, #e7efe9 0%, transparent 60%),
  radial-gradient(900px 700px at 0% 100%, #f6e9df 0%, transparent 55%),
  var(--cream); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero .lead { margin-bottom: 1.6em; max-width: 46ch; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5em; }
.tag { font-size: .8rem; font-weight: 600; letter-spacing: .03em; padding: .4em .9em; border-radius: var(--radius-pill); background: rgba(127,156,142,.16); color: var(--forest); }
.hero__cta { margin-top: 2em; }
.hero__trust { margin-top: 2.4em; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--ink-soft); font-size: .9rem; }
.hero__trust strong { color: var(--forest); }
.divider-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }

.hero__visual { position: relative; }
.portrait {
  position: relative; border-radius: 26px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #2c4d44, #1f3a34 60%, #16302a);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__fallback { position: absolute; inset: 0; display: grid; place-items: center; color: #cdddd4; }
.float-card {
  position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.float-card__icon { width: 40px; height: 40px; border-radius: 11px; background: var(--sand); color: var(--forest); display: grid; place-items: center; flex: none; }
.float-card__icon svg { width: 20px; height: 20px; }
.float-card b { display: block; color: var(--forest); font-family: var(--serif); font-size: 1.25rem; line-height: 1; }
.float-card small { color: var(--ink-soft); font-size: .8rem; }
.float-card--tl { top: 22px; left: -26px; }
.float-card--br { bottom: 26px; right: -22px; }

.strip { background: var(--forest); color: #cdddd4; padding-block: 18px; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 4vw, 54px); align-items: center; font-size: .95rem; }
.strip__row span { display: inline-flex; align-items: center; gap: .6em; }
.strip__row svg { width: 18px; height: 18px; color: var(--sage-soft); }

.cards { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage-soft); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--sand); color: var(--forest); display: grid; place-items: center; margin-bottom: 20px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5em; }
.card p { font-size: .98rem; }
.card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: .4em; color: var(--clay); font-weight: 600; font-size: .92rem; }
.card__link svg { width: 1em; height: 1em; transition: transform .3s; }
.card:hover .card__link svg { transform: translateX(4px); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split--reverse .split__media { order: 2; }
.media-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; background: linear-gradient(150deg, #d9e4dd, #b9cdc1); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 14px; margin-top: 1.6em; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(127,156,142,.2); color: var(--forest); display: grid; place-items: center; margin-top: 2px; }
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list b { color: var(--forest); }

.quote-band { text-align: center; }
.quote-band blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.3; color: var(--white); max-width: 22ch; margin-inline: auto; font-weight: 500; }
.quote-band blockquote::before { content: "“"; display: block; font-size: 3em; line-height: .4; color: var(--sage); margin-bottom: .1em; }
.quote-band cite { display: block; margin-top: 1.2em; font-style: normal; font-family: var(--sans); letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--sage-soft); font-weight: 600; }

.steps { counter-reset: step; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 8px; }
.step__num { font-family: var(--serif); font-size: 2.6rem; color: var(--sage-soft); line-height: 1; margin-bottom: .3em; }
.step h3 { font-size: 1.2rem; margin-bottom: .4em; }
.step p { font-size: .96rem; }

.tcarousel { position: relative; }
.ttrack { display: grid; grid-auto-flow: column; grid-auto-columns: min(420px, 84vw); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 26px; scrollbar-width: none; }
.ttrack::-webkit-scrollbar { display: none; }
.tcard {
  scroll-snap-align: start; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.tcard .stars { color: #e0a23d; letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; flex: 1; }
.tcard cite { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-style: normal; }
.tcard .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; font-family: var(--serif); flex: none; }
.tcard .who b { display: block; color: var(--forest); font-size: .95rem; }
.tcard .who small { color: var(--ink-soft); }
.tnav { display: flex; gap: 10px; justify-content: center; margin-top: 6px; }
.tnav button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--forest); display: grid; place-items: center; transition: .25s; }
.tnav button:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.tnav svg { width: 18px; height: 18px; }

.stats { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--forest); line-height: 1; }
.section--forest .stat b { color: #fff; }
.stat span { font-size: .92rem; color: var(--ink-soft); }
.section--forest .stat span { color: var(--sage-soft); }

.accordion { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.acc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: box-shadow .3s, border-color .3s;
}
.acc[open] { box-shadow: var(--shadow-sm); border-color: var(--sage-soft); }
.acc summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--serif); font-size: 1.12rem; color: var(--forest);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary .ico { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s; color: var(--forest); }
.acc[open] summary .ico { transform: rotate(45deg); background: var(--clay); color: #fff; }
.acc__body { padding: 0 26px 24px; }
.acc__body p { font-size: 1rem; }
.acc__body p + p { margin-top: .8em; }

.price-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.price {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.featured { background: var(--forest); color: #cfe; border-color: var(--forest); }
.price.featured h3, .price.featured .amount { color: #fff; }
.price .tier { font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--clay); }
.price.featured .tier { color: var(--sage-soft); }
.price .amount { font-family: var(--serif); font-size: 3rem; color: var(--forest); margin: .15em 0; line-height: 1; }
.price .amount small { font-size: 1rem; color: var(--ink-soft); }
.price .desc { font-size: .92rem; color: var(--ink-soft); }
.price.featured .desc { color: var(--sage-soft); }
.price .badge { display: inline-block; background: var(--clay); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3em .8em; border-radius: var(--radius-pill); margin-bottom: 10px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-item .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--sand); color: var(--forest); display: grid; place-items: center; }
.info-item .ico svg { width: 22px; height: 22px; }
.info-item h2 { font-size: 1.1rem; margin-bottom: 3px; }
.info-item a, .info-item p { color: var(--ink-soft); font-size: .98rem; }
.info-item a:hover { color: var(--clay); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--forest); }
.field input, .field textarea, .field select {
  font: inherit; font-size: .98rem; color: var(--ink);
  padding: .8em 1em; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .25s, background .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); background: #fff; box-shadow: 0 0 0 4px rgba(127,156,142,.16); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span { display: inline-block; padding: .55em 1.1em; border: 1.5px solid var(--line); border-radius: var(--radius-pill); font-size: .9rem; color: var(--ink-soft); transition: .2s; }
.chip input:checked + span { background: var(--forest); border-color: var(--forest); color: #fff; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--forest); flex: none; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
.form-success { display: none; background: rgba(127,156,142,.15); border: 1px solid var(--sage); color: var(--forest); padding: 16px 18px; border-radius: 12px; margin-bottom: 18px; font-weight: 500; }
.form-success.show { display: block; }

.page-hero { padding-top: clamp(130px, 16vh, 190px); padding-bottom: clamp(40px, 6vw, 70px); position: relative; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(800px 460px at 85% -20%, #e7efe9, transparent 60%),
  radial-gradient(700px 500px at -5% 120%, #f6e9df, transparent 55%), var(--cream); }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1em; display: flex; gap: .5em; align-items: center; }
.breadcrumb a:hover { color: var(--clay); }
.breadcrumb svg { width: 14px; height: 14px; color: var(--sage); }
.page-hero h1 { margin-bottom: .3em; max-width: 18ch; }

.cta-band { background: linear-gradient(135deg, var(--forest), #2b4f45); border-radius: var(--radius); padding: clamp(40px, 6vw, 72px); text-align: center; color: #cfe; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(197,119,79,.4), transparent 70%); top: -120px; right: -80px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: var(--sage-soft); max-width: 52ch; margin: 1em auto 1.8em; position: relative; }
.cta-band .btn-row { position: relative; }

.footer { background: var(--forest-2); color: #9fb3aa; padding-block: clamp(54px, 7vw, 80px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(30px, 4vw, 50px); }
.footer .brand__name { color: #fff; }
.footer__about { max-width: 38ch; font-size: .95rem; margin-top: 18px; color: #9fb3aa; }
.footer .footer__h { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: #9fb3aa; font-size: .95rem; transition: color .25s; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: 14px; font-size: .95rem; }
.footer__contact a:hover { color: #fff; }
.footer__bar { margin-top: clamp(40px, 5vw, 60px); border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: #7d938a; }
.footer__bar a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (max-width: 920px) {
  .hero__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  /* Mobile hero order: headline first, then the video, then the rest of the
     copy. display:contents promotes the copy's children into the grid so the
     video can sit between the H1 and the intro text; gap:0 lets each element
     keep its own margins for spacing. */
  .hero__copy { display: contents; }
  .hero__grid { gap: 0; }
  .hero__visual { max-width: 460px; margin: clamp(22px, 5vw, 36px) auto; order: 1; }
  .hero__copy .lead, .hero__copy .hero__tags, .hero__copy .btn-row, .hero__copy .hero__trust { order: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: var(--cream); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 100px 26px 40px; gap: 6px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90;
    overflow-y: auto; overscroll-behavior: contain;
  }
  body.menu-open .nav__menu { transform: none; }
  .nav__menu a { padding: .85em 1em; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { margin: 14px 0 0; text-align: center; }
  .nav__toggle { display: grid; place-items: center; z-index: 95; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(22,48,42,.4); opacity: 0; pointer-events: none; transition: opacity .4s; z-index: 80; }
  body.menu-open .nav-backdrop { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  /* A backdrop-filter on the scrolled header makes it a containing block for
     its fixed children, which would clip the drawer to the header's height.
     Drop it while the menu is open so the drawer stays fixed to the viewport. */
  body.menu-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (max-width: 760px) {
  .form-grid { grid-template-columns: 1fr; }
  .float-card--tl { left: 0; }
  .float-card--br { right: 0; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

.video { position: relative; max-width: 940px; margin-inline: auto; aspect-ratio: 16/9; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); cursor: pointer; background: #16302a; }
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,48,42,.1), rgba(22,48,42,.45)); transition: opacity .4s; }
.video:hover img { transform: scale(1.04); }
.video__play { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%; background: var(--clay); color: #fff; display: grid; place-items: center; z-index: 2; box-shadow: 0 10px 30px rgba(197,119,79,.5); transition: transform .35s var(--ease), background .3s; }
.video__play svg { width: 30px; height: 30px; margin-left: 4px; }
.video:hover .video__play { transform: scale(1.08); background: var(--clay-dark); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video.is-playing::after, .video.is-playing .video__play { display: none; }

.footer__social { display: flex; gap: 10px; margin-top: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe; transition: background .25s, transform .25s, color .25s; }
.footer__social a:hover { background: var(--clay); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.video--portrait { aspect-ratio: 4/5; border-radius: 26px; }
.hero__visual:has(.video.is-playing) .float-card { opacity: 0; visibility: hidden; transition: opacity .3s; }

.areas-directory { display: grid; gap: clamp(44px,6vw,84px); }
.area-region h2 { font-size: clamp(1.6rem,3.4vw,2.3rem); font-weight: 600; color: var(--forest); margin-bottom: 1.1em; position: relative; padding-bottom: 16px; }
.area-region h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 64px; height: 3px; background: var(--clay); border-radius: 2px; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px,1fr)); gap: 22px; }
.area-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 24px 22px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--sage-soft); }
.area-card h3 { font-family: var(--sans); font-weight: 700; font-size: 1.18rem; color: var(--ink); margin-bottom: 14px; letter-spacing: -.01em; }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.area-pill { font-size: .8rem; font-weight: 600; padding: .5em .95em; border-radius: var(--radius-pill); background: var(--sand); color: var(--forest); border: 1px solid transparent; transition: background .2s, color .2s, transform .2s; }
.area-pill:hover { background: var(--forest); color: #fff; transform: translateY(-1px); }
.area-pill:first-child { background: rgba(197,119,79,.14); color: var(--clay-dark); }
.area-pill:first-child:hover { background: var(--clay); color: #fff; }

.footer__links a svg { width: 1em; height: 1em; vertical-align: -0.12em; flex: none; }

.nav__menu a { white-space: nowrap; }
@media (min-width: 1101px) {
  .site-header .container.nav { max-width: none; position: relative; }
  .site-header .nav { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); align-items: center; }
  .site-header .brand { justify-self: start; }
  .site-header .nav__menu { justify-self: center; position: static; }
  .site-header .nav__cta { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); margin: 0; }
}
