/* ==========================================================================
   Solid Roof — stylesheet extracted from the Claude Design export
   "Solid Roof Landing.dc.html".

   Every declaration below is copied verbatim from an inline style="" or
   style-hover="" attribute in the export. Nothing has been retuned, merged
   or "improved". Where the export computed a value in JavaScript
   (renderVals()), the value is reproduced here as a media query at the
   exact breakpoint the script used: 420px, 768px and 1120px.

   Two substitutions were made, both requested:
     Archivo        -> Geist
     IBM Plex Mono  -> Geist Mono
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. Fonts — self-hosted, latin subset, variable weight
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/geist-latin.woff2') format('woff2');
  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: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/geist-mono-latin.woff2') format('woff2');
  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;
}


/* --------------------------------------------------------------------------
   2. Base — verbatim from the export's <style> block
   -------------------------------------------------------------------------- */

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f7f6f2;
  color: #14181d;
  font-family: Geist, Helvetica, Arial, sans-serif;
  text-wrap: pretty;
}

* { box-sizing: border-box; }

a { color: #c41f26; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #94161c; }

*:focus-visible { outline: 3px solid #c41f26; outline-offset: 2px; }

button { font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }

@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.22; } }
@keyframes railMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* The export set animation: 'none' from JS when prefers-reduced-motion
   matched. Same result, declared in CSS. */
@media (prefers-reduced-motion: reduce) {
  .urgent__dot,
  .trust__rail,
  .reviews__rail { animation: none !important; }
}

/* Screen-reader-only helper. Not in the export — needed because the export
   carried some labelling in JS-only attributes. */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* --------------------------------------------------------------------------
   3. Pinned stack — urgent bar + header
   -------------------------------------------------------------------------- */

/* --pinned-h mirrors renderVals().pinnedH: the measured height of the pinned
   stack. main's padding-top and every section's scroll-margin-top read it.
   JS keeps it in sync with a ResizeObserver, exactly as the export did; the
   values here are the unscrolled fallbacks for each breakpoint. */
:root { --pinned-h: 132px; }

@media (max-width: 1119.98px) { :root { --pinned-h: 108px; } }
@media (max-width: 767.98px)  { :root { --pinned-h: 114px; } }

.pinned { position: fixed; top: 0; left: 0; right: 0; z-index: 300; }

.urgent {
  background: #8c1418;
  color: #fff;
  min-height: 42px;
  padding: 7px 0;
  display: flex;
  align-items: center;
}

.urgent__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.urgent__text {
  flex: 1;
  margin: 0;
  min-width: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

/* renderVals().barFont */
@media (max-width: 767.98px) { .urgent__text { font-size: 12.5px; } }
@media (max-width: 419.98px) { .urgent__text { font-size: 11.5px; } }

.urgent__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 50%;
  background: #ff9ea1;
  animation: dotPulse 1.6s ease-in-out infinite;
}

.urgent__link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  display: inline-block;
  padding: 12px 2px;
  margin: -12px 0;
}

/* renderVals().barMsg swapped copy at 768px. Both strings ship; CSS picks. */
.urgent__msg--narrow { display: none; }
@media (max-width: 767.98px) {
  .urgent__msg--wide   { display: none; }
  .urgent__msg--narrow { display: inline; }
}


/* --- header -------------------------------------------------------------- */

.hdr {
  height: 92px;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(8px);
  transition: height 220ms ease-out, background 220ms ease-out, box-shadow 220ms ease-out;
}

/* renderVals().headH — mobile is vw < 1120 */
@media (max-width: 1119.98px) { .hdr { height: 68px; } }

.hdr.is-scrolled { height: 64px; box-shadow: 0 6px 22px rgba(20, 24, 29, 0.13); }

.hdr__inner {
  position: relative;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
}

.hdr__logo { flex: none; display: block; line-height: 0; }

.hdr__logo img {
  display: block;
  height: 64px;
  width: auto;
  transition: height 220ms ease-out;
}

/* renderVals().logoH */
@media (max-width: 1119.98px) { .hdr__logo img { height: 42px; } }
.hdr.is-scrolled .hdr__logo img { height: 44px; }

@media (prefers-reduced-motion: reduce) {
  .hdr, .hdr__logo img { transition-duration: 0ms; }
}


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

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(2px, 1vw, 14px);
}

@media (max-width: 1119.98px) { .nav { display: none; } }

.nav__group { position: relative; }
.nav__group--areas { position: static; }

.nav__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  background: none;
  color: #14181d;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.nav__caret {
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 2px solid #8a9099;
  border-bottom: 2px solid #8a9099;
  transform: rotate(45deg);
}

.nav__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #14181d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.nav__link:hover { color: #c41f26; }

/* header CTAs */
.nav__cta {
  flex: none;
  min-height: 44px;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  background: #c41f26;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  white-space: nowrap;
}

.nav__cta:hover { background: #94161c; color: #fff; }

.nav__cta--outline {
  padding: 0 16px;
  border: 1.5px solid #c41f26;
  background: none;
  color: #c41f26;
}

.nav__cta--outline:hover { background: #c41f26; color: #fff; }


/* --- dropdown panels ----------------------------------------------------- */

.menu { position: absolute; top: 100%; left: 0; padding-top: 10px; }

.menu[hidden] { display: none; }

.menu__list {
  margin: 0;
  padding: 8px;
  list-style: none;
  min-width: 280px;
  background: #fff;
  border: 1px solid #e4e1d8;
  border-radius: 10px;
  box-shadow: 0 20px 46px rgba(20, 24, 29, 0.18);
  display: grid;
  gap: 1px;
}

.menu__list--commercial { min-width: 286px; }

.menu__link {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #14181d;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
}

.menu__link:hover { background: #f5f4ef; color: #c41f26; }

.megamenu {
  position: absolute;
  top: calc(100% - 18px);
  right: clamp(14px, 3vw, 30px);
  padding-top: 28px;
}

.megamenu[hidden] { display: none; }

.megamenu__panel {
  width: min(920px, calc(100vw - 40px));
  max-height: min(74vh, 620px);
  overflow-y: auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #e4e1d8;
  border-radius: 12px;
  box-shadow: 0 22px 52px rgba(20, 24, 29, 0.2);
}

.megamenu__head {
  margin: 0 0 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #99a0a8;
}

.megamenu__primary {
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid #eeebe3;
  list-style: none;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.megamenu__primary a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #14181d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.megamenu__primary a:hover { background: #f5f4ef; color: #c41f26; }

.megamenu__counties {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px 10px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.megamenu__counties a {
  display: block;
  padding: 6px 10px;
  border-radius: 5px;
  color: #3d444c;
  text-decoration: none;
  font-size: 13px;
}

.megamenu__counties a:hover { background: #f5f4ef; color: #c41f26; }


/* --- mobile header controls + drawer ------------------------------------- */

.hdr__mobile {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

@media (min-width: 1120px) { .hdr__mobile { display: none; } }

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd9cf;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
}

.burger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #ddd9cf;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.burger span { display: block; width: 17px; height: 2px; background: #14181d; }

.mnav {
  background: #fff;
  border-top: 1px solid #eae7de;
  box-shadow: 0 24px 44px rgba(20, 24, 29, 0.2);
  max-height: 72vh;
  overflow-y: auto;
  padding: 12px clamp(14px, 3vw, 30px) 22px;
}

.mnav[hidden] { display: none; }

@media (min-width: 1120px) { .mnav { display: none; } }

.mnav__toggle {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid #eeebe3;
  background: none;
  color: #14181d;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.mnav__sign { font-size: 20px; color: #8a9099; }

.mnav__panel[hidden] { display: none; }

.mnav__list {
  margin: 0;
  padding: 4px 0 8px 12px;
  list-style: none;
  display: grid;
  gap: 1px;
}

.mnav__list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  color: #3d444c;
  text-decoration: none;
  font-size: 15px;
}

.mnav__cities {
  margin: 0;
  padding: 4px 0 6px 12px;
  list-style: none;
  display: grid;
  gap: 1px 12px;
  grid-template-columns: 1fr 1fr;
}

.mnav__cities a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #14181d;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
}

.mnav__head {
  margin: 8px 0 4px 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #99a0a8;
}

.mnav__counties {
  margin: 0;
  padding: 0 0 10px 12px;
  list-style: none;
  display: grid;
  gap: 0 12px;
  grid-template-columns: 1fr 1fr;
}

.mnav__counties a {
  display: flex;
  align-items: center;
  min-height: 40px;
  color: #3d444c;
  text-decoration: none;
  font-size: 13.5px;
}

.mnav__link {
  display: flex;
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid #eeebe3;
  color: #14181d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.mnav__link--last { border-bottom: 0; }

.mnav__cta {
  margin-top: 12px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c41f26;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.mnav__cta:hover { color: #fff; }

.mnav__cta--outline {
  margin-top: 10px;
  border: 1.5px solid #c41f26;
  background: none;
  color: #c41f26;
}

.mnav__cta--outline:hover { color: #c41f26; }


/* --------------------------------------------------------------------------
   4. Shared layout + typography
   -------------------------------------------------------------------------- */

.site-main { padding-top: var(--pinned-h); }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 3vw, 30px);
}

.section { scroll-margin-top: var(--pinned-h); }

.section--white { background: #fff; border-top: 1px solid #eae7de; }
.section--sand  { background: #f7f6f2; }
.section--ink   { background: #14181d; color: #fff; }
.section--red   { background: #8c1418; color: #fff; }

/* h2, section heading — from #svc-h / #map-h / #rev-h / #gal-h */
.h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
}

/* h3, card heading — from the services grid */
.h3 {
  margin: 0 0 8px;
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* section intro paragraph — from the services / map sections */
.section__intro {
  margin: 0 0 40px;
  max-width: 60ch;
  font-size: 16.5px;
  line-height: 1.6;
  color: #5b626a;
}

/* body copy — from the about section */
.body {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.6;
  color: #3d444c;
}

.body:last-child { margin-bottom: 0; }

/* mono eyebrow — from the about section ("The problem" / "Our process") */
.eyebrow {
  margin: 0 0 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c41f26;
}

/* mono eyebrow on dark — from the hero */
.eyebrow--hero {
  margin: 0 0 18px;
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff8f93;
}

/* mono label — from the footer column heads */
.eyebrow--sm {
  margin: 0 0 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f767e;
}


/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */

.hero { position: relative; background: #14181d; color: #fff; overflow: hidden; }

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 24, 29, 0.95) 0%, rgba(20, 24, 29, 0.86) 44%, rgba(20, 24, 29, 0.55) 100%);
}

.hero__lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(#ffffff0a 0 1px, transparent 1px 9px);
  opacity: 0.5;
}

.hero__wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 28px) clamp(16px, 3vw, 30px) clamp(30px, 4vw, 56px);
}

.hero__grid {
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  align-items: center;
}

.h1 {
  margin: 0;
  max-width: 26ch;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero__lead {
  margin: 22px 0 0;
  max-width: 56ch;
  font-size: clamp(16.5px, 1.5vw, 20px);
  line-height: 1.5;
  color: #d8dbdf;
}

.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  background: #c41f26;
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 700;
}

.btn:hover { background: #e0242c; color: #fff; }

.btn--ghost {
  gap: 10px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: none;
  color: #fff;
  font-weight: 600;
}

.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }

.hero__proof {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
}

.hero__snippet {
  margin: 0;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.45;
  color: #eceef0;
  font-style: italic;
  transition: opacity 600ms ease-out;
  opacity: 1;
}

.hero__snippet-name { font-style: normal; color: #a8aeb5; }

.hero__badges {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.hero__badges li {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badges li img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero__badges li.hero__badge--bbb { width: auto; }
.hero__badges li.hero__badge--bbb img { max-width: 104px; max-height: 32px; }

/* star rating, hidden until a Google Place ID is configured */
.rating {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  white-space: nowrap;
}

.rating[hidden] { display: none; }

.stars { position: relative; display: inline-block; line-height: 0; }
.stars__row { display: flex; gap: 2px; }
.stars__fill { position: absolute; top: 0; left: 0; overflow: hidden; line-height: 0; width: 0%; }
.rating__value { font-weight: 700; color: #fff; }
.rating__count { color: #b9bec4; }


/* --------------------------------------------------------------------------
   6. Certification rail (marquee)
   -------------------------------------------------------------------------- */

.trust { background: #fff; border-bottom: 1px solid #eae7de; }

.trust__viewport {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
  overflow: hidden;
}

.trust__rail {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  width: max-content;
  padding-left: clamp(16px, 3vw, 30px);
  animation: railMarquee 42s linear infinite;
  animation-play-state: running;
}

.trust__viewport:hover .trust__rail { animation-play-state: paused; }

.trust__item {
  flex: none;
  width: 330px;
  display: grid;
  gap: 14px;
  align-content: start;
  text-align: center;
}

.trust__figure { display: flex; align-items: center; justify-content: center; height: 88px; }

.trust__figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 88px;
  max-height: 88px;
  object-fit: contain;
}
.trust__figure--bbb img { max-width: 190px; max-height: 76px; }
.trust__figure--pledge img { max-width: 92px; max-height: 92px; }

.trust__label {
  margin: 0 0 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #99a0a8;
}

.trust__text { margin: 0; font-size: 15px; line-height: 1.45; color: #3d444c; }


/* --------------------------------------------------------------------------
   7. Services grid
   -------------------------------------------------------------------------- */

.svc-grid {
  display: grid;
  gap: 30px 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.svc-card { display: block; text-decoration: none; color: inherit; }

.svc-card__inner { position: relative; transition: transform 200ms ease-out; }

.svc-card:hover .svc-card__inner { transform: translateY(-6px); }

.svc-card__img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.svc-card__body {
  position: relative;
  margin: -46px 26px 0 0;
  padding: 20px 20px 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(20, 24, 29, 0.13);
}

.svc-card__flag {
  position: absolute;
  top: -22px;
  right: -26px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(20, 24, 29, 0.14);
}

.svc-card__flag span {
  display: block;
  width: 0;
  height: 0;
  border-bottom: 13px solid #c41f26;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
}

.svc-card__text { margin: 0 0 16px; font-size: 14px; line-height: 1.5; color: #5b626a; }

.svc-card__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f0ea;
  border-radius: 50%;
  transition: background 180ms ease-out;
}

.svc-card__arrow span {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: -2px;
  border-right: 2px solid #14181d;
  border-top: 2px solid #14181d;
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .svc-card__inner { transition: none; }
}


/* --------------------------------------------------------------------------
   8. Project map
   -------------------------------------------------------------------------- */

.map__intro {
  margin: 0 0 32px;
  max-width: 62ch;
  font-size: 16.5px;
  line-height: 1.6;
  color: #5b626a;
}

.map__frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ddd9cf;
  background: #e8e6df;
}

.map__frame iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
  background: #eceae3;
}

/* renderVals().mapH */
@media (max-width: 1119.98px) { .map__frame iframe { height: 320px; } }

.map__gate {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(20, 24, 29, 0.38);
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
}

.map__gate[hidden] { display: none; }

@media (min-width: 1120px) { .map__gate { display: none; } }

.map__caption {
  margin: 12px 0 0;
  max-width: 76ch;
  font-size: 13px;
  line-height: 1.5;
  color: #5b626a;
}

.map__note { margin: 6px 0 0; font-size: 12.5px; color: #8a9099; }

.map__cta { margin: 22px 0 0; }
.map__cta a { font-size: 16.5px; font-weight: 700; }


/* --------------------------------------------------------------------------
   9. Reviews
   -------------------------------------------------------------------------- */

.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.reviews__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
  margin: 0 0 34px;
}

.reviews__status p { margin: 0; max-width: 62ch; font-size: 13.5px; line-height: 1.5; color: #8a9099; }
.reviews__status p[hidden] { display: none; }

.reviews__notice {
  margin: 0 0 20px;
  padding: 12px 16px;
  background: #fdf6e8;
  border: 1px solid #f0dfb8;
  border-radius: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 12.5px;
  line-height: 1.5;
  color: #7a6423;
}

.reviews__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.reviews__viewport { overflow: hidden; }

.reviews__rail {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 6px 0 10px;
  animation-name: railMarquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.reviews__viewport:hover .reviews__rail { animation-play-state: paused; }

.review {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: #f7f6f2;
  border: 1px solid #e4e1d8;
  border-radius: 10px;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
}

.review:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(20, 24, 29, 0.16);
  border-color: #c41f26;
}

.reviews__rail .review { flex: none; width: 260px; }

.review__head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }

.review__avatar {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e4e1d8;
}

.review__avatar--initials {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #5b626a;
}

.review__author {
  margin: 0 0 1px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review__when { margin: 0; font-size: 11.5px; color: #8a9099; }

.review__tag {
  padding: 3px 8px;
  background: #fdf6e8;
  border: 1px solid #f0dfb8;
  border-radius: 20px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6423;
}

.review__stars { margin-bottom: 10px; }

.review__text { margin: 0; flex: 1; font-size: 13.5px; line-height: 1.55; color: #3d444c; }

.reviews__rail .review__text {
  margin: 0 0 12px;
  max-height: 4.65em;
  overflow: hidden;
  mask-image: linear-gradient(#000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(#000 60%, transparent 100%);
}

.reviews.is-expanded .reviews__rail .review__text {
  max-height: none;
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
}

.review__source {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #8a9099;
}

.review__g {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd9cf;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  color: #4285f4;
}

.reviews__more { margin-top: 16px; display: flex; justify-content: center; }
.reviews__more[hidden] { display: none; }

.btn-outline {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid #ddd9cf;
  border-radius: 6px;
  background: #fff;
  color: #14181d;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease-out;
  text-decoration: none;
}

.btn-outline:hover { border-color: #c41f26; color: #c41f26; }


/* --------------------------------------------------------------------------
   10. About / process
   -------------------------------------------------------------------------- */

.about__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 3vw, 30px);
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.about__h2 { margin: 0 0 20px; }

.steps { margin: 0 0 26px; padding: 0; list-style: none; display: grid; gap: 2px; }

.steps li { padding: 18px 0; border-top: 1px solid #ddd9cf; display: flex; gap: 18px; }
.steps li:last-child { border-bottom: 1px solid #ddd9cf; }

.steps__n {
  flex: none;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: #c41f26;
  padding-top: 3px;
}

.steps__t { display: block; font-size: 17px; margin-bottom: 5px; }
.steps__d { display: block; font-size: 15.5px; line-height: 1.5; color: #5b626a; }

.cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card { padding: 20px; background: #fff; border: 1px solid #e4e1d8; border-radius: 10px; }
.card__t { margin: 0 0 6px; font-size: 15.5px; font-weight: 700; }
.card__d { margin: 0; font-size: 14.5px; line-height: 1.5; color: #5b626a; }


/* --------------------------------------------------------------------------
   11. Gallery
   -------------------------------------------------------------------------- */

.gallery__intro {
  margin: 0 0 40px;
  max-width: 58ch;
  font-size: 16.5px;
  line-height: 1.6;
  color: #b9bec4;
}

.gallery__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery__grid figure { margin: 0; }

.gallery__grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #2b3138;
}

.gallery__grid figcaption { margin-top: 12px; font-size: 14.5px; color: #b9bec4; }


/* --------------------------------------------------------------------------
   12. Contact / CTA + forms
   -------------------------------------------------------------------------- */

.cta__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 3vw, 30px);
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  align-items: start;
}

.cta__h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.cta__lead {
  margin: 0 0 26px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.55;
  color: #ffd9da;
}

.btn-light {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 26px;
  background: #fff;
  color: #8c1418;
  border-radius: 7px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
}

.btn-light:hover { background: #ffe8e8; color: #8c1418; }

.cta__alt { margin: 26px 0 0; font-size: 15px; line-height: 1.6; color: #ffc9ca; }
.cta__alt a { color: #fff; }

/* hero form card */
.form-card {
  padding: clamp(20px, 2.6vw, 28px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

/* contact form card */
.form-card--flat {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 14px;
  color: #14181d;
  box-shadow: none;
}

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

.form__eyebrow {
  margin: 0;
  font-size: 13px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a9099;
}

.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: #14181d; }

.form__row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.form input,
.form select {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #ddd9cf;
  border-radius: 6px;
  background: #fbfaf7;
  color: #14181d;
}

.form select { padding: 0 10px; }

.form textarea {
  padding: 10px 12px;
  border: 1px solid #ddd9cf;
  border-radius: 6px;
  background: #fbfaf7;
  color: #14181d;
  resize: vertical;
}

.form__err { font-size: 13px; font-weight: 500; color: #c41f26; }
.form__err[hidden] { display: none; }

.form__submit {
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  background: #c41f26;
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
}

.form__submit:hover { background: #94161c; }

/* honeypot — off-screen, never shown to a human */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__sent[hidden] { display: none; }

.form__sent--hero { padding: 18px 2px; }
.form__sent--hero p:first-child { margin: 0 0 7px; font-size: 19px; font-weight: 800; color: #14181d; }
.form__sent--hero p:last-child { margin: 0; font-size: 14.5px; line-height: 1.5; color: #5b626a; }

.form__sent--cta { padding: 26px 4px; }
.form__sent--cta .form__sent-h { margin: 0 0 8px; font-size: 20px; font-weight: 800; }
.form__sent--cta .form__sent-p { margin: 0; font-size: 15.5px; line-height: 1.55; color: #5b626a; }
.form__sent--cta .form__sent-note { margin: 14px 0 0; font-size: 14px; line-height: 1.5; color: #8a9099; }

/* The export set color:#fff on these links inside a white card, which makes
   them invisible. Reproduced verbatim — see NOTES.md, "left alone". */
.form__sent--hero a,
.form__sent--cta .form__sent-p a { color: #fff; font-weight: 700; }


/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.footer { background: #14181d; color: #b9bec4; }

.footer__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) clamp(16px, 3vw, 30px) 30px;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.footer__logo {
  display: block;
  height: 74px;
  width: auto;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
}

.footer__email { margin: 0 0 6px; font-size: 15px; }
.footer__email a { color: #fff; font-weight: 700; }

.footer__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }

.footer__list a { color: #b9bec4; text-decoration: none; font-size: 14.5px; }
.footer__list a:hover { color: #fff; }

.footer__text { margin: 0 0 10px; font-size: 14.5px; line-height: 1.6; }
.footer__text--last { margin: 0; }
.footer__muted { color: #6f767e; font-size: 13px; }

.footer__bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px clamp(16px, 3vw, 30px) 40px;
  border-top: 1px solid #2b3138;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
}

.footer__copy { margin: 0; font-size: 13.5px; color: #6f767e; }

.footer__legal { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 22px; }
.footer__legal a { color: #b9bec4; text-decoration: none; font-size: 13.5px; }
.footer__legal a:hover { color: #fff; }


/* --------------------------------------------------------------------------
   14. Inner pages

   No new design here. Every value below is already used somewhere on the
   landing page — the measure from .map__intro (62ch), the radius from the
   gallery figures (12px), the border from .card (#e4e1d8), the divider from
   .steps (#ddd9cf). Inner pages otherwise reuse .section, .wrap, .h1, .h2,
   .body, .eyebrow, .card, .cards, .steps and the hero lead verbatim.
   -------------------------------------------------------------------------- */

.prose { max-width: 62ch; }

.page-head .h1 { max-width: 20ch; }
.page-head .hero__lead { margin-top: 20px; }

/* Heights reuse the map frame's 470/320, so a page banner sits at a size the
   design already establishes rather than filling the column at full height. */
.page-media {
  display: block;
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e4e1d8;
  margin-bottom: 32px;
}

@media (max-width: 1119.98px) { .page-media { height: 320px; } }

/* Q&A list — the .steps rhythm without the numerals. */
.faq { margin: 0; padding: 0; list-style: none; display: grid; gap: 2px; }
.faq > div { padding: 18px 0; border-top: 1px solid #ddd9cf; }
.faq > div:last-child { border-bottom: 1px solid #ddd9cf; }
.faq dt { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.faq dd { margin: 0; font-size: 15.5px; line-height: 1.5; color: #5b626a; }

/* Chip list — the map fallback's area pills. */
.chips { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }

.chips a {
  display: block;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #ddd9cf;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #14181d;
  text-decoration: none;
}

.chips a:hover { border-color: #c41f26; color: #c41f26; }

.card a { color: #14181d; text-decoration: none; }
.card a:hover { color: #c41f26; }
.card__meta { margin: 6px 0 0; font-size: 13.5px; line-height: 1.5; color: #8a9099; }

.stack > * + * { margin-top: 26px; }
.h2--sub { margin-top: 40px; }
