/* ==========================================================================
   Davids AC LLC — davidsac.com
   Palette: deep navy / crisp white / flame-copper accent / chill cyan
   Type: Archivo (display) · IBM Plex Sans (body) · IBM Plex Mono (data)
   ========================================================================== */

:root {
  /* Color */
  --navy-900: #061426;
  --navy-800: #0B2340;
  --navy-700: #123255;
  --navy-600: #1C4571;
  --navy-100: #E7EEF6;
  --paper:    #F4F7FB;
  --white:    #FFFFFF;
  --ink:      #0D1B2A;
  --muted:    #56697F;
  --muted-light: #A9BCD2;
  --flame:    #EE6C21;
  --flame-dk: #C9530F;
  --chill:    #38BDF0;
  --line:     #DCE5EF;
  --line-dark: rgba(255, 255, 255, .13);

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* Space */
  --shell: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --pad-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(6, 20, 38, .06), 0 6px 18px rgba(6, 20, 38, .06);
  --shadow-md: 0 18px 48px rgba(6, 20, 38, .13);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--display); margin: 0; line-height: 1.08; letter-spacing: -.02em; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--flame); color: var(--navy-900); font-weight: 700;
  padding: .6rem 1rem; border-radius: var(--radius-sm); transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

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

.section { padding-block: var(--pad-y); }
.section-light { background: var(--white); }
.section-tint  { background: var(--paper); border-block: 1px solid var(--line); }
.section-dark  { background: var(--navy-900); color: var(--navy-100); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-title { font-size: clamp(1.85rem, 4.1vw, 2.9rem); font-weight: 800; color: var(--navy-900); }
.section-title-light { color: var(--white); }
.section-lede { margin-top: 1rem; color: var(--muted); font-size: 1.075rem; }
.section-lede-light { color: var(--muted-light); }

.eyebrow {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: .85rem;
}
.eyebrow-dark { color: var(--flame-dk); }

/* Signature hairline: cold → hot */
.thermal-rule {
  height: 3px;
  background: linear-gradient(90deg, var(--chill) 0%, #7EA8C9 38%, var(--flame) 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  letter-spacing: -.005em;
  padding: .95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

.btn-accent {
  background: var(--flame);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(238, 108, 33, .3);
}
.btn-accent:hover { background: #FF7C31; box-shadow: 0 12px 28px rgba(238, 108, 33, .38); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .32);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .07); }

.btn-sm { padding: .68rem 1.15rem; font-size: .94rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 20, 38, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 20, 38, .98);
  box-shadow: 0 10px 30px rgba(6, 20, 38, .28);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-mark-lg { width: 112px; height: auto; flex: none; }
.brand-stacked { flex-direction: column; align-items: flex-start; gap: .85rem; }
.brand-llc {
  font-size: .58em; font-weight: 700; color: var(--muted-light);
  vertical-align: .28em; letter-spacing: .04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--display); font-weight: 800; font-size: 1.22rem;
  color: var(--white); letter-spacing: -.02em;
}
.brand-sub {
  font-family: var(--mono); font-size: .63rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-light); margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  font-size: .95rem; font-weight: 500; color: var(--navy-100);
  text-decoration: none; position: relative; padding-block: .35rem;
  transition: color .16s ease;
}
.nav a:hover { color: var(--white); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--flame); transition: width .22s ease;
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav-call { display: none; }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 42px;
  background: transparent; border: 1px solid var(--line-dark);
  border-radius: 10px; cursor: pointer;
  padding: 11px 11px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 12% 0%, var(--navy-700) 0%, var(--navy-800) 42%, var(--navy-900) 100%);
  color: var(--navy-100);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
/* Blueprint grid — a nod to shop drawings */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 240, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 240, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(85% 70% at 30% 20%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(85% 70% at 30% 20%, #000 0%, transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.25rem, 5.6vw, 4.05rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.032em;
}
.hl-cool { color: var(--chill); }
.hl-warm { color: var(--flame); }

.hero-sub {
  margin-top: 1.4rem;
  max-width: 40rem;
  font-size: clamp(1.02rem, 1.6vw, 1.14rem);
  color: var(--muted-light);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.1rem; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: .55rem 1.5rem;
  margin-top: 2.1rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono); font-size: .78rem; letter-spacing: .04em;
  color: var(--muted-light);
}
.hero-badges li { display: flex; align-items: center; gap: .5rem; }
.hero-badges li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--chill); flex: none;
}

/* Signature: equipment nameplate */
.nameplate {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--shadow-md);
}
.nameplate-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: .95rem; margin-bottom: .35rem;
  border-bottom: 1px solid var(--line-dark);
}
.np-title { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--white); }
.np-badge {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--flame); border: 1px solid rgba(238,108,33,.45); border-radius: 999px;
  padding: .2rem .55rem;
}
.np-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .62rem 0;
  border-bottom: 1px dashed var(--line-dark);
  font-family: var(--mono); font-size: .765rem; line-height: 1.45;
}
.np-row dt { color: var(--muted-light); letter-spacing: .08em; text-transform: uppercase; font-size: .655rem; padding-top: .12rem; }
.np-row dd { color: var(--white); text-align: right; }

.nameplate-gauge { display: flex; align-items: center; gap: .7rem; margin-top: 1.05rem; }
.gauge-label {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-light);
}
.gauge-track {
  position: relative; flex: 1; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--chill), #8FA9C4 50%, var(--flame));
}
.gauge-dot {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border-radius: 50%; background: var(--white);
  box-shadow: 0 0 0 3px var(--navy-800);
  animation: sweep 7s ease-in-out infinite;
}
@keyframes sweep {
  0%, 100% { left: 22%; }
  50%      { left: 78%; }
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.6rem;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #C8D6E6; }
.card-top { position: absolute; inset: 0 0 auto 0; height: 4px; }
.mode-heat .card-top { background: var(--flame); }
.mode-cool .card-top { background: var(--chill); }
.mode-both .card-top { background: linear-gradient(90deg, var(--chill), var(--flame)); }

.card-mode {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .6rem;
}
.card-title { font-size: 1.32rem; font-weight: 700; color: var(--navy-900); }
.card-text { margin-top: .8rem; color: var(--muted); font-size: .98rem; }
.card-list { margin-top: 1.05rem; display: grid; gap: .42rem; }
.card-list li {
  position: relative; padding-left: 1.25rem;
  font-size: .9rem; color: var(--ink);
}
.card-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 2px; background: var(--flame);
}
.card-list-wide { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card-tier { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.3rem; }
.tier-chip {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 999px;
  background: var(--navy-100); color: var(--navy-700);
}
.tier-chip-lux {
  background: transparent; color: var(--flame-dk);
  border: 1px solid rgba(201, 83, 15, .35);
}
.card-wide { grid-column: 1 / -1; }

/* ---------- Estates ---------- */
.estates-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.estates-copy .btn { margin-top: 1.9rem; }
.estate-list { display: grid; gap: 0; }
.estate-list li {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-dark);
}
.estate-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.estate-list h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.estate-list p { margin-top: .45rem; color: var(--muted-light); font-size: .96rem; }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  counter-reset: none;
}
.step { border-top: 3px solid var(--navy-100); padding-top: 1.1rem; }
.step-num {
  font-family: var(--mono); font-size: .82rem; font-weight: 600;
  color: var(--flame-dk); letter-spacing: .1em;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-top: .55rem; color: var(--navy-900); }
.step p { margin-top: .5rem; color: var(--muted); font-size: .95rem; }

/* ---------- Reviews ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--navy-800); letter-spacing: -.03em;
}
.stat-label {
  display: block; margin-top: .3rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
}
.review {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.stars { color: var(--flame); letter-spacing: .12em; font-size: 1rem; }
.review blockquote { margin: .85rem 0 0; }
.review blockquote p { color: var(--ink); font-size: 1rem; }
.review figcaption { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.rev-name { display: block; font-family: var(--display); font-weight: 700; color: var(--navy-900); font-size: .98rem; }
.rev-meta { display: block; margin-top: .2rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--muted); }
.review-cta { margin-top: 2rem; text-align: center; color: var(--muted); }
.review-cta a { color: var(--flame-dk); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.25rem 0;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--navy-900);
}
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--flame-dk); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.faq-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-icon::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.faq-a p { padding-bottom: 1.3rem; color: var(--muted); font-size: .99rem; max-width: 60ch; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-phone {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.9rem;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  color: var(--white); text-decoration: none; letter-spacing: -.02em;
}
.contact-phone .ico { width: 1.5rem; height: 1.5rem; color: var(--flame); }
.contact-phone:hover { color: var(--flame); }

.hours { margin-top: 2rem; border-top: 1px solid var(--line-dark); }
.hours > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .68rem 0; border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono); font-size: .8rem;
}
.hours dt { color: var(--muted-light); }
.hours dd { color: var(--white); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: flex; flex-direction: column; margin-bottom: 1.05rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .78rem .9rem;
  font-size: 1rem;
  transition: border-color .16s ease, background-color .16s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 2.6rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--white); border-color: var(--navy-600); outline: none;
  box-shadow: 0 0 0 3px rgba(28, 69, 113, .15);
}
.field.has-error input, .field.has-error select { border-color: #C0392B; }
.error { display: none; margin-top: .35rem; font-size: .82rem; color: #C0392B; }
.field.has-error .error { display: block; }

.quote-form .btn { margin-top: .4rem; }
.form-note { margin-top: .9rem; font-size: .85rem; color: var(--muted); text-align: center; }
.form-status { margin-top: .9rem; font-size: .95rem; font-weight: 600; color: #14804A; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-800); color: var(--navy-100); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) 2.25rem;
}
.footer-blurb { margin: 1rem 0 1.4rem; color: var(--muted-light); font-size: .95rem; max-width: 30ch; }
.footer-col h3 {
  font-family: var(--mono); font-size: .7rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--flame);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { color: var(--navy-100); text-decoration: none; font-size: .94rem; }
.footer-col a:hover { color: var(--flame); }
.area-list li { color: var(--muted-light); font-size: .94rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; color: var(--muted-light); }
.hours-list li span:last-child { color: var(--white); font-family: var(--mono); font-size: .78rem; }
.footer-contact { margin-top: 1.2rem; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.footer-contact a { text-decoration: none; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: .82rem; color: var(--muted-light);
}
.footer-legal { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; }

/* ---------- Mobile call bar ---------- */
.call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1rem;
  background: var(--flame); color: var(--navy-900);
  font-family: var(--display); font-weight: 800; font-size: 1.02rem;
  text-decoration: none;
  box-shadow: 0 -8px 24px rgba(6, 20, 38, .22);
}
.call-bar .ico { width: 1.15rem; height: 1.15rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .nameplate { max-width: 520px; }
  .estates-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .header-cta span { display: none; }
  .header-cta { padding: .7rem; border-radius: 50%; }
  .header-cta .ico { width: 1.25rem; height: 1.25rem; }
  .nav-toggle { display: block; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--line-dark);
    padding: .5rem var(--gutter) 1.5rem;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.is-open { max-height: 70vh; overflow: auto; }
  .nav a { padding: .95rem 0; border-bottom: 1px solid var(--line-dark); font-size: 1.02rem; }
  .nav a::after { display: none; }
  .nav-call {
    display: block; margin-top: 1rem; border: 0 !important;
    text-align: center; background: var(--flame); color: var(--navy-900);
    font-family: var(--display); font-weight: 800; border-radius: 999px;
  }

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

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-cta .btn { width: 100%; }
  .hero-badges { flex-direction: column; gap: .5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .np-row { flex-direction: column; gap: .2rem; }
  .np-row dd { text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .call-bar, .quote-form, .nav { display: none; }
  body { color: #000; background: #fff; }
}
