:root {
  --indigo:      #232a45;
  --indigo-deep: #1a2036;
  --tint:        #ecedf4;
  --teal:        #0d6b62;
  --teal-deep:   #095049;
  --teal-lt:     #5fd0c0;
  --apricot:     #a8552c;
  --apricot-lt:  #e8a06e;

  --ground:   #f8f8fa;
  --white:    #ffffff;
  --ink:      #171a24;
  --soft:     #414759;
  --mute:     #5f6779;
  --on-dark:  #f2f3f8;
  --mute-dark:#a8afc4;
  --rule:     #e2e4ec;

  --display: "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(56px, 7.5vw, 100px);
  --r:    14px;
  --shadow: 0 1px 2px rgba(23,26,36,.05), 0 8px 24px rgba(23,26,36,.06);

  color-scheme: light;
}

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

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--soft);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.014em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.05rem, 4.7vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.15rem); }

h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.008em;
  margin: 0 0 0.4em;
}
h3 { font-size: 1.08rem; }
h4 { font-size: 0.95rem; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
a { color: var(--teal); text-underline-offset: 3px; }
a:hover { color: var(--teal-deep); }

img { max-width: 100%; height: auto; display: block; }
strong { color: var(--ink); font-weight: 650; }

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

.section { padding-top: var(--gap); padding-bottom: var(--gap); }
.section--tint { background: var(--tint); }
.section--rule { border-top: 1px solid var(--rule); }
.section--dark { background: var(--indigo); color: var(--mute-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark strong { color: var(--on-dark); }
.section--dark a { color: var(--teal-lt); }
.section--dark .lede { color: var(--mute-dark); }

.lede { font-size: 1.15rem; color: var(--soft); }
.muted { color: var(--mute); font-size: 0.93rem; }
.center { text-align: center; }

.spaced { margin-top: 22px; }
.spaced-sm { margin-top: 16px; }

.head { max-width: 64ch; margin-bottom: clamp(26px, 3.8vw, 44px); }
.head h2 { margin-bottom: 0.25em; }
.head p { color: var(--mute); margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 1.1em;
  font-family: var(--sans);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; flex: none; border-radius: 2px;
  background: var(--apricot);
}
.section--dark .eyebrow { color: var(--mute-dark); }
.section--dark .eyebrow::before { background: var(--apricot-lt); }

.demonote {
  background: var(--ink); color: rgba(255,255,255,.82);
  font-size: 0.81rem; line-height: 1.55; text-align: center;
  padding: 9px 24px;
}
.demonote a { color: var(--apricot-lt); text-underline-offset: 2px; }
.demonote a:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--teal); color: var(--white);
  font-family: inherit; font-size: 0.97rem; font-weight: 650;
  text-decoration: none; cursor: pointer;
  padding: 14px 26px;
  border: 1px solid transparent; border-radius: 8px;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { background: var(--teal-deep); color: var(--white); }
.btn svg { width: 18px; height: 18px; flex: none; }

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

.btn--onDark { background: var(--white); color: var(--indigo); }
.btn--onDark:hover { background: var(--tint); color: var(--indigo); }

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

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 1.8em; }

.textlink {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 650; font-size: 0.96rem; color: var(--teal); text-decoration: none;
}
.textlink:hover { text-decoration: underline; }
.textlink svg { width: 15px; height: 15px; flex: none; }

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

.brand {
  display: inline-flex; align-items: center; gap: 10px;

  min-height: 44px;
  margin-right: auto; text-decoration: none; min-width: 0;
}
.brand svg { width: 32px; height: 32px; flex: none; }
.brand b {
  font-family: var(--display); font-weight: 400; font-size: 1.24rem;
  color: var(--ink); letter-spacing: -0.015em; white-space: nowrap;
}
.brand i {
  display: block; font-style: normal;
  font-size: 0.61rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mute);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .navmenu > summary {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.94rem; color: var(--soft); text-decoration: none;
  padding: 11px 12px;
  border-radius: 8px; white-space: nowrap; cursor: pointer;
}
.nav > a:hover, .navmenu > summary:hover { background: var(--tint); color: var(--ink); }
.nav > a[aria-current="page"] { background: var(--tint); color: var(--ink); font-weight: 650; }

.navmenu { position: relative; }
.navmenu > summary { list-style: none; }
.navmenu > summary::-webkit-details-marker { display: none; }
.navmenu > summary::marker { content: ""; }
.navmenu > summary::after {
  content: ""; width: 6px; height: 6px; flex: none;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform .15s ease;
}
.navmenu[open] > summary { background: var(--tint); color: var(--ink); }
.navmenu[open] > summary::after { transform: translateY(1px) rotate(-135deg); }
.navmenu.is-current > summary { background: var(--tint); color: var(--ink); font-weight: 650; }
.navmenu ul {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  min-width: 250px; margin: 0; padding: 7px; list-style: none;
  background: var(--white); border: 1px solid var(--rule); border-radius: 12px;
  box-shadow: 0 4px 10px rgba(23,26,36,.05), 0 18px 42px rgba(23,26,36,.14);
}
.navmenu ul a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-size: 0.94rem; color: var(--soft); text-decoration: none;
}
.navmenu ul a:hover { background: var(--tint); color: var(--ink); }
.navmenu ul a[aria-current="page"] { background: var(--tint); color: var(--ink); font-weight: 650; }

.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 700; color: var(--indigo);
  text-decoration: none; white-space: nowrap; padding: 11px 0;
}
.header__phone svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.header__phone:hover { color: var(--teal); }

.header__cta { padding: 11px 18px; font-size: 0.93rem; }
.cta-abbr { display: none; }

.hero { border-bottom: 1px solid var(--rule); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4.5vw, 60px); align-items: center;
  padding-top: clamp(44px, 6vw, 80px); padding-bottom: clamp(44px, 6vw, 80px);
}
.hero__grid > * { min-width: 0; }
.hero h1 { margin-bottom: .35em; }
.hero p { font-size: 1.15rem; max-width: 46ch; }
.hero__media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--r); background: var(--tint);
}

.trust {
  display: flex; flex-wrap: wrap; gap: 9px 30px; list-style: none; margin: 0;
  padding-top: 17px; padding-bottom: 17px;
  border-bottom: 1px solid var(--rule);
  font-size: .91rem; color: var(--mute);
}
.trust li { display: flex; align-items: center; gap: 9px; min-width: 0; }
.trust svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards > * { min-width: 0; }

.card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  text-decoration: none; color: inherit;
  transition: border-color .16s ease, transform .16s ease;
}
a.card:hover { border-color: var(--teal); transform: translateY(-2px); }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--tint); }
.card__body { padding: 20px 20px 22px; }
.card h3 { margin-bottom: .3em; }
.card p { font-size: .93rem; color: var(--mute); margin: 0; }
.card .from {
  display: inline-block; margin-top: 14px;
  font-size: .82rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--teal);
}
@media (max-width: 940px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4.5vw, 58px); 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: 3 / 2; object-fit: cover;
  border-radius: var(--r); background: var(--tint);
}
.split__media img.tall { aspect-ratio: 3 / 4; }
@media (max-width: 840px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .split__media img.tall { aspect-ratio: 3 / 2; }
}

.checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 28px; }
.checks > li {
  position: relative; padding: 9px 0 9px 27px; min-width: 0;
  font-size: .96rem; border-bottom: 1px solid var(--rule);
}
.checks > li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 15px; height: 8px; border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal); transform: rotate(-45deg);
}
@media (max-width: 640px) { .checks { grid-template-columns: 1fr; } }

.steps { counter-reset: s; list-style: none; margin: 0; padding: 0;
         display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps > li { counter-increment: s; min-width: 0; padding-top: 16px; border-top: 2px solid var(--tint); }
.steps > li::before {
  content: counter(s, decimal-leading-zero); display: block; margin-bottom: 8px;
  font-family: var(--display); font-size: 1.5rem; line-height: 1; color: var(--apricot);
}
.steps h3 { font-size: 1.02rem; }
.steps p { font-size: .92rem; color: var(--mute); margin: 0; }
.section--dark .steps > li { border-top-color: rgba(255,255,255,.22); }
.section--dark .steps > li::before { color: var(--apricot-lt); }
.section--dark .steps p { color: var(--mute-dark); }

.steps--stack { grid-template-columns: 1fr; gap: 20px; }
.steps--stack > li { padding-top: 14px; }

@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.tablewrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--r); background: var(--white); }
table.rates { width: 100%; border-collapse: collapse; font-size: .96rem; min-width: 480px; }
table.rates caption {
  caption-side: top; text-align: left; padding: 18px 20px 0;
  font-weight: 650; color: var(--ink); font-size: 1.02rem;
}
table.rates th, table.rates td { text-align: left; padding: 13px 20px; border-bottom: 1px solid var(--rule); }
table.rates thead th {
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mute); border-bottom: 1px solid var(--rule); white-space: nowrap;
}
table.rates tbody th { font-weight: 650; color: var(--ink); }
table.rates td { color: var(--soft); white-space: nowrap; }
table.rates tbody tr:last-child th, table.rates tbody tr:last-child td { border-bottom: 0; }
table.rates .best { color: var(--ink); font-weight: 700; }
table.rates tr:nth-child(even) th, table.rates tr:nth-child(even) td { background: #fbfbfd; }

.tag {
  display: inline-block; margin-left: 8px; vertical-align: 1px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--apricot); border: 1px solid var(--apricot); border-radius: 999px;
  padding: 1px 8px;
}

.rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.rows > li {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 4px 20px; padding: 14px 0; border-bottom: 1px solid var(--rule);
  font-size: .97rem; min-width: 0;
}
.rows .amount { color: var(--ink); font-weight: 700; white-space: nowrap; }

.note {
  background: var(--white); border: 1px solid var(--rule);
  border-left: 3px solid var(--apricot); border-radius: 6px;
  padding: 16px 20px;
}
.note p { font-size: .95rem; }
.section--tint .note { 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: 20px;
  padding: 15px 0; min-width: 0;
  font-weight: 650; font-size: 1rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::after {
  content: ""; flex: none; width: 8px; height: 8px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: translateY(-2px) rotate(45deg); transition: transform .16s ease;
}
.faq details[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.faq .answer { padding-bottom: 18px; }
.faq .answer p { font-size: .96rem; }

.formcard { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.formcard__body { padding: clamp(20px, 3vw, 30px); }
.formcard__foot { border-top: 1px solid var(--rule); background: var(--tint); padding: 14px 20px; font-size: .89rem; color: var(--mute); }

.field { margin-bottom: 17px; }
.field label { display: block; font-size: .87rem; font-weight: 650; color: var(--ink); margin-bottom: 6px; }
.field label span { font-weight: 400; color: var(--mute); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--white); border: 1px solid #ccd1de; border-radius: 8px; padding: 12px 13px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: 2px solid var(--teal); outline-offset: -1px; border-color: transparent;
}
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.pair > * { min-width: 0; }
@media (max-width: 560px) { .pair { grid-template-columns: 1fr; gap: 0; } }

.fieldset { border: 0; margin: 0 0 17px; padding: 0; min-width: 0; }
.fieldset legend { font-size: .87rem; font-weight: 650; color: var(--ink); margin-bottom: 8px; padding: 0; }
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 9px; }
.choices label {
  display: flex; align-items: center; gap: 9px; min-width: 0;
  border: 1px solid #ccd1de; border-radius: 8px; padding: 12px 13px;
  font-size: .93rem; font-weight: 400; color: var(--soft); cursor: pointer; margin: 0;
}
.choices input { width: auto; accent-color: var(--teal); flex: none; }

.methods { list-style: none; margin: 0; padding: 0; }
.methods li { border-top: 1px solid var(--rule); }
.methods li:last-child { border-bottom: 1px solid var(--rule); }
.methods a, .methods .row {
  display: flex; align-items: baseline; gap: 18px; min-width: 0;
  padding: 16px 2px; text-decoration: none; color: var(--ink);
}
.methods a:hover .m-value { color: var(--teal); }
.m-label { flex: none; width: 76px; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--mute); }
.m-value { font-size: 1.02rem; font-weight: 700; min-width: 0; transition: color .16s ease; }
.m-value small { display: block; font-size: .87rem; font-weight: 400; color: var(--mute); }

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--rule); }
.hours th { font-weight: 650; color: var(--ink); }
.hours td { color: var(--mute); text-align: right; }
.hours tr.closed th, .hours tr.closed td { color: #8b93a5; }

.areas { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.areas li {
  background: var(--white); border: 1px solid var(--rule); border-radius: 999px;
  padding: 7px 15px; font-size: .92rem; color: var(--soft);
}
.section--dark .areas li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: var(--on-dark); }

.footer {
  background: var(--indigo-deep); color: var(--mute-dark);
  padding-top: clamp(40px, 5.5vw, 60px); padding-bottom: 26px; font-size: .93rem;
}
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer__grid > * { min-width: 0; }
.footer h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--on-dark); margin: 0 0 1em;
}
.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 svg { width: 32px; height: 32px; }
.footer__brand .name { font-family: var(--display); font-size: 1.2rem; color: var(--on-dark); display: block; margin-top: 10px; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 20px;
  font-size: .85rem; color: #8b93a5;
}
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }

a:focus-visible, button:focus-visible, summary:focus-visible, label:focus-within {
  outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px;
}
.section--dark a:focus-visible, .footer a:focus-visible, .demonote a:focus-visible { outline-color: var(--teal-lt); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 70; background: var(--indigo); color: #fff; padding: 12px 18px; }
.skip:focus { left: 0; color: #fff; }

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

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

.mobmenu { display: none; }

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

  .header__phone { order: 1; }
  .mobmenu { order: 2; }
  .header__cta { order: 3; }

  .cta-full { display: none; }
  .cta-abbr { display: inline; }

  .header .mobmenu > summary,
  .header .header__cta {
    min-height: 46px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mobmenu > summary {
    list-style: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 15px;
    background: var(--white); border: 1px solid var(--rule); border-radius: 8px;
    color: var(--ink); font-size: .92rem; 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(--indigo); }
  .mobmenu > ul {
    position: absolute; right: 24px; top: calc(100% + 10px); z-index: 60;
    min-width: 252px; max-width: calc(100vw - 48px);
    margin: 0; padding: 7px; list-style: none;
    background: var(--white); border: 1px solid var(--rule); border-radius: 12px;
    box-shadow: 0 4px 10px rgba(23,26,36,.05), 0 18px 42px rgba(23,26,36,.15);
  }
  .mobmenu a {
    display: block; padding: 12px 14px; border-radius: 8px;
    font-size: .95rem; color: var(--soft); text-decoration: none;
  }
  .mobmenu a:hover { background: var(--tint); color: var(--ink); }

  .mobmenu .menu-call {
    display: flex; align-items: center; gap: 9px;
    margin-top: 6px; padding-top: 12px;
    border-top: 1px solid var(--rule);
    font-weight: 700; color: var(--indigo);
  }
  .mobmenu .menu-call svg { width: 15px; height: 15px; color: var(--teal); flex: none; }
  .mobmenu a[aria-current="page"] { background: var(--tint); color: var(--ink); font-weight: 650; }
  .mobmenu .sub { padding-left: 26px; font-size: .92rem; }
  .mobmenu .grouplabel {
    padding: 10px 14px 4px; font-size: .7rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--mute);
  }
  .header__inner { min-height: 68px; }
}

@media (max-width: 840px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

@media (max-width: 560px) {
  .header__phone { display: none; }
  .brand i { display: none; }
  .brand b { font-size: 1.08rem; }
  .brand svg { width: 28px; height: 28px; }
  .header__inner { gap: 10px; }
}

@media (max-width: 400px) {
  .mobmenu > summary { padding-left: 12px; padding-right: 12px; gap: 0; }
  .mobmenu > summary .lbl { display: none; }
}

@media (max-width: 560px) {
  .actions .btn { flex: 1 1 100%; }
  .wrap { padding: 0 18px; }
  .mobmenu > ul { right: 18px; max-width: calc(100vw - 36px); }
}

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