/* =========================================================================
   GENERAL FRESH CLEANING — design system
   Light / warm / editorial. Accent green sampled from the brand mark.
   ========================================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* neutrals — warm white foundation */
  --ivory:      #FBFAF7;
  --surface:    #FFFFFF;
  --sand:       #F4F2ED;
  --sand-deep:  #EDEAE2;
  --line:       #E4E0D8;
  --line-soft:  #EFECE5;

  /* text — deep charcoal with a cool cast */
  --ink:        #131E28;
  --ink-2:      #27343F;
  --ink-muted:  #5B6975;
  --ink-faint:  #8B96A1;

  /* brand green */
  --green:      #4E7D3B;
  --green-deep: #3C6130;
  --green-ink:  #3A5F2E;
  --green-soft: #EDF2E7;
  --green-line: #D6E1CA;
  /* lifted greens — only legible against the dark hero / footage */
  --green-mid:  #8FBE72;
  --green-lite: #A8CE8D;

  /* the filmed dark — hero scrim, dark page headers */
  --night:      #0C151C;

  /* micro accent from the logo sparkles */
  --gold:       #C9A94E;

  /* elevation — warm-tinted, restrained */
  --sh-sm: 0 1px 2px rgba(19,30,40,.04), 0 2px 6px rgba(19,30,40,.04);
  --sh-md: 0 4px 12px rgba(19,30,40,.05), 0 12px 28px rgba(19,30,40,.06);
  --sh-lg: 0 8px 24px rgba(19,30,40,.06), 0 28px 64px rgba(19,30,40,.10);

  /* radii — restrained, not bubbly */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;

  /* rhythm */
  --gutter:    clamp(1rem, 0.55rem + 2.1vw, 2rem);
  --container: 1280px;
  --section-y: clamp(3.75rem, 2rem + 6vw, 7.5rem);
  --nav-h:     clamp(62px, 4rem + 1.4vw, 84px);

  /* fluid type */
  --fs-display: clamp(2rem, 1.2rem + 3.7vw, 4.25rem);
  --fs-h2:      clamp(1.625rem, 1.15rem + 2.1vw, 2.875rem);
  --fs-h3:      clamp(1.1875rem, 1.05rem + 0.75vw, 1.625rem);
  --fs-lead:    clamp(1rem, 0.95rem + 0.35vw, 1.1875rem);
  --fs-body:    clamp(0.9375rem, 0.9rem + 0.18vw, 1.0625rem);
  --fs-sm:      0.875rem;
  --fs-xs:      0.8125rem;

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

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* guards against accidental horizontal scroll without hiding it globally */
  overflow-wrap: break-word;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, select, textarea, button { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }

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

.anchor { display: block; height: 0; }
[id] { scroll-margin-top: calc(var(--nav-h) + 1.25rem); }

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 200; background: var(--ink); color: #fff;
  padding: .7rem 1.25rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: var(--fs-sm); font-weight: 600; transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- 3. TYPOGRAPHY ---------- */
/* Romanian sets ă â î ș ț constantly — the display leading has to clear the
   breve/circumflex of the line below, so nothing tighter than ~1.16 here. */
h1, h2, h3, .h2, .h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.17;
  letter-spacing: -0.017em;
  font-weight: 700;
  text-wrap: balance;
}

.h2  { font-size: var(--fs-h2); }
.h3  { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -0.013em; }

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 56ch;
}
.body {
  color: var(--ink-muted);
  max-width: 62ch;
}

.eyebrow {
  display: flex; align-items: center; gap: .875rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-ink);
}
.eyebrow--rule::after {
  content: ""; height: 1px; width: clamp(28px, 5vw, 56px);
  background: var(--green-line); flex: 0 0 auto;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: ""; height: 1px; width: clamp(28px, 5vw, 56px);
  background: var(--green-line); flex: 0 0 auto;
}

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }

.sechead { max-width: 62rem; }
.sechead > * + * { margin-top: .875rem; }
.sechead__lead { margin-top: 1.125rem; }
.sechead--center { text-align: center; margin-inline: auto; }
.sechead--center .lead { margin-inline: auto; }

@media (min-width: 900px) {
  .sechead--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
    align-items: end;
    gap: 2.5rem;
    max-width: none;
  }
  .sechead--split > * + * { margin-top: 0; }
  .sechead--split .sechead__lead { margin-top: 0; }
}

/* ---------- 5. BUTTONS & LINKS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .005em;
  text-align: center;
  border: 1px solid transparent;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), box-shadow .28s var(--ease),
              transform .22s var(--ease);
}
.btn--sm { min-height: 42px; padding: .55rem 1.1rem; font-size: var(--fs-xs); }
.btn--lg { min-height: 54px; padding: .95rem 1.7rem; font-size: 0.9375rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--green); color: #fff;
  box-shadow: 0 1px 2px rgba(19,30,40,.06), 0 8px 20px rgba(78,125,59,.20);
}
.btn--primary:hover { background: var(--green-deep); transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(19,30,40,.07), 0 14px 28px rgba(78,125,59,.26); }
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: rgba(255,255,255,.92); color: var(--ink);
  border-color: rgba(19,30,40,.12);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(8px);
}
.btn--outline:hover { background: #fff; border-color: rgba(19,30,40,.2); transform: translateY(-1px); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--sand); border-color: var(--ink-faint); }

.btn--light {
  background: #fff; color: var(--ink);
}
.btn--light:hover { background: var(--green-soft); transform: translateY(-1px); }

.btn .ico { width: 18px; height: 18px; flex: 0 0 auto; }
.btn--lg .ico { width: 19px; height: 19px; }

.ico { width: 20px; height: 20px; fill: currentColor; }
.ico--arrow { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 44px;               /* comfortable tap target */
  justify-self: start; align-self: start;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600; font-size: var(--fs-sm);
  color: var(--green-ink);
  transition: gap .25s var(--ease), color .2s var(--ease);
}
.link-arrow .ico { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: .75rem; color: var(--green-deep); }

/* ---------- 6. LOGO ---------- */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* The mark lives in one <symbol>; both lockups reference it. Custom properties
   are the only styling that crosses the <use> shadow boundary, so the palette
   is passed in that way. */
.logo {
  display: inline-flex; align-items: center; gap: .6rem; min-height: 46px;
  --logo-ink: var(--ink);
  --logo-green: var(--green);
  --logo-gold: var(--gold);
  --logo-rib: rgba(255,255,255,.6);
}
.logo__mark { width: clamp(34px, 5vw, 44px); aspect-ratio: 1; flex: 0 0 auto; }
.logo--light { --logo-ink: rgba(255,255,255,.94); --logo-green: #82AD66; --logo-gold: #D8BC6B; }

.logo__word { display: grid; line-height: 1; }
.logo__line {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  color: var(--ink);
}
.logo__line--sm {
  font-size: clamp(.4rem, .28rem + .35vw, .5rem);
  letter-spacing: .26em; font-weight: 600;
}
.logo__line--lg {
  font-size: clamp(.95rem, .72rem + .8vw, 1.3rem);
  font-weight: 800; letter-spacing: .005em;
  color: var(--green); margin-block: .1em;
}
.logo--light .logo__line { color: rgba(255,255,255,.92); }
.logo--light .logo__line--lg { color: #9FC584; }

/* ---------- 7. NAVBAR ----------
   The bar is painted from a small set of custom properties so it can flip to a
   light-on-dark palette while it floats over the hero footage, and back to the
   normal ink palette the moment it sticks (or the mobile menu opens). */
.nav {
  --nav-link:         var(--ink-2);
  --nav-link-hover:   var(--ink);
  --nav-underline:    var(--green);
  --nav-phone-c:      var(--green-ink);
  --nav-bar-c:        var(--ink);
  --nav-toggle-hover: rgba(19,30,40,.05);
  --nav-word:         var(--ink);
  --nav-word-lg:      var(--green);
  --nav-logo-ink:     var(--ink);
  --nav-logo-green:   var(--green);
  --nav-logo-gold:    var(--gold);
  --nav-scrim: linear-gradient(to bottom, rgba(251,250,247,.92), rgba(251,250,247,0));

  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              backdrop-filter .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
body.has-dark-hero:not(.menu-open) .nav:not(.is-stuck) {
  --nav-link:         rgba(255,255,255,.84);
  --nav-link-hover:   #fff;
  --nav-underline:    var(--green-lite);
  --nav-phone-c:      #fff;
  --nav-bar-c:        #fff;
  --nav-toggle-hover: rgba(255,255,255,.14);
  --nav-word:         rgba(255,255,255,.95);
  --nav-word-lg:      var(--green-lite);
  --nav-logo-ink:     #fff;
  --nav-logo-green:   var(--green-mid);
  --nav-logo-gold:    #DCC272;
  --nav-scrim: linear-gradient(to bottom, rgba(8,14,20,.62), rgba(8,14,20,.2) 58%, rgba(8,14,20,0));
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--nav-scrim);
  transition: opacity .3s var(--ease);
}
.nav .logo {
  --logo-ink:   var(--nav-logo-ink);
  --logo-green: var(--nav-logo-green);
  --logo-gold:  var(--nav-logo-gold);
}
.nav .logo__line    { color: var(--nav-word); transition: color .3s var(--ease); }
.nav .logo__line--lg { color: var(--nav-word-lg); }
.nav.is-stuck {
  background: rgba(251,250,247,.88);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 24px rgba(19,30,40,.05);
}
.nav.is-stuck::before { opacity: 0; }

.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 1rem;
}
.nav__links { display: none; }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; }

.nav__phone {
  display: none; align-items: center; gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: clamp(.9rem, .78rem + .3vw, 1.0625rem);
  color: var(--nav-phone-c);
  padding: .5rem .25rem;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav__phone:hover { opacity: .82; }
.nav__phone .ico { width: 17px; height: 17px; }
.nav__cta { display: none; }

.nav__toggle {
  width: 44px; height: 44px; margin-right: -6px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  transition: background-color .2s var(--ease);
}
.nav__toggle:hover { background: var(--nav-toggle-hover); }
.nav__bars { display: grid; gap: 5px; width: 21px; }
.nav__bars i {
  display: block; height: 2px; border-radius: 2px; background: var(--nav-bar-c);
  transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.nav__bars i:nth-child(1) { width: 21px; }
.nav__bars i:nth-child(2) { width: 15px; margin-left: auto; }
.nav__bars i:nth-child(3) { width: 21px; }
.is-open .nav__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-open .nav__bars i:nth-child(2) { opacity: 0; }
.is-open .nav__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 21px; }

@media (min-width: 620px) {
  .nav__phone { display: inline-flex; }
}
@media (min-width: 1000px) {
  .nav__links {
    display: flex; align-items: center; gap: clamp(1rem, 2.1vw, 2.1rem);
    margin-left: clamp(1.5rem, 4vw, 3.5rem);
  }
  .nav__link {
    position: relative;
    display: inline-flex; align-items: center;
    min-height: 44px;
    font-size: var(--fs-sm); font-weight: 500;
    color: var(--nav-link);
    transition: color .3s var(--ease);
  }
  .nav__link::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 8px;
    height: 2px; border-radius: 2px; background: var(--nav-underline);
    transform: scaleX(0); transform-origin: left;
    transition: transform .28s var(--ease), background-color .3s var(--ease);
  }
  .nav__link:hover { color: var(--nav-link-hover); }
  .nav__link:hover::after,
  .nav__link.is-active::after { transform: scaleX(1); }
  .nav__link.is-active { color: var(--nav-link-hover); font-weight: 600; }
  .nav__cta { display: inline-flex; margin-left: .5rem; }
  .nav__toggle { display: none; }
}

/* ---------- 8. MOBILE MENU ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(19,30,40,.32);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mmenu[hidden] { display: none; }
.mmenu.is-visible { opacity: 1; }

.mmenu__panel {
  position: absolute; inset: 0 0 auto 0;
  max-height: 100svh; overflow-y: auto; overscroll-behavior: contain;
  background: var(--ivory);
  padding: calc(var(--nav-h) + 1rem) var(--gutter) calc(1.75rem + env(safe-area-inset-bottom));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(19,30,40,.12);
  transform: translateY(-14px); opacity: 0;
  transition: transform .34s var(--ease), opacity .28s var(--ease);
}
.mmenu.is-visible .mmenu__panel { transform: translateY(0); opacity: 1; }

.mmenu__links { display: grid; }
.mmenu__links a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px; padding-block: .35rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.mmenu__links a i {
  width: 7px; height: 7px; border-right: 2px solid var(--green-line);
  border-top: 2px solid var(--green-line); transform: rotate(45deg);
  transition: border-color .2s var(--ease);
}
.mmenu__links a:hover { color: var(--green-ink); padding-left: .3rem; }
.mmenu__links a:hover i { border-color: var(--green); }

.mmenu__foot { display: grid; gap: .625rem; margin-top: 1.5rem; }
.mmenu__note {
  margin-top: .35rem; text-align: center;
  font-size: var(--fs-xs); color: var(--ink-faint);
}

/* ---------- 9. HERO ----------
   One idea on every screen: real footage, a dark scrim that makes the type
   readable without washing the picture out, and the white quote card
   straddling the bottom edge of the film. On a phone the footage is exactly
   as tall as the copy that sits on it — .hero__stage is the positioning
   context there — so the headline can never spill off the dark ground,
   whatever it wraps to. Above 900px the stage goes static and the same
   media element fills the whole hero instead. */
.hero {
  --hero-media-h: clamp(520px, 76svh, 700px);
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--ivory);
}

.hero__inner {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}

.hero__stage {
  position: relative;
  min-height: var(--hero-media-h);
  padding-top: calc(var(--nav-h) + clamp(1rem, 4vw, 2rem));
  /* deep enough that the card's lift never reaches the CTA row */
  padding-bottom: clamp(4rem, 12vw, 5.5rem);
  display: flex; flex-direction: column; justify-content: flex-end;
}

/* bleeds past the container gutters, out to the screen edges */
.hero__media {
  position: absolute; z-index: -1;
  top: 0; bottom: 0;
  left: calc(var(--gutter) * -1); right: calc(var(--gutter) * -1);
  background: var(--night);
  overflow: hidden;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* favours the corridor + reception over the ceiling in the 9:16 crop */
  object-position: center 52%;
  filter: saturate(1.06) contrast(1.03);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,14,20,.60) 0%, rgba(8,14,20,.16) 20%, rgba(8,14,20,0) 38%),
    linear-gradient(to top,
      rgba(8,14,20,.90) 0%,
      rgba(8,14,20,.74) 28%,
      rgba(8,14,20,.42) 55%,
      rgba(8,14,20,.12) 80%,
      rgba(8,14,20,0) 100%);
}

.hero__copy-in {
  position: relative;
  display: flex; flex-direction: column;
  gap: clamp(.75rem, 2vw, 1.125rem);
}

.hero .eyebrow { color: var(--green-lite); }
.hero .eyebrow--rule::after { background: rgba(255,255,255,.34); }

.hero__title {
  font-size: var(--fs-display);
  font-weight: 800;
  letter-spacing: -0.019em;
  line-height: 1.13;
  max-width: 15ch;
  color: #fff;
  text-shadow: 0 2px 30px rgba(6,12,17,.45);
}
.hero__title em {
  display: block;
  font-style: normal;
  color: var(--green-lite);
  max-width: 14ch;
  margin-top: .12em;
}
.hero__lead {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,.85);
  max-width: 44ch;
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(6,12,17,.4);
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: .625rem;
  margin-top: .375rem;
}
.hero__cta .btn { flex: 1 1 100%; min-width: 0; }
/* side by side only once both labels fit on one line — below this they stack,
   which is also the better tap layout on a phone */
@media (min-width: 480px) {
  .hero__cta .btn { flex: 1 1 0; }
}
/* glass, not white — a solid button would punch a hole in the footage */
.hero__cta .btn--outline {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.38);
  color: #fff;
  backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 6px 20px rgba(6,12,17,.22);
}
.hero__cta .btn--outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.58);
  color: #fff;
}

/* the card straddles the bottom edge of the film */
.hero__form { position: relative; z-index: 1; margin-top: -2.75rem; }
.hero__form .qcard {
  box-shadow: 0 10px 30px rgba(6,12,17,.14), 0 32px 70px rgba(6,12,17,.18);
}

/* tablet portrait: stop the stacked card from stretching the full width */
@media (min-width: 620px) and (max-width: 899px) {
  .hero__form .qcard { max-width: 32rem; margin-inline: auto; }
  .hero__copy { max-width: 34rem; }
  .hero__trust { max-width: 40rem; }
}
.hero__trust {
  position: relative;
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding: clamp(1.75rem, 4vw, 2.25rem) var(--gutter) 0;
}

/* trust strip */
.trust {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .875rem 1rem;
}
.trust__item { display: flex; align-items: center; gap: .625rem; min-width: 0; }
.trust__ico {
  width: 26px; height: 26px; flex: 0 0 auto;
  fill: var(--green); opacity: .9;
}
.trust__item div { display: grid; min-width: 0; }
.trust__item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm); font-weight: 700; color: var(--ink);
  line-height: 1.25;
}
.trust__item span {
  font-size: var(--fs-xs); color: var(--ink-muted); line-height: 1.35;
}

/* ---------- 10. QUOTE CARD / FORM ---------- */
.qcard {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: clamp(1.25rem, 4vw, 1.75rem);
}
.qcard__head { margin-bottom: 1.125rem; }
.qcard__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.qcard__sub { font-size: var(--fs-sm); color: var(--ink-muted); margin-top: .25rem; }

.qform { display: grid; gap: .8rem; }

.field { display: grid; gap: .375rem; min-width: 0; }
.field > label {
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--ink-2); letter-spacing: .01em;
}
.field__opt { font-weight: 400; color: var(--ink-faint); }

.field__control {
  position: relative; display: flex; align-items: center;
  background: #FCFCFB;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field__control:focus-within {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(78,125,59,.14);
}
.field__ico {
  position: absolute; left: .8rem; width: 18px; height: 18px;
  fill: var(--ink-faint); pointer-events: none;
  transition: fill .2s var(--ease);
}
.field__control:focus-within .field__ico { fill: var(--green); }

.field__control input,
.field__control select,
.field__control textarea {
  width: 100%; min-width: 0;
  min-height: 48px;
  padding: .7rem .85rem .7rem 2.6rem;
  background: none; border: 0; border-radius: var(--r);
  font-size: 1rem; /* >=16px keeps iOS from zooming on focus */
  color: var(--ink);
}
.field__control input:focus,
.field__control select:focus,
.field__control textarea:focus { outline: none; }
.field__control input::placeholder,
.field__control textarea::placeholder { color: #A7B0B9; }

.field__control--select select {
  appearance: none; cursor: pointer;
  padding-right: 2.4rem;
  color: var(--ink);
}
.field__control--select select:invalid { color: #A7B0B9; }
.field__chev {
  position: absolute; right: .85rem; width: 18px; height: 18px;
  fill: none; stroke: var(--ink-faint); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; pointer-events: none;
}
.field__control--area { align-items: stretch; }
.field__control--area textarea {
  padding: .75rem .85rem; resize: vertical; min-height: 92px; line-height: 1.55;
}

.field__err {
  font-size: var(--fs-xs); color: #B3382F; line-height: 1.4;
  display: none;
}
.field.has-error .field__control { border-color: #D06055; background: #FEF8F7; }
.field.has-error .field__control:focus-within { box-shadow: 0 0 0 3px rgba(179,56,47,.14); }
.field.has-error .field__ico { fill: #C0574C; }
.field.has-error .field__err { display: block; }

.qform button[type="submit"] { margin-top: .25rem; }

.qform__note {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: var(--fs-xs); color: var(--ink-faint); line-height: 1.45;
}
.qform__note .ico { width: 14px; height: 14px; flex: 0 0 auto; margin-top: .12rem; opacity: .8; }

.qform__status {
  display: grid; gap: .75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r);
  font-size: var(--fs-sm); line-height: 1.55;
}
.qform__status[hidden] { display: none; }
.qform__status--ok {
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  color: var(--green-ink);
}
.qform__status--err {
  background: #FEF6F5; border: 1px solid #F0D2CE; color: #A8352C;
}
.qform__status strong {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-body); color: inherit;
}
.qform__status .qform__acts { display: flex; flex-wrap: wrap; gap: .5rem; }
.qform__status .btn { flex: 1 1 11rem; }
/* the status box is always a direct child of the form, so this can safely
   collapse everything else once the request has been handed off */
.qform.is-sent > *:not(.qform__status) { display: none; }
.qform.is-sent { gap: 0; }

/* ---------- 11. HERO — TABLET / DESKTOP ---------- */
@media (min-width: 900px) {
  .hero {
    min-height: min(100svh, 940px);
    display: flex; flex-direction: column; justify-content: center;
    padding-top: calc(var(--nav-h) + clamp(1.5rem, 3vh, 3rem));
    padding-bottom: clamp(7.5rem, 15vh, 10.5rem);
    background: var(--night);
  }
  /* the stage stops being a positioning context, so the same media element
     now resolves against .hero and fills the whole frame */
  .hero__stage { position: static; display: block; min-height: 0; padding: 0; }
  .hero__media { inset: 0; left: 0; right: 0; }
  .hero__video { object-position: center center; }
  /* weighted to the left so the headline column is always readable while the
     room itself stays clearly visible through the middle and right */
  .hero__scrim {
    background:
      linear-gradient(to right,
        rgba(8,14,20,.88) 0%,
        rgba(8,14,20,.78) 26%,
        rgba(8,14,20,.54) 48%,
        rgba(8,14,20,.36) 68%,
        rgba(8,14,20,.32) 100%),
      linear-gradient(to bottom, rgba(8,14,20,.5) 0%, rgba(8,14,20,0) 24%),
      linear-gradient(to top, rgba(8,14,20,.62) 0%, rgba(8,14,20,0) 34%);
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 27rem);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
  }
  .hero__copy { min-height: 0; padding: 0; }
  .hero__copy-in { gap: clamp(1rem, 1.6vw, 1.5rem); }
  .hero__title { max-width: 13ch; }
  .hero__cta { margin-top: .5rem; }
  .hero__cta .btn { flex: 0 0 auto; }

  .hero__form { margin-top: 0; }
  .hero__trust {
    position: absolute; left: 0; right: 0;
    bottom: clamp(1.5rem, 3.5vh, 2.75rem);
    padding-top: 0;
  }
  .trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: rgba(10,17,23,.42);
    backdrop-filter: blur(18px) saturate(1.35);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--r-lg);
    box-shadow: 0 18px 48px rgba(6,12,17,.3);
    padding: clamp(.875rem, 1.6vw, 1.25rem) clamp(.5rem, 1.4vw, 1.25rem);
  }
  .trust__item { padding-inline: clamp(.6rem, 1.4vw, 1.35rem); }
  .trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.16); }
  .trust__ico { fill: var(--green-lite); opacity: 1; }
  .trust__item strong { color: #fff; }
  .trust__item span { color: rgba(255,255,255,.72); }
}

/* short landscape screens: let the hero grow with its content instead of clipping */
@media (min-width: 900px) and (max-height: 720px) {
  .hero { min-height: 0; padding-bottom: clamp(6rem, 13vh, 8rem); }
}

@media (min-width: 1150px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 29rem); }
}

/* ---------- 12. DESPRE NOI ---------- */
.about__grid { display: grid; gap: clamp(2.25rem, 5vw, 4.5rem); }
.about__copy > * + * { margin-top: 1rem; }
.about__copy .h2 { margin-top: .875rem; }
.about__copy .link-arrow { margin-top: .5rem; }

.about__facts {
  display: grid; gap: .875rem;
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about__facts > div { display: grid; gap: .1rem; }
.about__facts dt {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint);
}
.about__facts dd {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2);
}

.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.75rem, 2vw, 1.25rem); align-items: start; }
.about__img { overflow: hidden; border-radius: var(--r-lg); background: var(--sand); }
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.about__img--main { aspect-ratio: 3 / 4; }
.about__img--inset { aspect-ratio: 3 / 4; margin-top: clamp(1.5rem, 5vw, 3rem); }
.about__img:hover img { transform: scale(1.045); }

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
  }
  .about__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
  .about__media {
    position: relative; display: block;
    padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
    padding-left: clamp(2rem, 7vw, 5rem);
  }
  .about__img--main {
    aspect-ratio: 4 / 5; width: 100%;
    border-radius: var(--r-lg);
  }
  .about__img--inset {
    position: absolute; left: 0; bottom: 0;
    width: clamp(9rem, 19vw, 14rem);
    aspect-ratio: 3 / 4; margin-top: 0;
    border: 6px solid var(--ivory);
    border-radius: calc(var(--r-lg) - 2px);
    box-shadow: var(--sh-md);
  }
}

/* ---------- 13. SERVICES ---------- */
.services { padding-block: var(--section-y); }
.services .sechead { margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }

.svc {
  display: grid; gap: clamp(1.125rem, 3.5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.25rem, 4vw, 3rem);
}
.svc__media {
  order: -1;
  overflow: hidden; border-radius: var(--r-lg);
  background: var(--sand);
  aspect-ratio: 4 / 5;
  width: 100%;
  /* never render wider than the narrowest source (574px) — no upscaling */
  max-width: 34rem;
}
@media (min-width: 620px) and (max-width: 899px) {
  .svc__media { margin-inline: auto; }
}
/* Sized so the picture stays close to the height of its copy — a taller frame
   just opens dead space on the text side. */
@media (min-width: 900px) {
  .svc__media { max-width: 28rem; aspect-ratio: 5 / 6; }
}
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
/* favour the marble and the bath over the sanitary fittings on the left edge */
.svc__media img[src*="baie-curatare"] { object-position: 72% center; }
.svc:hover .svc__media img { transform: scale(1.045); }

.svc__text > * + * { margin-top: .875rem; }
.svc__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: .14em;
  color: var(--green); margin-bottom: -.25rem;
}
.svc__text .h3 { margin-top: .5rem; }
.svc__list { display: grid; gap: .5rem; margin-top: 1.125rem; }
.svc__list li {
  position: relative; padding-left: 1.5rem;
  font-size: var(--fs-sm); color: var(--ink-2);
}
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); opacity: .45;
}
.svc__text .link-arrow { margin-top: 1.25rem; }

@media (min-width: 900px) {
  .svc { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .svc__media { order: 0; grid-column: 2; grid-row: 1; justify-self: end; }
  .svc__text  { grid-column: 1; grid-row: 1; }
  .svc--rev .svc__media { grid-column: 1; justify-self: start; }
  .svc--rev .svc__text  { grid-column: 2; }
}

/* banded rows (services without a photograph) */
.svcband {
  display: grid; gap: .75rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2.25rem);
  margin-block: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: var(--r-lg);
}
.svcband__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: .14em; color: var(--green);
}
.svcband__body > * + * { margin-top: .5rem; }
.svcband .body { color: var(--green-ink); opacity: .85; }

@media (min-width: 780px) {
  .svcband {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start; gap: clamp(1.25rem, 3vw, 2.5rem);
  }
  /* sit the numeral on the title's first line rather than the block's centre */
  .svcband__num { font-size: 1rem; padding-top: .3em; }
  .svcband__cta { justify-self: end; align-self: center; white-space: nowrap; }
}

/* 05 — full-width geamuri feature */
.svcwide {
  background: var(--sand);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  margin-block: clamp(1.5rem, 4vw, 3rem);
}
.svcwide__grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.svcwide__media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.75rem, 2vw, 1.25rem); align-items: start; }
.svcwide__img { overflow: hidden; border-radius: var(--r-lg); background: var(--sand-deep); aspect-ratio: 3 / 4; }
.svcwide__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
.svcwide__img:hover img { transform: scale(1.045); }
.svcwide__img--b { margin-top: clamp(1.5rem, 5vw, 3rem); }
.svcwide__text > * + * { margin-top: .875rem; }
.svcwide__text .h3 { margin-top: .5rem; }
.svcwide__text .link-arrow { margin-top: 1.25rem; }

@media (min-width: 900px) {
  .svcwide__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .svcwide__media {
    position: relative; display: block;
    padding-right: clamp(2rem, 7vw, 5rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
  }
  .svcwide__img--a { aspect-ratio: 4 / 5; }
  .svcwide__img--b {
    position: absolute; right: 0; bottom: 0; margin-top: 0;
    width: clamp(8.5rem, 18vw, 13rem); aspect-ratio: 3 / 4;
    border: 6px solid var(--sand);
    border-radius: calc(var(--r-lg) - 2px);
    box-shadow: var(--sh-md);
  }
}

/* ---------- 14. WHY ---------- */
.why { background: var(--sand); }
.why__grid { display: grid; gap: clamp(2rem, 4.5vw, 4rem); }
.why__head > * + * { margin-top: .875rem; }
.why__head .h2 { margin-top: .875rem; }
.why__note { margin-top: 1rem; }

.why__list { display: grid; gap: 0; }
.why__item {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: .25rem 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--sand-deep);
}
.why__item:first-child { border-top: 0; padding-top: 0; }
.why__n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em;
  color: var(--green); grid-row: 1 / span 2; padding-top: .3em;
}
.why__item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -.012em; color: var(--ink);
}
.why__item p { font-size: var(--fs-sm); color: var(--ink-muted); }

@media (min-width: 700px) {
  .why__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.5rem, 4vw, 3.5rem); }
  .why__item:nth-child(2) { border-top: 0; padding-top: 0; }
}
@media (min-width: 1000px) {
  .why__grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; }
}

/* ---------- 15. GALLERY ---------- */
.gallery .sechead { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }

/* Phone: a snap carousel of large frames, bled to both screen edges. The
   six-column mosaic below only works once the tiles can be big enough to read
   — under 680px it collapses into thumbnails, which cheapens the photography. */
.gal {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-bottom: .25rem;
}
.gal::-webkit-scrollbar { display: none; }

.gal__i {
  overflow: hidden; border-radius: var(--r-lg);
  background: var(--sand-deep);
  min-width: 0;
  flex: 0 0 min(78%, 21rem);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
}
.gal__i img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.gal__i:hover img { transform: scale(1.06); }

.gal__hint {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .875rem;
  font-size: var(--fs-xs); color: var(--ink-faint);
}
.gal__hint svg { width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

@media (min-width: 680px) {
  .gal {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(96px, 13vw, 150px);
    gap: clamp(.5rem, 1.4vw, 1rem);
    overflow: visible;
    margin-inline: 0; padding-inline: 0; padding-bottom: 0;
  }
  .gal__i { flex: none; aspect-ratio: auto; border-radius: var(--r); }
  .gal__hint { display: none; }
  .gal__i--a { grid-column: span 4; grid-row: span 3; }
  .gal__i--b { grid-column: span 2; grid-row: span 3; }
  .gal__i--c { grid-column: span 2; grid-row: span 2; }
  .gal__i--d { grid-column: span 2; grid-row: span 2; }
  .gal__i--e { grid-column: span 2; grid-row: span 2; }
}
@media (min-width: 1000px) {
  .gal {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(112px, 11.5vw, 162px);
  }
  .gal__i--a { grid-column: span 7; grid-row: span 3; }
  .gal__i--b { grid-column: span 5; grid-row: span 3; }
  .gal__i--c { grid-column: span 5; grid-row: span 3; }
  .gal__i--d { grid-column: span 4; grid-row: span 3; }
  .gal__i--e { grid-column: span 3; grid-row: span 3; }
}

/* ---------- 16. PROCESS ---------- */
.process { background: var(--sand); }
.process .sechead { margin-bottom: clamp(2rem, 4.5vw, 3.25rem); }

.steps { display: grid; gap: 0; counter-reset: step; }
.steps__i {
  position: relative;
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: .3rem 1.125rem;
  padding-block: 1.375rem;
  border-top: 1px solid var(--sand-deep);
}
.steps__i:first-child { border-top: 0; padding-top: 0; }
.steps__n {
  grid-row: 1 / span 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--green);
  line-height: 1;
}
.steps__i h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -.012em;
}
.steps__i p { font-size: var(--fs-sm); color: var(--ink-muted); }

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }
  .steps__i {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2rem; padding-bottom: 0;
    border-top: 1px solid var(--sand-deep);
  }
  .steps__i:first-child { padding-top: 2rem; border-top: 1px solid var(--sand-deep); }
  .steps__i::before {
    content: ""; position: absolute; top: -4px; left: 0;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
  }
  .steps__n { grid-row: auto; font-size: clamp(1.75rem, 2.4vw, 2.25rem); margin-bottom: .625rem; }
}

/* ---------- 17. REVIEWS ---------- */
.reviews .sechead { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }

.rating { display: flex; align-items: center; gap: 1rem; }
.rating__score {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.25rem, 1.6rem + 2.2vw, 3.25rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink);
}
.rating__score span { font-size: .42em; font-weight: 600; color: var(--ink-faint); margin-left: .18em; }
.rating__meta p { font-size: var(--fs-xs); color: var(--ink-muted); margin-top: .25rem; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; fill: var(--gold); }

.rev { display: grid; gap: clamp(.875rem, 2vw, 1.25rem); }

.rev__lead {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--sh-sm);
}
.rev__quote {
  width: clamp(30px, 4vw, 42px); height: auto;
  fill: var(--green); opacity: .16; margin-bottom: 1rem;
}
.rev__lead blockquote p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.0625rem, .95rem + .75vw, 1.5rem);
  line-height: 1.45; letter-spacing: -.015em;
  color: var(--ink); font-weight: 500;
  text-wrap: pretty;
}

.rev__grid { display: grid; gap: clamp(.875rem, 2vw, 1.25rem); }
.rev__i {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.125rem, 2.5vw, 1.5rem);
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--sh-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.rev__i:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.rev__i blockquote { flex: 1; }
.rev__i blockquote p { font-size: var(--fs-body); color: var(--ink-2); line-height: 1.6; }

.rev figcaption { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.rev__lead figcaption { margin-top: 1.5rem; }
.rev__i figcaption { margin-top: 0; }
.rev__avatar {
  width: 40px; height: 40px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green-soft); color: var(--green-ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em;
}
.rev__who { display: grid; min-width: 0; }
.rev__who strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm); font-weight: 700; color: var(--ink); line-height: 1.3;
}
.rev__stars { font-size: .8rem; color: var(--gold); letter-spacing: .08em; line-height: 1.3; }

.rev__more {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid var(--line);
}
.rev__more-label {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem;
}
.rev__names { display: flex; flex-wrap: wrap; gap: .5rem .625rem; }
.rev__names li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .875rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.rev__names strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2);
}
.rev__names span { font-size: .7rem; color: var(--gold); letter-spacing: .06em; }
.rev__names i { color: var(--line); font-style: normal; }

@media (min-width: 640px) {
  .rev__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .rev { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); align-items: start; }
  .rev__lead { height: 100%; display: flex; flex-direction: column; }
  .rev__lead blockquote { flex: 1; }
}

/* ---------- 18. CONTACT ---------- */
.contact { background: var(--sand); }
.contact__grid { display: grid; gap: clamp(2rem, 4.5vw, 4rem); }
.contact__aside > * + * { margin-top: 1rem; }
.contact__aside .h2 { margin-top: .875rem; }

.callcard {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.75rem;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.125rem, 2.5vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.callcard:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--green-line); }
.callcard__ico {
  width: 46px; height: 46px; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--green-soft);
}
.callcard__ico svg { width: 21px; height: 21px; fill: var(--green); }
.callcard__body { display: grid; min-width: 0; }
.callcard__label { font-size: var(--fs-xs); color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.callcard__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.1875rem, 1rem + .8vw, 1.5rem);
  font-weight: 700; letter-spacing: -.015em; color: var(--ink); line-height: 1.25;
}
.callcard__go { width: 20px; height: 20px; margin-left: auto; flex: 0 0 auto; color: var(--green); transition: transform .3s var(--ease); }
.callcard:hover .callcard__go { transform: translateX(4px); }

.area {
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--sand-deep);
}
.area__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem;
}
.area strong { color: var(--ink); font-weight: 600; }

.qcard--wide { border-color: var(--line); }
.qform--wide { grid-template-columns: minmax(0, 1fr); }
.qform--wide .field--full { grid-column: 1 / -1; }
.qform__actions { gap: .875rem; }

@media (min-width: 560px) {
  .qform--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: .875rem; }
}
@media (min-width: 1000px) {
  .contact__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; }
}

/* ---------- 19. FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2rem);
}

.footcta {
  display: grid; gap: 1.25rem;
  padding-bottom: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footcta__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.375rem, 1.1rem + 1.5vw, 2rem);
  font-weight: 700; letter-spacing: -.022em; color: #fff; line-height: 1.2;
  text-wrap: balance;
}
.footcta__sub { font-size: var(--fs-sm); color: rgba(255,255,255,.62); margin-top: .5rem; max-width: 46ch; }
.footcta__actions { display: flex; flex-wrap: wrap; gap: .625rem; }
.footcta__actions .btn { flex: 1 1 auto; }

@media (min-width: 780px) {
  .footcta { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2rem; }
  .footcta__actions .btn { flex: 0 0 auto; }
}

.footgrid { display: grid; gap: clamp(1.75rem, 4vw, 2.5rem); }
.footgrid__brand .logo { margin-bottom: 1rem; }
.footgrid__desc { font-size: var(--fs-sm); color: rgba(255,255,255,.6); max-width: 34ch; line-height: 1.6; }

.footgrid__t {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: .875rem;
}
.footgrid__col ul { display: grid; gap: .375rem; }
.footgrid__col li { font-size: var(--fs-sm); line-height: 1.5; }
.footgrid__col a {
  color: rgba(255,255,255,.74);
  transition: color .2s var(--ease);
  display: inline-flex; align-items: center; min-height: 34px;
}
.footgrid__col span { display: inline-block; padding-block: .35rem; }
.footgrid__col a:hover { color: #fff; }
.footgrid__col span { color: rgba(255,255,255,.58); }
.footgrid__phone {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem !important; font-weight: 700; color: #fff !important;
  letter-spacing: -.01em;
}

@media (min-width: 640px) {
  .footgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .footgrid { grid-template-columns: 1.35fr 1.15fr .85fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
}

.footbar {
  display: grid; gap: .5rem;
  margin-top: clamp(2rem, 4.5vw, 3.25rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: var(--fs-xs); color: rgba(255,255,255,.5);
}
@media (min-width: 640px) {
  .footbar { grid-template-columns: 1fr auto; align-items: center; }
  .footbar p:last-child { text-align: right; }
}

/* ---------- 20. PAGE HEADER (subpages) ---------- */
.pagehead {
  position: relative; isolation: isolate;
  overflow: clip;
  background: var(--night);
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 8vw, 5.5rem));
  padding-bottom: clamp(2.75rem, 8vw, 5.5rem);
}
.pagehead__bg { position: absolute; inset: 0; z-index: -1; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .48; }
.pagehead__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,14,20,.72) 0%, rgba(8,14,20,.34) 34%, rgba(8,14,20,.62) 100%),
    linear-gradient(to right, rgba(8,14,20,.78) 0%, rgba(8,14,20,.30) 62%, rgba(8,14,20,.2) 100%);
}
.pagehead__in { max-width: 46rem; }
.pagehead .eyebrow { color: var(--green-lite); }
.pagehead .eyebrow--rule::after { background: rgba(255,255,255,.34); }
.pagehead__title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: var(--fs-h2);
  font-weight: 800; letter-spacing: -.022em; line-height: 1.14;
  color: #fff; margin-top: .875rem;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(6,12,17,.4);
}
.pagehead__lead {
  font-size: var(--fs-lead); line-height: 1.6;
  color: rgba(255,255,255,.82); max-width: 52ch; margin-top: 1rem;
}
.pagehead__cta { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.75rem; }
.pagehead__cta .btn--outline {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.38); color: #fff;
  backdrop-filter: blur(10px) saturate(1.2);
}
.pagehead__cta .btn--outline:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.58); color: #fff; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
  font-size: var(--fs-xs); color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.crumbs a { color: rgba(255,255,255,.78); transition: color .2s var(--ease); }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: #fff; font-weight: 600; }

/* ---------- 21. PRICES ---------- */
.pricenote {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: clamp(1rem, 2.5vw, 1.375rem) clamp(1.125rem, 2.5vw, 1.5rem);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: var(--r-lg);
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.pricenote svg { width: 22px; height: 22px; flex: 0 0 auto; fill: var(--green); margin-top: .1rem; }
.pricenote p { font-size: var(--fs-sm); color: var(--green-ink); line-height: 1.6; }
.pricenote strong { font-family: 'Plus Jakarta Sans', sans-serif; }

.pricegrid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
@media (min-width: 860px) { .pricegrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.pricecard {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow: var(--sh-sm);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pricecard:hover { box-shadow: var(--sh-md); border-color: var(--line); }
.pricecard--full { grid-column: 1 / -1; }

.pricecard__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: .25rem;
}
.pricecard__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: .14em; color: var(--green);
}
.pricecard__from { text-align: right; flex: 0 0 auto; }
.pricecard__from span {
  display: block; font-size: .6875rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint);
}
.pricecard__from strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.1875rem, 1rem + .7vw, 1.5rem);
  font-weight: 800; letter-spacing: -.02em; color: var(--green-ink);
  line-height: 1.2;
}
.pricecard .h3 { margin-top: .375rem; }
.pricecard__desc { font-size: var(--fs-sm); color: var(--ink-muted); margin-top: .625rem; max-width: 46ch; }

.plist { display: grid; margin-top: 1.375rem; }
.plist li {
  display: flex; align-items: baseline; gap: .5rem;
  padding-block: .7rem;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-sm);
}
.plist li:first-child { border-top: 0; padding-top: 0; }
.plist__n { color: var(--ink-2); }
/* the dotted leader is what makes a price list read as a price list */
.plist__d { flex: 1 1 auto; min-width: .75rem; border-bottom: 1px dotted var(--line); translate: 0 -.28em; }
.plist__p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; color: var(--ink); white-space: nowrap;
}
.plist__p em { font-style: normal; font-weight: 500; color: var(--ink-faint); font-size: .85em; }

.pricecard__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.25rem;
  margin-top: auto; padding-top: 1.25rem;
}
.pricecard__hint { font-size: var(--fs-xs); color: var(--ink-faint); }

/* what changes the price */
.factors { display: grid; gap: 1.25rem; }
.factors__i { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .25rem 1rem;
  padding-block: 1.125rem; border-top: 1px solid var(--sand-deep); }
.factors__i:first-child { border-top: 0; padding-top: 0; }
.factors__n {
  grid-row: 1 / span 2; padding-top: .25em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; color: var(--green);
}
.factors__i h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.0625rem; font-weight: 700; }
.factors__i p { font-size: var(--fs-sm); color: var(--ink-muted); }
@media (min-width: 760px) {
  .factors { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.5rem, 4vw, 3.5rem); gap: 0; }
  .factors__i:nth-child(2) { border-top: 0; padding-top: 0; }
}

/* FAQ */
.faq { display: grid; max-width: 52rem; margin-top: clamp(1.75rem, 4vw, 2.5rem); }
.faq__i { border-top: 1px solid var(--line); }
.faq__i:last-child { border-bottom: 1px solid var(--line); }
.faq__i summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.125rem; cursor: pointer; list-style: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem; font-weight: 600; color: var(--ink);
  transition: color .2s var(--ease);
}
.faq__i summary::-webkit-details-marker { display: none; }
.faq__i summary:hover { color: var(--green-ink); }
.faq__i summary i {
  position: relative; width: 15px; height: 15px; flex: 0 0 auto;
}
.faq__i summary i::before,
.faq__i summary i::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 2px; border-radius: 2px;
  background: var(--green); translate: 0 -50%;
  transition: transform .28s var(--ease);
}
.faq__i summary i::after { transform: rotate(90deg); }
.faq__i[open] summary i::after { transform: rotate(0); }
.faq__a { padding-bottom: 1.25rem; }
.faq__a p { font-size: var(--fs-sm); color: var(--ink-muted); max-width: 62ch; }

/* price chip used on the home-page service blocks */
.pricetag {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 40px; padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-xs); font-weight: 700; color: var(--green-ink);
  white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.pricetag em { font-style: normal; font-weight: 500; color: var(--ink-muted); }
.pricetag:hover { background: #fff; border-color: var(--green); transform: translateY(-1px); }
/* the band is already green-soft, so the chip has to invert there */
.svcband .pricetag { background: var(--surface); }
.svcband .pricetag:hover { border-color: var(--green); }

.svc__foot, .svcwide__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: .625rem 1.5rem;
}
/* beats the `> * + *` flow spacing these two blocks live inside */
.svc__text .svc__foot,
.svcwide__text .svcwide__foot { margin-top: 1.25rem; }
.svc__foot .link-arrow, .svcwide__foot .link-arrow { margin-top: 0; }
.svcband__body .pricetag { margin-top: .875rem; }

/* dark band that sends people to the price list */
.priceband {
  display: grid; gap: 1.5rem;
  padding: clamp(1.75rem, 4.5vw, 3rem);
  border-radius: var(--r-lg);
  background: var(--night);
  color: rgba(255,255,255,.72);
}
.priceband__t {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.375rem, 1.1rem + 1.4vw, 1.875rem);
  font-weight: 700; letter-spacing: -.022em; line-height: 1.2; color: #fff;
  text-wrap: balance;
}
.priceband__s { font-size: var(--fs-sm); color: rgba(255,255,255,.66); margin-top: .625rem; max-width: 52ch; }
.priceband__acts { display: flex; flex-wrap: wrap; gap: .625rem; }
.priceband__acts .btn { flex: 1 1 auto; }
.priceband .btn--outline {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: #fff;
}
.priceband .btn--outline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); color: #fff; }
@media (min-width: 820px) {
  .priceband { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2.5rem; }
  .priceband__acts .btn { flex: 0 0 auto; }
}

/* the quote card flashes when a CTA sends you to it */
.qcard { transition: box-shadow .45s var(--ease), border-color .45s var(--ease); }
.qcard.is-target {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(78,125,59,.18), var(--sh-lg);
}

/* ---------- 22. MOTION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* keep hover-zoom off touch devices where it can only be triggered by tapping */
@media (hover: none) {
  .gal__i:hover img,
  .svc:hover .svc__media img,
  .about__img:hover img,
  .svcwide__img:hover img { transform: none; }
}
