/* ==========================================================================
   My Next Moving — Next Level Premium Services
   Design system. Palette + type carried over from the original prototype.
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #16215c;
  --navy-deep:   #0f1846;
  --blue:        #1a5fc4;
  --blue-dark:   #1550ab;
  --gold:        #f7b500;
  --gold-dark:   #e0a000;

  /* Neutrals */
  --ink:         #1b2340;
  --body:        #4c5674;
  --muted:       #5b6584;
  --faint:       #8b93ab;
  --line:        #e7edf6;
  --line-strong: #d7deec;
  --tint:        #f4f9ff;
  --tint-2:      #eef4fb;
  --surface:     #f8fafc;
  --white:       #ffffff;

  --ok:          #157347;
  --ok-bg:       #e8f6ee;
  --warn-bg:     #fff8e6;
  --warn-line:   #f3e0ac;
  --warn-ink:    #6b5411;
  --err:         #c1272d;

  /* Type */
  --display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --text:    'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Rhythm */
  --shell:   1200px;
  --gut:     24px;
  --radius:  12px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(22,33,92,.06);
  --shadow:    0 6px 20px rgba(22,33,92,.10);
  --shadow-lg: 0 14px 34px rgba(22,33,92,.18);

  /* Height of the sticky mobile call bar; 0 on desktop. */
  --callbar: 0px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* scroll-padding-top keeps anchor targets clear of the sticky header. Without
   it, a link like /services.html#moving lands with the heading hidden behind
   the masthead. Applies to in-page anchors, focus() and scrollIntoView alike. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: var(--callbar);
}
img, picture, svg, video { max-width: 100%; display: block; }
/* Class-level display rules (.social a, .callbar a …) otherwise beat the UA
   [hidden] rule, leaving JS-hidden elements visible as empty boxes. */
[hidden] { display: none !important; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--navy); margin: 0 0 .5em; line-height: 1.18; }
p { margin: 0 0 1em; }
a { color: var(--blue); }
ul { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

/* Visible keyboard focus everywhere — the prototype had none. */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout ---------- */
.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--tint { background: var(--tint-2); }
.section--surface { background: var(--surface); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 28px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  min-height: 48px;                      /* accessible tap target */
  transition: background .18s, transform .12s, box-shadow .18s;
}
.btn:active { transform: translateY(1px); }
.btn--gold  { background: var(--gold); color: var(--navy); box-shadow: 0 4px 14px rgba(22,33,92,.16); }
.btn--gold:hover  { background: var(--gold-dark); }
.btn--navy  { background: var(--navy); color: #fff; }
.btn--navy:hover  { background: var(--navy-deep); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--tint); border-color: var(--blue); }
.btn--lg    { font-size: 18px; padding: 19px 38px; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] {
  background: #dfe3ee; color: #9aa2bd; cursor: not-allowed; box-shadow: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid var(--line);
}
.masthead__inner {
  display: flex; align-items: center; gap: 20px;
  max-width: var(--shell); margin-inline: auto; padding: 10px var(--gut);
}
.brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand img { height: 62px; width: auto; }

.mainnav { margin-right: auto; }
.mainnav ul { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.mainnav a {
  display: block; text-decoration: none; font-weight: 600; font-size: 15px;
  color: var(--muted); padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.mainnav a:hover { color: var(--navy); }
.mainnav a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--gold); }

.masthead__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Phone shown in the header on desktop — the highest-intent action for a mover. */
.headphone {
  display: flex; flex-direction: column; line-height: 1.15;
  text-decoration: none; padding-right: 6px;
}
.headphone span { font-size: 11px; font-weight: 700; letter-spacing: .07em; color: var(--faint); }
.headphone strong { font-family: var(--display); font-size: 18px; color: var(--navy); }
.headphone:hover strong { color: var(--blue); }

.navtoggle {
  display: none; width: 48px; height: 48px; padding: 0;
  background: none; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  cursor: pointer; align-items: center; justify-content: center;
}
.navtoggle span, .navtoggle span::before, .navtoggle span::after {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.navtoggle span { position: relative; }
.navtoggle span::before, .navtoggle span::after { content: ''; position: absolute; left: 0; }
.navtoggle span::before { top: -7px; }
.navtoggle span::after  { top:  7px; }
.navtoggle[aria-expanded="true"] span { background: transparent; }
.navtoggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,0) 66%);
}
.hero__inner { position: relative; width: 100%; }
.hero__copy { max-width: 560px; padding: 64px 0; }
.hero h1 { font-size: clamp(34px, 5.2vw, 56px); font-weight: 800; margin-bottom: 16px; }
/* Brand line stays visually dominant; the location line lives inside the same H1
   so the page still declares its keyword to search engines. */
.hero h1 .h1-sub {
  display: block; font-family: var(--text); font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 600; color: var(--blue); margin-top: 12px; line-height: 1.35;
}
.hero__lede { font-size: clamp(16px, 1.9vw, 19px); color: #22305e; font-weight: 500; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; font-weight: 600; color: var(--navy); }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { flex-shrink: 0; }

/* ---------- Trust bar ---------- */
.trustbar { background: linear-gradient(180deg, #fff 0%, #e8f2fc 100%); padding: 30px 0; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__cell {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 8px 16px; text-align: center;
  border-right: 1px solid #cfe0f2;
}
.trustbar__cell:last-child { border-right: 0; }
.trustbar__cell strong { font-size: 14.5px; color: var(--navy); }

/* ---------- Service-area band ---------- */
.areaband { display: grid; grid-template-columns: 1.35fr 1fr; min-height: 340px; }
.areaband__copy { position: relative; overflow: hidden; display: flex; align-items: center; }
.areaband__copy img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.areaband__copy::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.66) 58%, rgba(255,255,255,0) 100%);
}
.areaband__text { position: relative; z-index: 1; padding: 40px 48px; max-width: 560px; }
.areaband__text h2 { font-size: clamp(22px, 2.9vw, 32px); font-weight: 800; margin-bottom: 14px; }
.areaband__cities {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 16px;
}
.areaband__cities li {
  margin: 0; background: rgba(255,255,255,.85); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 13px; font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.areaband__map { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; min-height: 260px; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.card__icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 15px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint-2); color: var(--navy);
}
.card--link { text-decoration: none; display: block; transition: border-color .18s, box-shadow .18s, transform .18s; }
.card--link:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps__item { position: relative; padding-top: 56px; }
.steps__item::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.steps__item h3 { font-size: 16.5px; margin-bottom: 6px; }
.steps__item p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Testimonial ---------- */
.quotecard {
  max-width: 880px; margin-inline: auto; background: var(--tint);
  border: 1px solid #dce8f7; border-radius: var(--radius);
  padding: 38px 40px; text-align: center; box-shadow: var(--shadow-sm);
}
.quotecard__mark { font-family: var(--display); font-size: 46px; line-height: .7; color: #9fc4ea; }
.quotecard blockquote {
  font-family: var(--display); font-size: clamp(17px, 2.2vw, 20px); line-height: 1.55;
  font-weight: 600; color: var(--navy); margin: 12px 0 14px;
}
.quotecard cite { font-style: normal; color: var(--muted); font-size: 14px; font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; margin-bottom: 12px;
}
.faq details[open] { border-color: #c9d9ef; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 52px 17px 20px; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 22px; top: 50%;
  width: 9px; height: 9px; border-right: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq__body { padding: 0 20px 18px; color: var(--body); font-size: 15px; }
.faq__body p:last-child, .faq__body ul:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.ctaband {
  background: var(--tint-2); border-radius: 16px; padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ctaband h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.ctaband p { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- Page header ---------- */
.pagehead { background: var(--tint-2); padding: 56px 0; text-align: center; }
.pagehead h1 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.pagehead p { max-width: 660px; margin: 0 auto; color: var(--body); font-size: 17px; }
.pagehead--navy { background: var(--navy); }
.pagehead--navy h1 { color: #fff; }
.pagehead--navy p { color: #a9b4d6; }

.crumbs { font-size: 13px; color: var(--faint); padding: 14px 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumbs li::after { content: '›'; margin-left: 6px; color: #c2c9d8; }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--muted); text-decoration: none; display: inline-block; padding: 5px 2px; }
.crumbs a:hover { text-decoration: underline; }
.crumbs li { display: flex; align-items: center; }

/* ==========================================================================
   Forms
   ========================================================================== */
.field { margin-bottom: 16px; }
.field > label, .field__label {
  display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 7px;
}
.field__hint { font-weight: 500; color: var(--faint); }
.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: 16px; /* 16px stops iOS zoom-on-focus */
  color: var(--ink); background: #fff;
  padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  min-height: 50px; transition: border-color .15s, box-shadow .15s;
}
.input::placeholder, .textarea::placeholder { color: #a9b1c6; }
.input:hover, .select:hover, .textarea:hover { border-color: #bcc7dd; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,95,196,.16);
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2316215c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.input[aria-invalid="true"], .textarea[aria-invalid="true"], .select[aria-invalid="true"] { border-color: var(--err); }
.field__error { display: none; color: var(--err); font-size: 13px; font-weight: 600; margin-top: 6px; }
.field__error.is-shown { display: block; }

fieldset { border: 0; margin: 0 0 22px; padding: 0; }
legend { font-size: 12.5px; font-weight: 700; letter-spacing: .07em; color: var(--faint); text-transform: uppercase; padding: 0; margin-bottom: 14px; }
/* Hints inside a legend opt out of the uppercase label treatment so they read
   as a sentence rather than shouting. */
legend .field__hint { text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 13px; }

/* Checkbox / radio pills */
.pillgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pill {
  display: flex; align-items: center; gap: 9px; min-height: 48px;
  padding: 10px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; font-size: 14px; transition: border-color .15s, background .15s;
}
.pill:hover { border-color: #bcc7dd; }
.pill input { width: 18px; height: 18px; accent-color: var(--navy); margin: 0; flex-shrink: 0; }
.pill:has(input:checked) { border-color: var(--navy); background: var(--tint-2); }
.pill:has(input:focus-visible) { outline: 3px solid var(--blue); outline-offset: 2px; }

.choicerow { display: flex; gap: 10px; flex-wrap: wrap; }
.choice { flex: 1 1 140px; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice span {
  display: flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 12px 10px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: #fff; color: var(--navy); font-size: 14.5px; font-weight: 600;
  cursor: pointer; text-align: center; transition: border-color .15s, background .15s;
}
.choice input:checked + span { border-color: var(--navy); background: var(--tint-2); }
.choice input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }

/* Quote band on the home page */
.quoteband { position: relative; background: var(--blue); padding: 60px 0 80px; overflow: hidden; }
.quoteband::after {
  content: ''; position: absolute; left: -30%; right: -30%; bottom: -60px; height: 170px;
  background: var(--blue-dark); border-radius: 50% 50% 0 0;
}
.quoteband__inner { position: relative; z-index: 1; max-width: 860px; margin-inline: auto; }
.quoteband h2 { color: #fff; text-align: center; font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; margin-bottom: 8px; }
.quoteband__sub { text-align: center; color: #d6e6ff; margin-bottom: 30px; font-size: 16px; }
.quoteband .input, .quoteband .select, .quoteband .textarea { border-color: transparent; }
.quoteband .field > label { color: #eaf2ff; }

.formgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.formgrid .field { margin: 0; }
.span-2 { grid-column: span 2; }

.formnote {
  background: var(--warn-bg); border: 1px solid var(--warn-line); border-radius: 10px;
  padding: 15px 18px; color: var(--warn-ink); font-size: 13.5px; line-height: 1.55;
}

.formdone {
  background: #fff; border-radius: var(--radius); padding: 40px; text-align: center;
}
.formdone h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.formdone p { color: var(--muted); margin: 0; }
.formdone__tick {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Location combobox (city OR ZIP)
   ========================================================================== */
.loc { position: relative; }
.loc__input { padding-right: 44px; }
.loc__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 40;
  max-height: 268px; overflow-y: auto; margin: 0; padding: 6px;
  list-style: none; background: #fff; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
}
.loc__list[hidden] { display: none; }
.loc__opt {
  margin: 0; padding: 11px 12px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: baseline; gap: 8px; font-size: 15px; color: var(--ink);
}
.loc__opt:hover, .loc__opt[aria-selected="true"] { background: var(--tint-2); }
.loc__opt b { font-weight: 600; }
.loc__opt small { color: var(--faint); font-size: 12.5px; margin-left: auto; }
.loc__empty { padding: 14px 12px; color: var(--faint); font-size: 14px; }

.loc__status { display: none; margin-top: 7px; font-size: 13px; font-weight: 600; align-items: center; gap: 6px; }
.loc__status.is-shown { display: flex; }
.loc__status[data-state="in"]  { color: var(--ok); }
.loc__status[data-state="out"] { color: var(--warn-ink); }

/* ==========================================================================
   Quote wizard
   ========================================================================== */
.wizard { max-width: 900px; margin-inline: auto; }
.wizsteps { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 40px; }
.wizsteps__item { display: flex; align-items: flex-start; }
.wizsteps__dot { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 96px; }
.wizsteps__num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; background: var(--tint-2); color: var(--faint);
  transition: background .2s, color .2s;
}
.wizsteps__label { font-size: 12px; font-weight: 600; color: var(--faint); text-align: center; }
.wizsteps__item.is-active .wizsteps__num,
.wizsteps__item.is-done   .wizsteps__num { background: var(--navy); color: #fff; }
.wizsteps__item.is-active .wizsteps__label { color: var(--navy); }
.wizsteps__line { width: 56px; height: 2px; background: #e0e6f2; margin-top: 17px; }
.wizsteps__item.is-done .wizsteps__line { background: var(--navy); }

.wizpanel[hidden] { display: none; }
.wizpanel > h2 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.wizpanel__sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }

.locbox { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--surface); }
.locbox__title { font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 16px; }
.locbox--from .locbox__title { color: var(--blue); }
.locbox--to   .locbox__title { color: #b98700; }

.review { display: grid; gap: 18px; }
.review__group { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.review__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--tint); padding: 12px 20px; border-bottom: 1px solid var(--line);
}
.review__head h3 { font-size: 15px; font-weight: 700; margin: 0; }
.review__edit {
  background: none; border: 0; color: var(--blue); font: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; padding: 6px 8px; border-radius: 6px;
}
.review__edit:hover { background: #e3efff; }
.review__rows { padding: 4px 20px 12px; }
.review__row {
  display: grid; grid-template-columns: 210px 1fr; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid #f1f5fa;
}
.review__row:last-child { border-bottom: 0; }
.review__row dt { color: var(--faint); font-size: 13.5px; }
.review__row dd { margin: 0; font-size: 14px; font-weight: 600; color: var(--navy); }
.review__row dd.is-empty { color: #b3bbcd; font-weight: 500; }

.wiznav { display: flex; justify-content: space-between; gap: 12px; margin-top: 36px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.sitefoot { background: var(--navy-deep); color: #c3cbe6; padding: 52px 0 24px; }
.sitefoot__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 36px;
  padding-bottom: 32px; border-bottom: 1px solid #263166;
}
.sitefoot h2 { color: var(--gold); font-family: var(--text); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.sitefoot ul { list-style: none; margin: 0; padding: 0; }
.sitefoot li { margin-bottom: 4px; font-size: 14px; }
.sitefoot a { color: #c3cbe6; text-decoration: none; }
.sitefoot a:hover { color: #fff; text-decoration: underline; }
/* Footer nav links get a real tap area rather than a 17px line box. */
.sitefoot nav a { display: block; padding: 7px 0; }
.sitefoot__logo { background: #fff; border-radius: 8px; padding: 8px 12px; display: inline-block; margin-bottom: 14px; }
.sitefoot__logo img { height: 44px; width: auto; }
.sitefoot__blurb { font-size: 13.5px; line-height: 1.65; margin-bottom: 16px; }
.sitefoot__legal {
  padding-top: 20px; text-align: center; color: #6d7aa8; font-size: 12.5px; line-height: 1.7;
}
.social { display: flex; gap: 10px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; background: #1b2758;
  display: flex; align-items: center; justify-content: center; color: #c3cbe6;
  transition: background .18s, color .18s;
}
.social a:hover { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   Sticky mobile call bar
   ========================================================================== */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--navy); border-top: 2px solid var(--gold);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 18px rgba(0,0,0,.2);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; border-radius: var(--radius-sm); text-decoration: none;
  font-family: var(--display); font-weight: 700; font-size: 16px;
}
.callbar__call  { background: var(--gold); color: var(--navy); }
.callbar__quote { background: #26326f; color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .mainnav ul { gap: 20px; }
  .brand img { height: 54px; }
  .headphone { display: none; }
}

@media (max-width: 900px) {
  :root { --gut: 20px; }
  html { scroll-padding-top: 80px; }   /* shorter masthead on small screens */
  .navtoggle { display: flex; }
  .masthead__inner { gap: 12px; }
  .mainnav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 8px var(--gut) 18px;
    display: none;
  }
  .mainnav.is-open { display: block; }
  .mainnav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .mainnav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .mainnav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--blue); }
  .mainnav li:last-child a { border-bottom: 0; }
  .masthead__actions .btn--nav { display: none; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }

  .areaband { grid-template-columns: 1fr; }
  .areaband__text { padding: 36px var(--gut); }
  .areaband__map { height: 240px; }

  .hero { min-height: 0; }
  .hero__media img { object-position: 72% 20%; }
  .hero__scrim { background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.9) 55%, rgba(255,255,255,.82) 100%); }
  .hero__copy { padding: 48px 0; max-width: none; }

  .sitefoot__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .review__row { grid-template-columns: 1fr; gap: 3px; }
  .wizsteps__dot { width: 78px; }
  .wizsteps__line { width: 28px; }
}

@media (max-width: 720px) {
  .section { padding: 52px 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .pillgrid { grid-template-columns: repeat(2, 1fr); }
  .formgrid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .trustbar__cell:nth-child(2n) { border-right: 0; }
  .quotecard { padding: 30px 22px; }
  .ctaband { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
  .ctaband .btn { width: 100%; }
  .hero__cta .btn { width: 100%; }

  /* Roomier footer links where the input is a fingertip, not a cursor. */
  .sitefoot nav a { padding: 11px 0; }
  .sitefoot li { margin-bottom: 0; }

  /* Sticky call bar takes over below this width. */
  :root { --callbar: 70px; }
  .callbar { display: flex; }
}

@media (max-width: 560px) {
  :root { --gut: 16px; }
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pillgrid { grid-template-columns: 1fr; }
  .sitefoot__grid { grid-template-columns: 1fr; }
  .brand img { height: 48px; }
  .wizsteps__dot { width: 68px; }
  .wizsteps__label { font-size: 11px; }
  .wiznav .btn { flex: 1; padding-inline: 14px; }
}

/* ---------- Print ---------- */
@media print {
  .masthead, .callbar, .quoteband, .sitefoot, .wiznav { display: none !important; }
  body { padding-bottom: 0; }
}
