/* site.css — Keyway Locksmith (2026 redesign). Tokens in tokens.css (assigned navy + brass, verbatim);
   base.css is shared. The reader is standing next to a locked car in a parking garage. Everything
   on the page is in service of one phone call: the number, the price, the time. Brass is the
   accent — buttons, numerals, rules, the closing band. Navy is the ground. */

/* ---------- type ---------- */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
h1 { letter-spacing: -0.03em; }
h2 { max-width: 22ch; }
.lead { line-height: 1.55; }
.eyebrow { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 0.6rem; }
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--accent); flex: none; }
.section-head { max-width: 46rem; margin-bottom: var(--space-4); }
.section-head p { color: var(--ink-muted); font-size: var(--fs-1); }
.section-head p:last-child { margin-bottom: 0; }
.measure p { max-width: 56ch; }
.num { font-family: var(--font-display); font-variant-numeric: tabular-nums; }

/* ---------- header ---------- */
.site-header { background: rgba(16, 22, 38, 0.92); border-bottom: 1px solid var(--line); }
.brand { font-weight: 700; font-size: 1.15rem; min-height: 44px; gap: 0.6rem; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.nav a:not(.btn) { color: var(--ink); font-size: 0.96rem; }
.nav a:not(.btn):hover { color: var(--accent); }
.nav a[aria-current="page"] { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav .btn--primary { min-height: 44px; padding: 0.55rem 1.05rem; font-size: 0.95rem; }
.nav-toggle { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; color: var(--ink); }
@media (max-width: 720px) { .nav a:not(.btn) { display: flex; align-items: center; min-height: 46px; padding: 0.5rem 0; } }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--on-accent); padding: 0.75rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

/* ---------- buttons: the call button carries a sub-line ---------- */
.btn { border-radius: var(--radius-sm); }
.btn--primary { color: var(--on-accent); }
.btn--ghost { border-color: rgba(238, 239, 241, 0.5); color: var(--ink); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: rgba(238, 239, 241, 0.08); border-color: var(--ink); }
.btn--call { flex-direction: column; align-items: flex-start; line-height: 1.1; padding: 0.9rem 1.6rem; gap: 0.2rem; }
.btn--call .btn__sub { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.02em; opacity: 0.85; }

/* ---------- hero: the whole page in one screen ---------- */
.hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4.5rem); overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); } }
.hero h1 { margin-bottom: var(--space-3); max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { max-width: 36rem; color: var(--ink); margin-bottom: var(--space-3); }
.hero__actions, .actions { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: stretch; }
.pricebar { list-style: none; margin: var(--space-3) 0 0; padding: var(--space-3) 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; color: var(--ink-muted); font-size: 0.98rem; max-width: 36rem; }
.pricebar b { color: var(--accent); font-family: var(--font-display); margin-left: 0.35rem; }
.hero__figure { position: relative; margin: 0; width: min(100%, 440px); justify-self: center; }
@media (min-width: 900px) { .hero__figure { justify-self: end; } }
.hero__frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; border: 1px solid var(--line); }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero__plate { position: absolute; left: -0.75rem; bottom: 1.25rem; background: var(--accent); color: var(--on-accent); padding: 0.7rem 1rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); max-width: 18rem; font-size: 0.92rem; line-height: 1.35; }
.hero__plate b { display: block; font-family: var(--font-display); font-size: 1.02rem; }

/* ---------- trust strip (brass): four equal cells, a diamond, a bold line and a quiet line ---------- */
.trust { background: var(--brand); color: var(--on-brand); }
.trust ul { list-style: none; margin: 0; padding: clamp(1.1rem, 2.4vw, 1.5rem) 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.trust li { display: grid; grid-template-columns: auto 1fr; column-gap: 0.65rem; align-items: start; }
.trust li::before { content: ""; width: 9px; height: 9px; margin-top: 0.45em; background: var(--on-brand); transform: rotate(45deg); }
.trust li > div { line-height: 1.35; }
.trust b { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.trust span { font-size: 0.92rem; font-weight: 600; color: var(--on-brand-muted); }
@media (max-width: 960px) { .trust ul { grid-template-columns: 1fr 1fr; gap: var(--space-2) var(--space-3); } }
@media (max-width: 400px) { .trust b { font-size: 0.98rem; } .trust span { font-size: 0.85rem; } }

/* ---------- right now: numbered steps beside the car photo ---------- */
.now__grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .now__grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }
.now__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 16 / 10; }
@media (min-width: 960px) { .now__media { position: sticky; top: 88px; aspect-ratio: 4 / 5; } }
.now__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); counter-reset: st; }
.steps li { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3) var(--space-3) var(--space-3) calc(var(--space-3) + 3rem); }
.steps li::before { counter-increment: st; content: "0" counter(st); position: absolute; left: var(--space-3); top: calc(var(--space-3) + 0.15rem); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--accent); letter-spacing: 0.04em; }
.steps h3 { font-size: var(--fs-2); margin-bottom: 0.45rem; line-height: 1.15; }
.steps p { margin: 0; color: var(--ink-muted); max-width: 56ch; }
.steps .btn { margin-top: var(--space-2); }

/* ---------- the ledger (prices) ---------- */
.prices__grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .prices__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(2.5rem, 5vw, 4rem); } }
.ledger { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ledger__row { display: grid; grid-template-columns: 2.4rem 1fr auto; column-gap: var(--space-2); align-items: baseline; padding: clamp(0.9rem, 1.8vw, 1.2rem) var(--space-3); border-top: 1px solid var(--line); }
.ledger__row:first-child { border-top: 0; }
.ledger__n { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 0.85rem; letter-spacing: 0.04em; }
.ledger__row dt { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-1); }
.ledger__row dt small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.96rem; color: var(--ink-muted); margin-top: 0.3rem; max-width: 52ch; }
.ledger__row dd { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-1); color: var(--accent); white-space: nowrap; font-variant-numeric: tabular-nums; }
.ledger__row dd.is-quote { font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: var(--track-label); text-transform: uppercase; background: var(--brand-tint-strong); color: var(--accent); padding: 0.4rem 0.7rem; border-radius: 999px; align-self: center; }
.ledger--full .ledger__row dt { font-size: var(--fs-2); }
.ledger--full .ledger__row { padding-block: clamp(1.2rem, 2.4vw, 1.7rem); }
.ledger--full .ledger__row dt small { max-width: 60ch; }
/* Phone: a long price ("from $25 per lock") beside the name squeezed the description to a word a
   line. Below 600px the price drops under the name instead. */
@media (max-width: 600px) {
  .ledger__row { grid-template-columns: 2.4rem 1fr; row-gap: 0.4rem; }
  .ledger__row dd { grid-column: 2; justify-self: start; white-space: normal; }
}
.ledger__foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-3); margin-top: var(--space-3); color: var(--ink-muted); }
.ledger__foot p { margin: 0; max-width: 60ch; }
.media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 4 / 3; }
/* A photo that wants a little more air between itself and the copy beside it (desktop only). */
.media--inset { margin: 0; }
.media--tint { position: relative; }
.media--tint::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: rgba(16, 22, 38, 0.42); }
.side-by { display: grid; gap: clamp(1.75rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start; }
.side-by__media { margin: 0; }
.side-by .faq { max-width: none; }
@media (min-width: 960px) {
  .side-by { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr); }
  .side-by--flip { grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr); }
  .side-by--flip > :first-child { order: 2; }
  .side-by__media { position: sticky; top: 6rem; }
}
@media (min-width: 900px) { .media--inset { margin-right: clamp(1.25rem, 3vw, 2.5rem); } }

/* ---------- the three promises ---------- */
.promises { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 800px) { .promises { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }
.promise { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); position: relative; }
.promise::before { content: ""; position: absolute; left: var(--space-3); top: 0; width: 3rem; height: 3px; background: var(--accent); }
.promise__n { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-3); color: var(--accent); line-height: 1; margin: 0.4rem 0 0.6rem; }
.promise h3 { font-size: var(--fs-2); margin-bottom: 0.45rem; }
.promise p { margin: 0; color: var(--ink-muted); max-width: 34ch; }

/* ---------- photo band with a light card (photo stays bright) ---------- */
.photostage { position: relative; display: grid; align-items: center; min-height: clamp(400px, 52vw, 560px); overflow: hidden; }
.photostage__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; z-index: 0; }
.photostage::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(16, 22, 38, 0.62), rgba(16, 22, 38, 0.4)); }
.photostage__inner { position: relative; z-index: 2; display: flex; padding-block: clamp(2rem, 5vw, 3.5rem); }
.pcard { max-width: 32rem; padding: clamp(1.4rem, 3.2vw, 2.2rem); border-radius: var(--radius); margin: 0; background: var(--card); color: var(--on-card); border-top: 5px solid var(--accent); box-shadow: var(--shadow); }
.pcard p { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-2); line-height: 1.25; margin: 0 0 var(--space-2); max-width: none; color: var(--on-card); }
.pcard footer { color: var(--card-muted); font-weight: 700; }
@media (max-width: 860px) {
  .photostage { min-height: 0; grid-template-rows: auto auto; }
  .photostage__img { grid-area: 1 / 1; position: static; height: clamp(230px, 56vw, 340px); }
  .photostage::after { position: relative; inset: auto; grid-area: 1 / 1; background: rgba(16, 22, 38, 0.45); }
  .photostage__inner { grid-area: 2 / 1; padding-block: 0 var(--space-3); margin-top: -2.5rem; }
  .pcard { max-width: none; }
}

/* ---------- interior pages ---------- */
.pagehead { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4.25rem); }
.pagehead h1 { max-width: 18ch; margin-bottom: var(--space-2); }
.pagehead .lead { max-width: 56ch; margin-bottom: 0; }
.pagehead__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.split-2 { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .split-2--flip > :first-child { order: 2; } }
.split-2--top { align-items: start; }
@media (min-width: 900px) { .split-2--top .media { position: sticky; top: 88px; } }
.ticks { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; gap: 0.75rem; }
.ticks li { display: grid; grid-template-columns: 1.2rem 1fr; gap: 0.6rem; align-items: start; }
.ticks li::before { content: ""; width: 0.55rem; height: 0.55rem; margin-top: 0.5em; background: var(--accent); transform: rotate(45deg); }
.ticks b { color: var(--ink); }
.facts { display: grid; gap: var(--space-2); grid-template-columns: 1fr 1fr; }
@media (min-width: 860px) { .facts { grid-template-columns: repeat(4, 1fr); gap: var(--space-3); } }
.fact { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); }
.fact b { display: block; font-family: var(--font-display); font-size: var(--fs-2); color: var(--accent); line-height: 1.1; margin-bottom: 0.3rem; }
.fact span { color: var(--ink-muted); font-size: 0.95rem; }
.fact__label { font-size: 0.76rem; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 0.6rem; }
.fact p { margin: 0 0 0.35rem; font-size: 1.05rem; font-weight: 600; }
.fact p:last-child { margin-bottom: 0; }
.fact .muted { font-size: 0.95rem; font-weight: 400; color: var(--ink-muted); }
.fact a { text-decoration: none; border-bottom: 1px solid var(--line); }
.fact a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.quote { margin: var(--space-3) 0 0; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: var(--space-3); }
.quote p { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-1); line-height: 1.35; margin: 0 0 0.5rem; max-width: none; }
.quote footer { color: var(--ink-muted); font-weight: 700; }
.band-figure { margin: 0; }
.band { position: relative; height: clamp(240px, 36vw, 440px); overflow: hidden; background: var(--bg-alt); min-height: 0; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.band__caption { padding: 0.85rem 0 0; font-size: 0.95rem; color: var(--ink-muted); display: flex; gap: 0.6rem; align-items: center; }
.band__caption::before { content: ""; width: 22px; height: 3px; background: var(--accent); flex: none; }
.notes { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.notes li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); }
.notes b { font-family: var(--font-display); display: block; font-size: 1.08rem; margin-bottom: 0.35rem; }
.notes span { color: var(--ink-muted); }
.faq { border-top: 2px solid var(--accent); max-width: 54rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr auto; gap: var(--space-2); align-items: center; padding: clamp(1rem, 2vw, 1.3rem) 0; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-1); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--hairline-strong); color: var(--accent); font-family: var(--font-body); font-weight: 700; flex: none; }
.faq details[open] summary::after { content: "\2013"; background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.faq .answer { padding: 0 0 clamp(1.1rem, 2vw, 1.5rem); max-width: 60ch; color: var(--ink-muted); }
.faq .answer p { margin-bottom: var(--space-2); }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer a { color: var(--accent); font-weight: 700; }

/* ---------- closing band (brass, inverted) ---------- */
.close { background: var(--brand); color: var(--on-brand); }
.close h2, .close p, .close li, .close span { color: var(--on-brand); }
.close .eyebrow { color: var(--on-brand); }
.close .eyebrow::before { background: var(--on-brand); }
.close .lead { color: var(--on-brand-muted); max-width: 34rem; }
.close__grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; align-items: end; }
@media (min-width: 860px) { .close__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); } }
.close .btn--primary { background: var(--bg); color: var(--ink); border: 1px solid var(--bg); }
.close .btn--primary:hover, .close .btn--primary:focus-visible { background: var(--bg-alt); color: var(--ink); }
.close .btn--primary .btn__sub { color: var(--ink-muted); }
.close .btn--ghost { color: var(--on-brand); border: 2px solid rgba(16, 22, 38, 0.55); }
.close .btn--ghost:hover { background: rgba(16, 22, 38, 0.1); color: var(--on-brand); }
.contact-list { font-style: normal; display: grid; gap: 0.7rem; margin: 0; }
.contact-list div { display: grid; grid-template-columns: 6.5rem 1fr; gap: 0.75rem; align-items: baseline; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(16, 22, 38, 0.25); }
.contact-list .label { font-size: 0.76rem; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--on-brand-muted); font-weight: 700; }
.contact-list a, .contact-list span:not(.label) { color: var(--on-brand); font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.contact-list a { border-bottom: 1px solid rgba(16, 22, 38, 0.4); }
.contact-list a:hover { border-bottom-color: var(--on-brand); }
@media (max-width: 520px) { .contact-list div { grid-template-columns: 1fr; gap: 0.15rem; } }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-block: var(--space-4) var(--space-3); }
.site-footer h2 { font-size: 0.8rem; letter-spacing: var(--track-label); text-transform: uppercase; margin-bottom: 0.6rem; font-family: var(--font-body); color: var(--ink); }
.site-footer p { margin-bottom: 0.35rem; max-width: 34ch; }
.site-footer a { text-decoration: none; border-bottom: 1px solid var(--line); }
.site-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.site-footer__legal { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: var(--space-2); font-size: 0.85rem; display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; }
.site-footer__legal p { max-width: none; margin: 0; }

/* ---------- sticky mobile CTA ---------- */
.cta-bar { background: var(--surface); border-top: 1px solid var(--line); }
.cta-bar__inner { display: flex; align-items: center; gap: var(--space-2); }
.cta-bar__inner .btn { flex: 1; }
.cta-bar__hours { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.2; max-width: 8rem; }

/* contact page reach block: the email address is one unbreakable 233px word, so
   1fr columns cannot shrink below it and the 2-up grid overflowed the phone screen */
#reach .facts { grid-template-columns: 1fr; }
#reach .fact { min-width: 0; }
#reach .fact p, #reach .fact a { overflow-wrap: anywhere; }
#reach .fact a { display: inline-block; padding-block: 0.25rem; }
@media (min-width: 640px) { #reach .facts { grid-template-columns: 1fr 1fr; } }
/* 4-up only once every value fits on one line; columns sized to what each value needs
   (phone 180px, email 283px, hours 247px, where 258px, including card padding) */
@media (min-width: 1160px) { #reach .facts { grid-template-columns: 0.78fr 1.16fr 1fr 1.06fr; } }

/* ---------- Duna Marketing sample-site bar ---------- */
:root { --duna-h: 54px; }
.duna-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  box-sizing: border-box; min-height: var(--duna-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.75rem;
  padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(25, 28, 35, 0.72);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #FFFFFF; text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.3; text-align: center;
  cursor: pointer; transition: background 0.15s ease;
}
.duna-bar a { text-decoration: none; }
.duna-bar__copy { justify-self: start; font-size: 0.76rem; letter-spacing: 0.01em; color: rgba(255, 255, 255, 0.85); white-space: nowrap; }
.duna-bar__note { grid-column: 3; justify-self: end; font-size: 0.76rem; letter-spacing: 0.01em; color: rgba(255, 255, 255, 0.85); white-space: nowrap; }
.duna-bar__actions { grid-column: 2; justify-self: center; display: inline-flex; align-items: center; gap: 0.5rem; }
.duna-bar__btn { display: inline-block; background: rgba(0, 0, 0, 0.45); color: #FFFFFF; border: 1.5px solid #FFFFFF; border-radius: 4px; padding: 0.45rem 1.1rem; font-weight: 700; font-size: 0.9rem; white-space: nowrap; transition: background 0.15s ease, color 0.15s ease; }
.duna-bar__btn:hover, .duna-bar__btn:focus-visible { background: #FFFFFF; color: #14171E; }
.duna-bar__btn--text { margin-left: 0.6rem; background: #C8102E; color: #FFFFFF; border-color: #C8102E;
  border-radius: 10px; box-shadow: 0 4px 14px rgba(200, 16, 46, 0.32);
  display: inline-flex; align-items: center; gap: 0.45rem; }
.duna-bar__btn--text svg { width: 15px; height: 15px; flex: none; }
.duna-bar__btn--call { margin-left: 0.6rem; background: #003087; color: #FFFFFF; border-color: #003087;
  border-radius: 10px; box-shadow: 0 4px 14px rgba(0, 48, 135, 0.34);
  display: inline-flex; align-items: center; gap: 0.45rem; }
.duna-bar__btn--call:hover, .duna-bar__btn--call:focus-visible { background: #001D52; border-color: #001D52;
  color: #FFFFFF; box-shadow: 0 6px 18px rgba(0, 48, 135, 0.44); }
.duna-bar__btn--call svg { width: 15px; height: 15px; flex: none; }
.duna-bar__btn--text:hover, .duna-bar__btn--text:focus-visible { background: #A50D25; border-color: #A50D25;
  color: #FFFFFF; box-shadow: 0 6px 18px rgba(200, 16, 46, 0.42); }
@media (max-width: 720px) {
  /* Phones (all ad traffic): two full-width, full-label text and call buttons on one row.
     --duna-h tracks the taller bar so pages keep clearing it. */
  :root { --duna-h: 66px; }
  .duna-bar__copy, .duna-bar__note, .duna-bar .long { display: none; }
  .duna-bar { grid-template-columns: 1fr; gap: 0; padding: 0.4rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom)); }
  .duna-bar__actions { grid-column: 1 / -1; justify-self: stretch; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 0.5rem; }
  .duna-bar__btn { grid-column: 1 / -1; justify-self: center; background: none; border: 0; padding: 0.1rem 0 0.15rem;
    font-size: 0.74rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; opacity: 0.9; }
  .duna-bar__btn--text, .duna-bar__btn--call { grid-column: auto; justify-self: stretch; justify-content: center; text-align: center;
    margin-left: 0; min-height: 46px; padding: 0.4rem 0.45rem; font-size: 0.82rem; font-weight: 700; line-height: 1.15;
    white-space: normal; text-decoration: none; opacity: 1; border-radius: 10px; }
  .duna-bar__btn--text { background: #C8102E; border: 1.5px solid #C8102E; }
  .duna-bar__btn--call { background: #003087; border: 1.5px solid #003087; }
  .duna-bar__btn--text .long, .duna-bar__btn--call .long { display: inline; }
  .duna-bar__btn--text svg, .duna-bar__btn--call svg { width: 16px; height: 16px; }
}
body { padding-bottom: calc(var(--duna-h) + env(safe-area-inset-bottom)); }
@media (max-width: 720px) {
  .cta-bar { bottom: calc(var(--duna-h) + env(safe-area-inset-bottom)); }
  body.has-cta-bar { padding-bottom: calc(84px + var(--duna-h)); }
}

/* Uniform legal block shared by every Duna sample site. */
.site-footer .duna-legal { grid-column: 1 / -1; margin-top: 0.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line, rgba(127, 127, 127, 0.35)); font-size: 0.85rem; line-height: 1.55; }
.site-footer .duna-legal p { margin: 0 0 0.3rem; max-width: none; }
.site-footer .duna-legal p:last-child { margin-bottom: 0; }
