:root {
  --paper:     #f8f7f4;
  --white:     #ffffff;
  --tint:      #eaeef3;
  --ink:       #131820;
  --soft:      #414a57;
  --mute:      #5d6875;
  --accent:    #9c4f1c;
  --accent-lt: #e59460;
  --dark:      #10233b;
  --deep:      #0a1728;
  --on-dark:   #eef3f8;
  --mute-dark: #a2b3c6;
  --rule:      #dde3ea;
  --rule-soft: #e9edf3;

  --serif: "Palatino Linotype", Palatino, "Book Antiqua", "Iowan Old Style",
           Georgia, serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
           Arial, sans-serif;

  --wrap: 1140px;
  --gap:  clamp(60px, 8vw, 112px);

  color-scheme: light;
}

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

html { -webkit-text-size-adjust: 100%; background: var(--paper); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--soft);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.017em;
  margin: 0 0 0.45em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

h4 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
  margin: 0 0 1.1em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.narrow > * { max-width: 660px; }

.section { padding-top: var(--gap); padding-bottom: var(--gap); }
.section--tint { background: var(--tint); }
.section--rule { border-top: 1px solid var(--rule); }

.lede { font-size: 1.2rem; line-height: 1.62; color: var(--soft); }
.muted { color: var(--mute); font-size: 0.94rem; }

.head { max-width: 44rem; margin-bottom: clamp(34px, 4.5vw, 56px); }
.head h2 { margin-bottom: 0.3em; }
.head p { color: var(--mute); margin: 0; font-size: 1.04rem; max-width: 56ch; }

.eyebrow {
  display: block; margin: 0 0 1.4em; padding-bottom: 0.9em;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.19em; text-transform: uppercase; color: var(--accent);
}
.head .eyebrow, .narrow .eyebrow { max-width: 22rem; }

.demonote {
  background: var(--dark); color: rgba(238,243,248,0.72);
  font-size: 0.78rem; line-height: 1.5; text-align: center;
  padding: 7px 26px;
}
.demonote a { color: var(--accent-lt); text-underline-offset: 2px; }
.demonote a:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  min-height: 54px; padding: 15px 30px;
  background: var(--accent); color: var(--white);
  font-family: var(--sans); font-size: 1rem; font-weight: 650;
  letter-spacing: -0.005em; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; border-radius: 2px;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.btn:hover { background: #7e3f16; color: var(--white); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--outline { background: transparent; color: var(--ink); border-color: #cdd6e0; }
.btn--outline:hover { background: var(--tint); border-color: var(--accent); color: var(--ink); }

.btn--onDark { background: var(--on-dark); color: var(--ink); }
.btn--onDark:hover { background: var(--white); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(238,243,248,0.4); }
.btn--ghost:hover { background: rgba(238,243,248,0.12); color: var(--on-dark); }

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 2em; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.45em; min-height: 44px;
  font-family: var(--sans); font-weight: 650; font-size: 0.97rem;
  color: var(--accent); text-decoration: none;
}
.textlink:hover { text-decoration: underline; }
.textlink svg { width: 15px; height: 15px; flex: none; transition: transform 0.16s ease; }
.textlink:hover svg { transform: translateX(3px); }

.header {
  background: var(--paper); border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 40;
}
.header__inner {
  position: relative;
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  min-height: 84px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto;
         min-height: 44px; text-decoration: none; min-width: 0; }
.brand svg { width: 36px; height: 36px; flex: none; }
.brand b {
  display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--ink); letter-spacing: -0.015em; white-space: nowrap; line-height: 1.15;
}
.brand small {
  display: block; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--mute);
}

.nav { display: flex; gap: 26px; }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 0.96rem; color: var(--soft); text-decoration: none;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }

.header__call { display: flex; flex-direction: column; align-items: flex-end;
                justify-content: center; min-height: 44px;
                text-decoration: none; min-width: 0; }
.header__call .num {
  display: inline-flex; align-items: center; gap: 9px; min-height: 34px;
  font-size: 1.16rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; white-space: nowrap;
}
.header__call svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.header__call .lbl {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.header__call:hover .num { color: var(--accent); }

.hero { position: relative; overflow: hidden; background: var(--dark); }

.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(1.18) saturate(1.05);
}

.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,17,30,0.95) 0px, rgba(7,17,30,0.93) 120px,
      rgba(7,17,30,0.62) 190px, rgba(7,17,30,0) 260px),
    linear-gradient(102deg,
      rgba(8,19,33,0.94) 0%, rgba(10,23,40,0.86) 38%,
      rgba(13,29,50,0.56) 68%, rgba(16,35,59,0.24) 100%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: 41rem;
  padding-top: clamp(54px, 6.8vw, 96px);
  padding-bottom: clamp(44px, 5.4vw, 68px);
}

.hero .eyebrow { color: var(--accent-lt); border-bottom-color: rgba(229,148,96,0.34); max-width: 26rem; }
.hero h1 { color: var(--on-dark); margin-bottom: 0.34em; }

.hero p:not(.eyebrow) { color: rgba(238,243,248,0.9); font-size: 1.2rem; max-width: 40ch; }

.hero__call {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 1.9em; padding: 14px 30px 14px 22px;
  background: var(--accent-lt); border-radius: 2px; text-decoration: none;
  transition: background 0.16s ease;
}
.hero__call:hover { background: #eda06e; }
.hero__call svg { width: 30px; height: 30px; color: var(--ink); flex: none; }
.hero__call .num {
  display: block; font-size: clamp(1.5rem, 3.6vw, 1.95rem); font-weight: 700;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1.1;
}
.hero__call .lbl {
  display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(19,24,32,0.72);
}

.hero__trust {
  position: relative; z-index: 2; list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border-top: 1px solid rgba(238,243,248,0.18);
}

.hero__trust > li {
  min-width: 0;
  padding: 20px 20px 26px;
  border-right: 1px solid rgba(238,243,248,0.15);
}
.hero__trust > li:last-child { border-right: 0; }
.hero__trust b {
  display: block; font-family: var(--serif); font-size: 1.28rem; font-weight: 400;
  color: var(--on-dark); letter-spacing: -0.012em; margin-bottom: 2px;
}
.hero__trust span { display: block; font-size: 0.86rem; color: var(--mute-dark); line-height: 1.45; }

@media (max-width: 860px) {
  .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
  .hero__trust > li:nth-child(2n) { border-right: 0; }
  .hero__trust > li { padding-top: 18px; padding-bottom: 18px; }
  .hero__trust > li:nth-child(-n+2) { border-bottom: 1px solid rgba(238,243,248,0.15); }
}

@media (max-width: 460px) {
  .hero__trust { grid-template-columns: 1fr; }
  .hero__trust > li { border-right: 0; padding-left: 0; padding-right: 0; }
  .hero__trust > li:not(:last-child) { border-bottom: 1px solid rgba(238,243,248,0.15); }
}

.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
          list-style: none; margin: 0; padding: 0;
          border: 1px solid var(--rule); background: var(--white); }
.routes > li { min-width: 0; border-right: 1px solid var(--rule); }
.routes > li:last-child { border-right: 0; }
.routes a {
  display: flex; align-items: center; gap: 16px; height: 100%;
  padding: 26px 26px; text-decoration: none;
  border-top: 3px solid transparent;
  transition: background 0.16s ease, border-top-color 0.16s ease;
}
.routes a:hover { background: var(--tint); border-top-color: var(--accent); }
.routes .urgent { border-top-color: var(--accent); }
.routes svg { width: 27px; height: 27px; color: var(--accent); flex: none; }
.routes b { display: block; font-family: var(--serif); font-size: 1.16rem; font-weight: 400;
            color: var(--ink); letter-spacing: -0.012em; }
.routes span { display: block; font-size: 0.9rem; color: var(--mute); line-height: 1.45; }
@media (max-width: 880px) {
  .routes { grid-template-columns: 1fr; }
  .routes > li { border-right: 0; border-bottom: 1px solid var(--rule); }
  .routes > li:last-child { border-bottom: 0; }
  .routes a { padding: 20px 22px; }
}

.svcgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
           border-top: 1px solid var(--rule); }

.svc { min-width: 0; display: flex; flex-direction: column;
       padding: 34px 32px 36px; border-right: 1px solid var(--rule);
       border-bottom: 1px solid var(--rule); }
.svc .textlink { margin-top: auto; align-self: flex-start; }
.svc:last-child { border-right: 0; }

.svc > svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 18px; }
.svc h3 { margin-bottom: 0.4em; }
.svc p { font-size: 0.97rem; color: var(--mute); margin: 0 0 1em; }
@media (max-width: 900px) {
  .svcgrid { grid-template-columns: 1fr; }
  .svc { border-right: 0; padding: 28px 0 30px; }
}

.statement { background: var(--deep); color: var(--mute-dark); }
.statement .wrap { padding-top: var(--gap); padding-bottom: var(--gap); }
.statement .eyebrow { color: var(--accent-lt); border-bottom-color: rgba(229,148,96,0.32); }
.statement q {
  display: block; quotes: none; max-width: 22ch;
  font-family: var(--serif); font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.16; letter-spacing: -0.018em; color: var(--on-dark);
}
.statement .after { margin-top: 1.6em; max-width: 46ch; font-size: 1.04rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px);
         align-items: center; }
.split > * { min-width: 0; }
.split--flip .split__media { order: 2; }

.split--top { align-items: start; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
                    border-radius: 2px; background: var(--tint); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

.steps { counter-reset: s; list-style: none; margin: 0; padding: 0;
         display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 30px; }
.steps > li { counter-increment: s; min-width: 0; padding-top: 20px;
              border-top: 1px solid var(--rule); }
.steps > li::before {
  content: counter(s, decimal-leading-zero); display: block; margin-bottom: 12px;
  font-family: var(--serif); font-size: 1.5rem; color: var(--accent); line-height: 1;
}
.steps h3 { font-size: 1.1rem; margin-bottom: 0.3em; }
.steps p { font-size: 0.95rem; color: var(--mute); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.checks { list-style: none; margin: 0; padding: 0;
          display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.checks > li { min-width: 0; position: relative; padding: 13px 0 13px 30px;
               border-bottom: 1px solid var(--rule-soft); font-size: 0.99rem; }
.checks > li::before {
  content: ""; position: absolute; left: 2px; top: 20px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
@media (max-width: 640px) { .checks { grid-template-columns: 1fr; } }

.groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 4vw, 52px); }
.groups > * { min-width: 0; }
.group h3 { display: flex; align-items: center; gap: 11px;
            padding-bottom: 14px; margin-bottom: 6px;
            border-bottom: 1px solid var(--accent); font-size: 1.2rem; }
.group h3 svg { width: 21px; height: 21px; color: var(--accent); flex: none; }
.group ul { list-style: none; margin: 0; padding: 0; }
.group li { padding: 11px 0; border-bottom: 1px solid var(--rule-soft);
            font-size: 0.96rem; color: var(--soft); }
.group li:last-child { border-bottom: 0; }
@media (max-width: 940px) { .groups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .groups { grid-template-columns: 1fr; } }

.symptoms { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.symptoms > li {
  padding: 20px 0; border-bottom: 1px solid var(--rule-soft);
  display: grid; grid-template-columns: 19rem 1fr; gap: 8px 40px; align-items: baseline;
}
.symptoms > li > * { min-width: 0; }
.symptoms .sym { font-family: var(--serif); font-size: 1.14rem; color: var(--ink);
                 letter-spacing: -0.012em; }
.symptoms .cause { font-size: 0.97rem; color: var(--mute); }
@media (max-width: 700px) { .symptoms > li { grid-template-columns: 1fr; } }

.band { background: var(--dark); color: var(--mute-dark); }
.band h2, .band h3, .band strong { color: var(--on-dark); }
.band p:not(.eyebrow) { max-width: 56ch; }
.band .eyebrow { color: var(--accent-lt); border-bottom-color: rgba(229,148,96,0.32); }
.band a { color: var(--accent-lt); }
.band .lede { color: rgba(238,243,248,0.86); }

.assure { list-style: none; margin: 0; padding: 0;
          display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.assure > li { min-width: 0; padding-top: 22px; border-top: 1px solid rgba(238,243,248,0.2); }
.assure h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.assure p { font-size: 0.96rem; margin: 0; }
@media (max-width: 780px) { .assure { grid-template-columns: 1fr; gap: 28px; } }

.pagehead { background: var(--dark); color: var(--mute-dark); }
.pagehead .wrap { padding-top: clamp(48px, 6vw, 78px); padding-bottom: clamp(44px, 5.5vw, 70px); }
.pagehead .eyebrow { color: var(--accent-lt); border-bottom-color: rgba(229,148,96,0.32); max-width: 22rem; }
.pagehead h1 { color: var(--on-dark); margin-bottom: 0.32em; font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.pagehead p:not(.eyebrow) { color: rgba(238,243,248,0.82); max-width: 56ch; margin: 0; font-size: 1.12rem; }

.towns { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.towns li { border: 1px solid var(--rule); border-radius: 2px; padding: 9px 17px;
            font-size: 0.94rem; color: var(--soft); background: var(--white); }

.faq { max-width: 46rem; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px 0; min-width: 0;
  font-family: var(--serif); font-size: 1.18rem; color: var(--ink); letter-spacing: -0.012em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::after {
  content: ""; flex: none; width: 9px; height: 9px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-3px) rotate(45deg); transition: transform 0.16s ease;
}
.faq details[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.faq .answer { padding-bottom: 22px; }
.faq .answer p { font-size: 1rem; max-width: 62ch; }

.methods { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.methods li { border-bottom: 1px solid var(--rule-soft); }
.methods a, .methods .row {
  display: flex; align-items: baseline; gap: 22px; min-height: 44px;
  padding: 19px 2px; text-decoration: none; color: var(--ink); min-width: 0;
}
.methods a:hover .m-value { color: var(--accent); }
.m-label { flex: none; width: 5rem; font-size: 0.72rem; font-weight: 700;
           letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); }
.m-value { font-family: var(--serif); font-size: 1.2rem; letter-spacing: -0.014em;
           transition: color 0.16s ease; min-width: 0; }
.m-value small { display: block; font-family: var(--sans); font-size: 0.9rem;
                 letter-spacing: 0; color: var(--mute); margin-top: 2px; }

.hours { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.hours caption { text-align: left; caption-side: top; padding-bottom: 12px; }
.hours th, .hours td { text-align: left; padding: 13px 0; border-bottom: 1px solid var(--rule-soft); }
.hours th { font-weight: 600; color: var(--ink); }
.hours td { color: var(--mute); text-align: right; }

.spaced-h { margin-top: 2.6rem; }

.formcard { border: 1px solid var(--rule); background: var(--white); }
.formcard__body { padding: clamp(24px, 3vw, 34px); }
.formcard__foot { border-top: 1px solid var(--rule); background: var(--tint);
                  padding: 10px 22px; font-size: 0.92rem; color: var(--mute); }
.formcard__foot a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; }

.field { margin-bottom: 19px; }
.field label { display: block; font-size: 0.88rem; font-weight: 650; color: var(--ink); margin-bottom: 7px; }
.field label span { font-weight: 400; color: var(--mute); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--white); border: 1px solid #cdd6e0; border-radius: 2px; padding: 13px 14px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: 2px solid var(--accent); outline-offset: -1px; border-color: transparent;
}
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.pair > * { min-width: 0; }
@media (max-width: 520px) { .pair { grid-template-columns: 1fr; gap: 0; } }

.footer { background: var(--dark); color: var(--mute-dark);
          padding-top: clamp(50px, 6vw, 72px); padding-bottom: 30px; font-size: 0.95rem; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; padding-bottom: 38px; }
.footer__grid > * { min-width: 0; }
.footer h4 { color: var(--on-dark); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer strong { color: var(--on-dark); }
.footer a { color: var(--mute-dark); text-decoration: none; }
.footer a:hover { color: var(--on-dark); text-decoration: underline; }

.footer li a, .footer p a { display: inline-block; padding: 10px 0; }

.footer__brand b { display: block; font-family: var(--serif); font-weight: 400;
                   color: var(--on-dark); font-size: 1.3rem; letter-spacing: -0.015em;
                   margin-top: 12px; }
.footer__bar { border-top: 1px solid rgba(238,243,248,0.16); padding-top: 22px;
               display: flex; flex-wrap: wrap; justify-content: space-between;
               gap: 8px 24px; font-size: 0.87rem; color: #7d8b9c; }

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 440px) {
  .footer__grid { grid-template-columns: 1fr; }
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px;
}
.band a:focus-visible, .footer a:focus-visible, .hero a:focus-visible,
.pagehead a:focus-visible, .statement a:focus-visible { outline-color: var(--accent-lt); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 70;
        background: var(--ink); color: var(--paper); padding: 13px 20px; }
.skip:focus { left: 0; color: var(--paper); }

a[href^="mailto:"], a[href^="tel:"], a[href^="http"], .m-value {
  overflow-wrap: anywhere;
}

.callbar { display: none; }

@media (max-width: 780px) {
  body { padding-bottom: 76px; }
  .callbar {
    display: flex; align-items: center; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom, 0px));
    background: var(--paper); border-top: 1px solid var(--rule);
    box-shadow: 0 -4px 20px rgba(10,23,40,0.14);
  }
  .callbar a {
    flex: 1 1 0; min-width: 0;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 52px; padding: 13px 10px; border-radius: 2px;
    text-decoration: none; font-size: 1.02rem; font-weight: 700; white-space: nowrap;
  }
  .callbar .c-call { background: var(--accent); color: #fff; }
  .callbar .c-emg { background: transparent; color: var(--ink);
                    border: 1px solid #cdd6e0; flex: 0 1 auto;
                    padding-left: 18px; padding-right: 18px; }
  .callbar svg { width: 18px; height: 18px; flex: none; }
}

.mobmenu { display: none; }

@media (max-width: 940px) {
  .nav { display: none; }
  .mobmenu { display: block; }

  .header__call { order: 1; }
  .mobmenu { order: 2; }

  .header .mobmenu > summary { padding-top: 0; padding-bottom: 0; }
  .mobmenu > summary {
    list-style: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 9px; min-height: 46px;
    padding: 11px 17px; background: transparent;
    border: 1px solid #cdd6e0; border-radius: 2px;
    color: var(--ink); font-size: 0.94rem; font-weight: 650; white-space: nowrap;
  }
  .mobmenu > summary::-webkit-details-marker { display: none; }
  .mobmenu > summary::marker { content: ""; }
  .mobmenu > summary svg { width: 18px; height: 18px; }
  .mobmenu[open] > summary { background: var(--tint); border-color: var(--accent); }
  .mobmenu > ul {
    position: absolute; right: 26px; top: calc(100% + 12px); z-index: 60;
    min-width: 244px; max-width: calc(100vw - 52px);
    margin: 0; padding: 8px; list-style: none;
    background: var(--white); border: 1px solid var(--rule);
    box-shadow: 0 6px 14px rgba(10,23,40,0.07), 0 22px 48px rgba(10,23,40,0.18);
  }
  .mobmenu a { display: block; padding: 13px 15px; font-size: 0.97rem;
               color: var(--soft); text-decoration: none; }
  .mobmenu a:hover { background: var(--tint); color: var(--ink); }
  .mobmenu a[aria-current="page"] { background: var(--tint); color: var(--ink); font-weight: 650; }

  .header__inner { min-height: 74px; }
}

@media (max-width: 600px) {
  .header__call .num { font-size: 1rem; }
  .header__call .lbl { display: none; }
  .brand b { font-size: 1.14rem; }
  .brand svg { width: 32px; height: 32px; }
}

@media (max-width: 560px) {
  .header__call { display: none; }
}

@media (max-width: 440px) {
  .brand small { display: none; }
  .brand b { font-size: 1.08rem; }
  .brand svg { width: 30px; height: 30px; }
  .header__inner { gap: 10px; }
  .mobmenu > summary { padding-left: 12px; padding-right: 12px; gap: 0; }
  .mobmenu > summary .lbl { display: none; }
}

@media (max-width: 420px) {
  .actions .btn { flex: 1 1 100%; }
}

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