/* ==========================================================================
   Gas Works — air conditioning product page
   Cool, airy, technical. Onest throughout; one accent (cool blue).
   ========================================================================== */

:root {
  --ice: #F4F7F9;
  --white: #FFFFFF;
  --mist: #E4EBF0;
  --ink: #17232B;
  --mute: #5F6E78;
  --rule: #D3DCE3;
  --blue: #52C7DC;
  --blue-deep: #1C8EA3;
  --blue-soft: #E3F6F9;
  --warm: #D98B3A;

  --font: "Onest", "Helvetica Neue", Arial, sans-serif;
  --container: 1280px;
  --gutter: clamp(1.125rem, 4vw, 3rem);
  --section: clamp(4rem, 8vw, 7rem);

  --t-display: clamp(2.4rem, 5.6vw, 4.6rem);
  --t-h2: clamp(1.6rem, 2.8vw, 2.25rem);
  --t-h3: clamp(1.1rem, 1.4vw, 1.3rem);
  --t-body: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --t-small: 0.875rem;
  --t-micro: 0.78rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font); font-size: var(--t-body); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.5rem;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.display { font-size: var(--t-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.03em; }
.h2 { font-size: var(--t-h2); font-weight: 500; line-height: 1.12; letter-spacing: -0.025em; }
.h3 { font-size: var(--t-h3); font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 300; line-height: 1.45; max-width: 44ch; }
.mute { color: var(--mute); }
.small { font-size: var(--t-small); }
.measure { max-width: 60ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 3rem; padding: 0 1.4rem; border-radius: 4px;
  border: 1px solid var(--ink); background: var(--ink); color: var(--white);
  font-size: .95rem; font-weight: 500; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { background: var(--ice); color: var(--ink); border-color: var(--ink); }
.btn--sm { min-height: 2.5rem; padding-inline: 1.1rem; font-size: .875rem; }


.crumbs { padding-block: .9rem; font-size: var(--t-small); color: var(--mute); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .35rem .6rem; }
.crumbs li + li::before { content: "/"; margin-right: .6rem; color: var(--rule); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); }

/* --- Hero: deep teal-navy with cyan glow -------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, #0B2A38 0%, #10394A 45%, #145A6E 100%);
  padding-block: 0 clamp(7rem, 12vw, 10.5rem);
}
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(75vw, 1000px); height: min(75vw, 1000px); right: -22%; top: -42%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(82,199,220,.55), rgba(82,199,220,.18) 50%, rgba(82,199,220,0));
}
.hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(60vw, 760px); height: min(60vw, 760px); left: -20%; bottom: -45%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(28,142,163,.45), rgba(28,142,163,0));
}
.hero > .container { position: relative; z-index: 1; }
.hero .crumbs { padding-block: 1rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.18); }
.hero .crumbs li + li::before { color: rgba(255,255,255,.3); }
.hero .crumbs [aria-current] { color: #fff; }
.hero__grid { display: grid; gap: 2rem; }
.hero__brand { display: flex; align-items: center; gap: .75rem; font-size: var(--t-small); color: rgba(255,255,255,.75); margin-bottom: 1.25rem; }
.hero__brand img { height: .9rem; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.hero__copy .display { max-width: 12ch; color: #fff; }
.hero__copy .lead { margin-top: 1.25rem; color: rgba(255,255,255,.82); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.hero__cta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.hero__cta .btn:hover { background: var(--blue); border-color: var(--blue); color: var(--ink); }
.hero__cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.hero__media { position: relative; border-radius: 4px; overflow: hidden; background: #0B2A38; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
  .hero__media img { aspect-ratio: 8 / 5; }
  .hero__media { margin-right: calc(-1 * var(--gutter)); border-radius: 4px 0 0 4px; }
}
@media (min-width: 1400px) { .hero__media { margin-right: 0; border-radius: 4px; } }

/* Fact card overlapping the hero edge */
.facts { position: relative; z-index: 2; margin-top: calc(-1 * clamp(2.75rem, 5vw, 4.25rem)); padding: 0; }
.facts__row { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--rule); border-radius: 4px; padding: .25rem 1.25rem; box-shadow: 0 24px 50px -20px rgba(11,42,56,.45); }
.fact { padding: 1rem .75rem 1rem 0; border-bottom: 1px solid var(--rule); }
.fact dt { font-size: var(--t-micro); color: var(--mute); margin-bottom: .2rem; }
.fact dd { margin: 0; font-size: 1.15rem; font-weight: 500; letter-spacing: -0.015em; line-height: 1.15; }
.fact dd small { font-size: .8rem; font-weight: 400; color: var(--mute); margin-left: .2rem; }
@media (min-width: 720px) { .facts__row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .facts__row { grid-template-columns: repeat(6, 1fr); padding: .25rem 1.75rem; }
  .fact { border-bottom: 0; border-right: 1px solid var(--rule); padding: 1.25rem 1rem 1.25rem 0; }
  .fact + .fact { padding-left: 1.25rem; }
  .fact:last-child { border-right: 0; }
}

/* --- Intro --------------------------------------------------------------- */
.intro { padding-block: var(--section); }
.intro__grid { display: grid; gap: 2.5rem; }
.intro__copy p + p { margin-top: 1.1rem; }
.glance { border-top: 1px solid var(--ink); }
.glance li { display: flex; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--rule); font-size: var(--t-small); }
.glance li::before { content: ""; flex: 0 0 .45rem; height: .45rem; margin-top: .45rem; border-radius: 50%; background: var(--blue); }
@media (min-width: 900px) { .intro__grid { grid-template-columns: 7fr 4fr; gap: clamp(2rem, 8vw, 8rem); align-items: start; } }

/* --- Size finder (the interactive moment) -------------------------------- */
.finder { background: var(--ice); padding-block: var(--section); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.finder__head { max-width: 56ch; margin-bottom: 2rem; }
.finder__head p { margin-top: .75rem; }
.finder__grid { display: grid; gap: 2rem; }
.finder__controls { display: grid; gap: 1.5rem; align-content: start; }
.control label, .control legend { display: block; font-size: var(--t-small); color: var(--mute); margin-bottom: .5rem; padding: 0; }
.control__value { font-size: 2.25rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin-bottom: .75rem; }
.control__value small { font-size: 1rem; font-weight: 400; color: var(--mute); margin-left: .25rem; letter-spacing: 0; }
input[type="range"] { width: 100%; accent-color: var(--blue-deep); }
.control__scale { display: flex; justify-content: space-between; font-size: var(--t-micro); color: var(--mute); margin-top: .35rem; }
fieldset.control { border: 0; margin: 0; padding: 0; }
.seg { display: inline-flex; border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; background: var(--white); }
.seg label { margin: 0; }
.seg input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg span { display: block; padding: .6rem 1rem; font-size: var(--t-small); color: var(--ink); cursor: pointer; border-right: 1px solid var(--rule); }
.seg label:last-child span { border-right: 0; }
.seg input:checked + span { background: var(--blue-deep); color: var(--white); }
.seg input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: -2px; }
.finder__note { font-size: var(--t-small); color: var(--mute); max-width: 40ch; }

.result { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: 1.25rem; }
.result__eyebrow { font-size: var(--t-small); color: var(--mute); }
.result__model { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.result__model small { display: block; font-size: 1rem; font-weight: 400; color: var(--mute); letter-spacing: 0; margin-top: .35rem; }
.result__unit { border-radius: 4px; overflow: hidden; background: var(--ice); }
.result__unit img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.result__stats { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.25rem; }
.result__stats dt { font-size: var(--t-micro); color: var(--mute); }
.result__stats dd { margin: 0; font-weight: 500; }
.result__stats dd small { font-weight: 400; color: var(--mute); font-size: .8rem; }
.result__foot { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center; }
.result__foot small { color: var(--mute); }
.result[data-state="over"] .result__model { font-size: 1.4rem; }
@media (min-width: 900px) { .finder__grid { grid-template-columns: 5fr 6fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; } .result__stats { grid-template-columns: repeat(3, 1fr); } }

/* --- Lineup table -------------------------------------------------------- */
.lineup { padding-block: var(--section); }
.lineup__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 1.5rem; }
.lineup__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lineup-table { border-collapse: collapse; width: 100%; min-width: 860px; font-size: var(--t-small); }
.lineup-table th, .lineup-table td { padding: .7rem .75rem; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
.lineup-table thead th { font-weight: 500; border-bottom: 1px solid var(--ink); white-space: nowrap; }
.lineup-table thead th small { display: block; font-weight: 400; color: var(--mute); font-size: var(--t-micro); }
.lineup-table tbody th { font-weight: 400; color: var(--mute); white-space: nowrap; width: 12rem; }
.lineup-table td { font-variant-numeric: tabular-nums; }
.lineup-table .is-rec th, .lineup-table .is-rec td { background: var(--blue-soft); }
.lineup-table thead th.is-rec { background: var(--blue-soft); position: relative; }
.lineup-table thead th.is-rec::after { content: "Suggested for you"; display: block; font-size: var(--t-micro); font-weight: 500; color: var(--blue-deep); margin-top: .2rem; }
.lineup-table thead th:first-child { position: sticky; left: 0; background: var(--white); }
.lineup-table tbody th { position: sticky; left: 0; background: var(--white); }
.lineup__note { margin-top: 1rem; font-size: var(--t-small); color: var(--mute); max-width: 70ch; }

/* --- Features ------------------------------------------------------------ */
.features { padding-block: var(--section); background: var(--ice); border-top: 1px solid var(--rule); }
.features__intro { max-width: 52ch; margin-bottom: clamp(2rem, 5vw, 4rem); }
.features__intro p { margin-top: .75rem; }
.feature { display: grid; gap: 1.5rem; padding-block: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--rule); }
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature__copy .h3 { margin-bottom: .6rem; }
.feature__copy p { max-width: 52ch; }
.feature__copy p + p { margin-top: .8rem; }
.feature__points { margin-top: 1.25rem; display: grid; gap: .4rem; font-size: var(--t-small); color: var(--mute); }
.feature__points li { padding-left: 1rem; position: relative; }
.feature__points li::before { content: ""; position: absolute; left: 0; top: .6em; width: .4rem; height: 1px; background: var(--mute); }
.feature__media { border-radius: 4px; overflow: hidden; background: var(--white); }
.feature__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.feature__media--contain img { object-fit: contain; padding: 1.5rem; }
@media (min-width: 900px) {
  .feature { grid-template-columns: repeat(12, 1fr); gap: 0 2rem; align-items: center; }
  .feature__copy { grid-column: 1 / 6; }
  .feature__media { grid-column: 7 / 13; }
  .feature--flip .feature__copy { grid-column: 8 / 13; grid-row: 1; }
  .feature--flip .feature__media { grid-column: 1 / 7; grid-row: 1; }
}

/* Noise scale: a real comparison, drawn as a ruler */
.noise { background: var(--white); border-radius: 4px; padding: clamp(1.25rem, 3vw, 2rem); }
.noise__scale { position: relative; height: 2px; background: var(--rule); margin: 3.5rem .5rem 3.25rem; }
.noise__mark { position: absolute; top: 0; transform: translateX(-50%); }
.noise__mark::before { content: ""; display: block; width: 1px; height: 12px; background: var(--mute); margin: -5px auto 0; }
.noise__mark span { display: block; white-space: nowrap; font-size: var(--t-micro); color: var(--mute); text-align: center; margin-top: .4rem; }
.noise__mark strong { display: block; font-size: var(--t-small); font-weight: 500; color: var(--ink); text-align: center; white-space: nowrap; }
.noise__mark--us { top: -34px; }
.noise__mark--us::before { height: 40px; background: var(--blue); width: 2px; margin-top: 0; }
.noise__mark--us strong { color: var(--blue-deep); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 4px; }
.noise__mark--us span { display: none; }
.noise__caption { font-size: var(--t-small); color: var(--mute); }

/* nanoe benefits: a plain two-column list */
.benefits { display: grid; gap: 1rem 2.5rem; margin-top: 1.5rem; }
.benefits li { display: grid; gap: .2rem; padding: .9rem 0; border-top: 1px solid var(--rule); font-size: var(--t-small); }
.benefits li strong { font-weight: 500; color: var(--ink); font-size: 1rem; }
.benefits li span { color: var(--mute); }
@media (min-width: 640px) { .benefits { grid-template-columns: 1fr 1fr; } }

/* --- Controls ------------------------------------------------------------ */
.controls { padding-block: var(--section); }
.controls__grid { display: grid; gap: 2rem; margin-top: 2rem; }
.control-card { display: grid; grid-template-columns: 6rem 1fr; gap: 1.25rem; align-items: start; }
.control-card__media { background: var(--ice); border-radius: 4px; height: 6rem; display: grid; place-items: center; padding: .6rem; overflow: hidden; }
.control-card__media img { height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.control-card .h3 { margin-bottom: .3rem; }
.control-card p { font-size: var(--t-small); color: var(--mute); }
.control-card__tag { display: inline-block; font-size: var(--t-micro); color: var(--blue-deep); margin-top: .5rem; }
@media (min-width: 900px) { .controls__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 3rem; } .control-card { grid-template-columns: 1fr; } .control-card__media { height: 15rem; padding: 1.25rem; } }

/* --- Downloads ----------------------------------------------------------- */
.downloads { margin-top: 3rem; border-top: 1px solid var(--ink); max-width: 40rem; }
.downloads li { border-bottom: 1px solid var(--rule); }
.downloads a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; text-decoration: none; font-size: var(--t-small); }
.downloads a:hover span:first-child { text-decoration: underline; }
.downloads a small { color: var(--mute); white-space: nowrap; }

/* --- Process ------------------------------------------------------------- */
.process { padding-block: var(--section); background: var(--ink); color: var(--white); }
.process__head { max-width: 52ch; margin-bottom: clamp(2rem, 5vw, 4rem); }
.process__head p { margin-top: 1rem; color: rgba(255,255,255,.7); }
.steps { counter-reset: step; display: grid; border-top: 1px solid rgba(255,255,255,.5); }
.step { counter-increment: step; display: grid; grid-template-columns: 2.5rem 1fr; gap: 0 1rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.step::before { content: counter(step); grid-row: 1 / span 2; font-size: 1.5rem; font-weight: 300; line-height: 1; color: rgba(255,255,255,.55); }
.step .h3, .step p { grid-column: 2; }
.step .h3 { margin-bottom: .4rem; }
.step p { font-size: var(--t-small); color: rgba(255,255,255,.7); max-width: 36ch; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 0 3rem; } }
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 0 2rem; }
  .step { grid-template-columns: 1fr; padding: 1.75rem 0 2rem; }
  .step::before { grid-row: auto; margin-bottom: 1.25rem; }
  .step .h3, .step p { grid-column: 1; }
  .step .h3 { min-height: 2.6em; }
}

/* --- Showrooms ----------------------------------------------------------- */
.showrooms { padding-block: var(--section); border-bottom: 1px solid var(--rule); }
.showrooms__grid { display: grid; gap: 2.5rem; margin-top: 2rem; }
.showroom { display: grid; gap: 1.25rem; }
.showroom__media { aspect-ratio: 16 / 9; background: var(--ice); overflow: hidden; border-radius: 4px; }
.showroom__media img { width: 100%; height: 100%; object-fit: cover; }
.showroom__body { display: grid; gap: .5rem; }
.showroom__status { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--t-small); color: var(--mute); }
.showroom__status::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--blue); }
.showroom address { font-style: normal; font-size: var(--t-small); line-height: 1.5; }
.showroom__hours { font-size: var(--t-small); color: var(--mute); }
.showroom__links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .5rem; }
@media (min-width: 720px) { .showrooms__grid { grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); } }

/* --- Enquiry ------------------------------------------------------------- */
.enquiry { padding-block: var(--section); background: var(--ice); }
.enquiry__grid { display: grid; gap: 2.5rem; }
.enquiry__copy p { margin-top: 1rem; max-width: 40ch; }
.contact-lines { margin-top: 2rem; display: grid; gap: .75rem; font-size: var(--t-small); }
.contact-lines a { font-weight: 500; text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: var(--t-small); color: var(--mute); }
.field input, .field select, .field textarea { width: 100%; min-height: 3rem; padding: .65rem .9rem; font: inherit; font-size: 1rem; color: var(--ink); background: var(--white); border: 1px solid var(--rule); border-radius: 4px; }
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue-deep); outline-offset: 0; border-color: transparent; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: .5rem; }
.form__foot small { color: var(--mute); }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .enquiry__grid { grid-template-columns: 5fr 7fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; } }

/* --- Related ------------------------------------------------------------- */
.related { padding-block: var(--section); }
.related__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 2rem; }
.related__grid { display: grid; gap: 2rem; }
.product { text-decoration: none; display: grid; gap: .9rem; }
.product__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ice); border-radius: 4px; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product:hover .product__media img { transform: scale(1.03); }
.product__name { font-weight: 500; letter-spacing: -0.01em; }
.product__meta { display: block; font-size: var(--t-small); color: var(--mute); }
.product:hover .product__name { text-decoration: underline; }
@media (min-width: 720px) { .related__grid { grid-template-columns: repeat(3, 1fr); } }
@media (prefers-reduced-motion: reduce) { .product__media img, .btn { transition: none; } }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding-block: 3.5rem 2.5rem; font-size: var(--t-small); }
.site-footer__grid { display: grid; gap: 2.5rem; }
.site-footer img { height: 2.25rem; width: auto; opacity: .85; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-weight: 500; font-size: 1rem; margin-bottom: .75rem; }
.site-footer li { padding: .2rem 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.site-footer__legal { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); font-size: var(--t-micro); display: flex; flex-wrap: wrap; gap: .5rem 2rem; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }

/* --- Mobile action bar --------------------------------------------------- */
.actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--rule); }
@media (min-width: 1024px) { .actionbar { display: none; } body { padding-bottom: 0; } }
