:root {
  --teal: #0d5c4d;
  --teal-dark: #083f36;
  --teal-mid: #167866;
  --mist: #e7f3ef;
  --sand: #f3eee4;
  --paper: #fbfaf7;
  --ink: #1c2629;
  --muted: #5b6a6e;
  --line: #d8e0dc;
  --brass: #b8924a;
  --white: #fff;
  --danger: #8b2e2e;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(8, 63, 54, .12);
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 20; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 108px; gap: 16px;
}
.brand img { height: 78px; width: auto; display:block; background: transparent; }
.nav { display: flex; align-items: center; gap: 6px 16px; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
}
.nav a.is-active { color: var(--teal); }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: 8px 14px; font: inherit; font-weight: 700;
}

.btn, .btn-ghost, button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; text-decoration: none; border: 0; cursor: pointer;
  background: var(--teal); color: #fff !important;
  padding: 13px 20px; border-radius: 999px; font-weight: 700;
  font-family: inherit; font-size: .95rem;
}
.btn:hover { background: var(--teal-dark); }
.btn-ghost {
  background: transparent; color: var(--teal) !important;
  border: 1.5px solid var(--teal);
}
.btn-small { padding: 8px 14px; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff !important; text-decoration: none;
  padding: 12px 20px; border-radius: 999px; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(37,211,102,.35);
}
.btn-wa svg { width: 22px; height: 22px; }
.btn-wa:hover { background: #1ebe5d; }

.hero {
  position: relative; min-height: 78vh; display: grid; align-items: end;
  color: #fff; overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,63,54,.45) 0%, rgba(8,63,54,.82) 55%, rgba(8,63,54,.92) 100%);
  pointer-events: none; z-index: 2;
}
.hero-inner { position: relative; z-index: 3; padding: 80px 0 56px; }
.eyebrow {
  letter-spacing: .16em; text-transform: uppercase; font-size: .76rem;
  font-weight: 700; color: var(--brass); margin: 0 0 10px;
}
.hero h1, h1, h2, .serif { font-family: var(--serif); font-weight: 550; letter-spacing: -.02em; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.08; margin: 0 0 16px; max-width: 16ch; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero p.lead { max-width: 46ch; font-size: 1.12rem; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.pills li {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  padding: 6px 12px; border-radius: 999px; font-size: .86rem;
}

section { padding: 72px 0; }
.section-sand { background: var(--sand); }
.section-teal { background: var(--teal-dark); color: #eef6f3; }
.section-mist { background: var(--mist); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; margin: 0 0 12px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 14px; }
h3 { font-size: 1.15rem; margin: 0 0 8px; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.kicker { color: var(--teal); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; margin-bottom: 8px; }

.grid-3, .grid-2, .grid-4 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid rgba(13,92,77,.06);
}
.card img { border-radius: 12px; margin: 0 0 16px; width: 100%; height: 190px; object-fit: cover; }
.media-card img { height: 240px; }

.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: start;
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal); color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.4rem;
}

.page-hero {
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 10% 20%, #e7f3ef, transparent 40%),
    var(--sand);
}
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.split img { border-radius: 22px; width: 100%; height: 100%; max-height: 460px; object-fit: cover; }

form.stack { display: grid; gap: 14px; }
label { font-weight: 700; font-size: .92rem; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; font: inherit; background: #fff; color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-card { background: #fff; padding: 28px; border-radius: 22px; box-shadow: var(--shadow); }
.alert {
  background: #f8e8e8; color: var(--danger); padding: 12px 14px; border-radius: 12px; font-weight: 600;
}
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.check input { width: auto; margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.site-footer { background: #102226; color: #d5e0dc; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h2 { font-family: var(--font); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.site-footer a { color: #d5e0dc; }
.footer-brand { color: #fff; font-size: 1.15rem; display: block; margin-bottom: 8px; }
.plain { list-style: none; padding: 0; margin: 0; }
.plain li { margin: 6px 0; }
.footer-bottom { border-top: 1px solid #2a3a3d; margin-top: 28px; padding-top: 16px; color: #93a3a6; font-size: .9rem; }

.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  background: #25D366; color: #fff !important; text-decoration: none;
  padding: 16px 22px; border-radius: 999px; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
}
.quote { font-family: var(--serif); font-size: 1.45rem; line-height: 1.35; }
.cities { display: flex; flex-wrap: wrap; gap: 8px; }
.cities span {
  background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; font-size: .9rem;
}
.legal { max-width: 78ch; }
.legal h2 { margin-top: 28px; }
table.simple { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
table.simple th, table.simple td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
table.simple th { background: var(--mist); }

@media (max-width: 900px) {
  .grid-3, .grid-2, .grid-4, .split, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 108px;
    background: #fff; flex-direction: column; padding: 16px; border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .hero { min-height: 88vh; }
  .brand img { height: 72px; }
}

.compare {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 0 16px;
  aspect-ratio: 3 / 2;
  background: #1c2629;
  touch-action: none;
  cursor: ew-resize;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.compare-before { clip-path: inset(0 50% 0 0); }
.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}
.compare-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.compare-line::after {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #0d5c4d;
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.compare-tag {
  position: absolute;
  top: 12px;
  z-index: 4;
  pointer-events: none;
  background: rgba(28,38,41,.78);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}
.compare-tag-l { left: 12px; }
.compare-tag-r { right: 12px; }
.compare figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  color: #fff; padding: 24px 12px 10px; font-size: .9rem;
}

.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  background: #25D366; color: #fff !important; text-decoration: none;
  padding: 16px 22px; border-radius: 999px; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
}
