:root {
  --navy: #0f2340;
  --navy-soft: #1a3158;
  --enamel: #fafbfc;
  --enamel-warm: #f4f6f8;
  --slate: #4a5568;
  --slate-soft: #6b7785;
  --line: #e1e6ec;
  --line-strong: #cfd8de;
  --brass: #c89b3c;
  --brass-soft: #e0b87a;
  --aqua: #d8e8e8;
  --good: #1f7a55;
  --bad: #b03a2e;
  --shadow-sm: 0 1px 2px rgba(15,35,64,0.06), 0 1px 3px rgba(15,35,64,0.05);
  --shadow-md: 0 4px 14px rgba(15,35,64,0.08), 0 2px 6px rgba(15,35,64,0.05);
  --shadow-lg: 0 18px 48px rgba(15,35,64,0.14), 0 6px 18px rgba(15,35,64,0.08);
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #1c2433;
  background: var(--enamel);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.016em; }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1em; }
a { color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,251,252,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.78rem;
  color: var(--slate-soft);
  letter-spacing: 0.02em;
}
.primary-nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}
.primary-nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.primary-nav a:hover { color: var(--navy); border-bottom-color: var(--brass); }

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--enamel);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background 0.15s, transform 0.15s;
}
.phone-cta:hover { background: var(--navy-soft); }
.phone-cta svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 0 0 90px;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(200,155,60,0.08), transparent 50%),
    linear-gradient(180deg, var(--enamel) 0%, var(--enamel-warm) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.hero-copy {
  padding-top: 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(200,155,60,0.18);
}
.lede {
  font-size: 1.13rem;
  color: var(--slate);
  max-width: 540px;
  margin-top: 18px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 12px;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--navy);
  color: var(--enamel);
  border: 1px solid var(--navy);
}
.btn-primary:hover { background: var(--navy-soft); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: white; border-color: var(--navy); }
.btn-lg { padding: 16px 26px; font-size: 1.05rem; }

.hero-proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-proof li {
  display: flex;
  flex-direction: column;
}
.hero-proof strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-weight: 700;
}
.hero-proof span {
  font-size: 0.85rem;
  color: var(--slate-soft);
}

.hero-visual {
  position: relative;
  width: 100%;
}
.tile-field {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eef2f4;
}
.hero-photo {
  width: 100%;
  height: 56vh;
  min-height: 360px;
  max-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}
.tile-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,64,0.02), rgba(15,35,64,0.18));
  pointer-events: none;
}
.badge-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
  border: 1px solid var(--line);
}
.badge-stars {
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.badge-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.3;
  margin-bottom: 6px;
}
.badge-by {
  font-size: 0.78rem;
  color: var(--slate-soft);
}

/* ---------- Section base ---------- */
section { padding: 90px 0; }
.section-lede {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  margin: 12px 0 40px;
}

/* ---------- Decision ---------- */
.decision { background: white; border-bottom: 1px solid var(--line); }
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.compare-card {
  background: var(--enamel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.compare-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.compare-label {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
}
.compare-time {
  font-size: 0.85rem;
  color: var(--slate-soft);
  font-weight: 500;
  background: white;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.compare-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.97rem;
  color: var(--slate);
  border-bottom: 1px dashed var(--line);
}
.compare-card li:last-child { border-bottom: none; }
.compare-card li::before {
  position: absolute;
  left: 0; top: 10px;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
}
.compare-card--bad li::before {
  content: "×";
  background: rgba(176,58,46,0.1);
  color: var(--bad);
}
.compare-card--good li::before {
  content: "✓";
  background: rgba(31,122,85,0.12);
  color: var(--good);
  font-size: 0.7rem;
}
.compare-card--good {
  background: linear-gradient(180deg, rgba(216,232,232,0.4), white);
  border-color: rgba(15,35,64,0.16);
  box-shadow: var(--shadow-md);
}

/* ---------- Surfaces ---------- */
.surfaces { background: var(--enamel-warm); }
.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.surface-card {
  background: white;
  border-radius: var(--radius);
  padding: 0 0 26px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.surface-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.surface-illo {
  width: 100%;
  border-bottom: 1px solid var(--line);
}
.surface-illo svg {
  display: block;
  width: 100%;
  height: auto;
}
.surface-card h3 { padding: 22px 26px 6px; }
.surface-card p {
  padding: 0 26px;
  color: var(--slate);
  font-size: 0.97rem;
  margin: 0;
}

/* ---------- Process ---------- */
.process { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process h2 { max-width: 720px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.process-step {
  background: var(--enamel);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background: rgba(200,155,60,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.process-step p {
  color: var(--slate);
  font-size: 0.97rem;
  margin: 0;
}

/* ---------- Proof ---------- */
.proof { background: var(--navy); color: var(--enamel); }
.proof h2 { color: var(--enamel); }
.proof-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.rating-block {
  text-align: right;
  flex-shrink: 0;
}
.rating-score {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--enamel);
  line-height: 1;
}
.rating-score span {
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  font-weight: 500;
}
.rating-stars {
  color: var(--brass-soft);
  letter-spacing: 3px;
  margin: 6px 0 4px;
}
.rating-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.review {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
}
.review--wide { grid-column: 1 / -1; }
.review-stars {
  color: var(--brass-soft);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.review blockquote {
  margin: 0 0 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--enamel);
}
.review figcaption {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}
.review figcaption strong {
  color: var(--enamel);
  font-weight: 600;
}
.review figcaption span {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

/* ---------- Contact ---------- */
.contact { background: var(--enamel-warm); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy h2 { max-width: 480px; }
.contact-copy p {
  font-size: 1.08rem;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 28px;
}
.contact-copy .btn { margin-right: 12px; margin-bottom: 12px; }
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-card dl {
  margin: 0;
  display: grid;
  gap: 22px;
}
.contact-card dt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass);
  margin-bottom: 4px;
}
.contact-card dd {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.5;
}
.contact-card dd a {
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--brass);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 36px 0;
  font-size: 0.92rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-brand .brand-name {
  color: var(--enamel);
  font-size: 1.05rem;
}
.footer-brand .brand-tag {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-meta a {
  color: var(--enamel);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .hero { padding: 0 0 64px; }
  .hero-copy { padding-top: 40px; }
  .hero-photo { height: 46vh; min-height: 300px; }
  .compare, .surface-grid, .process-grid, .reviews, .contact-grid {
    grid-template-columns: 1fr;
  }
  .proof-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .rating-block { text-align: left; }
  section { padding: 64px 0; }
  h1 br { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-row { min-height: 64px; gap: 12px; }
  .brand-tag { display: none; }
  .phone-cta span { display: none; }
  .phone-cta {
    padding: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .container { padding: 0 18px; }
  .hero-proof { gap: 18px; }
  .hero-photo { height: 300px; min-height: 0; }
  .tile-field::after { display: none; }
  .hero-proof strong { font-size: 1.2rem; }
  .compare-card, .process-step, .review, .contact-card { padding: 22px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .badge-card { left: 12px; bottom: 12px; padding: 12px; max-width: 220px; }
  .badge-quote { font-size: 0.9rem; }
}

/* v2: contact map */
.contact-map{margin-top:22px;}
.contact-map iframe{width:100%;height:340px;border:0;border-radius:12px;display:block;box-shadow:0 14px 34px rgba(0,0,0,.14);}
