@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

:root {
  --bg: #fbf9f4;
  --bg-alt: #f2ede1;
  --ink: #1f2421;
  --ink-soft: #5b6560;
  --accent: #d97706;
  --accent-dark: #b45309;
  --frost: #eef6f6;
  --frost-line: #d8e6e5;
  --white: #ffffff;
  --border: #e4ddcf;
  --success: #1a7a3c;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(31, 36, 33, 0.10);
  --shadow-sm: 0 6px 18px rgba(31, 36, 33, 0.08);
  --heading-font: "Poppins", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { color: var(--ink); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: var(--heading-font); }

/* Floating pill nav */
.nav-wrap { position: sticky; top: 14px; z-index: 50; padding: 0 16px; }
header.site-header {
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(251, 249, 244, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 22px;
  gap: 14px;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand .mark {
  width: 30px; height: 30px;
  background: var(--ink);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
}
.brand span { color: var(--accent-dark); font-weight: 600; font-size: 0.82rem; }
.header-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.phone-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switch a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}
.lang-switch a.active { color: var(--accent-dark); }
.cta-btn {
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.87rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { background: var(--accent-dark); }
.cta-btn.amber { background: var(--accent); }
.cta-btn.amber:hover { background: var(--accent-dark); }

/* Hero: asymmetric two-column, light */
.hero { padding: 56px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--frost);
  border: 1px solid var(--frost-line);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero h1 em { color: var(--accent-dark); font-style: normal; }
.hero p.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.cta-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.87rem;
}
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-row .t-item { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 700; color: var(--ink-soft); }
.trust-row .t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(217,119,6,0.22), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(31,36,33,0.10), transparent 50%),
    linear-gradient(150deg, var(--frost) 0%, #e4f0ef 100%);
  border: 1px solid var(--frost-line);
  overflow: hidden;
}
.hero-art .badge-float {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  font-weight: 800;
  font-family: var(--heading-font);
}
.hero-art .badge-float small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.72rem; margin-top: 2px; }
.hero-art .badge-float2 {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-art .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(31,36,33,0.14);
}
.hero-art .ring.r1 { width: 62%; height: 62%; top: 18%; left: 18%; }
.hero-art .ring.r2 { width: 38%; height: 38%; top: 34%; left: 34%; border-style: solid; border-color: rgba(217,119,6,0.35); }

/* Trust strip */
.trust-strip { padding: 30px 0; }
.trust-strip .container { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-chip {
  flex: 1 1 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.trust-chip .icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--frost);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-chip strong { display: block; font-size: 0.92rem; }
.trust-chip small { color: var(--ink-soft); font-size: 0.78rem; }

/* Section base */
section { padding: 56px 0; }
section.alt { background: var(--bg-alt); }
h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}
p.section-sub {
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 32px;
}

/* Services: bento (one featured + two stacked) */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.bento-feature {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.bento-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(217,119,6,0.35), transparent 55%);
}
.bento-feature .tag {
  position: relative;
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.bento-feature h3 { position: relative; font-size: 1.4rem; margin-bottom: 8px; }
.bento-feature p { position: relative; color: #d7d9d5; font-size: 0.92rem; max-width: 360px; }
.bento-feature .card-from { position: relative; display: block; margin-top: 14px; font-weight: 800; font-size: 1.3rem; font-family: var(--heading-font); }
.bento-stack { display: flex; flex-direction: column; gap: 20px; }
.bento-small {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.bento-small h3 { font-size: 1.05rem; margin-bottom: 8px; }
.bento-small p { color: var(--ink-soft); font-size: 0.88rem; }
.bento-small .card-from { display: block; margin-top: 10px; font-weight: 800; color: var(--accent-dark); font-size: 1rem; }

/* Service area: split with coverage graphic */
.area-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.area-text-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.area-text-list .a-row { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.95rem; }
.area-text-list .a-row.primary { color: var(--accent-dark); }
.area-text-list .a-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--frost); border: 1px solid var(--frost-line); flex-shrink: 0; }
.area-text-list .a-row.primary .a-dot { background: var(--accent); border-color: var(--accent); }
.coverage-graphic {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  margin: 0 auto;
}
.coverage-graphic .c-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed var(--frost-line);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.coverage-graphic .c-ring.c1 { width: 100%; height: 100%; }
.coverage-graphic .c-ring.c2 { width: 68%; height: 68%; border-color: rgba(217,119,6,0.3); }
.coverage-graphic .c-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 34%; height: 34%;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px;
  box-shadow: var(--shadow);
}
.coverage-graphic .c-label {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.coverage-graphic .c-label.l1 { top: 4%; left: 50%; transform: translateX(-50%); }
.coverage-graphic .c-label.l2 { top: 30%; right: -6%; }
.coverage-graphic .c-label.l3 { bottom: 22%; right: 2%; }
.coverage-graphic .c-label.l4 { bottom: 4%; left: 30%; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 720px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q .plus { font-size: 1.2rem; color: var(--accent-dark); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 20px 18px; }

/* Booking */
.quote-section { background: var(--bg-alt); }
.step-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.step-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.step-tag .num {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.trust-line { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 24px; }
.booking-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.booking-selector {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.selector-group { margin-bottom: 20px; }
.selector-group:last-of-type { margin-bottom: 0; }
.selector-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.btn-group { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-btn {
  flex: 1 1 auto;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  color: var(--ink);
  text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.opt-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.opt-btn:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 2px; }
.badge-best-value {
  display: block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 999px;
  margin: 4px auto 0;
  width: fit-content;
}
/* Add-ons as chip toggles instead of plain checkbox rows */
.addon-list { display: flex; flex-wrap: wrap; gap: 8px; }
.addon-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--bg-alt);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.addon-check:has(input:checked) { background: var(--frost); border-color: var(--accent); color: var(--accent-dark); }
.addon-check input { width: auto; margin: 0; accent-color: var(--accent); }
.addon-price { color: var(--ink-soft); font-weight: 700; font-size: 0.8rem; }
.addon-check:has(input:checked) .addon-price { color: var(--accent-dark); }
.price-display { background: var(--frost); border: 1px solid var(--frost-line); border-radius: var(--radius-md); padding: 18px; text-align: center; margin-top: 20px; }
.price-label { display: block; font-size: 0.74rem; font-weight: 800; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.4px; }
.price-value { display: inline-block; font-size: 2.1rem; font-weight: 800; color: var(--ink); margin-top: 4px; font-family: var(--heading-font); font-variant-numeric: tabular-nums; }
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 80px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
}
.form-submit:hover { background: var(--accent-dark); }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; }
.form-status.success { color: var(--success); }
.form-status.error { color: #b0281f; }
.noscript-note { margin-top: 14px; font-size: 0.9rem; font-weight: 600; color: #b0281f; }
.noscript-note a { text-decoration: underline; }

/* Sticky mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(31,36,33,0.10);
}
.mobile-cta-bar a { flex: 1; text-align: center; }

/* Footer: centered, minimal */
footer {
  background: var(--ink);
  color: #b7bdb8;
  padding: 40px 0 30px;
  font-size: 0.86rem;
  text-align: center;
}
footer .brand { justify-content: center; color: var(--white); margin-bottom: 6px; }
footer .brand .mark { background: var(--accent); color: var(--ink); }
footer p { max-width: 420px; margin: 0 auto 6px; }
footer a { color: #e4e6e2; text-decoration: none; }
footer .footer-links { display: flex; justify-content: center; gap: 18px; margin-top: 16px; font-weight: 700; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .bento { grid-template-columns: 1fr; }
  .area-split { grid-template-columns: 1fr; }
  .booking-box { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 66px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .nav-wrap { top: 10px; padding: 0 10px; }
  .header-inner { padding: 8px 8px 8px 16px; }
}
