/* =============================================================
   Leon Maid Cleaning Services — Premium
   Archetype: Editorial Dark Warm (burgundy + gold, from the crest)
   Signature: "squeegee wipe" image reveal with a gold glint
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:      #120b0a;
  --bg-2:    #180f0e;
  --bg-3:    #211513;
  --bg-4:    #2b1c19;
  --cream:   #f3ead9;
  --cream-2: #d8cbb3;
  --cream-3: #a89a84;
  --wine:    #8e2433;
  --wine-2:  #6b1824;
  --gold:    #d8b26a;
  --gold-2:  #b88f47;
  --gold-3:  #f0d9a4;
  --line:    rgba(243, 234, 217, 0.1);
  --line-2:  rgba(243, 234, 217, 0.18);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-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);

  --container: 1240px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 20px;
  --header-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  background: var(--bg);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
[hidden] { display: none !important; }
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: 500;
  color: var(--cream);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
em { font-style: italic; }
h1 em, h2 em, h3 em { color: var(--gold); font-weight: 500; }
strong { color: var(--cream); font-weight: 600; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--gold); color: var(--bg);
  border-radius: 10px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { position: relative; padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section--tint { background: var(--bg-2); }

.kicker {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: ""; width: 2.2rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .kicker::after {
  content: ""; width: 2.2rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  margin-top: 1.1rem;
}
.section-sub {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--cream-3);
  max-width: 38rem;
}
.section-head.is-center .section-sub { margin-inline: auto; }

.ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: var(--gold); opacity: .7;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: min(18vw, 140px);
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.ornament::after { transform: scaleX(-1); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 3.2rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background-color .3s, color .3s, border-color .3s;
}
.btn svg { flex-shrink: 0; }
.btn-gold {
  color: #1a100c;
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 45%, var(--gold-2) 100%);
  box-shadow: 0 10px 30px -12px rgba(216, 178, 106, .55), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
}
.btn-wine {
  color: var(--cream);
  background: linear-gradient(135deg, #a42c3d 0%, var(--wine) 50%, var(--wine-2) 100%);
  box-shadow: 0 10px 30px -12px rgba(142, 36, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid var(--line-2);
  background: rgba(243, 234, 217, .03);
}
.btn-sm { min-height: 2.5rem; padding: .5rem 1.05rem; font-size: .82rem; }
.btn-block { width: 100%; }
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn-gold:hover { box-shadow: 0 18px 40px -14px rgba(216, 178, 106, .7), inset 0 1px 0 rgba(255, 255, 255, .45); }
  .btn-gold:hover::after { transform: translateX(120%); }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-3); }
  .btn-wine:hover { box-shadow: 0 18px 40px -14px rgba(142, 36, 51, .95); }
}
.btn[disabled] { opacity: .6; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold); font-weight: 600; font-size: .9rem;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .5s var(--ease-out);
}
.link-arrow:hover { background-size: 100% 1px; }

/* =============================================================
   5. Announcement bar + header
   ============================================================= */
.announce-bar {
  position: relative; z-index: 60;
  padding: .55rem var(--gutter);
  text-align: center;
  font-size: .8rem; letter-spacing: .02em;
  color: var(--cream-2);
  background: linear-gradient(90deg, var(--wine-2), var(--wine) 50%, var(--wine-2));
}
.announce-bar a { color: var(--gold-3); font-weight: 600; border-bottom: 1px solid rgba(240, 217, 164, .5); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background-color .45s var(--ease-soft), border-color .45s, box-shadow .45s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(18, 11, 10, .94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, .8);
}
@supports ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
  .site-header.is-scrolled {
    background: rgba(18, 11, 10, .78);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .5)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.5rem; letter-spacing: .02em; color: var(--cream);
}
.brand-text small {
  margin-top: .3rem;
  font-size: .56rem; font-weight: 600; letter-spacing: .3em; color: var(--gold);
}
.nav-links { display: none; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links a {
  position: relative;
  font-size: .86rem; font-weight: 500; color: var(--cream-2);
  white-space: nowrap;
  padding-block: .4rem;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-phone {
  display: none; align-items: center; gap: .5rem;
  font-size: .86rem; font-weight: 600; color: var(--cream);
  white-space: nowrap;
}
.nav-phone svg { color: var(--gold); }
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.3rem; min-width: 2.6rem; padding-inline: .7rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--cream-2);
  transition: border-color .3s, color .3s;
}
.lang-switch:hover { border-color: var(--gold); color: var(--gold-3); }
.nav-cta { display: none; }
.nav-toggle {
  position: relative; width: 2.8rem; height: 2.8rem;
  border: 1px solid var(--line-2); border-radius: 50%;
}
.nav-toggle span, .nav-toggle span::before {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 1.5px; background: var(--cream);
  transition: transform .4s var(--ease-out);
}
.nav-toggle span { transform: translate(-50%, -4px); }
.nav-toggle span::before { content: ""; left: 0; top: 0; transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(-90deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; justify-content: center; gap: .3rem;
  padding: calc(var(--header-h) + 3rem) var(--gutter) 3rem;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(142, 36, 51, .35), transparent 70%),
    var(--bg);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease-out), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 2.8rem); color: var(--cream);
  line-height: 1.25;
  transform: translateY(14px); opacity: 0;
  transition: transform .6s var(--ease-out), opacity .6s var(--ease-out), color .3s;
}
.mobile-menu.is-open a { transform: none; opacity: 1; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: .04s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: .08s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: .12s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: .16s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: .2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-menu-phone {
  margin-top: 1.6rem; font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--gold);
}
body.menu-open { overflow: hidden; }

/* Mobile bottom action bar */
.mobile-cta {
  position: fixed; left: .75rem; right: .75rem; bottom: .75rem; z-index: 40;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: .5rem;
  padding: .45rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(24, 15, 14, .95);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, .8);
  transform: translateY(140%);
  transition: transform .6s var(--ease-out);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { min-height: 2.9rem; padding-inline: 1rem; font-size: .86rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
  isolation: isolate;
}
.hero-glow {
  position: absolute; inset: -30% -10% -10% -10%; z-index: -2;
  background:
    radial-gradient(40% 45% at 78% 30%, rgba(142, 36, 51, .5), transparent 70%),
    radial-gradient(30% 35% at 12% 70%, rgba(216, 178, 106, .12), transparent 70%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-crest {
  position: absolute; z-index: -1; pointer-events: none;
  width: min(760px, 110vw); left: -18%; top: 4%;
  opacity: .06; filter: grayscale(1) brightness(1.6);
}
.hero-grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; }
.hero-copy { position: relative; }
.hero-title {
  margin-top: 1.4rem;
  font-size: clamp(2.9rem, 9vw, 5.6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -0.02em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.hero-title .line > span { display: inline-block; }
.hero-title em { font-weight: 500; }
.hero-sub {
  margin-top: 1.6rem; max-width: 34rem;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--cream-2);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  margin-top: 2.2rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .84rem; font-weight: 500; color: var(--cream-2);
}
.hero-trust svg { color: var(--gold); }

.hero-visual { position: relative; max-width: 520px; width: 100%; margin-inline: auto; }
.arch {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .9);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  content: ""; position: absolute; inset: -14px; z-index: -1;
  border: 1px solid rgba(216, 178, 106, .35);
  border-radius: 999px 999px 36px 36px;
}
.hero-seal {
  position: absolute; left: -6%; bottom: 8%;
  width: clamp(140px, 30vw, 196px); aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #241715 55%, #1a100f 100%);
  border: 1px solid rgba(216, 178, 106, .4);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .9);
}
.hero-seal svg.seal-ring { position: absolute; inset: 6%; width: 88%; height: 88%; animation: spin 38s linear infinite; }
.hero-seal svg.seal-ring text {
  font-family: var(--sans); font-size: 9.4px; font-weight: 700; letter-spacing: 2.6px; fill: var(--gold);
}
.hero-seal img { width: 38%; height: 38%; object-fit: contain; }
.hero-note {
  position: absolute; right: -4%; top: 16%;
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem;
  border: 1px solid var(--line-2); border-radius: 14px;
  background: rgba(24, 15, 14, .92);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .9);
  font-size: .8rem; font-weight: 600; color: var(--cream);
}
@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .hero-note { background: rgba(24, 15, 14, .6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.hero-note small { display: block; font-size: .7rem; font-weight: 500; color: var(--cream-3); }
.pulse-dot {
  position: relative; width: 9px; height: 9px; border-radius: 50%; background: #6fcf8e; flex-shrink: 0;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid #6fcf8e; animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse { from { transform: scale(.5); opacity: 1; } to { transform: scale(1.6); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================================
   7. Marquee ribbon
   ============================================================= */
.ribbon {
  position: relative;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 1.35rem;
}
.ribbon-track {
  display: flex; width: max-content;
  animation: marquee 48s linear infinite;
}
.ribbon:hover .ribbon-track { animation-play-state: paused; }
.ribbon-group { display: flex; align-items: center; flex-shrink: 0; }
.ribbon-group span {
  display: inline-flex; align-items: center; gap: 2.2rem; padding-right: 2.2rem;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--cream); white-space: nowrap;
}
.ribbon-group span::after { content: "✦"; font-style: normal; font-size: .8rem; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   8. Why + stats
   ============================================================= */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.stat {
  padding: clamp(1.6rem, 3vw, 2.4rem) 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.stat-num {
  display: block;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3rem, 7vw, 4.8rem); line-height: 1;
  color: var(--cream);
  font-variant-numeric: lining-nums tabular-nums;
}
.stat-num sup, .stat-num small { font-size: .45em; color: var(--gold); vertical-align: super; margin-left: .05em; }
.stat-label {
  display: block; margin-top: .6rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-3);
}
.pillars { display: grid; gap: 1.2rem; }
.pillar {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(243, 234, 217, .03), rgba(243, 234, 217, 0));
}
.pillar-num {
  display: block;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold);
}
.pillar h3 { margin-top: 1.4rem; font-size: clamp(1.6rem, 2.4vw, 2rem); }
.pillar p { margin-top: .8rem; color: var(--cream-3); }
.pillar-icon {
  position: absolute; top: clamp(1.6rem, 3vw, 2.2rem); right: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold); opacity: .8;
}

/* =============================================================
   9. Cards with polish sheen (support effect)
   ============================================================= */
.sheen { position: relative; --mx: 50%; --my: 0%; }
.sheen::before, .sheen::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.sheen::before {
  background: radial-gradient(520px circle at var(--mx) var(--my), rgba(216, 178, 106, .1), transparent 45%);
}
.sheen::after {
  padding: 1px;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(240, 217, 164, .75), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
@media (hover: hover) {
  .sheen:hover::before, .sheen:hover::after { opacity: 1; }
}

/* =============================================================
   10. Services / pricing
   ============================================================= */
.services-grid { display: grid; gap: 1.2rem; }
.service-card {
  display: flex; flex-direction: column;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
  transition: transform .6s var(--ease-out), border-color .4s, box-shadow .6s var(--ease-out);
}
@media (hover: hover) {
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(0, 0, 0, .9); }
}
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.service-icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(216, 178, 106, .3);
  background: rgba(216, 178, 106, .06);
}
.service-index { font-family: var(--serif); font-style: italic; color: var(--cream-3); font-size: 1rem; }
.service-card h3 { margin-top: 1.5rem; font-size: clamp(1.7rem, 2.4vw, 2.05rem); }
.service-card .blurb { margin-top: .7rem; color: var(--cream-3); font-size: .96rem; }
.price-label {
  margin-top: 1.6rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-3);
}
.price-single {
  margin-top: 1.4rem;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.3rem, 3.6vw, 2.9rem); line-height: 1;
  color: var(--gold-3);
  font-variant-numeric: lining-nums;
}
.price-label + .price-single { margin-top: .4rem; }
.price-single small { font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--cream-3); letter-spacing: 0; }
.tier-list { margin-top: .8rem; }
.tier-row {
  display: flex; align-items: baseline; gap: .6rem;
  padding-block: .6rem;
  font-size: .95rem;
}
.tier-row + .tier-row { border-top: 1px solid var(--line); }
.tier-row .size { color: var(--cream-2); }
.tier-row .dots { flex: 1; border-bottom: 1px dotted rgba(243, 234, 217, .25); transform: translateY(-4px); }
.tier-row .price { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--gold-3); font-variant-numeric: lining-nums; }
.include-list { margin-top: 1.4rem; display: grid; gap: .55rem; }
.include-row { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: var(--cream-2); }
.include-row svg { margin-top: .25rem; color: var(--gold); flex-shrink: 0; }
.service-note {
  margin-top: auto; padding-top: 1.4rem;
  font-size: .82rem; color: var(--cream-3);
}
.service-card .include-list + .service-note, .service-card .tier-list + .include-list + .service-note { margin-top: auto; }
.service-card > .service-note { border-top: 0; }
.service-card.is-featured {
  border-color: rgba(216, 178, 106, .45);
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(142, 36, 51, .45), transparent 60%),
    var(--bg-3);
}
.plan-ribbon {
  display: inline-flex; align-items: center;
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #1a100c; background: linear-gradient(135deg, var(--gold-3), var(--gold));
}

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  display: grid; gap: 1.6rem; align-items: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(216, 178, 106, .3);
  background:
    radial-gradient(60% 120% at 0% 50%, rgba(142, 36, 51, .55), transparent 70%),
    linear-gradient(135deg, #24110f, #170d0c);
}
.cta-band h3 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { margin-top: .5rem; color: var(--cream-2); }
.cta-band-crest {
  position: absolute; right: -60px; top: 50%; width: 280px; transform: translateY(-50%);
  opacity: .12; pointer-events: none;
}
.cta-band > div, .cta-band > .btn { position: relative; }

/* =============================================================
   11. Process
   ============================================================= */
.process { position: relative; display: grid; gap: 3rem; }
.process-line { display: none; }
.process-item { position: relative; text-align: center; }
.process-photo {
  position: relative;
  width: min(250px, 72vw); aspect-ratio: 4 / 5; margin-inline: auto;
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.process-photo img { width: 100%; height: 100%; object-fit: cover; }
.process-num {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 3.2rem; height: 3.2rem; margin: -1.6rem auto 0;
  border-radius: 50%;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; font-weight: 600;
  color: #1a100c;
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 50%, var(--gold-2));
  box-shadow: 0 0 0 6px var(--bg-2);
}
.process-item h3 { margin-top: 1.3rem; font-size: clamp(1.6rem, 2.4vw, 1.95rem); }
.process-item p { margin: .6rem auto 0; max-width: 20rem; color: var(--cream-3); }

/* =============================================================
   12. About / story
   ============================================================= */
.about-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.about-media { position: relative; }
.about-photo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.milestone {
  position: absolute; right: -4%; bottom: -6%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: clamp(130px, 30vw, 170px); aspect-ratio: 1;
  border-radius: 50%;
  text-align: center;
  color: #1a100c;
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 50%, var(--gold-2));
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9), 0 0 0 8px var(--bg);
}
.milestone strong { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 3.4rem); line-height: .9; color: #1a100c; font-weight: 600; }
.milestone span { margin-top: .3rem; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.about-text p { margin-top: 1.2rem; font-size: 1.04rem; color: var(--cream-2); }
.about-text .lede {
  margin-top: 1.6rem;
  font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 1.75rem); line-height: 1.35; color: var(--cream);
}
.timeline { position: relative; margin-top: 2.2rem; display: grid; gap: 0; }
.timeline::before {
  content: ""; position: absolute; left: 0; top: .3rem; bottom: .3rem; width: 1px;
  background: linear-gradient(180deg, var(--gold) calc(var(--fill, 0) * 100%), rgba(216, 178, 106, .22) 0);
  transition: background .8s var(--ease-out);
}
.timeline-item { position: relative; padding: 0 0 1.4rem 1.6rem; }
.timeline-item::before {
  content: ""; position: absolute; left: -11px; top: .35rem;
  width: 22px; height: 22px;
  background: url("assets/3d/timeline-stud.webp") center / contain no-repeat;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .6));
  transform: scale(var(--bead, .7));
  transition: transform .7s var(--ease-out);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold-3); line-height: 1.1; }
.timeline-item p { margin-top: .2rem; font-size: .95rem; color: var(--cream-3); }
.team { margin-top: 2.4rem; display: grid; gap: .8rem; }
.team-member {
  display: flex; align-items: center; gap: 1rem;
  padding: .8rem 1rem .8rem .8rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(243, 234, 217, .02);
}
.team-avatar {
  width: 3.4rem; height: 3.4rem; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid rgba(216, 178, 106, .5);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-member strong { display: block; font-size: .98rem; }
.team-member span { font-size: .8rem; color: var(--gold); letter-spacing: .04em; }

/* =============================================================
   13. Community
   ============================================================= */
.community-grid { display: grid; gap: 1.2rem; }
.community-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-3);
}
.community-photo .wipe { aspect-ratio: 16 / 10; }
.community-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
@media (hover: hover) { .community-photo:hover img { transform: scale(1.04); } }
.community-photo figcaption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  display: inline-flex; width: fit-content;
  padding: .5rem .9rem; border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: var(--cream);
  background: rgba(18, 11, 10, .82);
  border: 1px solid var(--line-2);
}
.community-text {
  max-width: 50rem; margin: clamp(2rem, 4vw, 3rem) auto 0;
  text-align: center;
  font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.75rem); line-height: 1.45; color: var(--cream-2);
}
.community-text strong { font-weight: 600; color: var(--gold-3); }

/* =============================================================
   14. Testimonials + review form
   ============================================================= */
.testimonial-grid { display: grid; gap: 1.2rem; }
.testimonial-card {
  display: flex; flex-direction: column;
  padding: clamp(1.8rem, 3vw, 2.2rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-3);
}
.stars { color: var(--gold); letter-spacing: .2em; font-size: .9rem; }
.quote-mark { font-family: var(--serif); font-size: 4.4rem; line-height: .6; color: rgba(216, 178, 106, .45); margin-top: 1.4rem; height: 2rem; }
.testimonial-card .text { margin-top: .6rem; font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; color: var(--cream); }
.testimonial-card .text { white-space: pre-line; overflow-wrap: anywhere; }
.review-author { margin-top: auto; padding-top: 1.4rem; display: flex; flex-direction: column; gap: .15rem; }
.review-author strong { font-size: .95rem; }
.review-author span { font-size: .8rem; color: var(--cream-3); }
.reviews-empty {
  grid-column: 1 / -1; width: 100%; max-width: 40rem; margin-inline: auto;
  align-items: center; text-align: center;
}
.reviews-empty .text { margin-bottom: 1.2rem; }
.reviews-summary {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.2rem; padding: .5rem 1.1rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .9rem; color: var(--cream-2);
}
.reviews-summary strong { font-family: var(--serif); font-size: 1.4rem; line-height: 1; color: var(--gold-3); }
.reviews-more-row { text-align: center; }
.reviews-more-row .btn { margin-top: 2rem; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* =============================================================
   15. Forms (shared)
   ============================================================= */
.form-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line-2);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, #221614, #1a1110);
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .95);
}
.form-card::before {
  content: ""; position: absolute; left: 10%; right: 10%; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; position: relative; }
.field > label, .field-label {
  font-size: .76rem; font-weight: 600; letter-spacing: .06em; color: var(--cream-2);
}
.field input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.field textarea,
.field select,
.map-search-row input {
  width: 100%;
  min-height: 3.1rem;
  padding: .8rem 1rem;
  font: inherit; font-size: .95rem;
  color: var(--cream);
  background: rgba(243, 234, 217, .04);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder, .map-search-row input::placeholder { color: rgba(168, 154, 132, .7); }
.field input:focus, .field textarea:focus, .field select:focus, .map-search-row input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(243, 234, 217, .06);
  box-shadow: 0 0 0 4px rgba(216, 178, 106, .14);
}
.field input:-webkit-autofill, .field textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--cream);
  box-shadow: 0 0 0 1000px #2a1c19 inset;
  caret-color: var(--cream);
}
.field input[type="file"] {
  width: 100%; padding: .55rem; font-size: .88rem; color: var(--cream-3);
  border: 1px dashed var(--line-2); border-radius: 12px; background: rgba(243, 234, 217, .03);
}
.field input[type="file"]::file-selector-button {
  margin-right: .9rem; padding: .55rem 1rem; border: 0; border-radius: 999px;
  font: inherit; font-weight: 600; font-size: .82rem; color: #1a100c; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
}
.radio-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-opt {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .6rem 1rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .9rem; color: var(--cream-2); cursor: pointer;
  transition: border-color .3s, background-color .3s;
}
.radio-opt:has(input:checked) { border-color: var(--gold); background: rgba(216, 178, 106, .08); color: var(--cream); }
.radio-opt input, .consent-check input { accent-color: var(--gold); width: 1.05rem; height: 1.05rem; }
.field-note { font-size: .82rem; color: var(--gold-3); }
.consent-check {
  display: flex; align-items: flex-start; gap: .75rem;
  margin: .6rem 0 1.4rem;
  font-size: .86rem; color: var(--cream-3); cursor: pointer;
}
.consent-check input { margin-top: .2rem; flex-shrink: 0; }
.form-note { margin-top: .9rem; text-align: center; font-size: .78rem; color: var(--cream-3); }
.notice {
  margin: .4rem 0 1rem; padding: 1rem 1.1rem;
  border-radius: 12px; border: 1px solid var(--line);
  background: rgba(243, 234, 217, .03);
  font-size: .86rem; color: var(--cream-3);
}
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.is-visible { display: block; animation: fadeUp .8s var(--ease-out) both; }
.is-submitted > form { display: none; }
.form-success .success-mark {
  width: 4rem; height: 4rem; margin: 0 auto 1.2rem;
  display: grid; place-items: center; border-radius: 50%;
  color: #1a100c; background: linear-gradient(135deg, var(--gold-3), var(--gold));
}
.form-success h3 { font-size: 2.2rem; }
.form-success p { margin-top: .6rem; color: var(--cream-2); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Custom select */
.csel { position: relative; }
.csel-native { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.csel-trigger {
  width: 100%; min-height: 3.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .8rem 1rem;
  text-align: left; font-size: .95rem; color: var(--cream);
  background: rgba(243, 234, 217, .04);
  border: 1px solid var(--line-2); border-radius: 12px;
  transition: border-color .3s, box-shadow .3s;
}
.csel-trigger:focus-visible, .csel.is-open .csel-trigger {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216, 178, 106, .14);
}
.csel-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.csel-label.is-placeholder { color: rgba(168, 154, 132, .8); }
.csel-arrow { color: var(--gold); transition: transform .4s var(--ease-out); }
.csel.is-open .csel-arrow { transform: rotate(180deg); }
.csel-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30;
  max-height: 16rem; overflow: auto;
  padding: .35rem;
  border: 1px solid var(--line-2); border-radius: 14px;
  background: #2a1c19;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
}
.csel.is-open .csel-list { opacity: 1; visibility: visible; transform: none; }
.csel-option { padding: .65rem .8rem; border-radius: 9px; font-size: .92rem; color: var(--cream-2); cursor: pointer; }
.csel-option:hover { background: rgba(216, 178, 106, .1); color: var(--cream); }
.csel-option.is-selected { color: var(--gold-3); background: rgba(216, 178, 106, .12); }

/* Star rating */
.star-rating {
  display: flex; flex-direction: row-reverse; justify-content: center; gap: .3rem;
}
.star-rating input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-rating label {
  font-size: 2.1rem; line-height: 1; color: rgba(243, 234, 217, .18); cursor: pointer;
  transition: color .2s, transform .3s var(--ease-out);
}
.star-rating label:hover, .star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: var(--gold); }
.star-rating label:hover { transform: scale(1.15); }
.star-rating input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.review-card { max-width: 42rem; margin: clamp(3rem, 6vw, 4.5rem) auto 0; }
.review-head { text-align: center; margin-bottom: 1.8rem; }
.review-head h3 { font-size: clamp(2rem, 3.4vw, 2.6rem); }
.review-head p { margin-top: .5rem; color: var(--cream-3); }

/* Quote estimate */
.quote-estimate {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  margin: .4rem 0 1.2rem; padding: 1.3rem 1.2rem;
  text-align: center;
  border-radius: 16px;
  border: 1px dashed rgba(216, 178, 106, .4);
  background: radial-gradient(80% 120% at 50% 0%, rgba(216, 178, 106, .08), transparent 70%);
}
.quote-estimate-label { font-size: .9rem; color: var(--cream-2); }
.quote-estimate-price {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem, 6vw, 3.6rem); line-height: 1.05;
  color: var(--gold-3); font-variant-numeric: lining-nums;
  animation: fadeUp .6s var(--ease-out) both;
}
.quote-estimate-note { font-size: .78rem; color: var(--cream-3); max-width: 30rem; }

/* Pressure washing map tool */
.map-tool-card {
  margin-bottom: 1rem; padding: 1rem;
  border: 1px solid var(--line-2); border-radius: 16px;
  background: rgba(243, 234, 217, .02);
}
.map-tool-label { font-size: .9rem; font-weight: 600; color: var(--cream); margin-bottom: .8rem; }
.map-tool-label span { font-weight: 400; color: var(--cream-3); }
.map-search-row { display: flex; gap: .5rem; margin-bottom: .8rem; }
.map-search-row input { min-height: 2.6rem; padding-block: .5rem; }
.pressure-map { height: 320px; border-radius: 12px; overflow: hidden; background: var(--bg-4); }
.map-hint { margin-top: .7rem; font-size: .82rem; color: var(--cream-3); text-align: center; }
.map-tool-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: .7rem; }
.map-result-row { margin-top: .9rem; }
.map-result-box {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: .7rem 1rem; border-radius: 12px; background: rgba(216, 178, 106, .08);
}
.map-result-label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); }
.map-result-value { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold-3); }
.map-manual-toggle { margin-top: .8rem; font-size: .84rem; font-weight: 600; color: var(--gold); }
.map-manual-toggle:hover { color: var(--gold-3); }
.leaflet-container { font-family: var(--sans); }

/* =============================================================
   16. Service area
   ============================================================= */
.area-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.area-tag {
  padding: .65rem 1.1rem; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--cream);
  border: 1px solid var(--line-2); background: rgba(243, 234, 217, .03);
  transition: border-color .3s, color .3s;
}
.area-tag:hover { border-color: var(--gold); color: var(--gold-3); }
.area-visual {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 1 / .82;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 46%, rgba(142, 36, 51, .35), transparent 55%),
    repeating-linear-gradient(0deg, rgba(243, 234, 217, .035) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(243, 234, 217, .035) 0 1px, transparent 1px 44px),
    var(--bg-3);
  overflow: hidden;
}
.radar { position: relative; width: 58%; aspect-ratio: 1; display: grid; place-items: center; }
.radar span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(216, 178, 106, .35);
  animation: radar 4.8s var(--ease-soft) infinite;
}
.radar span:nth-child(2) { animation-delay: 1.6s; }
.radar span:nth-child(3) { animation-delay: 3.2s; }
@keyframes radar { from { transform: scale(.2); opacity: 1; } to { transform: scale(1); opacity: 0; } }
.radar-pin {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 4rem; height: 4rem; border-radius: 50%;
  color: #1a100c;
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 50%, var(--gold-2));
  box-shadow: 0 0 0 10px rgba(216, 178, 106, .12), 0 20px 40px -10px rgba(0, 0, 0, .8);
}
.area-caption { position: absolute; left: 0; right: 0; bottom: 1.4rem; text-align: center; }
.area-caption strong { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.area-caption span { font-size: .84rem; color: var(--cream-3); }
.area-city {
  position: absolute; font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-3);
}
.area-city::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: .45rem; border-radius: 50%; background: var(--gold); vertical-align: middle; }
.area-city.c1 { top: 16%; left: 12%; }
.area-city.c2 { top: 26%; right: 10%; }

/* =============================================================
   17. FAQ
   ============================================================= */
.faq-wrap { max-width: 56rem; margin-inline: auto; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 500; line-height: 1.25; color: var(--cream);
  transition: color .3s;
}
.faq-q:hover { color: var(--gold-3); }
.faq-icon {
  position: relative; flex-shrink: 0;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: border-color .3s, background-color .3s, transform .5s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px; background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .5s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-icon { background: rgba(216, 178, 106, .1); border-color: var(--gold); transform: rotate(180deg); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease-out); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 3.5rem 1.6rem 0; color: var(--cream-3); font-size: 1rem; }

/* =============================================================
   18. Contact + careers
   ============================================================= */
.contact {
  background:
    radial-gradient(50% 50% at 0% 0%, rgba(142, 36, 51, .28), transparent 70%),
    var(--bg-2);
}
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-info { margin-top: 2.4rem; display: grid; gap: 1.4rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item .ic {
  display: grid; place-items: center; flex-shrink: 0;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  color: var(--gold); border: 1px solid rgba(216, 178, 106, .3); background: rgba(216, 178, 106, .06);
}
.contact-info-item strong { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-3); }
.contact-info-item a, .contact-info-item span { font-size: 1rem; color: var(--cream); }
.contact-info-item a:hover { color: var(--gold-3); }
.contact-payment {
  margin-top: 2.2rem; padding: 1.1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(243, 234, 217, .03);
  font-size: .92rem; color: var(--cream-2);
  border-radius: 0 12px 12px 0;
}
.careers-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.careers-perks { margin-top: 2rem; display: grid; gap: .8rem; }
.careers-perks div { display: flex; gap: .7rem; align-items: flex-start; color: var(--cream-2); font-size: .96rem; }
.careers-perks svg { color: var(--gold); margin-top: .25rem; flex-shrink: 0; }

/* =============================================================
   19. Footer
   ============================================================= */
.site-footer {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6rem) 2rem;
  border-top: 1px solid var(--line);
  background: #0d0807;
  overflow: hidden;
}
.footer-crest-bg {
  position: absolute; right: -8%; bottom: -30%; width: min(560px, 90vw);
  opacity: .04; filter: grayscale(1) brightness(1.8); pointer-events: none;
}
.footer-top { display: grid; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 64px; height: 64px; }
.footer-brand b { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--cream); line-height: 1; }
.footer-brand small { display: block; margin-top: .35rem; font-size: .6rem; font-weight: 600; letter-spacing: .3em; color: var(--gold); }
.footer-about { margin-top: 1.2rem; max-width: 24rem; color: var(--cream-3); font-size: .95rem; }
.footer-col h4 {
  font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col span { display: block; padding-block: .3rem; color: var(--cream-2); font-size: .95rem; }
.footer-col a:hover { color: var(--gold-3); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem; padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--cream-2);
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out),
              background-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.footer-social a:hover, .footer-social a:focus-visible {
  color: var(--gold-3);
  border-color: rgba(216, 178, 106, .6);
  background: rgba(216, 178, 106, .12);
  transform: translateY(-2px);
}
.footer-col .btn { display: inline-flex; padding: .5rem 1.05rem; color: #1a100c; }
.footer-col .btn:hover { color: #1a100c; }
.footer-bottom {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 2rem;
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--cream-3);
}
.footer-bottom a { color: var(--gold); }

/* =============================================================
   20. Effects — reveals + signature wipe
   ============================================================= */
.js .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  animation: revealSafety .01s 6s forwards;
}
.js .reveal.is-visible { opacity: 1; transform: none; animation: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal[data-delay="3"] { transition-delay: .3s; }
@keyframes revealSafety { to { opacity: 1; transform: none; } }

/* Signature: squeegee wipe — a diagonal clean pass with a gold glint */
.wipe { position: relative; overflow: hidden; }
.wipe img { width: 100%; height: 100%; object-fit: cover; }
.js .wipe img {
  clip-path: polygon(0% 0%, 0% 0%, -30% 100%, -30% 100%);
  transform: scale(1.08);
  transition: clip-path 1.5s cubic-bezier(.65, 0, .25, 1), transform 2.2s var(--ease-out);
  animation: wipeSafety .01s 6s forwards;
}
.js .wipe.is-wiped img {
  clip-path: polygon(0% 0%, 130% 0%, 100% 100%, -30% 100%);
  transform: none;
  animation: none;
}
.wipe::after {
  content: ""; position: absolute; top: -10%; bottom: -10%; left: 0; z-index: 2;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(240, 217, 164, .15) 35%, rgba(255, 244, 214, .85) 50%, rgba(240, 217, 164, .15) 65%, transparent);
  transform: translateX(-160%) skewX(-16deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.js .wipe.is-wiped::after { animation: glint 1.5s cubic-bezier(.65, 0, .25, 1) forwards; }
@keyframes glint {
  0%   { transform: translateX(-160%) skewX(-16deg); opacity: 0; }
  12%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(620%) skewX(-16deg); opacity: 0; }
}
@keyframes wipeSafety { to { clip-path: polygon(0% 0%, 130% 0%, 100% 100%, -30% 100%); transform: none; } }

/* Hero intro — line mask reveal */
.js .hero-title .line > span {
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-out);
  animation: lineSafety .01s 4s forwards;
}
.js .hero-title .line:nth-child(2) > span { transition-delay: .09s; }
.js .hero-title .line:nth-child(3) > span { transition-delay: .18s; }
.js.is-loaded .hero-title .line > span { transform: none; animation: none; }
.js .hero-fade {
  opacity: 0; transform: translateY(18px);
  transition: opacity 1s var(--ease-out) .35s, transform 1s var(--ease-out) .35s;
  animation: revealSafety .01s 4s forwards;
}
.js .hero-fade[data-delay="2"] { transition-delay: .5s; }
.js .hero-fade[data-delay="3"] { transition-delay: .65s; }
.js.is-loaded .hero-fade { opacity: 1; transform: none; animation: none; }
@keyframes lineSafety { to { transform: none; } }

/* =============================================================
   21. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr; }
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat, .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-bottom: 0; }
  .stat:last-child { border-right: 0; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band { grid-template-columns: 1fr auto; padding-right: clamp(2rem, 18vw, 16rem); }
  .cta-band > .btn { justify-self: end; }
  .process { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-line {
    display: block; position: absolute; left: 16%; right: 16%; top: 42%; height: 2px; z-index: 0;
    width: 68%;
  }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .mobile-cta { display: none; }
}
@media (max-width: 719px) {
  body { padding-bottom: 5rem; }
  .hero-note { right: 0; top: 6%; }
  .hero-seal { left: -2%; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
  .mobile-menu { display: none; }
  .hero { padding-block: clamp(3rem, 5vw, 4.5rem) clamp(5rem, 8vw, 7.5rem); }
  .hero-grid { grid-template-columns: 1.2fr .8fr; }
  .hero-title { font-size: clamp(3.6rem, 6vw, 5.6rem); }
  .hero-visual { max-width: 460px; margin-right: 4%; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card.is-wide { grid-row: span 2; }
  .about-grid { grid-template-columns: .95fr 1.05fr; }
  .about-media { position: sticky; top: calc(var(--header-h) + 2rem); }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; }
  .careers-grid { grid-template-columns: .8fr 1.2fr; }
  .contact-sticky { position: sticky; top: calc(var(--header-h) + 2rem); }
}
@media (min-width: 1280px) {
  .nav-phone { display: inline-flex; }
}
@media (min-width: 960px) and (max-width: 1100px) {
  .nav-links { gap: .9rem; }
  .nav-links a { font-size: .8rem; }
  .brand-text small { display: none; }
}

/* =============================================================
   22. Reduced motion — only intrusive loops
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse-dot::after, .radar span { animation: none; }
  .radar span { opacity: .35; }
  .radar span:nth-child(1) { transform: scale(.45); }
  .radar span:nth-child(2) { transform: scale(.72); }
  .radar span:nth-child(3) { transform: scale(1); }
}


/* =============================================================
   23. 3D medallion (three.js) + soap bubbles
   ============================================================= */
.medallion-canvas {
  position: absolute; inset: 19%;
  width: 62%; height: 62%;
  display: none;
  border-radius: 50%;
}
.hero-seal.is-3d .medallion-canvas { display: block; animation: fadeUp .9s var(--ease-out) both; }
.hero-seal.is-3d { background: radial-gradient(circle, #1d1210 60%, #140c0b 100%); }
.hero-seal.is-3d .medallion-flat { opacity: 0; }
.medallion-flat { transition: opacity .6s var(--ease-out); }

.hero-bubbles {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.hero-bubbles span {
  position: absolute;
  left: var(--x); bottom: -12%;
  width: var(--s); height: var(--s);
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .85), rgba(255, 255, 255, .12) 38%, transparent 55%),
    conic-gradient(from 210deg, rgba(216, 178, 106, .45), rgba(142, 36, 51, .35), rgba(140, 200, 255, .35), rgba(216, 178, 106, .45));
  box-shadow: inset 0 0 12px rgba(255, 255, 255, .25);
  animation: bubbleRise var(--d, 22s) linear var(--delay, 0s) infinite;
}
@keyframes bubbleRise {
  0%   { transform: translate3d(0, 0, 0) scale(.85); opacity: 0; }
  12%  { opacity: .55; }
  50%  { transform: translate3d(26px, -55vh, 0) scale(1); opacity: .5; }
  88%  { opacity: .28; }
  100% { transform: translate3d(-18px, -108vh, 0) scale(1.08); opacity: 0; }
}

/* =============================================================
   24. Service cards — 3D tilt toward the cursor
   ============================================================= */
.services-grid { perspective: 1400px; }
.service-card {
  transform: translateY(var(--ty, 0)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card > * { transform: translateZ(0.01px); }
@media (hover: hover) {
  .service-card:hover { transform: translateY(calc(var(--ty, 0px) - 6px)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
}
@media (min-width: 960px) and (hover: hover) {
  .service-card.is-featured { --ty: -14px; }
}


/* =============================================================
   25. 3D house in the quote calculator
   ============================================================= */
.house3d {
  position: relative;
  display: none;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(70% 70% at 50% 15%, rgba(216, 178, 106, .10), transparent 70%),
    linear-gradient(180deg, #231714, #17100e);
}
.house3d.is-ready { display: block; animation: fadeUp .8s var(--ease-out) both; }
.house3d canvas { width: 100%; height: 100%; display: block; }
.house3d-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .7rem 1rem;
  text-align: center;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--cream-2);
  background: linear-gradient(180deg, transparent, rgba(18, 11, 10, .85));
}


/* =============================================================
   28. "How it works" in depth
   ============================================================= */
.process-token {
  position: relative; z-index: 2;
  display: block;
  width: 4.8rem; height: 4.8rem;
  margin: -2.4rem auto 0;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .75));
}
/* The hovered step grows and lights up; the other two only dim, they never move. */
@media (min-width: 960px) and (hover: hover) and (pointer: fine) {
  .js .process-item.is-visible {
    transform: scale(var(--s, 1));
    opacity: var(--o, 1);
    transition: transform .5s var(--ease-out), opacity .4s var(--ease-out);
  }
  .js .process-item.is-visible .process-photo {
    transition: box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
  }
  .js .process-item.is-visible .process-photo img { transition: filter .45s var(--ease-out); }
  .js .process-item.is-visible .process-token { transition: filter .45s var(--ease-out); }
  .js .process-item.is-visible h3 { transition: color .45s var(--ease-out); }

  .js .process:hover .process-item.is-visible:not(:hover) { --o: .5; }

  .js .process-item.is-visible:hover { --s: 1.07; --o: 1; }
  .js .process-item.is-visible:hover .process-photo {
    border-color: rgba(216, 178, 106, .65);
    box-shadow: 0 0 0 1px rgba(216, 178, 106, .45),
                0 0 34px -4px rgba(216, 178, 106, .5),
                0 30px 60px -28px rgba(0, 0, 0, .9);
  }
  .js .process-item.is-visible:hover .process-photo img { filter: brightness(1.14) saturate(1.08); }
  .js .process-item.is-visible:hover .process-token {
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .75)) drop-shadow(0 0 18px rgba(216, 178, 106, .7));
  }
  .js .process-item.is-visible:hover h3 { color: var(--gold-3); }
}
@media (prefers-reduced-motion: reduce) {
  .js .process-item.is-visible { transition: opacity .4s var(--ease-out); }
  .js .process-item.is-visible:hover { --s: 1; }
}


/* =============================================================
   29. Story timeline: milestones arriving from depth
   ============================================================= */
.timeline { perspective: 900px; }
.js .timeline-item {
  transform: translateZ(-140px) translateY(14px);
  opacity: .32;
  transition: transform .9s var(--ease-out), opacity .9s var(--ease-out);
}
.js .timeline-item.is-milestone-in { transform: none; opacity: 1; --bead: 1; }
.js .timeline-item.is-milestone-in .timeline-year { color: var(--gold-3); }


/* =============================================================
   30. Charlotte County relief map (rendered in Blender)
   ============================================================= */
.area-visual.is-map {
  display: block;
  aspect-ratio: 13 / 10;
  background:
    radial-gradient(60% 60% at 45% 40%, rgba(216, 178, 106, .10), transparent 70%),
    var(--bg-3);
  perspective: 1200px;
  overflow: visible;
}
.county-map {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: saturate(1.3) drop-shadow(0 30px 40px rgba(0, 0, 0, .55));
  transform: rotateX(var(--mrx, 0deg)) rotateY(var(--mry, 0deg));
  transition: transform .8s var(--ease-out);
}
.map-pin {
  position: absolute; z-index: 3;
  left: var(--x); top: calc(var(--y) + var(--dy, 0%));
  transform: translate(30px, -50%);
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(14, 8, 8, .92);
  border: 1px solid rgba(216, 178, 106, .42);
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, .9);
  color: var(--cream);
  font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
/* a pin whose label had to be nudged clear of its neighbour gets a leader back to it */
.map-pin[data-lead]::before {
  content: "";
  position: absolute; right: 100%; top: 50%;
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 178, 106, .75));
}
@media (max-width: 539px) {
  .map-pin { font-size: .6rem; padding: .2rem .45rem; }
}


/* =============================================================
   31. Reviews as a rotating 3D ring (4+ reviews, wide screens)
   ============================================================= */
.testimonial-grid.is-carousel {
  display: block;
  position: relative;
  height: 470px;
  perspective: 1500px;
  perspective-origin: 50% 45%;
}
.carousel-stage {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--depth, 300px) * -1)) rotateY(var(--rot, 0deg));
  transition: transform 1.1s var(--ease-out);
}
.is-carousel .testimonial-card {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: min(360px, 76vw);
  margin-left: calc(min(360px, 76vw) / -2);
  height: auto;
  transform: rotateY(var(--a, 0deg)) translateZ(var(--r, 420px));
  backface-visibility: hidden;
  overflow: hidden;
  opacity: .45;
  transition: opacity .8s var(--ease-out), box-shadow .8s var(--ease-out);
}
.is-carousel .testimonial-card .text {
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.is-carousel .testimonial-card.is-front {
  opacity: 1;
  box-shadow: 0 40px 70px -40px rgba(0, 0, 0, .95), 0 0 0 1px rgba(216, 178, 106, .35);
}
.carousel-nav { position: relative; z-index: 3; display: flex; justify-content: center; gap: .8rem; margin-top: 2.6rem; }
.carousel-btn {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(243, 234, 217, .03);
  color: var(--gold-3);
  font-size: 1.5rem; line-height: 1;
  transition: border-color .3s, background-color .3s, transform .5s var(--ease-out);
}
.carousel-btn:hover { border-color: var(--gold); background: rgba(216, 178, 106, .1); transform: translateY(-2px); }
