/* ========================================================================
   Brazos Valley Mobile Notary — styles
   Palette: Aggie maroon + white/cream, on soft ivory. Professional & trustworthy.
   ======================================================================== */

:root {
  --maroon-900: #3a0000;
  --maroon-800: #500000;
  --maroon-700: #6b1a24;
  --maroon-600: #8c2f39;
  --on-maroon: #f5ece6;   /* warm near-white: accents & CTAs that sit on maroon */
  --ivory:    #fbf8f3;
  --cream:    #f4eee3;
  --ink:      #241a1b;
  --muted:    #7a5f62;
  --line:     #e7ddd6;
  --white:    #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(58, 0, 0, .10), 0 1px 2px rgba(58, 0, 0, .05);
  --shadow-md: 0 10px 30px rgba(58, 0, 0, .12);
  --shadow-lg: 0 24px 60px rgba(58, 0, 0, .20);
  --maxw: 1120px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; color: var(--maroon-900); margin: 0 0 .4em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }

a { color: var(--maroon-600); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--maroon-800); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto;
  background: var(--maroon-800); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 200; clip: auto;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--maroon-800);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--maroon-800); color: #fff; box-shadow: 0 8px 22px rgba(80, 0, 0, .30); }
.btn-primary:hover { background: var(--maroon-900); color: #fff; box-shadow: 0 12px 28px rgba(80, 0, 0, .40); }

/* On dark maroon backgrounds the primary CTA flips to a cream fill so it pops.
   Scoped to the CTAs that actually sit on maroon — NOT the form button inside
   the white hero card. */
.hero-cta .btn-primary,
.calc-result .btn-primary,
.callout .btn-primary { background: var(--on-maroon); color: var(--maroon-900); box-shadow: 0 8px 22px rgba(0, 0, 0, .28); }
.hero-cta .btn-primary:hover,
.calc-result .btn-primary:hover,
.callout .btn-primary:hover { background: #fff; color: var(--maroon-900); box-shadow: 0 12px 28px rgba(0, 0, 0, .34); }

.btn-outline { background: transparent; color: var(--maroon-800); border-color: var(--line); }
.btn-outline:hover { border-color: var(--maroon-600); color: var(--maroon-800); background: var(--white); }

.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, .85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--maroon-900); }
.brand:hover { color: var(--maroon-900); }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(150deg, var(--maroon-700), var(--maroon-900));
  color: var(--on-maroon); box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; }
.brand-sub { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--maroon-600); font-weight: 600; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--maroon-800); font-weight: 500; font-size: .96rem; }
.nav-menu a.btn { color: #fff; }
.nav-menu a:not(.btn):hover { color: var(--maroon-800); }

.nav-toggle {
  display: none; position: relative; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--white); cursor: pointer;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--maroon-800); border-radius: 2px; transform: translate(-50%, -50%); transition: .22s ease;
}
.nav-toggle-bar::before { transform: translate(-50%, -8px); }
.nav-toggle-bar::after  { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(140,47,57,.40), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(160deg, var(--maroon-900), var(--maroon-800) 55%, var(--maroon-700));
  color: #f4eae8;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--maroon-600); margin: 0 0 .9rem;
}
.hero .eyebrow { color: var(--on-maroon); }
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero .lead { color: #ead2d4; font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.4rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; list-style: none; padding: 0; margin: 0; color: #ddc3c5; font-size: .92rem; font-weight: 500; }

.hero-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
}
.hero-card h2 { font-size: 1.3rem; margin-bottom: .25rem; }
.hero-card-sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.1rem; }
.quick-form { display: grid; gap: .8rem; }

label { display: grid; gap: .35rem; font-size: .85rem; font-weight: 600; color: var(--maroon-800); }
input, select, textarea {
  font: inherit; font-weight: 400; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); width: 100%; transition: border-color .18s ease, box-shadow .18s ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--maroon-600); box-shadow: 0 0 0 3px rgba(140,47,57,.20);
}
.form-note { font-size: .8rem; color: var(--muted); margin: .2rem 0 0; text-align: center; }
.form-error {
  font-size: .85rem; font-weight: 500; color: #a02a20; text-align: center;
  margin: .2rem 0 0; padding: .6rem .75rem;
  background: #fdf1ef; border: 1px solid #f2c9c3; border-radius: 10px;
}
.form-error[hidden] { display: none; }

/* Spam honeypot — hidden from people, visible to bots */
.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

button[type="submit"][disabled] { opacity: .65; cursor: progress; }

/* ---------- Form success state ---------- */
.form-success {
  text-align: center; padding: 1.5rem .5rem; outline: none;
  animation: successIn .45s ease both;
}
/* In the contact section the form itself is a card, so the confirmation
   that replaces it needs the same card shell. In the hero it already sits
   inside .hero-card, so no extra shell is needed there. */
.contact-inner > .form-success {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: clamp(2rem, 4vw, 3rem) 1.5rem;
}
.form-success-icon {
  width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, #2e9e5b, #1f7d45);
  box-shadow: 0 10px 26px rgba(31,125,69,.35);
}
.form-success h3 { color: var(--maroon-800); font-size: 1.35rem; margin-bottom: .5rem; }
.form-success p { color: var(--muted); margin: 0 auto .6rem; max-width: 38ch; }
.form-success-call { font-weight: 600; color: var(--maroon-800); }

@keyframes successIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .form-success { animation: none; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--maroon-900); color: #f0dcdd; }
.trustbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.trust-item {
  display: flex; flex-direction: column; gap: .15rem; padding: 1.3rem 1.2rem; text-align: center;
  align-items: center; border-left: 1px solid rgba(255,255,255,.08);
}
.trust-item:first-child { border-left: none; }
.trust-item strong { color: var(--on-maroon); font-size: 1.02rem; }
.trust-item span { font-size: .85rem; color: #d0aeb2; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--cream); }
.section-head { max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-intro { color: var(--muted); font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--maroon-600); }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem;
  background: var(--cream); border-radius: 14px; margin-bottom: 1rem;
}
.card h3 { color: var(--maroon-800); }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Service area ---------- */
.area-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.area-copy p { color: var(--muted); }
.area-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem .8rem;
  list-style: none; padding: 0; margin: 1.4rem 0 1rem;
}
.area-list li {
  position: relative; padding-left: 1.4rem; font-weight: 500; color: var(--maroon-800); font-size: .96rem;
}
.area-list li::before {
  content: "📍"; position: absolute; left: 0; font-size: .85rem;
}
.area-note { font-size: .9rem; color: var(--muted); font-style: italic; }

.area-visual { display: grid; place-items: center; }
.pin-map {
  position: relative; width: 100%; max-width: 650px; margin: 0; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden;
}
.pin-map img { display: block; width: 100%; height: auto; }
.map-label {
  position: absolute; bottom: 14px; left: 14px; background: rgba(80,0,0,.9); color: #fff;
  font-size: .8rem; font-weight: 600; padding: .35rem .7rem; border-radius: 999px;
}

/* ---------- Pricing: two parts ---------- */
.pricing-two {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: stretch;
  max-width: 860px; margin: 0 auto 2.4rem;
}
.pricing-part {
  display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.pricing-part-num {
  flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream); color: var(--maroon-800); font-family: var(--font-head); font-weight: 600; font-size: 1rem;
}
.pricing-part h3 { color: var(--maroon-800); font-size: 1.15rem; margin-bottom: .25rem; }
.pricing-part p { color: var(--muted); margin: 0; font-size: .95rem; }
.pricing-part strong { color: var(--ink); }
.pricing-plus {
  display: grid; place-items: center; font-family: var(--font-head); font-size: 1.8rem;
  color: var(--maroon-600); font-weight: 600;
}

/* ---------- Pricing: calculator ---------- */
.calc {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 0;
  max-width: 900px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.calc-inputs { background: var(--white); padding: clamp(1.5rem, 3vw, 2.2rem); }
.calc-inputs h3 { color: var(--maroon-800); font-size: 1.3rem; margin-bottom: .2rem; }
.calc-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }

.calc-field { margin-bottom: 1.5rem; }
.calc-field:last-child { margin-bottom: 0; }
.calc-label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; }
.calc-label-row label { font-size: .92rem; font-weight: 600; color: var(--maroon-800); }
.calc-label-row output {
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--maroon-800);
  background: var(--cream); padding: .1rem .6rem; border-radius: 8px; white-space: nowrap;
}
.calc-hint { font-size: .8rem; color: var(--muted); margin: .5rem 0 0; }

/* range slider */
.calc input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; padding: 0;
  border: none; border-radius: 999px; background: var(--line); cursor: pointer;
}
.calc input[type="range"]:focus { outline: none; box-shadow: none; }
.calc input[type="range"]:focus-visible { box-shadow: 0 0 0 3px rgba(140,47,57,.30); }
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--maroon-800); border: 3px solid var(--white); box-shadow: var(--shadow-sm); cursor: pointer;
}
.calc input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--maroon-800);
  border: 3px solid var(--white); box-shadow: var(--shadow-sm); cursor: pointer;
}

.calc-result {
  background: linear-gradient(160deg, var(--maroon-800), var(--maroon-900)); color: #f0dcdd;
  padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column;
}
.calc-result-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-maroon); margin: 0 0 .1rem; }
.calc-total { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.4rem); color: #fff; margin: 0 0 1.1rem; line-height: 1; }
.calc-breakdown { list-style: none; padding: 0 0 1.3rem; margin: 0 0 1.3rem; border-bottom: 1px solid rgba(255,255,255,.14); display: grid; gap: .5rem; }
.calc-breakdown li { display: flex; justify-content: space-between; font-size: .95rem; color: #e2c4c7; transition: opacity .18s ease; }
.calc-breakdown li span:last-child { color: #fff; font-weight: 600; }
.calc-breakdown li.is-zero { opacity: .45; }
.calc-result .btn { margin-top: auto; }
.calc-note { font-size: .78rem; color: #c09aa0; margin: .9rem 0 0; }

.pricing-fineprint { max-width: 760px; margin: 2rem auto 0; text-align: center; font-size: .85rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
}
.step-num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--maroon-800); color: var(--on-maroon); font-family: var(--font-head); font-weight: 600;
  font-size: 1.15rem; margin-bottom: .9rem;
}
.step h3 { color: var(--maroon-800); font-size: 1.1rem; }
.step p { color: var(--muted); margin: 0; font-size: .94rem; }

.callout {
  margin-top: 2rem; background: var(--maroon-800); color: #f0dcdd; border-radius: var(--radius);
  padding: 1.8rem clamp(1.4rem, 4vw, 2.4rem); display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; box-shadow: var(--shadow-md);
}
.callout h3 { color: #fff; margin-bottom: .3rem; }
.callout p { margin: 0; color: #dcc2c5; max-width: 60ch; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
}
.stars { color: var(--maroon-600); letter-spacing: .12em; font-size: 1.05rem; margin-bottom: .7rem; }
.quote blockquote { margin: 0 0 1rem; font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.quote figcaption { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-inner { max-width: 820px; }
.faq-list { display: grid; gap: .8rem; }
.faq-list details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.3rem; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-list summary {
  list-style: none; cursor: pointer; padding: 1.1rem 0; font-weight: 600; color: var(--maroon-800);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-size: 1.4rem; color: var(--maroon-600); font-weight: 400; transition: transform .2s ease; line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0 0 1.1rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-copy p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; font-weight: 500; color: var(--maroon-800); }
.ci { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); font-size: 1.05rem; flex: none; }

.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-md); display: grid; gap: 1rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-900); color: #dcc2c5; padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand strong { color: #fff; font-family: var(--font-head); font-size: 1.1rem; }
.footer-brand p { margin: .15rem 0 0; font-size: .85rem; color: #c19aa0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-nav a { color: #ead2d4; font-size: .92rem; font-weight: 500; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.4rem; }
.footer-bottom p { margin: 0; font-size: .82rem; color: #b58f95; }
.disclaimer { max-width: 60ch; }

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  align-items: center; justify-content: center; gap: .5rem;
  background: var(--maroon-800); color: #fff; font-weight: 700;
  padding: .95rem; border-radius: 999px; box-shadow: var(--shadow-lg);
}
.call-bar:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .area-inner, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(odd) { border-left: none; }
  .pricing-two { grid-template-columns: 1fr; max-width: 520px; }
  .pricing-plus { padding: .2rem 0; }
  .calc { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 620px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .3rem;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: .8rem clamp(1.1rem, 4vw, 2rem) 1.2rem; box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .2s ease;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu li { padding: .3rem 0; }
  .nav-menu a { display: block; padding: .5rem 0; }
  .nav-menu a.btn { text-align: center; padding: .8rem; }

  .cards, .quotes, .steps { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .call-bar { display: flex; }
  body { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
