/* ==========================================================================
   PrimeAir Mechanical — primeairmech.com
   Stylesheet. One file for the whole site.
   Edit brand colours in the :root block below.
   ========================================================================== */

:root {
  /* Brand — PrimeAir */
  --prime:      #0B63CE;   /* primary — brand, actions, links */
  --prime-dark: #084A9C;
  --prime-soft: #EAF2FD;
  --ember:      #F0722C;   /* heating */
  --ember-dark: #BF4E11;
  --ember-soft: #FFF1E8;
  --sky:        #17A8C4;   /* cooling */
  --sky-dark:   #0C7E96;
  --sky-soft:   #E4F7FB;

  /* Neutrals — biased slightly blue to sit with the brand */
  --ink:    #08182B;
  --ink-2:  #10273F;
  --ink-3:  #21394F;
  --slate:  #3B4F66;
  --muted:  #566A81;
  --line:   #E1E8F1;
  --line-2: #EDF2F8;
  --bg:     #FFFFFF;
  --bg-alt: #F4F7FB;

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(8,24,43,.06), 0 2px 6px rgba(8,24,43,.04);
  --shadow:    0 2px 4px rgba(8,24,43,.05), 0 12px 28px -10px rgba(8,24,43,.16);
  --shadow-lg: 0 4px 8px rgba(8,24,43,.05), 0 28px 60px -20px rgba(8,24,43,.28);

  /* Layout */
  --wrap: 1180px;
  --gut: 22px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -0.021em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.15rem, 1.35rem + 3.3vw, 3.7rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.85vw, 2.5rem); letter-spacing: -0.026em; }
h3 { font-size: 1.2rem; letter-spacing: -0.015em; }
p  { margin: 0 0 1.1em; }
a  { color: var(--prime-dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--prime); }
ul, ol { margin: 0 0 1.2em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 650; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------- layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 800px; }
section { padding: clamp(56px, 7vw, 96px) 0; }
.section-alt { background: var(--bg-alt); }
.section-ink { background: var(--ink); color: #B9C6D6; }
.section-ink h2, .section-ink h3 { color: #fff; }

.eyebrow {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--prime);
  margin: 0 0 .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--prime);
  flex: none;
}
.section-ink .eyebrow { color: #7FBAFF; }
.section-ink .eyebrow::before { background: #7FBAFF; }

.head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 52px); }
.head.center { margin-inline: auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }
.head p { font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }
.section-ink .head p { color: #9FB0C4; }

.lead { font-size: 1.14rem; color: var(--slate); }

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

/* ------------------------------------------------------------- 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: -0.01em;
  padding: 15px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-primary { background: var(--prime); color: #fff; box-shadow: 0 6px 18px -6px rgba(11,99,206,.55); }
.btn-primary:hover { background: var(--prime-dark); color: #fff; box-shadow: 0 10px 24px -8px rgba(11,99,206,.6); }

.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { color: var(--ink); border-color: #C8D3E0; }

.btn-lg { padding: 17px 32px; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow {
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  text-decoration: none; color: var(--prime-dark);
  display: inline-flex; align-items: center; gap: .4rem;
}
.link-arrow::after { content: "→"; transition: transform .16s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ------------------------------------------------------------ topbar --- */
.topbar {
  background: var(--ink);
  color: #C3D0DF;
  font-size: .86rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 4px 10px;
  min-height: 40px; padding-block: 7px; text-align: center;
}
.topbar-msg { white-space: nowrap; }
.topbar b { color: #fff; font-weight: 650; }
.topbar a { color: #8FC2FF; text-decoration: none; font-weight: 650; white-space: nowrap; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #2ECC71; flex: none;
  box-shadow: 0 0 0 0 rgba(46,204,113,.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* ------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 18px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; flex: none; }
.brand-mark { display: block; flex: none; }
.brand-mark svg { width: 44px; height: 44px; display: block; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display); font-weight: 700; font-size: 1.14rem;
  color: var(--ink); letter-spacing: -0.032em; white-space: nowrap;
}
.brand-sub { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .95rem; font-weight: 550; color: var(--slate); text-decoration: none;
  padding: 9px 13px; border-radius: 8px;
}
.nav a:hover { background: var(--bg-alt); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 650; background: var(--line-2); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  padding: 9px 14px; border-radius: 10px; border: 1px solid var(--line);
  white-space: nowrap; flex: none;
}
.phone-link:hover { color: var(--ink); border-color: var(--prime); background: var(--prime-soft); }
.phone-link svg { width: 17px; height: 17px; color: var(--prime); }

.burger {
  display: none;
  width: 46px; height: 42px; border-radius: 9px;
  border: 1px solid var(--line); background: #fff;
  align-items: center; justify-content: center; cursor: pointer;
}
.burger svg { width: 22px; height: 22px; color: var(--ink); }

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  background: var(--ink);
  color: #C3D0DF;
  overflow: hidden;
  padding: clamp(64px, 8vw, 116px) 0 clamp(60px, 7vw, 100px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(780px 470px at 76% 6%, rgba(11,99,206,.42), transparent 62%),
    radial-gradient(620px 500px at 8% 98%, rgba(240,114,44,.20), transparent 64%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 1px, transparent 1px 13px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 78%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: #6FB2FF; }
.hero-sub { font-size: clamp(1.05rem, .98rem + .35vw, 1.24rem); color: #A8BACE; max-width: 45ch; margin-bottom: 1.9rem; }
.hero .btn-row { margin-bottom: 2rem; }

.badge-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 550; color: #B9C6D6;
}
.badge svg { width: 17px; height: 17px; color: #4FD18B; flex: none; }

/* hero card */
.hero-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-lg);
  color: var(--slate);
}
.hero-card h2 { font-size: 1.32rem; margin-bottom: .3em; }
.hero-card .fine { font-size: .88rem; color: var(--muted); margin-bottom: 1.1rem; }
.hero-card .btn { width: 100%; }
.card-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0; color: var(--muted); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 650;
}
.card-divider::before, .card-divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }

/* ------------------------------------------------------------ trustbar -- */
.trustbar { border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trustbar .wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px;
  padding-block: 18px;
}
.trustbar span {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink);
}
.trustbar svg { width: 18px; height: 18px; color: var(--prime); flex: none; }

/* --------------------------------------------------------------- cards -- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  transition: border-color .18s ease, box-shadow .2s ease, transform .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { border-color: #CBD8E6; box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 1em; }
.card .link-arrow { margin-top: auto; }
.card ul { padding-left: 0; list-style: none; margin-bottom: 1em; }
.card ul li {
  position: relative; padding-left: 24px; font-size: .95rem; color: var(--muted);
}
.card ul li::before {
  content: ""; position: absolute; left: 4px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--prime); opacity: .5;
}

.icon-tile {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--ember-soft); color: var(--ember-dark);
  margin-bottom: 18px;
}
.icon-tile svg { width: 25px; height: 25px; }
.icon-tile.cool { background: var(--sky-soft); color: var(--sky-dark); }
.icon-tile.neutral { background: var(--line-2); color: var(--ink); }

/* numbered steps */
.step { position: relative; padding-left: 62px; }
.step-num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  background: var(--ink); color: #fff;
}
.step h3 { margin-bottom: .35em; }
.step p { color: var(--muted); font-size: .97rem; margin: 0; }

/* feature list */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li {
  position: relative; padding-left: 32px; margin-bottom: .85em; color: var(--slate);
}
.checks li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--prime-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23084A9C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section-ink .checks li { color: #B9C6D6; }
.section-ink .checks li::before { background-color: rgba(127,186,255,.16); }
/* white panels sitting inside a dark section keep light-background colours */
.section-ink .panel:not(.panel-flame) .checks li { color: var(--slate); }
.section-ink .panel:not(.panel-flame) .checks li::before { background-color: var(--prime-soft); }
.section-ink .panel:not(.panel-flame) .eyebrow { color: var(--prime); }
.section-ink .panel:not(.panel-flame) .eyebrow::before { background: var(--prime); }
.section-ink .panel:not(.panel-flame) h2,
.section-ink .panel:not(.panel-flame) h3 { color: var(--ink); }

/* stat */
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 2.9rem); color: var(--ink); letter-spacing: -0.035em;
  line-height: 1.05;
}
.section-ink .stat b { color: #fff; }
.stat span { font-size: .9rem; color: var(--muted); }
.section-ink .stat span { color: #92A5BB; }

/* ---------------------------------------------------------- brand list -- */
.brands { display: flex; flex-wrap: wrap; gap: 10px; }
.brands li {
  list-style: none; margin: 0;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  padding: 9px 17px; border-radius: 999px;
}

/* --------------------------------------------------------------- panel -- */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow-sm);
}
.panel-flame {
  background: linear-gradient(135deg, #14243A 0%, #0A1524 60%);
  border: 0; color: #B9C6D6;
  position: relative; overflow: hidden;
}
.panel-flame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(540px 350px at 88% -10%, rgba(11,99,206,.5), transparent 62%);
}
.panel-flame > * { position: relative; }
.panel-flame h2, .panel-flame h3 { color: #fff; }

/* ----------------------------------------------------------------- faq -- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 650; font-size: 1.06rem; color: var(--ink);
  padding: 20px 44px 20px 0; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 2.4px solid var(--prime); border-bottom: 2.4px solid var(--prime);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover { color: var(--prime-dark); }
.faq .answer { padding: 0 8px 22px 0; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- form -- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--display); font-size: .86rem; font-weight: 650; color: var(--ink);
}
.field label .req { color: var(--prime); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--prime);
  box-shadow: 0 0 0 3px rgba(11,99,206,.16);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA8B8; }
.form-note { font-size: .86rem; color: var(--muted); margin: 14px 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin-top: 14px; padding: 13px 15px; border-radius: 10px;
  font-size: .94rem; display: none;
}
.form-status.ok { display: block; background: #E9F8EF; color: #14683C; border: 1px solid #BFE7CE; }
.form-status.err { display: block; background: #FDECEA; color: #9C2A1B; border: 1px solid #F5C6C0; }

/* --------------------------------------------------------------- areas -- */
.area-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.area-list li {
  list-style: none; margin: 0;
  font-size: .92rem; color: var(--slate);
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 8px;
}
.section-ink .area-list li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #C3D0DF; }

/* --------------------------------------------------------------- table -- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .96rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-family: var(--display); font-weight: 650; color: var(--ink); background: var(--bg-alt); font-size: .9rem; }
tr:last-child td { border-bottom: 0; }

/* -------------------------------------------------------------- footer -- */
.site-footer { background: var(--ink); color: #93A5BA; padding: clamp(48px, 6vw, 72px) 0 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 1.1rem; font-weight: 700;
}
.site-footer a { color: #B9C6D6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6em; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #7C8FA6; }
.footer-brand p { color: #93A5BA; margin-top: 1rem; max-width: 34ch; }
.footer-bottom {
  margin-top: clamp(38px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0 100px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: .87rem; color: #7C8FA6;
}

/* ---------------------------------------------------------- mobile bar -- */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 24px -12px rgba(10,21,36,.4);
}
.mobile-bar .btn { flex: 1; padding: 14px 10px; font-size: .98rem; }

/* --------------------------------------------------------- breadcrumbs -- */
.crumbs { font-size: .87rem; color: var(--muted); padding-top: 22px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--prime-dark); text-decoration: underline; }
.crumbs span { margin: 0 7px; opacity: .55; }

/* ------------------------------------------------------------ subhero -- */
.subhero {
  background: linear-gradient(180deg, var(--ink) 0%, #122135 100%);
  color: #A8BACE;
  padding: clamp(38px, 5vw, 62px) 0 clamp(48px, 6vw, 76px);
  position: relative; overflow: hidden;
}
.subhero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(640px 390px at 85% 0%, rgba(11,99,206,.38), transparent 62%);
}
.subhero > .wrap { position: relative; z-index: 1; }
.subhero h1 { color: #fff; max-width: 20ch; }
.subhero p { font-size: 1.1rem; color: #A8BACE; max-width: 56ch; }
.subhero .crumbs, .subhero .crumbs a { color: #8497AD; }
.subhero .crumbs a:hover { color: #8FC2FF; }

/* ------------------------------------------------------------ utility -- */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.small { font-size: .88rem; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }

/* ---------------------------------------------------------- responsive -- */
@media (max-width: 1120px) {
  .header-cta .phone-link { display: none; }
  .nav a { padding: 9px 10px; font-size: .92rem; }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 14px 16px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 12px; font-size: 1rem; border-radius: 8px; }
  .burger { display: inline-flex; }
  .site-header .wrap { position: relative; }
  .header-cta .phone-link { display: none; }
  .g-3, .g-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .g-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .topbar { font-size: .82rem; }
  .topbar-extra { display: none; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row > .btn { width: 100%; }
  .mobile-bar .btn { width: auto; }
  .header-cta > .btn { display: none; }
  .brand-mark svg { width: 40px; height: 40px; }
  .brand-name { font-size: 1.06rem; }
  .trustbar .wrap { gap: 10px 20px; }
  .trustbar span { font-size: .84rem; }
}

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

@media print {
  .topbar, .site-header, .mobile-bar, .site-footer { display: none; }
  body { color: #000; }
}
