/* Hausio — London home services
   Palette inspired by the logo: warm cream, soft linen, deep charcoal */

:root {
  --cream: #f7f4ef;
  --linen: #ece6db;
  --sand:  #e3dccd;
  --ink:   #1a1a1a;
  --ink-2: #2b2b2b;
  --muted: #6b665e;
  --line:  #d9d2c3;
  --accent: #2b2b2b;
  --gold:  #a48a5a;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --radius: 2px;
  --radius-lg: 6px;

  --container: 1200px;
  --gap: 24px;

  --shadow-sm: 0 1px 2px rgba(26,26,26,.06), 0 1px 0 rgba(26,26,26,.04);
  --shadow-md: 0 6px 24px rgba(26,26,26,.08);
  --shadow-lg: 0 18px 48px rgba(26,26,26,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .01em;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; letter-spacing: .02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--ink-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-lede {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark:hover { background: #000; color: #fff; }
.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-light:hover { background: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

.link-muted {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
}
.link-muted:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 34px; height: 30px;
  display: inline-flex;
  color: var(--ink);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .3em;
}
.main-nav {
  display: flex;
  gap: 36px;
  font-size: .9rem;
  color: var(--ink-2);
  font-weight: 400;
}
.main-nav a {
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .3s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}
.nav-wa:hover {
  transform: scale(1.1);
  background: #1ebe57;
  color: #fff;
}
.nav-wa svg { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--linen) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(164, 138, 90, .06), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(164, 138, 90, .04), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: 16px 56px;
  align-items: start;
  align-content: center;
  position: relative;
  min-height: 480px;
}
.hero-top {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}
.hero-bottom {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
.hero-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.hero-top h1 {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
}
.lede {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 500px;
  margin-bottom: 0;
  line-height: 1.55;
}
.hero-quote {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 520px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.hero-quote input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.hero-quote input::placeholder { color: var(--muted); }
.hero-quote .btn { flex-shrink: 0; }

/* 5% off badge */
.quote-badge {
  position: absolute;
  top: -13px;
  left: 16px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 4px 14px;
  border-radius: 20px;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .9rem;
  color: var(--muted);
}
.hero-trust li::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.hero-trust li:first-child::before { display: none; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: hero-breathe 6s ease-in-out infinite;
}
.hero-photo:hover img { animation-play-state: paused; transform: scale(1.04); }


/* Gentle zoom in-out */
@keyframes hero-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}


/* ---------- Logos bar ---------- */
.logos {
  padding: 32px 0;
  background: var(--linen);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: .08em;
}
.logos-row span:first-child {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-right: 14px;
}

/* ---------- Services ---------- */
.services {
  padding: 80px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--linen);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.service-card h3 { margin: 24px 24px 8px; }
.service-card > p,
.service-list,
.service-price,
.service-card .btn { margin-left: 24px; margin-right: 24px; }
.service-card .btn { margin-bottom: 24px; }
.service-card > p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 14px;
}
.service-list {
  list-style: none;
  padding: 0;
  font-size: .85rem;
  color: var(--ink-2);
}
.service-list li {
  padding: 5px 0;
  border-bottom: 1px dashed var(--line);
}
.service-list li:last-child { border: none; }
.service-price {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 16px;
}
.service-price b {
  font-size: 1.45rem;
  color: var(--ink);
  font-weight: 500;
}
.service-card .btn { margin-top: auto; }

/* ---------- How it works ---------- */
.how {
  padding: 80px 0;
  background: var(--linen);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  counter-reset: step;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.step-icon svg { width: 100%; height: 100%; }
.step-num {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.steps h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.steps p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
  line-height: 1.55;
}
.how-cta { text-align: center; }

/* Connector line between cards on desktop */
@media (min-width: 901px) {
  .step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--line);
    z-index: 1;
  }
}

/* ---------- Pricing ---------- */
.pricing { padding: 80px 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 24px;
  border-radius: var(--radius);
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.price-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: .92rem;
  color: var(--ink-2);
}
.price-card li span { color: var(--muted); }
.price-card li b {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}
.price-min {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0;
}
.price-note {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Why us ---------- */
.why {
  padding: 80px 0;
  background: var(--linen);
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list-centered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.why-list-centered li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-list-centered li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-list h4 { margin-bottom: 8px; font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.why-list p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- Launch offer ---------- */
.launch { padding: 80px 0; }
.launch-box {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  box-shadow: var(--shadow-sm);
}
.launch-copy h2 { margin-bottom: 14px; }
.launch-copy p { color: var(--muted); max-width: 480px; margin-bottom: 26px; }
.launch-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 240px;
  margin-left: auto;
  padding: 20px;
  background: var(--cream);
}
.launch-off {
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 6px;
}
.launch-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Testimonials (legacy, currently unused) ---------- */
.testimonials { padding: 80px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  margin: 0;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--sand);
  line-height: 1;
}
.testimonial blockquote {
  margin: 20px 0 20px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  position: relative;
}
.testimonial figcaption {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 8px;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}

/* ---------- Coverage ---------- */
.coverage {
  padding: 80px 0;
  background: var(--linen);
  overflow: hidden;
}

/* Ticker / marquee */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.4);
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  padding: 0 32px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: .04em;
  position: relative;
}
.ticker span::after {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 1.4rem;
}
.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform .3s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .95rem;
  max-width: 680px;
}

/* ---------- Final CTA ---------- */
.cta-final { padding: 80px 0; }
.cta-box {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 56px;
  text-align: center;
  border-radius: var(--radius-lg);
}
.cta-box h2 { color: var(--cream); margin-bottom: 14px; }
.cta-box p { color: rgba(247, 244, 239, .75); font-size: 1.1rem; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(247, 244, 239, .85);
  padding: 56px 0 26px;
}
.site-footer.compact { padding: 24px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 36px;
}
.footer-brand .brand { color: var(--cream); margin-bottom: 18px; }
.footer-brand .brand-mark { color: var(--cream); }
.footer-brand p { color: rgba(247, 244, 239, .7); margin-bottom: 6px; font-size: .92rem; }
.footer-brand .muted { color: rgba(247, 244, 239, .5); }
.site-footer h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 20px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  padding: 6px 0;
  font-size: .92rem;
  color: rgba(247, 244, 239, .7);
}
.site-footer ul li a { color: rgba(247, 244, 239, .7); }
.site-footer ul li a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(247, 244, 239, .12);
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(247, 244, 239, .5);
}
.site-footer.compact .footer-bottom { border: none; padding: 0; }

/* ============== BOOKING PAGE ============== */
.page-book { background: var(--cream); }
.booking-wrap { padding: 60px 0 90px; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  box-shadow: var(--shadow-sm);
}
.booking-head { margin-bottom: 32px; }
.booking-head h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.booking-head p { color: var(--muted); margin: 0; }

.progress {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.progress li {
  flex: 1;
  padding: 14px 8px;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.progress li span {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .85rem;
  color: var(--muted);
}
.progress li.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
  font-weight: 500;
}
.progress li.is-active span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.progress li.is-done {
  color: var(--ink-2);
}
.progress li.is-done span {
  background: var(--linen);
  color: var(--ink);
  border-color: var(--ink);
}

.step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}
.step.is-active { display: block; animation: fade .35s ease; }
@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.step-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 28px;
  padding: 0;
}

/* Radio option grid */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.option {
  display: block;
  position: relative;
  cursor: pointer;
}
.option input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.option-body {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: all .25s ease;
}
.option-body b {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.option-body small { color: var(--muted); font-size: .88rem; }
.option input:checked ~ .option-body {
  background: #fff;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.option:hover .option-body { border-color: var(--ink-2); }

/* Fields */
.field {
  display: block;
  margin-bottom: 22px;
}
.field > span,
.field-label {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--sans);
  font-size: .98rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.field-hint {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field-row .field { margin-bottom: 22px; }

.extras { margin-top: 6px; margin-bottom: 8px; }
.check {
  display: block;
  padding: 10px 0;
  font-size: .94rem;
  color: var(--ink-2);
  cursor: pointer;
}
.check input {
  margin-right: 10px;
  vertical-align: middle;
  accent-color: var(--ink);
}
.check-big { padding: 20px 0; font-size: .9rem; color: var(--muted); }

.service-panel { display: none; }
.service-panel.is-active { display: block; }

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* Success */
.step.success {
  text-align: center;
  padding: 60px 20px;
}
.success.is-active { display: block; animation: fade .35s ease; }
.success-inner { max-width: 460px; margin: 0 auto; }
.success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.success h2 { margin-bottom: 14px; }
.success p { color: var(--muted); margin-bottom: 30px; }

/* Booking summary sidebar */
.summary {
  position: sticky;
  top: 100px;
}
.summary-inner {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.summary-inner h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(247, 244, 239, .15);
}
.summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  min-height: 120px;
}
.summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  color: rgba(247, 244, 239, .85);
  border-bottom: 1px dashed rgba(247, 244, 239, .12);
}
.summary-list li span:last-child {
  color: var(--cream);
  font-weight: 500;
}
.summary-empty {
  color: rgba(247, 244, 239, .5) !important;
  font-style: italic;
  justify-content: center !important;
  border: none !important;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(247, 244, 239, .25);
  border-bottom: 1px solid rgba(247, 244, 239, .15);
  margin-bottom: 20px;
}
.summary-total span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(247, 244, 239, .6);
}
.summary-total b {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--cream);
  font-weight: 500;
}
.summary-note {
  font-size: .82rem;
  color: rgba(247, 244, 239, .55);
  margin-bottom: 22px;
  line-height: 1.55;
}
.summary-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .82rem;
  color: rgba(247, 244, 239, .7);
}
.summary-trust li { padding: 6px 0; }

/* ============== RESPONSIVE ============== */

/* Tablet: up to 1100px */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .hero-grid { gap: 40px; }
  .main-nav { gap: 24px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Small tablet / large phone landscape: up to 900px */
@media (max-width: 900px) {
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  .hero-top { grid-column: 1; grid-row: 1; text-align: center; }
  .hero-visual { grid-column: 1; grid-row: 2; display: flex; justify-content: center; }
  .hero-bottom { grid-column: 1; grid-row: 3; text-align: center; }
  .hero-photo { max-width: 480px; aspect-ratio: 4 / 3; margin: 0 auto; }
  .hero-quote { margin-left: auto; margin-right: auto; }
  .quote-badge { left: 50%; transform: translateX(-50%); }
  .hero-trust { justify-content: center; }
  .lede { max-width: 100%; }

  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-list { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .coverage-zones { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .summary { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }

  /* Mobile nav appears */
  .main-nav { display: none; }
  .nav-cta .link-muted { display: none; }
  .nav-cta { gap: 8px; }
  .nav-wa { order: 1; }
  .nav-toggle { display: block; }
}

/* Phone: up to 640px */
@media (max-width: 640px) {
  :root { --gap: 16px; }
  .container { padding: 0 18px; }

  /* Section spacing */
  .hero { padding: 40px 0 52px; }
  .services, .how, .pricing, .why, .launch, .testimonials, .coverage, .faq, .cta-final {
    padding: 52px 0;
  }
  .section-head { margin-bottom: 32px; }
  .launch-box { grid-template-columns: 1fr; gap: 30px; padding: 36px 26px; text-align: center; }
  .launch-copy p { margin-left: auto; margin-right: auto; }
  .launch-badge { margin: 0 auto; max-width: 180px; }
  .launch-off { font-size: 3.4rem; }
  .section-lede { font-size: .98rem; }

  /* Typography */
  h1 { font-size: 2.15rem; line-height: 1.1; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.2rem; }
  .lede { font-size: 1.02rem; margin-bottom: 28px; }
  .eyebrow { font-size: .72rem; letter-spacing: .18em; margin-bottom: 12px; }

  /* Header */
  .nav { min-height: 62px; gap: 12px; }
  .brand-mark { width: 28px; height: 26px; }
  .brand-name { font-size: 1.1rem; letter-spacing: .22em; }
  .nav-cta .btn { padding: 11px 18px; font-size: .82rem; }

  /* Hero */
  .hero-photo { max-width: 100%; aspect-ratio: 3 / 2; border-radius: var(--radius-lg); }
  .hero-quote {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }
  .hero-quote input { padding: 12px 14px; font-size: .95rem; }
  .hero-quote .btn { width: 100%; }
  .hero-trust { gap: 14px 22px; font-size: .82rem; }
  .hero-trust li::before { margin-right: 6px; }

  /* Logos bar */
  .logos { padding: 22px 0; }
  .logos-row { font-size: .8rem; gap: 8px 14px; letter-spacing: .04em; }
  .logos-row span:first-child { font-size: .68rem; margin-right: 4px; display: block; width: 100%; text-align: center; }

  /* Services */
  .service-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-photo { aspect-ratio: 16 / 10; }
  .service-card h3 { margin: 24px 22px 8px; }
  .service-card > p,
  .service-list,
  .service-price,
  .service-card .btn { margin-left: 22px; margin-right: 22px; }
  .service-card .btn { margin-bottom: 24px; }
  .service-card > p { font-size: .9rem; }
  .service-price b { font-size: 1.4rem; }

  /* How it works */
  .steps li { padding-top: 24px; }
  .step-num { margin-bottom: 12px; }

  /* Pricing */
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 26px 22px; }
  .price-card h3 { font-size: 1.25rem; }

  /* Why us */
  .why-list { grid-template-columns: 1fr; gap: 22px; }
  .why-list li { padding-top: 18px; }

  /* Testimonials */
  .testimonial { padding: 32px 24px; }
  .testimonial blockquote { font-size: 1.05rem; }

  /* Coverage */
  .coverage-zones { grid-template-columns: 1fr; gap: 0; }
  .coverage-zones li { padding: 8px 0 8px 20px; font-size: .9rem; }

  /* FAQ */
  .faq-list summary { font-size: 1.05rem; gap: 16px; }
  .faq-list summary::after { font-size: 1.4rem; }
  .faq-list details { padding: 20px 0; }
  .faq-list p { font-size: .92rem; }

  /* CTA */
  .cta-box { padding: 48px 24px; border-radius: var(--radius); }
  .cta-box h2 { font-size: 1.6rem; }
  .cta-box p { font-size: 1rem; margin-bottom: 26px; }
  .btn { padding: 13px 22px; font-size: .85rem; }

  /* Footer */
  .site-footer { padding: 56px 0 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 36px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: .76rem;
  }

  /* ===== Booking page ===== */
  .booking-wrap { padding: 32px 0 60px; }
  .booking-grid { gap: 20px; }
  .booking {
    padding: 28px 20px 24px;
    border-radius: var(--radius);
  }
  .booking-head h1 { font-size: 1.7rem; }
  .booking-head p { font-size: .92rem; }

  /* Progress bar — show only active number on mobile */
  .progress { margin-bottom: 28px; }
  .progress li {
    font-size: 0;
    padding: 12px 2px;
    gap: 0;
  }
  .progress li.is-active { font-size: .78rem; }
  .progress li.is-active span { margin-right: 6px; }
  .progress li span {
    font-size: .8rem;
    width: 24px;
    height: 24px;
  }

  .step-title { font-size: 1.35rem; margin-bottom: 22px; }
  .option-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .option-body { padding: 18px 20px; }
  .option-body b { font-size: 1.2rem; }

  .field { margin-bottom: 18px; }
  .field > span,
  .field-label { font-size: .76rem; margin-bottom: 8px; }
  .field input,
  .field select,
  .field textarea {
    padding: 13px 14px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 18px; }

  .check { font-size: .9rem; padding: 8px 0; }
  .check-big { padding: 16px 0; }

  .step-actions {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .step-actions .btn { width: 100%; }

  /* Summary sidebar — compact on mobile */
  .summary-inner { padding: 26px 22px; }
  .summary-inner h3 { font-size: 1.15rem; margin-bottom: 18px; }
  .summary-list { min-height: auto; }
  .summary-total b { font-size: 1.8rem; }
  .summary-note { font-size: .78rem; }
  .summary-trust { font-size: .78rem; }

  /* Success */
  .step.success { padding: 40px 8px; }
  .success-icon { width: 60px; height: 60px; font-size: 1.6rem; margin-bottom: 20px; }
  .success h2 { font-size: 1.5rem; }
}

/* Very small phones: up to 380px */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.5rem; }
  .nav-cta .btn { padding: 10px 14px; font-size: .78rem; }
  .brand-name { font-size: 1rem; letter-spacing: .2em; }
}

/* Mobile nav (toggled via JS) */
.main-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 20px 28px;
  gap: 0;
}
.main-nav.is-open a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.main-nav.is-open a:last-child { border: none; }
