/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #faf8f2;   /* warm ivory */
  --bg-2:       #f2ede0;   /* sand */
  --paper:      #ffffff;
  --forest:     #0b3d2e;   /* deep brand green */
  --forest-2:   #103f30;
  --forest-3:   #0e332a;   /* dark section bg */
  --ink:        #1c2420;   /* near-black warm */
  --ink-soft:   #384039;
  --ink-mute:   #6c7369;
  --cream:      #f4efdf;   /* text on dark */
  --cream-mute: rgba(244,239,223,0.72);
  --cream-dim:  rgba(244,239,223,0.45);
  --gold:       #b3893f;   /* matte brand gold */
  --gold-bright:#d7ad5f;
  --gold-soft:  #e8d7ac;
  --line:       rgba(28,36,32,0.1);
  --line-light: rgba(244,239,223,0.14);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 600;
  text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--forest); }
.section-title-light em { color: var(--gold-bright); }
::selection { background: var(--gold-soft); color: var(--forest); }

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

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--forest); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.placeholder-block {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(11,61,46,0.05) 0 10px, rgba(11,61,46,0.02) 10px 20px),
    linear-gradient(135deg, #e9e2cf, #d9d0b6);
  border: 1px dashed rgba(11,61,46,0.25);
}
.placeholder-label {
  font-size: 0.78rem; color: var(--ink-mute);
  letter-spacing: 0.03em; padding: 0 1.5rem; max-width: 32ch;
}

.eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--forest); }
.eyebrow-gold { color: var(--gold-bright); }

[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   4. Cursor (desktop only)
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; mix-blend-mode: difference; opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px; border: 1px solid var(--cream); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(11,61,46,0.08);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #241a08;
}
.btn-primary:hover { box-shadow: 0 22px 44px -14px rgba(179,137,63,0.55); }

.btn-ghost-light {
  border: 1px solid rgba(244,239,223,0.4);
  color: var(--cream);
  box-shadow: none;
}
.btn-ghost-light:hover { background: rgba(244,239,223,0.08); }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  background: transparent;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(250,248,242,0.9);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1320px; margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav.is-scrolled .nav-inner { padding-block: 0.8rem; }

.brand-mark { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.brand-mark-line { width: 20px; height: 1px; background: var(--gold-bright); display: none; }
.brand-mark-text {
  font-family: var(--serif); font-weight: 600; font-size: clamp(0.92rem, 4vw, 1.15rem);
  color: #fff; letter-spacing: 0.01em; white-space: nowrap;
  transition: color .4s var(--ease-out);
}
.brand-mark-text em { color: var(--gold-bright); font-style: italic; font-weight: 500; }
.nav.is-scrolled .brand-mark-text { color: var(--forest); }
.nav.is-scrolled .brand-mark-text em { color: var(--gold); }
.nav.is-scrolled .brand-mark-line { background: var(--gold); }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  position: relative; font-size: 0.92rem; font-weight: 500; padding: 0.25rem 0;
  color: #fff; transition: color .4s var(--ease-out);
}
.nav.is-scrolled .nav-link { color: var(--forest); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold-bright); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav.is-scrolled .nav-link::after { background: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-actions .lang-switch { display: none; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  padding: 3px; border-radius: 999px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out);
}
@media (min-width: 720px) {
  .nav-actions .lang-switch { display: flex; }
}
.nav.is-scrolled .lang-switch { background: rgba(11,61,46,0.06); border-color: var(--line); }
.lang-btn {
  padding: 0.3rem 0.65rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: background .3s, color .3s;
}
.nav.is-scrolled .lang-btn { color: var(--ink-mute); }
.lang-btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #241a08;
}
.lang-switch-mobile { margin-top: -0.5rem; }
.lang-switch-mobile .lang-btn { color: var(--cream-mute); }
.lang-switch-mobile .lang-btn.is-active { color: #241a08; }
.nav-phone { display: none; font-size: 0.9rem; font-weight: 600; color: #fff; transition: color .4s var(--ease-out); }
.nav.is-scrolled .nav-phone { color: var(--forest); }

.nav-cta { display: none; }
@media (min-width: 480px) {
  .nav-cta { display: inline-flex; }
}

.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0; z-index: 210; flex-shrink: 0;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: transform .3s var(--ease-out), opacity .3s, background .4s; }
.nav.is-scrolled .nav-burger span { background: var(--forest); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 195;
  background: var(--forest-3); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.nav-mobile-link { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.nav-mobile-cta { display: flex; flex-direction: column; gap: 1rem; width: min(280px, 80vw); }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex; align-items: flex-end;
  padding: clamp(6rem, 14vw, 9rem) var(--gutter) clamp(3rem, 8vw, 5rem);
  overflow: clip;
}
@media (min-width: 720px) {
  .hero { min-height: 100svh; }
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(9,30,23,0.82) 0%, rgba(9,30,23,0.66) 55%, rgba(9,30,23,0.76) 82%, rgba(250,248,242,0.98) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1320px; margin-inline: auto; width: 100%; }
.hero .eyebrow { color: var(--gold-bright); }
.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-title em { color: var(--gold-bright); }
.hero-sub {
  margin-top: 1.4rem;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 48ch;
}
.hero-cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust {
  margin-top: 2.5rem; display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap;
  color: rgba(255,255,255,0.85); font-size: 0.88rem;
}
.hero-trust-stars { color: var(--gold-bright); letter-spacing: 0.1em; font-size: 0.95rem; }
.hero-trust strong { color: #fff; }
.hero-trust-sep { opacity: 0.5; }

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee-band { background: var(--forest); padding-block: 1rem; }
.marquee { overflow: hidden; position: relative; }
.marquee-track {
  display: inline-flex; gap: 0.9rem; white-space: nowrap; will-change: transform;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cream-mute);
}
.marquee-track .dot { color: var(--gold); }

/* =============================================================
   9. Sections (generic)
   ============================================================= */
.section {
  max-width: 1320px; margin-inline: auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.section-cream { background: var(--bg-2); max-width: none; }
.section-cream > * { max-width: 1320px; margin-inline: auto; }
.section-dark { background: var(--forest-3); max-width: none; color: var(--cream); }
.section-dark > * { max-width: 1320px; margin-inline: auto; }

.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head-light { max-width: 62ch; }
.section-title { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
.section-title-light { color: #fff; }
.section-lead { margin-top: 0.9rem; color: var(--ink-mute); font-size: 1.05rem; max-width: 52ch; }
.section-lead-light { color: var(--cream-mute); }

.grid { display: grid; gap: 1.5rem; }

/* =============================================================
   10. Service cards
   ============================================================= */
.services-grid { grid-template-columns: 1fr; }
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .55s;
  position: relative; isolation: isolate;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(179,137,63,0.16), transparent 65%);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { transition-duration: .15s; border-color: rgba(179,137,63,0.35); }
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  box-shadow: 0 40px 70px -30px rgba(11,61,46,0.28), 0 0 0 1px rgba(179,137,63,0.15);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: var(--gold-soft);
  transform: translateZ(30px);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.25rem; transform: translateZ(20px); }
.service-card p { color: var(--ink-mute); font-size: 0.95rem; flex: 1; transform: translateZ(10px); }
.service-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; transform: translateZ(20px); }
.service-price { font-weight: 600; color: var(--forest); font-size: 0.9rem; }
.service-link { font-weight: 600; font-size: 0.88rem; color: var(--gold); position: relative; }
.service-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.service-link:hover::after { transform: scaleX(1); transform-origin: left; }

.included-toggle { transform: translateZ(15px); border-top: 1px solid var(--line); padding-top: 0.9rem; margin-top: -0.3rem; }
.included-toggle summary {
  list-style: none; cursor: pointer;
  font-size: 0.85rem; font-weight: 600; color: var(--forest);
  display: flex; align-items: center; gap: 0.35rem;
}
.included-toggle summary::-webkit-details-marker { display: none; }
.included-toggle summary::after { content: "+"; margin-left: auto; font-size: 1.1rem; color: var(--gold); }
.included-toggle[open] summary::after { content: "–"; }
.included-title { margin-top: 0.8rem; font-size: 0.78rem; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.04em; }
.included-list {
  margin-top: 0.6rem; padding-left: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1rem;
  font-size: 0.85rem; color: var(--ink-soft);
}
.included-list li { position: relative; padding-left: 0.9rem; }
.included-list li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* =============================================================
   10b. Incentives
   ============================================================= */
.section-offers {
  max-width: none;
  position: relative;
  background:
    radial-gradient(60% 100% at 15% 0%, rgba(179,137,63,0.16), transparent 60%),
    radial-gradient(60% 100% at 85% 100%, rgba(179,137,63,0.14), transparent 60%),
    var(--bg-2);
  border-block: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold-bright), transparent) 1;
}
.section-offers > * { max-width: 1320px; margin-inline: auto; position: relative; z-index: 1; }

.incentives-grid { grid-template-columns: 1fr; }
.incentive-card {
  background: var(--paper); border-radius: 22px;
  padding: 2.2rem 2rem; position: relative; overflow: hidden;
  border: 1px solid rgba(179,137,63,0.3);
  box-shadow: 0 30px 60px -30px rgba(11,61,46,0.3), 0 0 0 1px rgba(179,137,63,0.08) inset;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}
.incentive-card:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -30px rgba(179,137,63,0.35); }
.incentive-card::before {
  content: ""; position: absolute; inset: -60% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(179,137,63,0.22), transparent 70%);
  pointer-events: none;
}
.incentive-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 1.1rem;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #241a08; font-family: var(--serif); font-weight: 600; font-size: 1.15rem;
  box-shadow: 0 8px 20px -6px rgba(179,137,63,0.6);
}
.incentive-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.incentive-card p { color: var(--ink-mute); font-size: 0.92rem; }

/* =============================================================
   11. Trust / stats
   ============================================================= */
.trust-grid { grid-template-columns: 1fr; margin-bottom: 3.5rem; }
.trust-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: rgba(244,239,223,0.05);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  font-size: 0.95rem;
}
.trust-check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(215,173,95,0.15); color: var(--gold-bright); font-size: 0.8rem; font-weight: 700;
}

.stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  border-top: 1px solid var(--line-light); padding-top: 2.5rem;
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold-bright); font-weight: 600; }
.stat-suffix { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold-bright); }
.stat p { margin-top: 0.4rem; font-size: 0.85rem; color: var(--cream-mute); }

/* =============================================================
   12. How it works
   ============================================================= */
.steps { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.step { position: relative; padding-left: 3.5rem; }
.step-n {
  position: absolute; left: 0; top: -0.3rem;
  font-family: var(--serif); font-size: 2rem; color: var(--gold-soft);
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-mute); font-size: 0.95rem; }
.steps-note {
  margin-top: 3rem; padding: 1.2rem 1.5rem; border-radius: 14px;
  background: var(--bg-2); border: 1px dashed rgba(11,61,46,0.25);
  font-size: 0.92rem; color: var(--ink-soft); max-width: 62ch;
}

/* =============================================================
   12b. Quote calculator
   ============================================================= */
.calc-card {
  display: grid; gap: 1.5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 40px 80px -35px rgba(11,61,46,0.25);
}
.calc-form { display: flex; flex-direction: column; gap: 1.3rem; }
.calc-form > .field-select > label {
  position: static; display: block; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--forest); margin-bottom: 0.5rem;
}
.calc-form .field-select select {
  width: 100%; padding: 0.95rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23566058' stroke-width='1.6'/></svg>") right 0.9rem center / 16px no-repeat;
  color: var(--ink); font: inherit; appearance: none;
}
.calc-hint { margin-top: 0.5rem; font-size: 0.78rem; color: var(--ink-mute); }

.calc-extras {
  padding: 1.2rem; border-radius: 14px; background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.calc-extras h3 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--forest); }
.calc-extra-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.calc-extra-label { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.92rem; font-weight: 500; }
.calc-extra-note { font-size: 0.76rem; color: var(--ink-mute); font-weight: 400; max-width: 34ch; }
.calc-checkbox-label { flex-direction: row; align-items: center; gap: 0.6rem; }
.calc-checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); }

.calc-extra-row input[type="number"] {
  width: 68px; padding: 0.5rem 0.6rem; text-align: center;
  border: 1px solid var(--line); border-radius: 8px; background: var(--paper); color: var(--ink); font: inherit;
}
.calc-windows-controls { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.calc-windows-controls select {
  padding: 0.5rem 2rem 0.5rem 0.7rem; border: 1px solid var(--line); border-radius: 8px;
  background: var(--paper) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23566058' stroke-width='1.6'/></svg>") right 0.6rem center / 14px no-repeat;
  color: var(--ink); font: inherit; font-size: 0.85rem; appearance: none;
}
.calc-extra-row-windows { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

.calc-result {
  padding: 1.5rem; border-radius: 16px;
  background: linear-gradient(165deg, var(--forest), var(--forest-2));
  color: var(--cream);
  display: flex; flex-direction: column; gap: 1rem;
}
.calc-result h3 { font-size: 1rem; color: #fff; }
.calc-prompt, .calc-message { font-size: 0.9rem; color: var(--cream-mute); }
.calc-line { display: flex; align-items: center; justify-content: space-between; font-size: 0.92rem; }
.calc-line strong { color: var(--gold-bright); font-weight: 700; }
.calc-line-total {
  padding-top: 0.8rem; margin-top: 0.2rem; border-top: 1px solid var(--line-light);
  font-size: 1.1rem; font-family: var(--serif);
}
.calc-line-total strong { font-size: 1.4rem; }
.calc-extras-list { list-style: none; padding-left: 0; display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.78rem; color: var(--cream-dim); }
.calc-disclaimer { font-size: 0.76rem; color: var(--cream-dim); line-height: 1.5; }

/* =============================================================
   13. Testimonials (empty state — brand new business)
   ============================================================= */
.testimonial-empty {
  max-width: 560px; margin-inline: auto; text-align: center;
  padding: 3rem 2rem; border-radius: 20px;
  background: var(--paper); border: 1px dashed rgba(179,137,63,0.4);
}
.testimonial-empty-icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1rem;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #241a08; font-size: 1.3rem;
}
.testimonial-empty p { color: var(--ink-mute); font-size: 1.05rem; }

/* =============================================================
   14. FAQ
   ============================================================= */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.2rem 1.4rem;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold);
  transition: transform .3s var(--ease-out);
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item p { margin-top: 0.9rem; color: var(--ink-mute); font-size: 0.95rem; }

.comparison-table-wrap { margin-top: 1.2rem; overflow-x: auto; border-radius: 12px; border: 1px solid var(--line); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; min-width: 480px; }
.comparison-table th, .comparison-table td { padding: 0.55rem 0.8rem; text-align: left; white-space: nowrap; }
.comparison-table thead th {
  background: var(--forest); color: var(--cream); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.comparison-table tbody tr:nth-child(odd) { background: var(--bg-2); }
.comparison-table tbody td:first-child { font-weight: 500; color: var(--ink-soft); white-space: normal; }
.comparison-note { margin-top: 0.8rem; font-size: 0.82rem; color: var(--ink-mute); font-style: italic; }

/* =============================================================
   15. Service area
   ============================================================= */
.area-grid { display: grid; gap: 2.5rem; }
.area-list { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; }
.area-list li {
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 500; color: var(--forest);
}
.area-list li em { color: var(--ink-mute); font-style: italic; }
.area-text .btn { margin-top: 2rem; }
.area-map { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.area-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* =============================================================
   16. Contact / quote form
   ============================================================= */
.contact-grid { display: grid; gap: 3rem; }
.contact-info { margin-top: 2.5rem; display: grid; gap: 1rem; }
.contact-info-item {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1rem 1.2rem; border-radius: 14px;
  background: rgba(244,239,223,0.05); border: 1px solid var(--line-light);
}
.contact-info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream-dim); }
.contact-info-value { font-weight: 600; color: #fff; }
.contact-info-value em { color: var(--cream-mute); font-style: italic; font-weight: 400; }

.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--paper); border-radius: 22px; padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.4);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft);
}
.contact-form.is-sent {
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  position: absolute; inset: 0; z-index: -1;
}

.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.35rem 1rem 0.55rem; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg); color: var(--ink); font: inherit; resize: vertical;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1rem;
  pointer-events: none; transition: all .2s var(--ease-out);
  color: var(--ink-mute); font-size: 0.95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0.4rem; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest);
}
.field-select select {
  width: 100%; padding: 0.95rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23566058' stroke-width='1.6'/></svg>") right 0.9rem center / 16px no-repeat;
  color: var(--ink); font: inherit; appearance: none;
}
.field-select select:invalid { color: var(--ink-mute); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }

.date-picker-field { display: flex; flex-direction: column; gap: 0.5rem; }
.date-picker-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--forest); }
.date-picker {
  border: 1px solid var(--line); border-radius: 12px; padding: 1rem;
  background: var(--bg);
}
.date-picker-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }
.date-picker-nav {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.1rem; color: var(--forest); transition: background .2s;
}
.date-picker-nav:hover { background: rgba(11,61,46,0.08); }
.date-picker-nav:disabled { opacity: 0.3; pointer-events: none; }
.date-picker-weekdays, .date-picker-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.date-picker-weekdays span { text-align: center; font-size: 0.68rem; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; padding-bottom: 0.3rem; }
.date-picker-day {
  aspect-ratio: 1; display: grid; place-items: center; border-radius: 8px;
  font-size: 0.82rem; color: var(--ink-soft); background: transparent;
  transition: background .2s, color .2s;
}
.date-picker-day.is-empty { visibility: hidden; }
.date-picker-day.is-disabled { color: var(--line); cursor: default; }
.date-picker-day.is-available { cursor: pointer; background: rgba(11,61,46,0.06); font-weight: 600; color: var(--forest); }
.date-picker-day.is-available:hover { background: rgba(11,61,46,0.14); }
.date-picker-day.is-selected { background: linear-gradient(135deg, var(--gold-bright), var(--gold)) !important; color: #241a08 !important; }
.date-picker-status { margin-top: 0.7rem; font-size: 0.8rem; color: var(--ink-mute); text-align: center; }
.date-picker-status.is-error { color: #a02824; font-weight: 600; }

.cta-submit { position: relative; margin-top: 0.4rem; }
.cta-form-spinner, .cta-form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.cta-submit.is-sending .cta-form-label { opacity: 0; }
.cta-submit.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px; border: 1.5px solid rgba(36,26,8,0.3); border-top-color: #241a08;
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-fineprint { text-align: center; font-size: 0.78rem; color: var(--ink-mute); }

.cta-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  text-align: center; padding: 3.5rem 2rem;
  min-height: 22rem;
  background: var(--paper); border-radius: 22px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-soft);
}
.cta-success.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.cta-success-icon {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #241a08; font-size: 1.4rem; font-weight: 700;
}
.cta-success h3 { color: var(--forest); }
.cta-success p { color: var(--ink-mute); max-width: 34ch; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { background: var(--forest-3); color: var(--cream-mute); padding: clamp(3rem, 7vw, 5rem) var(--gutter) 2rem; }
.footer-inner { max-width: 1320px; margin-inline: auto; display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer-logo-img { width: 64px; height: 64px; border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.footer-brand p { margin-top: 1rem; max-width: 32ch; font-size: 0.9rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-bright); margin-bottom: 1rem; font-weight: 600; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-light);
  display: grid; place-items: center; transition: border-color .3s, background .3s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(215,173,95,0.1); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: 1320px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  font-size: 0.8rem;
}
.footer-credit { color: var(--cream-dim); font-size: 0.75rem; }
.footer-credit a { text-decoration: underline; }
.footer-credit a:hover { color: #fff; }

/* =============================================================
   18. Reduced motion (only intrusive)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

/* =============================================================
   19. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .incentives-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; }
}

@media (min-width: 720px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .brand-mark-line { display: block; }
  .calc-extra-row:not(.calc-extra-row-windows) { flex-wrap: nowrap; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline-block; }
  .nav-burger { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .area-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .calc-card { grid-template-columns: 1.3fr 1fr; align-items: start; }
  .calc-result { position: sticky; top: 100px; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: clamp(3.6rem, 6vw, 6rem); }
  .services-grid { grid-template-columns: repeat(5, 1fr); }
}
