:root {
  --coral: #e2574c;
  --coral-deep: #c0392f;
  --mint: #86d9cb;
  --mint-soft: #d6f2ec;
  --teal: #3fb59c;
  --navy: #243552;
  --ink: #1c2940;
  --cream: #fffbf4;
  --paper: #ffffff;
  --line: #e7e0d2;
  --muted: #5b6678;

  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --body: 'Figtree', system-ui, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--navy); color: #fff; padding: 8px 14px; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; color: var(--navy); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); text-transform: uppercase; letter-spacing: .01em; }
h3 { font-size: 1.35rem; letter-spacing: .01em; }
p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 50px; padding: 0 1.4em;
  border: 2px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-deep); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--ink); }
.btn--ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--mint-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 244, .94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; min-height: 72px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__pin { width: 30px; height: 38px; }
.logo__word {
  position: relative; font-family: var(--display); font-weight: 700;
  font-size: 1.7rem; line-height: 1; color: var(--coral); letter-spacing: .01em;
  padding: 0 4px; white-space: nowrap;
}
.logo__word::before {
  content: ''; position: absolute; left: -6px; right: -6px; top: 30%; height: 42%;
  background: var(--mint); z-index: -1;
}
.logo__word { isolation: isolate; }

.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; font-size: .96rem; color: var(--navy); }
.nav a:hover, .nav a[aria-current='page'] { color: var(--coral-deep); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { min-height: 42px; padding: 0 1.1em; font-size: .92rem; }

.lang {
  display: inline-flex; border: 2px solid var(--navy); border-radius: 999px; overflow: hidden;
}
.lang button {
  border: 0; background: transparent; padding: 5px 10px; font-weight: 700; font-size: .8rem;
  color: var(--navy); cursor: pointer;
}
.lang button[aria-pressed='true'] { background: var(--navy); color: #fff; }

.btn--quote .short, .lang--menu { display: none; }
.btn--phone svg { width: 16px; height: 16px; }

.menu-toggle { display: none; }

@media (max-width: 960px) {
  .nav, .header-actions > .lang { display: none; }
  .header-actions { margin-left: auto; gap: 8px; }
  .header-actions .btn--phone { width: 44px; padding: 0; }
  .btn--phone span { display: none; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 0; background: var(--navy); color: #fff; border-radius: 50%; cursor: pointer;
  }
  .menu-toggle svg { width: 20px; height: 20px; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 16px;
  }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav.is-open .lang--menu { display: inline-flex; align-self: flex-start; margin-top: 16px; }
  .lang--menu button { padding: 8px 16px; font-size: .9rem; }
}
@media (max-width: 520px) {
  .site-header .wrap { gap: 12px; }
  .site-header .logo__word { font-size: 1.4rem; }
  .site-header .logo__pin { width: 24px; height: 31px; }
  .btn--quote .long { display: none; }
  .btn--quote .short { display: inline; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 7vw, 88px); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(28px, 5vw, 64px); align-items: start; position: relative; z-index: 2;
}
.hero__title {
  font-size: clamp(2.8rem, 7.4vw, 5.6rem); text-transform: uppercase; line-height: .98;
  color: var(--coral);
}
.hero__title span { display: block; }
.hero__title .band {
  display: inline; color: var(--navy);
  background: linear-gradient(transparent 18%, var(--mint) 18%, var(--mint) 88%, transparent 88%);
  box-decoration-break: clone; -webkit-box-decoration-break: clone; padding: 0 .12em;
}
.hero__lead { margin-top: 22px; font-size: 1.2rem; max-width: 34em; color: var(--ink); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__note { margin-top: 18px; font-size: .95rem; color: var(--muted); }
.hero__note strong { color: var(--navy); }

.quick {
  background: var(--paper); border-radius: var(--radius); padding: 24px;
  border: 2px solid var(--navy); box-shadow: 8px 8px 0 var(--coral);
}
.quick h2 { font-size: 1.6rem; }
.quick p { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.quick form { display: grid; gap: 12px; margin-top: 16px; }
.quick .btn { width: 100%; margin-top: 4px; }

.hero__scene { position: relative; margin-top: clamp(-10px, -2vw, -40px); z-index: 1; }
.hero__scene svg { width: 100%; height: auto; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__scene { margin-top: 24px; }
  .hero__scene svg { height: 240px; }
}

/* Van drive-in: the single orchestrated motion on the page */
.van { animation: drive 1.8s cubic-bezier(.2, .7, .25, 1) .3s both; }
.van .wheel-spin { transform-box: fill-box; transform-origin: center; animation: spin 1.8s cubic-bezier(.2, .7, .25, 1) .3s both; }
@keyframes drive { from { transform: translateX(-620px); } to { transform: translateX(0); } }
@keyframes spin { from { transform: rotate(-900deg); } to { transform: rotate(0); } }
@media (prefers-reduced-motion: reduce) {
  .van, .van .wheel-spin { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Facts band ---------- */
.facts { background: var(--teal); color: #fff; }
.facts ul {
  list-style: none; margin: 0; padding: 26px 0;
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px;
}
.facts li { display: flex; flex-direction: column; gap: 2px; }
.facts strong { font-family: var(--display); font-size: 1.6rem; font-weight: 600; line-height: 1.1; }
.facts span { font-size: .92rem; opacity: .95; }
@media (max-width: 960px) { .facts ul { grid-template-columns: repeat(3, 1fr); row-gap: 22px; } }
@media (max-width: 520px) { .facts ul { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--mint { background: var(--mint-soft); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head p { margin-top: 14px; font-size: 1.12rem; color: var(--muted); }
.section--navy .section__head p { color: #cfd8e6; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--navy); }
.service { padding: 28px 28px 32px 0; border-bottom: 1px solid var(--line); }
.service:not(:nth-child(3n + 1)) { padding-left: 28px; border-left: 1px solid var(--line); }
.service__icon { width: 44px; height: 44px; color: var(--coral); margin-bottom: 16px; }
.service p { margin-top: 10px; color: var(--muted); }
.service--feature { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; padding: 32px 0 36px; border-top: 2px solid var(--navy); }
.service--feature + .services { border-top: 1px solid var(--line); }
.service--feature h3 { font-size: 1.9rem; }
.service--feature .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--mint-soft); color: var(--navy); font-weight: 600; font-size: .9rem; }

@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; }
  .service, .service:not(:nth-child(3n + 1)) { padding: 24px 0; border-left: 0; }
  .service--feature { grid-template-columns: 1fr; gap: 16px; }
}

/* Destinations as road-sign blades */
.dest-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
.dest-col h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.dest-col h3 svg { width: 26px; height: 26px; color: var(--coral); }
.signs { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sign {
  --edge: var(--navy); --fill: #fff;
  position: relative; isolation: isolate;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 34px 10px 16px; min-height: 48px;
  background: var(--edge); color: var(--navy); font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
}
.sign::before {
  content: ''; position: absolute; inset: 2px 3px 2px 2px; z-index: -1; background: var(--fill);
  clip-path: polygon(0 0, calc(100% - 21px) 0, 100% 50%, calc(100% - 21px) 100%, 0 100%);
}
.sign--air { --fill: var(--navy); color: #fff; }
.sign--ski { --edge: var(--mint); --fill: var(--mint); }
.sign time { font-family: var(--display); font-weight: 500; font-size: 1.05rem; white-space: nowrap; }
.dest-note { margin-top: 28px; font-size: .92rem; color: var(--muted); }
@media (max-width: 880px) { .dest-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding-top: 72px; }
.steps li::before {
  content: counter(step); position: absolute; top: 0; left: 0;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--coral); color: #fff; font-family: var(--display); font-size: 1.6rem; font-weight: 600;
}
.steps li:not(:last-child)::after {
  content: ''; position: absolute; top: 27px; left: 70px; right: -14px;
  border-top: 3px dashed rgba(255, 255, 255, .35);
}
.steps p { margin-top: 10px; color: #cfd8e6; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .steps li:not(:last-child)::after { display: none; }
}

/* Groups / pricing */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.seats { display: grid; gap: 14px; }
.seat-row { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 14px; }
.seat-row b { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.seat-bar { display: flex; gap: 4px 4px; flex-wrap: wrap; max-width: 172px; row-gap: 8px; }
.seat-bar i { width: 18px; height: 22px; border-radius: 5px 5px 3px 3px; background: var(--teal); }
.seat-bar i.off { background: #d9e3e0; }
.seat-row small { grid-column: 2; color: var(--muted); font-size: .88rem; margin-top: -8px; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--teal); margin-top: 3px; }

/* Chalet */
.chalet {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
  border: 2px solid var(--navy); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); background: #fff;
}
.chalet svg { width: 72px; height: 72px; }
.chalet p { margin-top: 8px; color: var(--muted); max-width: 46em; }
@media (max-width: 760px) { .chalet { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 820px; border-top: 2px solid var(--navy); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-weight: 700; font-size: 1.1rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 1.8rem; color: var(--coral); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 22px; color: var(--muted); max-width: 62ch; }

/* CTA band */
.cta-band { background: var(--coral); color: #fff; padding: clamp(48px, 7vw, 80px) 0; }
.cta-band .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { margin-top: 8px; font-size: 1.1rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn--ghost { border-color: #fff; color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--coral-deep); }

/* Footer */
.site-footer { background: var(--ink); color: #cfd8e6; padding: 56px 0 32px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo__word { font-size: 1.5rem; }
.site-footer .logo__word::before { background: var(--teal); }
.footer-base { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.field { display: grid; gap: 6px; }
.field label, .field .label { font-weight: 700; font-size: .92rem; color: var(--navy); }
.field .hint { font-size: .84rem; color: var(--muted); font-weight: 400; }
.input {
  width: 100%; min-height: 50px; padding: 10px 14px;
  background: #fff; border: 2px solid #cfd6df; border-radius: 10px;
  transition: border-color .15s;
}
.input:hover { border-color: #aeb8c6; }
.input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--mint); }
textarea.input { min-height: 110px; resize: vertical; }
.input[aria-invalid='true'] { border-color: var(--coral-deep); }
.error { color: var(--coral-deep); font-size: .86rem; font-weight: 600; min-height: 0; }
.error:empty { display: none; }

.row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .row { grid-template-columns: 1fr; } }

/* Segmented control */
.segmented { display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr; border: 2px solid var(--navy); border-radius: 999px; padding: 4px; background: #fff; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: 999px; cursor: pointer;
  font-weight: 700; color: var(--navy); white-space: nowrap;
}
.segmented label svg { width: 18px; height: 18px; }
.segmented input:checked + label { background: var(--navy); color: #fff; }
.segmented input:focus-visible + label { outline: 3px solid var(--coral); outline-offset: 2px; }
@media (max-width: 420px) { .segmented { display: grid; width: 100%; } .segmented label { padding: 0 10px; } }

/* ---------- Booking page ---------- */
.page-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 40px); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); text-transform: uppercase; color: var(--coral); }
.page-hero p { margin-top: 12px; font-size: 1.15rem; max-width: 40em; }

.booking { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(24px, 4vw, 48px); align-items: start; padding-bottom: 96px; }
@media (max-width: 980px) { .booking { grid-template-columns: 1fr; } }

.panel { background: #fff; border: 2px solid var(--navy); border-radius: var(--radius); padding: clamp(20px, 3.5vw, 36px); }
.panel + .panel { margin-top: 20px; }
.panel__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.panel__num {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--coral); color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.2rem;
}
.panel__head h2 { font-size: 1.6rem; }
.stack { display: grid; gap: 18px; }

.route { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: end; }
.swap {
  width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--navy); background: #fff; color: var(--navy);
  display: grid; place-items: center; cursor: pointer;
}
.swap:hover { background: var(--mint-soft); }
.swap svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .route { grid-template-columns: 1fr; }
  .swap { justify-self: center; transform: rotate(90deg); }
}

.leg { border: 0; margin: 0; padding: 18px; border-radius: 12px; background: var(--mint-soft); display: grid; gap: 14px; min-width: 0; }
.leg legend { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--navy); padding: 0; float: left; width: 100%; margin-bottom: 4px; }
.leg legend + * { clear: both; }
.leg[hidden] { display: none; }

.counters { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 640px) { .counters { grid-template-columns: 1fr; } }
.counter { display: grid; gap: 6px; }
.counter__ctrl { display: grid; grid-template-columns: 46px 1fr 46px; border: 2px solid #cfd6df; border-radius: 10px; overflow: hidden; background: #fff; }
.counter__ctrl button { border: 0; background: var(--mint-soft); font-size: 1.4rem; font-weight: 700; color: var(--navy); cursor: pointer; }
.counter__ctrl button:hover { background: var(--mint); }
.counter__ctrl input { border: 0; text-align: center; width: 100%; min-height: 46px; font-weight: 700; font-size: 1.1rem; -moz-appearance: textfield; }
.counter__ctrl input::-webkit-inner-spin-button, .counter__ctrl input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.notice { font-size: .9rem; padding: 10px 14px; border-radius: 10px; background: #fff3e6; color: #7a4a12; }
.notice[hidden] { display: none; }

.options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .options { grid-template-columns: 1fr; } }
.check {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px;
  border: 2px solid #cfd6df; border-radius: 10px; cursor: pointer; background: #fff;
}
.check:has(input:checked) { border-color: var(--teal); background: var(--mint-soft); }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--teal); flex: none; }
.check span { font-weight: 600; font-size: .95rem; }
.check small { display: block; font-weight: 400; color: var(--muted); }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--navy); flex: none; }

.submit-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 24px; }
.submit-row .btn { min-height: 56px; font-size: 1.05rem; padding: 0 2em; }
.submit-row p { font-size: .9rem; color: var(--muted); }

.summary { position: sticky; top: 96px; }
.summary .panel { box-shadow: 8px 8px 0 var(--mint); }
.summary h2 { font-size: 1.5rem; margin-bottom: 14px; }
.summary dl { margin: 0; }
.summary dt { font-size: .82rem; font-weight: 700; color: var(--muted); }
.summary dd { margin: 2px 0 12px; font-weight: 600; color: var(--navy); word-break: break-word; }
.summary dd.empty { color: #9aa4b2; font-weight: 400; font-style: italic; }
.summary .direct { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: .95rem; }
.summary .direct a { font-weight: 700; color: var(--navy); }
@media (max-width: 980px) { .summary { position: static; } }

.errors-banner { background: #fdeceb; border: 2px solid var(--coral-deep); color: var(--coral-deep); border-radius: 10px; padding: 12px 16px; font-weight: 600; margin-bottom: 16px; }
.errors-banner[hidden] { display: none; }

.done { text-align: left; }
.done[hidden] { display: none; }
.done h2 { color: var(--teal); font-size: 2rem; }
.done p { margin-top: 12px; }
.done pre {
  white-space: pre-wrap; background: var(--mint-soft); border-radius: 10px; padding: 16px;
  font-family: var(--body); font-size: .92rem; margin: 18px 0 0; max-height: 360px; overflow: auto;
}
.done .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
