/* Swansea Rubbish Removal
   One light theme by choice: white pages, steel-grey tiles, signal yellow for actions. */

:root {
  --ink: #15181d;
  --ink-2: #3c434d;
  --muted: #5d6470;
  --line: #e3e6e8;
  --line-2: #cfd4d8;
  --page: #ffffff;
  --tile: #f1f3f4;
  --tile-2: #f7f8f9;
  --yellow: #ffc400;
  --yellow-hi: #ffd23a;
  --yellow-soft: #fff3c4;
  --teal: #1f7a77;
  --teal-soft: #e2f1f0;
  --green: #17824a;
  --green-soft: #e5f4ec;
  --amber: #8a5a00;
  --amber-soft: #fff1d4;
  --red: #b3321f;
  --red-soft: #fbe9e6;
  --r-xl: 28px;
  --r-lg: 20px;
  --r: 14px;
  --r-s: 10px;
  --sh-1: 0 1px 2px rgba(21, 24, 29, .05), 0 2px 10px rgba(21, 24, 29, .05);
  --sh-2: 0 2px 4px rgba(21, 24, 29, .04), 0 14px 36px rgba(21, 24, 29, .09);
  --sh-3: 0 24px 64px rgba(21, 24, 29, .18);
  --wrap: 1200px;
  --gut: 16px;
  --font: 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color-scheme: light;
}
@media (min-width: 760px) { :root { --gut: 32px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--page); color: var(--ink);
  font: 400 17px/1.6 var(--font); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; }
img { display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--ink); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; text-wrap: balance; }
h1 { font-size: clamp(2.15rem, 1.5rem + 3vw, 3.6rem); letter-spacing: -.035em; line-height: 1.04; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.35rem); letter-spacing: -.03em; }
h3 { font-size: 1.18rem; font-weight: 750; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
p, li { text-wrap: pretty; }
strong { font-weight: 750; }
small { font-size: .85em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gut); }
.narrow { max-width: 820px; }
.measure { max-width: 820px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--r-s); }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.num, .price { font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.todo { background: var(--yellow-soft); outline: 1px dashed #c89400; border-radius: 4px; padding: 0 .25em; }
.label { font-size: .78rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.kicker { display: inline-block; font-size: .8rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; }
.icon { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; stroke: none; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--page); --fg: var(--ink); --bd: var(--line-2);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .7rem 1.2rem; border: 2px solid var(--bd); border-radius: 12px;
  background: var(--bg); color: var(--fg); font: 700 1rem/1.2 var(--font); text-decoration: none;
  cursor: pointer; white-space: nowrap; transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-primary { --bg: var(--yellow); --bd: var(--yellow); box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .1); }
.btn-primary:hover { --bg: var(--yellow-hi); --bd: var(--yellow-hi); }
.btn-dark { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn-dark:hover { --bg: #2a2f37; --bd: #2a2f37; }
.btn-ghost:hover { --bd: var(--ink); }
.btn-lg { min-height: 56px; padding: .85rem 1.45rem; font-size: 1.06rem; border-radius: 14px; }
.btn-sm { min-height: 40px; padding: .45rem .85rem; font-size: .95rem; border-radius: 10px; }
.btn-block { width: 100%; }
.btn .icon { width: 19px; height: 19px; }
.btn-wa .icon-fill { color: #1a9f4c; }
.btn-dark.btn-wa .icon-fill { color: #5fe08f; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 40;
  background: rgba(255, 255, 255, .94); -webkit-backdrop-filter: saturate(1.5) blur(12px); backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: .75rem; height: 68px; }
@media (min-width: 760px) { .header-inner { height: 76px; gap: 1rem; } }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; min-width: 0; }
.brand .logo { width: 40px; height: 40px; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name small { font-size: .7rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.brand-name strong { font-size: 1.06rem; font-weight: 800; letter-spacing: -.015em; white-space: nowrap; }
.header-phone { display: none; align-items: center; gap: .55rem; text-decoration: none; line-height: 1.15; }
.header-phone .icon { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--tile); }
.header-phone small { display: block; font-size: .75rem; color: var(--muted); font-weight: 600; }
.header-phone strong { font-size: 1rem; }
@media (min-width: 980px) { .header-phone { display: inline-flex; } }
.header-cta { display: none; }
@media (min-width: 600px) { .header-cta { display: inline-flex; } }
.menu-btn {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: .45rem .8rem;
  border: 2px solid var(--line-2); border-radius: 12px; background: var(--page); color: var(--ink);
  font: 700 .95rem var(--font); cursor: pointer;
}
.menu-btn:hover { border-color: var(--ink); }
.menu-bars { display: grid; gap: 4px; width: 18px; }
.menu-bars span { height: 2px; border-radius: 2px; background: currentColor; }

/* ---------- Menu drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 60; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(21, 24, 29, .45); animation: fade .2s ease; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 100%);
  display: flex; flex-direction: column; gap: 1.1rem; overflow-y: auto; overscroll-behavior: contain;
  background: var(--page); box-shadow: var(--sh-3);
  padding: calc(env(safe-area-inset-top, 0px) + 14px) 20px calc(env(safe-area-inset-bottom, 0px) + 28px);
  animation: slide .25s cubic-bezier(.2, .8, .2, 1);
}
@keyframes slide { from { transform: translateX(28px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-close { display: inline-flex; align-items: center; gap: .4rem; min-height: 44px; padding: .4rem .75rem; border: 2px solid var(--line-2); border-radius: 12px; background: var(--page); font: 700 .95rem var(--font); color: var(--ink); cursor: pointer; }
.drawer-close:hover { border-color: var(--ink); }
.drawer-card { display: grid; gap: .6rem; padding: 1rem; border-radius: var(--r-lg); background: var(--tile); }
.drawer-card p { margin: 0; font-weight: 700; }
.drawer-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.drawer-card .row .btn { padding-inline: .6rem; }
.drawer-svcs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.drawer-svcs a { display: flex; align-items: center; gap: .6rem; min-height: 52px; padding: .35rem .45rem; border-radius: 12px; text-decoration: none; font-weight: 650; font-size: .93rem; line-height: 1.2; }
.drawer-svcs a:hover { background: var(--tile); }
.drawer-svcs img { width: 46px; height: 38px; object-fit: contain; flex: none; }
.drawer-links { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.drawer-links > li > a, .drawer-links summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: .5rem .2rem;
  border-bottom: 1px solid var(--line); font-weight: 750; font-size: 1.08rem; text-decoration: none; cursor: pointer; list-style: none;
}
.drawer-links summary::-webkit-details-marker { display: none; }
.drawer-links details[open] summary .icon { transform: rotate(180deg); }
.drawer-links .icon { color: var(--muted); transition: transform .2s; }
.pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.pills a, .pills span { display: inline-flex; align-items: center; gap: .35rem; min-height: 38px; padding: .4rem .8rem; border-radius: 999px; background: var(--tile); font-size: .93rem; font-weight: 650; text-decoration: none; }
.pills a:hover { background: var(--yellow-soft); }
.pills small { color: var(--muted); font-weight: 600; }
.drawer-areas { padding: .8rem 0 1rem; }
.drawer-contact { font-size: .95rem; color: var(--ink-2); }
.drawer-contact p { margin: 0 0 .3rem; }

/* ---------- Page structure ---------- */
main { display: block; }
.section { padding-block: 3.25rem; }
@media (min-width: 900px) { .section { padding-block: 5rem; } }
.section-tight { padding-block: 2.25rem; }
.section-tile { background: var(--tile); }
.section-head { max-width: 760px; margin-bottom: 1.75rem; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; margin: 0; }
.section-head h2 { margin-bottom: .4rem; }
.section-foot { margin-top: 1.5rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 750; text-decoration: none; }
.link-arrow .icon { width: 18px; height: 18px; transition: transform .15s; }
.link-arrow:hover .icon { transform: translateX(3px); }

.crumbs { padding-block: .9rem 0; font-size: .9rem; color: var(--muted); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem .5rem; }
.crumbs li + li::before { content: '/'; margin-right: .5rem; color: var(--line-2); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; text-decoration-color: var(--yellow); }

/* ---------- Home hero ---------- */
.hero { padding-block: 1.25rem 2.5rem; }
@media (min-width: 980px) { .hero { padding-block: 3rem 4rem; } }
.hero-grid { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3.5rem; } }
.hero-copy { display: grid; gap: 1.1rem; justify-items: start; }
.badge-line { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .8rem .35rem .45rem; border-radius: 999px; background: var(--green-soft); color: #0f5f35; font-size: .88rem; font-weight: 700; }
.badge-line .icon { width: 22px; height: 22px; padding: 3px; border-radius: 50%; background: var(--green); color: #fff; stroke-width: 3; }
.hero h1 { margin: 0; max-width: 13ch; }
.hero-lede { margin: 0; max-width: 34em; font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); color: var(--ink-2); }
.facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; font-weight: 650; font-size: .95rem; }
.facts li { display: inline-flex; align-items: center; gap: .4rem; }
.facts .icon { color: var(--green); width: 18px; height: 18px; stroke-width: 2.6; }
.hero-art { position: relative; margin: 0; border-radius: var(--r-xl); background: var(--tile); aspect-ratio: 16 / 11; --art-pad: clamp(1rem, 4vw, 2.5rem); }
@media (min-width: 980px) { .hero-art { align-self: stretch; aspect-ratio: auto; min-height: 460px; --art-pad: 4.5rem 2.5rem 4rem; } }
.card-art, .head-art, .post-art { position: relative; }
.hero-art img, .card-art img, .head-art img, .post-art img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: var(--art-pad, 1rem);
}
.float { position: absolute; display: flex; align-items: center; gap: .6rem; padding: .55rem .85rem; border-radius: 14px; background: var(--page); box-shadow: var(--sh-2); font-size: .86rem; line-height: 1.25; }
.float strong { display: block; font-size: 1rem; }
.float .icon { width: 30px; height: 30px; padding: 6px; border-radius: 9px; background: var(--yellow-soft); }
.float-1 { top: 1rem; left: 1rem; }
.float-2 { right: 1rem; bottom: 1rem; }
@media (max-width: 979px) { .float { display: none; } }

/* ---------- Booking widget ---------- */
.book { width: 100%; max-width: 580px; padding: 1.15rem; border: 1px solid var(--line); border-radius: var(--r-xl); background: var(--page); box-shadow: var(--sh-2); }
@media (min-width: 560px) { .book { padding: 1.5rem; } }
.book fieldset { border: 0; margin: 0 0 1.1rem; padding: 0; min-width: 0; }
.book legend, .book .q { display: block; padding: 0; margin: 0 0 .55rem; font-weight: 750; font-size: 1rem; }
.book-title { font-size: 1.2rem; margin: 0 0 1rem; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.choice-body {
  display: flex; flex-direction: column; align-items: center; gap: .3rem; height: 100%; padding: .7rem .5rem .8rem;
  border: 2px solid var(--line); border-radius: 18px; background: var(--tile-2); text-align: center;
  transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.choice-body img { height: 76px; width: 100%; object-fit: contain; }
.choice-body strong { font-size: 1rem; line-height: 1.2; }
.choice-body small { font-size: .82rem; line-height: 1.25; color: var(--muted); }
.choice:hover .choice-body { border-color: var(--line-2); }
.choice input:checked + .choice-body { border-color: var(--ink); background: var(--page); box-shadow: 0 0 0 4px var(--yellow-soft); }
.choice input:focus-visible + .choice-body { outline: 3px solid var(--ink); outline-offset: 2px; }
.input {
  width: 100%; min-height: 52px; padding: .75rem 1rem; border: 2px solid var(--line-2); border-radius: var(--r);
  background: var(--page); color: var(--ink); font: 500 1.05rem var(--font);
}
.input::placeholder { color: #8b929c; }
.input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--yellow-soft); }
textarea.input { min-height: 96px; resize: vertical; }
.input-icon { position: relative; }
.input-icon .icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.input-icon .input { padding-left: 2.7rem; text-transform: uppercase; }
.input-icon .input::placeholder { text-transform: none; }
.pc-msg { display: flex; align-items: center; gap: .35rem; min-height: 1.5em; margin: .45rem 0 0; font-size: .92rem; font-weight: 600; }
.pc-msg:empty { display: none; }
.pc-msg .icon { width: 18px; height: 18px; stroke-width: 2.6; }
.pc-msg.ok { color: var(--green); }
.pc-msg.ask { color: var(--amber); }
.pc-msg.out, .pc-msg.invalid { color: var(--red); }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip { position: relative; display: inline-flex; }
.chip input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; min-height: 42px; padding: .45rem .95rem; border: 2px solid var(--line); border-radius: 999px; background: var(--page); font-weight: 650; font-size: .95rem; cursor: pointer; transition: border-color .15s, background-color .15s; }
.chip:hover span { border-color: var(--line-2); }
.chip input:checked + span { border-color: var(--ink); background: var(--ink); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 2px; }
.book-note { display: flex; justify-content: center; align-items: center; gap: .4rem; margin: .75rem 0 0; font-size: .88rem; color: var(--muted); text-align: center; }
.book-note .icon { width: 16px; height: 16px; }
.book-side { max-width: none; box-shadow: var(--sh-1); }
.book-side .book-title { font-size: 1.1rem; }
.book-side .chips { gap: .35rem; }
.book-side .chip span { min-height: 36px; padding: .3rem .7rem; font-size: .88rem; }
.book-side .side-contact { margin: .9rem 0 0; font-size: .92rem; color: var(--ink-2); text-align: center; }

/* ---------- Trust strip ---------- */
.trust { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
@media (min-width: 900px) { .trust { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.trust li { display: flex; align-items: center; gap: .75rem; padding: .85rem .9rem; border-radius: var(--r-lg); background: var(--tile); font-weight: 650; font-size: .93rem; line-height: 1.3; }
.trust .ti { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--page); }
.trust .ti .icon { width: 22px; height: 22px; color: var(--ink); }
@media (min-width: 900px) { .trust li { padding: 1.1rem 1.2rem; font-size: 1rem; } }

/* ---------- Cards ---------- */
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.cards-4 { }
@media (min-width: 1100px) { .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--page); transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.card-art { aspect-ratio: 16 / 11; background: var(--tile); --art-pad: 1.1rem; }
.card-art img { transition: transform .25s ease; }
.card:hover .card-art img { transform: scale(1.04); }
.card-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--tile); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-body { display: flex; flex-direction: column; gap: .3rem; flex: 1; padding: .85rem .9rem 1rem; }
@media (min-width: 900px) { .card-body { padding: 1.1rem 1.2rem 1.25rem; gap: .4rem; } }
.card-title { margin: 0; font-size: 1rem; font-weight: 750; line-height: 1.25; letter-spacing: -.01em; }
@media (min-width: 900px) { .card-title { font-size: 1.12rem; } }
.card-title a { text-decoration: none; }
.card-title a::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.card-text { margin: 0; font-size: .95rem; color: var(--ink-2); }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; padding-top: .45rem; font-weight: 750; font-size: .95rem; }
.card-go { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--yellow); }
.card-go .icon { width: 18px; height: 18px; stroke-width: 2.4; }
@media (max-width: 599px) { .card-text { display: none; } .card-art { --art-pad: .6rem; } .card-go { width: 30px; height: 30px; } }
.card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; }
.card-wide .card-art { aspect-ratio: 16 / 9; }
@media (min-width: 760px) {
  .card-wide { grid-template-columns: 1.15fr 1fr; align-items: stretch; }
  .card-wide .card-art { order: 2; aspect-ratio: auto; min-height: 240px; }
  .card-wide .card-body { justify-content: center; padding: 2rem; gap: .6rem; }
  .card-wide .card-title { font-size: 1.5rem; }
  .card-wide .card-text { display: block; font-size: 1.05rem; }
}

/* Load sizes */
.loads { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 900px) { .loads { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.load { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--page); }
.load .card-art { aspect-ratio: 16 / 11; --art-pad: .5rem .75rem; }
.load-body { display: grid; gap: .2rem; padding: .8rem .9rem 1rem; }
@media (min-width: 900px) { .load-body { padding: 1rem 1.2rem 1.25rem; } }
.load-top { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.load-name { font-weight: 750; font-size: 1rem; }
.load-price { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.load-size { font-size: .82rem; font-weight: 700; color: var(--teal); }
.load-look { margin: .15rem 0 0; font-size: .92rem; color: var(--ink-2); }
@media (max-width: 599px) { .load-look { font-size: .85rem; } .load-price { font-size: 1.25rem; } }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.step { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 1rem; padding: 1rem; border-radius: var(--r-lg); background: var(--tile); }
@media (min-width: 900px) { .step { grid-template-columns: 1fr; align-items: start; padding: 1.5rem; } }
.step-art { position: relative; height: 92px; }
@media (min-width: 900px) { .step-art { height: 150px; } }
.step-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.step h3 { display: flex; align-items: center; gap: .55rem; margin: 0 0 .3rem; font-size: 1.1rem; }
.step-n { display: inline-grid; place-items: center; width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--yellow); font-size: .92rem; font-weight: 800; }
.step p { margin: 0; font-size: .95rem; color: var(--ink-2); }

/* Callout (licence) */
.callout { display: grid; gap: 1.5rem; padding: 1.5rem; border-radius: var(--r-xl); background: var(--tile); }
@media (min-width: 900px) { .callout { grid-template-columns: 280px 1fr; gap: 3rem; padding: 3rem; align-items: center; } }
.stat-num { margin: 0; font-size: clamp(3.4rem, 2.5rem + 4vw, 5.5rem); font-weight: 850; letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { margin: .5rem 0 0; font-weight: 650; color: var(--ink-2); }
.callout h2 { margin-bottom: .6rem; }
.callout p:last-child { margin-bottom: 0; }

/* Areas block */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 3.5rem; } }
.photo { margin: 0; }
.photo img { width: 100%; border-radius: var(--r-xl); aspect-ratio: 4 / 3; object-fit: cover; background: var(--tile); }
.photo figcaption { margin-top: .5rem; font-size: .8rem; color: var(--muted); }
.photo figcaption a { text-decoration-thickness: 1px; }
.pc-check { display: grid; gap: .5rem; margin: 1.25rem 0; padding: 1rem; border-radius: var(--r-lg); background: var(--tile); max-width: 520px; }
.pc-check label { font-weight: 750; }
.pc-row { display: flex; gap: .5rem; }
.pc-row .input-icon { flex: 1; }

/* FAQ */
.faq-cols { display: grid; gap: 0 2.5rem; }
@media (min-width: 900px) { .faq-cols { grid-template-columns: 1fr 1fr; } }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 60px; padding: .9rem 0; font-weight: 700; font-size: 1.04rem; line-height: 1.35; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--tile); transition: background-color .15s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; border-radius: 2px; background: var(--ink); transition: transform .2s; }
.faq-icon::after { transform: rotate(90deg); }
.faq[open] .faq-icon { background: var(--yellow); }
.faq[open] .faq-icon::after { transform: rotate(0); }
.faq-a { padding: 0 0 1.1rem; color: var(--ink-2); max-width: 62ch; }
.faq-a p { margin: 0; }
.faq-group + .faq-group, .prose + .faq-group { margin-top: 2.5rem; }

/* Reviews (shown once real reviews are added) */
.reviews { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { padding: 1.25rem; border-radius: var(--r-lg); background: var(--tile); }
.review .stars { color: #e0a800; letter-spacing: .1em; }
.review p { margin: .5rem 0; }

/* CTA band */
.cta { padding-block: 1rem 3.5rem; }
.cta-box { position: relative; display: grid; gap: 1.25rem; overflow: hidden; padding: 1.75rem 1.5rem; border-radius: var(--r-xl); background: var(--yellow); }
@media (min-width: 900px) { .cta-box { grid-template-columns: 1.2fr .8fr; align-items: center; padding: 3rem 3.25rem; } }
.cta-box h2 { margin: 0 0 .4rem; }
.cta-box p { margin: 0; font-size: 1.08rem; color: #2b2410; }
.cta-box .actions { margin-top: 1.25rem; }
.cta-box .btn-ghost { --bg: rgba(255, 255, 255, .6); --bd: rgba(21, 24, 29, .25); }
.cta-box .btn-ghost:hover { --bg: #fff; --bd: var(--ink); }
.cta-art { display: none; }
@media (min-width: 900px) { .cta-art { display: block; justify-self: end; width: min(100%, 360px); margin: -1rem 0; } }
.cta-phone { margin-top: .9rem !important; font-size: .98rem !important; }

/* ---------- Inner page heads ---------- */
.page-head { padding-block: 1.25rem 2.5rem; }
@media (min-width: 900px) { .page-head { padding-block: 2rem 3.5rem; } }
.page-head-grid { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 900px) { .page-head-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 3.5rem; } }
.page-head-copy { display: grid; gap: 1rem; justify-items: start; }
.page-head h1 { margin: 0; max-width: 18ch; }
.answer { margin: 0; max-width: 60ch; font-size: clamp(1.05rem, 1rem + .25vw, 1.18rem); color: var(--ink-2); }
.meta { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.meta li { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .7rem; border-radius: 999px; background: var(--tile); font-size: .88rem; font-weight: 650; }
.meta li.hl { background: var(--yellow-soft); }
.meta .icon { width: 16px; height: 16px; }
.head-art { margin: 0; aspect-ratio: 5 / 4; border-radius: var(--r-xl); background: var(--tile); --art-pad: clamp(1rem, 4vw, 2.25rem); }
@media (max-width: 899px) { .head-art { aspect-ratio: 16 / 10; } }
.head-photo img { aspect-ratio: 5 / 4; }
.page-head-simple { padding-block: 1.25rem 1.5rem; }
@media (min-width: 900px) { .page-head-simple { padding-block: 2rem 2.25rem; } }

/* Content with a sticky booking card */
.content-grid { display: grid; gap: 2.5rem; padding-block: 1rem 3.5rem; }
@media (min-width: 980px) { .content-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 4rem; align-items: start; } }
.side { display: grid; gap: 1rem; }
@media (min-width: 980px) { .side { position: sticky; top: calc(env(safe-area-inset-top, 0px) + 96px); } }
.mini-prices { padding: 1.1rem 1.2rem; border-radius: var(--r-lg); background: var(--tile); }
.mini-prices ul { list-style: none; margin: .5rem 0 0; padding: 0; }
.mini-prices li { display: flex; justify-content: space-between; gap: 1rem; padding: .38rem 0; border-bottom: 1px solid var(--line-2); font-size: .95rem; }
.mini-prices li:last-child { border-bottom: 0; }
.mini-prices b { font-variant-numeric: tabular-nums; }
.mini-prices p { margin: .6rem 0 0; font-size: .85rem; color: var(--muted); }

/* Prose */
.prose { max-width: 70ch; font-size: 1.04rem; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 2.2rem 0 .7rem; font-size: clamp(1.4rem, 1.2rem + .9vw, 1.85rem); }
.prose h3 { margin: 1.6rem 0 .5rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--muted); }
.prose a { font-weight: 600; }
.prose .pills { padding-left: 0; margin: 0 0 1.2em; }
.prose .pills li { margin: 0; }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.25rem; border-radius: var(--r); background: var(--tile); }
.ticks { list-style: none !important; padding-left: 0 !important; }
.ticks li { position: relative; padding-left: 1.9rem; }
.ticks li::before { content: ''; position: absolute; left: 0; top: .22em; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317824a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 72% no-repeat; }
.crosses { list-style: none !important; padding-left: 0 !important; }
.crosses li { position: relative; padding-left: 1.9rem; }
.crosses li::before { content: ''; position: absolute; left: 0; top: .22em; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3321f' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M8 8l8 8M16 8l-8 8'/%3E%3C/svg%3E") center / 70% no-repeat; }
.inline-art { margin: 1.75rem 0; padding: 1.25rem; border-radius: var(--r-xl); background: var(--tile); }
.inline-art img { width: 100%; max-height: 280px; object-fit: contain; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 0 0 1.25rem; border: 1px solid var(--line); border-radius: var(--r-lg); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { padding: .75rem .9rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { background: var(--tile); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { font-weight: 700; }
td.num, th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.compare { min-width: 680px; }
.compare td.us { background: var(--yellow-soft); font-weight: 750; }
.footnotes { font-size: .85rem; color: var(--muted); padding-left: 1.2rem; }
.price-table { min-width: 0; }
.price-table .load-cell { display: flex; align-items: center; gap: .75rem; }
.price-table img { width: 64px; height: 44px; object-fit: contain; flex: none; }
.price-table small { display: block; color: var(--muted); font-weight: 600; }
@media (max-width: 599px) { .price-table .look { display: none; } }

/* Extras and examples */
.extras { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 900px) { .extras { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.extra { display: flex; flex-direction: column; gap: .3rem; padding: .9rem; border-radius: var(--r-lg); background: var(--tile); }
.extra img { height: 86px; width: 100%; object-fit: contain; margin-bottom: .3rem; }
.extra strong { font-size: 1rem; }
.extra .price { font-size: 1.3rem; font-weight: 800; }
.extra p { margin: 0; font-size: .87rem; color: var(--ink-2); }
.two { display: grid; gap: 1rem; }
@media (min-width: 900px) { .two { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.panel { padding: 1.25rem 1.35rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--page); }
.panel h2, .panel h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.panel ul { margin: 0; }
.examples { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
@media (min-width: 900px) { .examples { grid-template-columns: 1fr 1fr; } }
.examples li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: var(--r-lg); }
.examples span { color: var(--ink-2); font-size: .95rem; }
.examples b { font-size: 1.15rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.examples small { display: block; color: var(--muted); font-weight: 600; font-size: .82rem; }

/* Sources */
.sources { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: .9rem; }
.sources h2 { font-size: .8rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.sources ul { margin: 0; padding-left: 1.1rem; }
.sources li { margin-bottom: .3rem; }

/* Areas listing */
.area-cards .card-body { padding: .75rem .9rem .9rem; }
.area-cards .card-title { font-size: 1rem; }
.area-cards small { color: var(--muted); font-weight: 650; }

/* Guide pages */
.post-head { display: grid; gap: 1rem; padding-block: 1.25rem 1.5rem; }
.post-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; color: var(--muted); font-size: .92rem; font-weight: 600; }
.post-art { margin: 0 0 2rem; aspect-ratio: 16 / 8; border-radius: var(--r-xl); background: var(--tile); --art-pad: 1.5rem; }
.post-cta { display: grid; gap: 1rem; margin: 2.5rem 0 1rem; padding: 1.35rem; border-radius: var(--r-xl); background: var(--yellow-soft); }
@media (min-width: 760px) { .post-cta { grid-template-columns: 1fr auto; align-items: center; } }
.post-cta p { margin: 0; }

/* Details lists (about) */
.details { display: grid; gap: 0; margin: 0; }
.details > div { display: grid; gap: .15rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .details > div { grid-template-columns: 200px 1fr; gap: 1rem; } }
.details dt { font-weight: 700; }
.details dd { margin: 0; color: var(--ink-2); }
.credits { padding-left: 1.1rem; }
.credits li { margin-bottom: .6rem; }

/* ---------- Price form ---------- */
.page-quote .actionbar { display: none; }
.quote-wrap { display: grid; gap: 1.5rem; padding-block: .5rem 3rem; }
@media (min-width: 980px) { .quote-wrap { grid-template-columns: minmax(0, 1fr) 340px; gap: 3rem; align-items: start; } }
.quote { padding: 1.15rem; border: 1px solid var(--line); border-radius: var(--r-xl); background: var(--page); box-shadow: var(--sh-1); }
@media (min-width: 600px) { .quote { padding: 1.75rem; } }
.q-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; margin-bottom: .8rem; }
.q-progress span { height: 6px; border-radius: 6px; background: var(--line); transition: background-color .25s; }
.q-progress span.on { background: var(--yellow); }
.q-steplabel { margin: 0 0 1rem; font-size: .88rem; font-weight: 700; color: var(--muted); }
.qstep { border: 0; margin: 0; padding: 0; min-width: 0; }
.qstep > legend { display: block; margin: 0 0 .35rem; padding: 0; font-size: clamp(1.35rem, 1.15rem + .8vw, 1.75rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.qstep .hint { margin: 0 0 1.1rem; color: var(--ink-2); }
.qstep .choice-grid { gap: .75rem; }
.qstep .choice-body { padding: 1rem .75rem 1.1rem; }
.qstep .choice-body img { height: 110px; }
@media (min-width: 600px) { .qstep .choice-body img { height: 140px; } }
.sizes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
@media (min-width: 700px) { .sizes { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; } }
.size { position: relative; display: block; cursor: pointer; }
.size input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.size-body { display: grid; gap: .15rem; height: 100%; padding: .55rem .6rem .75rem; border: 2px solid var(--line); border-radius: 16px; background: var(--tile-2); transition: border-color .15s, box-shadow .15s, background-color .15s; }
.size-body img { width: 100%; aspect-ratio: 16 / 10; object-fit: contain; margin-bottom: .2rem; }
.size-body strong { font-size: .98rem; line-height: 1.2; }
.size-body small { color: var(--muted); font-size: .82rem; line-height: 1.25; }
.size-body b { font-size: 1.15rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.size-q { display: grid; place-items: center; aspect-ratio: 16 / 10; margin-bottom: .2rem; border-radius: 12px; background: var(--page); font-size: 2.2rem; font-weight: 800; color: var(--muted); }
.size:hover .size-body { border-color: var(--line-2); }
.size input:checked + .size-body { border-color: var(--ink); background: var(--page); box-shadow: 0 0 0 4px var(--yellow-soft); }
.size input:focus-visible + .size-body { outline: 3px solid var(--ink); outline-offset: 2px; }
.items { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
@media (min-width: 700px) { .items { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; } }
.item { display: grid; gap: .35rem; padding: .6rem .6rem .7rem; border: 2px solid var(--line); border-radius: 16px; background: var(--tile-2); text-align: center; transition: border-color .15s, background-color .15s; }
.item.has { border-color: var(--ink); background: var(--page); }
.item img { width: 100%; height: 78px; object-fit: contain; }
.item-name { font-weight: 700; font-size: .92rem; line-height: 1.2; min-height: 2.4em; display: grid; place-items: center; }
.item-name small { display: block; color: var(--muted); font-weight: 600; font-size: .78rem; }
.stepper { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; gap: .25rem; }
.stepper button { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 2px solid var(--line-2); border-radius: 10px; background: var(--page); font: 700 1.2rem/1 var(--font); color: var(--ink); cursor: pointer; }
.stepper button:hover { border-color: var(--ink); }
.stepper input { width: 100%; min-width: 0; height: 38px; border: 0; background: transparent; text-align: center; font: 800 1.1rem var(--font); color: var(--ink); -moz-appearance: textfield; appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.counters { display: grid; gap: .6rem; }
.counter { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: .75rem; padding: .6rem .8rem; border: 2px solid var(--line); border-radius: 16px; }
.counter img { width: 64px; height: 48px; object-fit: contain; }
.counter-label { font-weight: 700; line-height: 1.25; }
.counter-label small { display: block; color: var(--muted); font-weight: 600; }
.counter .stepper { width: 132px; }
.subfield { border: 0; margin: 1.5rem 0 0; padding: 0; min-width: 0; }
.subfield > legend { padding: 0; margin: 0 0 .6rem; font-weight: 750; font-size: 1.05rem; }
.checks { display: grid; gap: .5rem; }
@media (min-width: 600px) { .checks-2 { grid-template-columns: 1fr 1fr; } }
.check { position: relative; display: flex; align-items: center; gap: .7rem; min-height: 52px; padding: .6rem .9rem; border: 2px solid var(--line); border-radius: 14px; cursor: pointer; font-weight: 600; line-height: 1.3; }
.check input { width: 22px; height: 22px; margin: 0; flex: none; accent-color: var(--ink); }
.check:has(input:checked) { border-color: var(--ink); background: var(--tile-2); }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-weight: 750; }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.req, .opt { font-size: .78rem; font-weight: 700; color: var(--muted); margin-left: .25rem; }
.q-error { display: flex; align-items: center; gap: .5rem; margin: 1rem 0 0; padding: .7rem .9rem; border-radius: 12px; background: var(--red-soft); color: var(--red); font-weight: 650; }
.q-nav { display: flex; align-items: center; gap: .6rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.q-nav .grow { flex: 1; }
.q-nav-price { display: none; line-height: 1.15; }
.q-nav-price small { display: block; font-size: .75rem; color: var(--muted); font-weight: 650; }
.q-nav-price strong { font-size: 1.25rem; font-variant-numeric: tabular-nums; }
@media (max-width: 979px) {
  .q-nav {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; margin: 0;
    padding: .7rem var(--gut) calc(env(safe-area-inset-bottom, 0px) + .7rem);
    background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(21, 24, 29, .06);
  }
  .q-nav-price { display: block; }
  .page-quote .site-footer { padding-bottom: 7rem; }
}
.q-summary { display: grid; gap: .75rem; padding: 1.35rem; border-radius: var(--r-xl); background: var(--tile); }
@media (min-width: 980px) { .q-summary { position: sticky; top: calc(env(safe-area-inset-top, 0px) + 96px); } }
@media (max-width: 979px) { .q-summary { order: 2; } }
.q-summary .q-total { margin: 0; font-size: 2.4rem; color: var(--ink); font-weight: 850; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.q-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; font-size: .93rem; }
.q-lines li { display: flex; justify-content: space-between; gap: 1rem; }
.q-lines b { font-variant-numeric: tabular-nums; }
.q-summary hr { width: 100%; border: 0; border-top: 1px solid var(--line-2); margin: .25rem 0; }
.q-summary p { margin: 0; font-size: .92rem; color: var(--ink-2); }
.q-done { padding: 1.5rem; border-radius: var(--r-xl); background: var(--green-soft); }
.q-done:focus { outline: none; }
.q-done h2 { margin-bottom: .5rem; }
.q-done .actions { margin: 1.25rem 0 1rem; }
.q-ref { display: inline-block; margin-bottom: .75rem; padding: .25rem .7rem; border-radius: 999px; background: var(--page); font-weight: 750; font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 0; padding-block: 3rem 2rem; background: var(--tile); font-size: .95rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.15fr 1fr 1.75fr .7fr; gap: 2.5rem; } }
.footer-grid p { margin: 0 0 .8rem; color: var(--ink-2); }
.footer-head { font-size: .78rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem !important; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; text-decoration-color: var(--yellow); }
.footer-links-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.25rem; align-items: start; }
.footer-contact strong { font-size: 1.15rem; }
.footer-legal { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-2); font-size: .85rem; color: var(--muted); }
.footer-legal p { margin: 0 0 .5rem; }
.site-footer .brand { margin-bottom: 1rem; }

/* ---------- Mobile action bar ---------- */
.actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: grid; grid-template-columns: 1fr 1fr 1.35fr; gap: .5rem; padding: .55rem .6rem calc(env(safe-area-inset-bottom, 0px) + .55rem); background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(21, 24, 29, .06); }
.actionbar a { display: flex; align-items: center; justify-content: center; gap: .4rem; min-height: 48px; border-radius: 12px; background: var(--tile); font-weight: 750; font-size: .95rem; text-decoration: none; }
.actionbar .icon { width: 19px; height: 19px; }
.actionbar .ab-wa .icon-fill { color: #1a9f4c; }
.actionbar .ab-cta { background: var(--yellow); box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .1); }
@media (min-width: 900px) { .actionbar { display: none; } }
@media (max-width: 899px) { .site-footer { padding-bottom: 6.5rem; } }

/* ---------- Motion and print ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .site-header, .actionbar, .drawer, .cta, .side, .q-nav { display: none !important; }
  body { font-size: 12pt; }
}
