/* ==========================================================================
   Jay Maa Karni Movers & Packers, stylesheet
   Mobile-first. No frameworks, no external fonts.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* brand */
  --brand:        #12356b;
  --brand-700:    #0d2850;
  --brand-600:    #164080;
  --brand-100:    #dbe6f7;
  --brand-50:     #eef3fb;

  --accent:       #e8940c;
  --accent-600:   #cc7f04;
  --accent-50:    #fdf3e2;
  --accent-ink:   #8f5602;   /* readable amber for text on --accent-50 */

  --wa:           #25d366;
  --wa-700:       #14a544;

  /* neutrals */
  --ink:          #14202e;
  --ink-2:        #33465c;
  --muted:        #5d7086;
  --line:         #e0e7ef;
  --line-2:       #cfdae7;
  --bg:           #ffffff;
  --bg-soft:      #f5f8fc;

  --danger:       #c62828;

  /* shape */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 33, 56, .06), 0 1px 3px rgba(16, 33, 56, .08);
  --shadow:    0 4px 14px rgba(16, 33, 56, .08);
  --shadow-lg: 0 14px 40px rgba(16, 33, 56, .14);

  /* rhythm */
  --wrap: 1160px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(52px, 8vw, 96px);

  /* type */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
          "Noto Sans", "Liberation Sans", sans-serif;
  --h1: clamp(1.75rem, 1.15rem + 2.7vw, 3.05rem);
  --h2: clamp(1.4rem, 1.06rem + 1.5vw, 2.1rem);
  --h3: clamp(1.02rem, .96rem + .3vw, 1.18rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* When JS is running it owns anchor scrolling (script.js caps the duration, so a
   jump back to the top is quick instead of crawling). Native smooth scroll would
   fight that animation, so it is switched off here and left on for the no-JS case. */
html.js { scroll-behavior: auto; }

html { scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.015em;
}
h1 { font-size: var(--h1); letter-spacing: -.025em; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); line-height: 1.35; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-600); }

img, svg { max-width: 100%; }
img { height: auto; display: block; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }

.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 46px); }
.section-sub { color: var(--muted); font-size: 1.03rem; }

.kicker {
  display: inline-block;
  margin: 0 0 .6rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-50);
  border: 1px solid #f4dfba;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
}
.kicker-light {
  color: #ffd79a;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .22);
}

/* ---------- Icons ---------- */
.ico {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.25rem;
  min-height: 48px;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: .97rem;
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: .6rem .95rem; min-height: 44px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-700); border-color: var(--brand-700); }

.btn-accent { background: var(--accent); color: #33230a; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-600); border-color: var(--accent-600); }

.btn-outline { background: #fff; color: var(--brand); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--brand); background: var(--brand-50); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-ghost { background: transparent; color: var(--brand); border-color: transparent; text-decoration: underline; text-underline-offset: 3px; }
.btn-ghost:hover { background: var(--brand-50); text-decoration: none; }

.btn-wa { background: var(--wa); color: #05331a; border-color: var(--wa); }
.btn-wa:hover { background: var(--wa-700); border-color: var(--wa-700); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .65rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  flex: none;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-text strong { font-size: 1.02rem; font-weight: 750; letter-spacing: -.02em; }
.brand-text small { font-size: .72rem; color: var(--muted); letter-spacing: .07em; text-transform: uppercase; font-weight: 600; }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--brand);
  cursor: pointer;
}
.nav-toggle .ico { width: 24px; height: 24px; grid-area: 1 / 1; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

/* Below 900px only. Scoped to a max-width query on purpose: these rules use a
   .js prefix, and media queries do not add specificity, so an unscoped
   `.js .primary-nav` would beat the plain `.primary-nav` desktop rules. */
@media (max-width: 899.98px) {
  /* No-JS default: the menu sits in the flow, fully expanded and usable.
     The .js class (set inline in <head>) collapses it behind the hamburger. */
  .primary-nav {
    width: 100%;
    margin-top: .25rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--line);
  }
  .nav-toggle { display: none; }

  .js .nav-toggle { display: inline-grid; }
  .js .primary-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    width: auto;
    margin-top: 0;
    background: #fff;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem var(--gutter) 1.25rem;
    display: none;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }
  .js .primary-nav.is-open { display: block; }
}

.nav-list li + li { border-top: 1px solid var(--line); }
.nav-list a {
  display: block;
  padding: .85rem .25rem;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.nav-list a:hover { color: var(--brand-600); }

.nav-cta { display: flex; gap: .6rem; margin-top: 1rem; }
.nav-cta .btn { flex: 1; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 120% at 85% -10%, #1b4a91 0%, var(--brand) 45%, var(--brand-700) 100%);
  color: #e8eef8;
  padding-block: clamp(38px, 7vw, 76px);
}
.hero-grid { display: grid; gap: clamp(28px, 5vw, 52px); }

.hero h1 { color: #fff; margin-bottom: .55em; text-wrap: balance; }
.hero .lead { font-size: 1.05rem; color: #ccd9ec; max-width: 58ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 1rem;
  padding: .35rem .8rem .35rem .6rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 600;
  color: #ffd79a;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.6rem 0 1.8rem; }
.hero-actions .btn { flex: 1 1 auto; min-width: 148px; }

.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.trust-points li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .93rem;
  font-weight: 600;
  color: #dce6f4;
}
.trust-points .ico { color: #6ee7a0; stroke-width: 2.4; width: 1.15em; height: 1.15em; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  padding: .7rem .9rem;
  background: rgba(255, 255, 255, .96);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.hero-badge .ico { width: 1.7rem; height: 1.7rem; color: var(--brand); }
.hero-badge strong { display: block; font-size: .93rem; }
.hero-badge span { display: block; font-size: .8rem; color: var(--muted); }

/* ---------- Strip ---------- */
.strip { background: var(--brand-50); border-bottom: 1px solid var(--line); }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  padding-block: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem .25rem;
}
.strip-item + .strip-item { border-top: 1px solid var(--line); }
.strip-item .ico { width: 1.7rem; height: 1.7rem; color: var(--brand); }
.strip-item strong { display: block; color: var(--ink); font-size: .96rem; }
.strip-item span { display: block; font-size: .84rem; color: var(--muted); }

/* ---------- Household section ---------- */
.section-household { background: #fff; }
.household-grid { display: grid; gap: clamp(26px, 4vw, 44px); }

.household-media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.media-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin: .85rem 0 0;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 600;
}
.media-note .ico { color: var(--wa-700); stroke-width: 2.4; margin-top: .12em; }

.household-steps { display: grid; gap: 1.15rem; counter-reset: step; }
.household-steps > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .95rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.household-steps > li:last-child { border-bottom: 0; padding-bottom: 0; }
.household-steps h3 { margin-bottom: .28em; }
.household-steps p { font-size: .95rem; color: var(--muted); margin: 0; }

.step-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  border: 1px solid var(--brand-100);
}
.step-ico .ico { width: 1.4rem; height: 1.4rem; }

.callout {
  margin-top: clamp(30px, 4vw, 48px);
  padding: clamp(20px, 3vw, 30px);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-lg);
  display: grid;
  gap: 1rem;
}
.callout p { margin: 0; font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.callout-tight { background: #fff; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.service-card:hover {
  border-color: var(--brand-100);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card h3 { margin-bottom: .35em; }
.service-card p { font-size: .93rem; color: var(--muted); margin: 0; }

.service-ico {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  margin-bottom: .95rem;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  border: 1px solid var(--brand-100);
}
.service-ico .ico { width: 1.5rem; height: 1.5rem; }

/* Household shifting: strongest emphasis */
.service-featured {
  background: linear-gradient(180deg, #ffffff 0%, var(--accent-50) 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(232, 148, 12, .18);
  padding: 1.6rem 1.4rem 1.5rem;
}
.service-featured h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.6rem); }
.service-featured p { color: var(--ink-2); font-size: 1rem; }
.service-featured .service-ico {
  width: 58px; height: 58px;
  background: var(--accent);
  border-color: var(--accent-600);
  color: #33230a;
}
.service-featured .service-ico .ico { width: 1.85rem; height: 1.85rem; stroke-width: 1.9; }
.service-flag {
  position: absolute;
  top: -.75rem;
  right: 1.1rem;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
}

/* ---------- About / Why ---------- */
.about-grid { display: grid; gap: clamp(26px, 4vw, 44px); }
.about-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.why-list { display: grid; gap: 1.1rem; }
.why-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
}
.why-list h3 { margin-bottom: .2em; }
.why-list p { font-size: .93rem; color: var(--muted); margin: 0; }
.why-ico {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  flex: none;
}
.why-ico .ico { width: 1.2rem; height: 1.2rem; }

/* ---------- Service areas ---------- */
.areas-grid { display: grid; gap: 1.1rem; }
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.area-head { display: flex; gap: .85rem; align-items: center; margin-bottom: 1rem; }
.area-head h3 { margin: 0; font-size: 1.3rem; }
.area-head p { margin: 0; font-size: .87rem; color: var(--muted); }
.area-ico {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  flex: none;
}
.area-ico .ico { width: 1.5rem; height: 1.5rem; }

.area-note { font-size: .92rem; color: var(--muted); margin-bottom: .9rem; }

.city-list { display: flex; flex-wrap: wrap; gap: .45rem; }
.city-list li {
  font-size: .87rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: .32rem .7rem;
  border-radius: var(--r-pill);
}

/* ---------- Pan India ---------- */
.section-coverage {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #d5e0f0;
  padding-block: var(--section-y);
}
.section-coverage h2 { color: #fff; }
.coverage-grid { display: grid; gap: clamp(26px, 4vw, 44px); align-items: center; }
.coverage-media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.pill-list { display: grid; gap: .55rem; margin: 1.4rem 0; }
.pill-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 600;
}
.pill-list .ico { color: #6ee7a0; stroke-width: 2.4; margin-top: .18em; width: 1.1em; height: 1.1em; }

/* ---------- Process ---------- */
.process-grid { display: grid; gap: 1rem; }
.process-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.process-num {
  position: absolute;
  top: 1rem; right: 1.1rem;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-50);
  letter-spacing: -.04em;
}
.process-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin-bottom: .9rem;
  border-radius: 12px;
  background: var(--accent-50);
  border: 1px solid #f4dfba;
  color: var(--accent-ink);
}
.process-ico .ico { width: 1.45rem; height: 1.45rem; }
.process-card h3 { margin-bottom: .3em; }
.process-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Business trust ---------- */
.trust-grid { display: grid; gap: clamp(24px, 4vw, 40px); }
.trust-facts { display: grid; gap: .85rem; margin: 0; }
.trust-fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .95rem 1.1rem;
}
.trust-fact dt {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}
.trust-fact dt .ico { width: 1.05rem; height: 1.05rem; color: var(--brand); }
.trust-fact dd { margin: 0; font-size: .98rem; font-weight: 600; color: var(--ink); }
.trust-fact dd a { display: inline-block; padding-block: .15rem; min-height: 24px; }
.gstin { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .03em; }

.trust-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.signboard {
  width: 100%;
  margin-top: clamp(26px, 4vw, 42px);
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* ---------- Quote ---------- */
.section-quote {
  background: linear-gradient(160deg, var(--brand-700) 0%, #0a1f40 100%);
  color: #ccd9ec;
}
.section-quote h2 { color: #fff; }
.quote-grid { display: grid; gap: clamp(28px, 4vw, 46px); align-items: start; }
.quote-direct { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.18); }
.quote-direct p { font-weight: 600; margin-bottom: .7rem; }

.quote-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(20px, 3.5vw, 32px);
  box-shadow: var(--shadow-lg);
  color: var(--ink-2);
}

.field-row { display: grid; gap: 0; }
.field { margin-bottom: 1.05rem; }
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: .35rem;
}
.field label span { color: var(--danger); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .72rem .85rem;
  min-height: 48px;
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 1rem;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d7086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .7rem center; background-size: 20px; padding-right: 2.4rem; }
.field input::placeholder, .field textarea::placeholder { color: #9aabbd; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px var(--brand-100);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
}
.field input[aria-invalid="true"]:focus,
.field select[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px #f8d7d7;
}

.hint { font-size: .8rem; color: var(--muted); margin: .3rem 0 0; }
.error {
  font-size: .82rem;
  font-weight: 600;
  color: var(--danger);
  margin: .35rem 0 0;
}
/* Honeypot: off-screen rather than display:none, because some bots skip
   display:none fields. Never focusable, never announced. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-success {
  text-align: center;
  padding: clamp(24px, 4vw, 38px) clamp(18px, 3vw, 28px);
  background: #e4fbec;
  border: 1.5px solid #b9f0cd;
  border-radius: var(--r-lg);
}
.form-success:focus { outline: none; }
.form-success h3 {
  font-size: 1.25rem;
  color: #0a5c2a;
  margin-bottom: .4rem;
}
.form-success p { color: #14602f; margin-bottom: .5rem; }
.form-success-sub { font-size: .9rem; color: #2b6b45 !important; margin-bottom: 1.1rem !important; }

.form-note { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }
.form-status {
  margin: .8rem 0 0;
  font-size: .9rem;
  font-weight: 650;
  color: var(--wa-700);
  min-height: 1.2em;
}
.form-status[data-state="error"] { color: var(--danger); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .7rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary,
.legal summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 650;
  color: var(--ink);
  list-style: none;
  min-height: 52px;
}
.faq-item summary::-webkit-details-marker,
.legal summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--brand-50); }
.faq-chev { transition: transform .2s ease; color: var(--brand); flex: none; width: 1.4rem; height: 1.4rem; }
.faq-item[open] .faq-chev,
.legal[open] .faq-chev { transform: rotate(180deg); }
.faq-body, .legal-body {
  padding: 0 1.1rem 1.15rem;
  font-size: .95rem;
  color: var(--muted);
}
.faq-body p, .legal-body p { margin-bottom: .75rem; }
.faq-body p:last-child, .legal-body p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 1rem; }
.contact-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink-2);
  font-style: normal;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
a.contact-card:hover {
  border-color: var(--brand-100);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.contact-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin-bottom: .85rem;
  border-radius: 12px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand);
}
.contact-ico .ico { width: 1.4rem; height: 1.4rem; }
.contact-card h3 { margin-bottom: .3em; font-size: 1.02rem; }
.contact-value { font-size: 1.12rem; font-weight: 700; color: var(--brand); margin: 0 0 .2rem; }
.contact-value-sm { font-size: .97rem; line-height: 1.5; }
.contact-meta { font-size: .87rem; color: var(--muted); margin: 0; }
.contact-wa .contact-ico { background: #e4fbec; border-color: #b9f0cd; color: var(--wa-700); }
.contact-wa .contact-value { color: var(--wa-700); }
.contact-quote .btn { margin-top: .9rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1c36; color: #a9bbd2; font-size: .93rem; }
.footer-grid {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  padding-block: clamp(40px, 6vw, 66px);
}
.brand-footer { margin-bottom: 1rem; }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: #8ba3c2; }
.footer-about p { color: #a9bbd2; max-width: 46ch; }
.footer-gst {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85rem;
  color: #8ba3c2;
  margin-bottom: 1.1rem;
}

.footer-heading {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 .9rem;
}
.footer-heading-gap { margin-top: 1.6rem; }

.footer-col ul { display: grid; gap: .15rem; }
.footer-col a { display: inline-block; padding-block: .3rem; min-height: 26px; color: #a9bbd2; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-cities { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.footer-contact { gap: .7rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .55rem; line-height: 1.5; }
.footer-contact .ico { color: var(--accent); margin-top: .18em; flex: none; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.15rem;
}
.footer-bottom p { margin: 0; font-size: .87rem; color: #8ba3c2; }
.legal-links { display: flex; gap: 1.25rem; }
.legal-links a { display: inline-block; padding-block: .35rem; color: #a9bbd2; text-decoration: none; font-size: .87rem; }
.legal-links a:hover { color: #fff; text-decoration: underline; }

.credit { font-size: .85rem; color: #8ba3c2; margin: 0; width: 100%; }
.credit a {
  display: inline-block;
  padding-block: .3rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.credit a:hover { color: #ffd79a; text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 720px) {
  .credit { width: auto; text-align: right; }
}

.legal-wrap { padding-bottom: clamp(30px, 5vw, 50px); display: grid; gap: .7rem; }
.legal {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  overflow: hidden;
}
.legal summary { color: #fff; }
.legal summary:hover { background: rgba(255,255,255,.06); }
.legal .faq-chev { color: var(--accent); }
.legal-body { color: #a9bbd2; }
.legal-body a { color: #ffd79a; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 76px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.05rem;
  background: var(--wa);
  color: #05331a;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .42);
  transition: transform .18s ease, background-color .18s ease;
}
.wa-float:hover { background: var(--wa-700); color: #fff; transform: translateY(-2px); }
.wa-float .ico { width: 1.5rem; height: 1.5rem; stroke-width: 1.6; }
.wa-float-label { display: none; }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -4px 18px rgba(16, 33, 56, .12);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 56px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  color: var(--brand);
}
.mobile-bar a + a { border-left: 1px solid var(--line); background: var(--accent); color: #33230a; }
.mobile-bar .ico { width: 1.25rem; height: 1.25rem; }

body { padding-bottom: 56px; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

/* --- 560px: two-up grids --- */
@media (min-width: 560px) {
  .trust-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }
  .service-featured { grid-column: 1 / -1; }
  .callout { grid-template-columns: 1fr auto; align-items: center; }
  .hero-actions .btn { flex: 0 1 auto; }
}

/* --- 720px --- */
@media (min-width: 720px) {
  .areas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-fact-wide { grid-column: 1 / -1; }
  .strip-item + .strip-item { border-top: 0; }
  .strip-grid { gap: 0 1.5rem; }
}

/* --- 900px: desktop nav + side-by-side --- */
@media (min-width: 900px) {
  html { scroll-padding-top: 92px; }

  .nav-toggle { display: none; }
  .header-inner { flex-wrap: nowrap; }
  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: auto;
    margin-top: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    max-height: none;
    overflow: visible;
  }
  .nav-list { display: flex; gap: 1.35rem; }
  .nav-list li + li { border-top: 0; }
  .nav-list a { padding: .35rem 0; font-size: .95rem; position: relative; }
  .nav-list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .18s ease;
  }
  .nav-list a:hover::after { transform: scaleX(1); }
  .nav-cta { margin-top: 0; }
  .nav-cta .btn { flex: none; }
  .header-inner { min-height: 76px; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hero-media img { max-height: 540px; }

  .household-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .about-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .coverage-grid { grid-template-columns: 1.1fr .9fr; }
  .quote-grid { grid-template-columns: .9fr 1.1fr; }
  .trust-grid { grid-template-columns: 1.35fr .65fr; align-items: start; }

  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-featured { grid-column: span 3; display: grid; grid-template-columns: auto 1fr; gap: 0 1.5rem; align-items: center; }
  .service-featured .service-ico { margin-bottom: 0; grid-row: span 2; width: 76px; height: 76px; }
  .service-featured .service-ico .ico { width: 2.3rem; height: 2.3rem; }
  .service-featured h3 { grid-column: 2; margin-bottom: .25em; }
  .service-featured p { grid-column: 2; max-width: 80ch; }

  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.25fr; }

  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .wa-float { bottom: 24px; right: 24px; }
  .wa-float-label { display: inline; }

  .strip-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --- 1080px --- */
@media (min-width: 1080px) {
  .footer-cities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Motion / reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
    will-change: opacity, transform;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .wa-float, .mobile-bar, .hero-actions, .btn-row, .quote-card { display: none !important; }
  body { color: #000; padding-bottom: 0; }
  .hero, .section-coverage, .section-quote, .site-footer { background: #fff !important; color: #000 !important; }
  .hero h1, .section-coverage h2, .section-quote h2 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
