/* ==========================================================================
   Foam Lane Detailing — "Suds"
   --------------------------------------------------------------------------
   A concept site by RedHorseWebDev. Foam Lane is a fictional business.

   Friendly rather than flashy: a family SUV getting cleaned, not a supercar
   being worshipped. Foam white, clean aqua, a deep navy for text and one
   sunny yellow for the moments that deserve it. Rounded everything.

   Aqua (#12b5d8) is decoration only — bubbles, waves, fills. Anything that
   carries text uses --sea, which holds contrast against white.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  color-scheme: light;

  --foam:   #ffffff;
  --mist:   #eef9fc;
  --mist-2: #dcf2f8;
  --aqua:   #12b5d8;
  --aqua-l: #7fdcf0;
  --sea:    #0a7aa3;     /* text-safe on white, and white-safe on it */
  --sea-d:  #075f80;
  --navy:   #0c2b3b;
  --navy-2: #3d5866;
  --navy-3: #6a808b;
  --sun:    #ffd23f;
  --line:   #cfe6ee;

  --display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1160px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow: 0 10px 30px rgba(10, 122, 163, 0.12), 0 2px 6px rgba(12, 43, 59, 0.06);
  --shadow-lg: 0 24px 60px rgba(10, 122, 163, 0.18), 0 4px 12px rgba(12, 43, 59, 0.08);
}

/* ---------- 2. Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--mist);
  color: var(--navy);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--sea); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.35em;
  color: var(--navy);
  /* Even line lengths, so a headline never strands one word on its own line. */
  text-wrap: balance;
}
p { margin: 0 0 1em; }

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

.skip { position: absolute; left: -9999px; top: 0; background: var(--sun); color: var(--navy); padding: 0.6rem 1rem; z-index: 100; }
.skip:focus { left: 0.5rem; top: 0.5rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 0.8rem;
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--aqua); box-shadow: 14px -6px 0 -2px var(--aqua-l);
  margin-right: 0.6rem;
}

/* ---------- 3. Concept disclosure ---------- */
.concept-bar { background: var(--navy); color: #d8eef5; font-size: 0.84rem; font-weight: 600; }
.concept-bar .wrap {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1rem;
  align-items: center; justify-content: center; text-align: center;
  min-height: 36px; padding-top: 0.35rem; padding-bottom: 0.35rem;
}
.concept-bar a { color: var(--sun); font-weight: 800; text-underline-offset: 3px; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 50px; padding: 0.75rem 1.5rem;
  border: 2px solid var(--sea); border-radius: 999px;
  background: var(--sea); color: var(--foam);
  font: 700 1rem/1 var(--body);
  text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 122, 163, 0.28);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { background: var(--sea-d); border-color: var(--sea-d); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10, 122, 163, 0.34); }
.btn--soft { background: var(--foam); color: var(--navy); border-color: var(--line); box-shadow: none; }
.btn--soft:hover { background: var(--foam); border-color: var(--sea); color: var(--sea); }
.btn--sun { background: var(--sun); border-color: var(--sun); color: var(--navy); box-shadow: 0 8px 20px rgba(255, 176, 0, 0.3); }
.btn--sun:hover { background: #ffc61a; border-color: #ffc61a; }
.btn--block { width: 100%; }

/* ---------- 5. Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--navy); margin-right: auto; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name { font-family: var(--display); font-weight: 600; font-size: 1.35rem; line-height: 1; }
.brand__name small { display: block; font-family: var(--body); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-3); margin-top: 0.2rem; }
.nav { display: flex; gap: 0.3rem; }
.nav a {
  padding: 0.5rem 0.85rem; border-radius: 999px;
  color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.95rem;
}
.nav a:hover { background: var(--mist); }
.nav a[aria-current="page"] { background: var(--mist-2); color: var(--sea-d); }

/* ---------- 6. Bubbles and waves ---------- */
/* Decorative foam. Absolutely placed, never in the reading order. */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.95) 0 14%, rgba(255,255,255,0) 15%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0 55%, rgba(127,220,240,0.55) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  box-shadow: inset -4px -6px 14px rgba(18, 181, 216, 0.18);
}
.wave { display: block; width: 100%; height: 60px; }
.wave path { fill: var(--mist); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #bdeefa 0%, #e7f9fd 48%, #ffffff 100%);
  overflow: hidden;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}
.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.5rem); }
.hero h1 mark {
  background: none; color: var(--sea);
  background-image: linear-gradient(transparent 62%, rgba(255, 210, 63, 0.75) 62% 90%, transparent 90%);
  padding: 0 0.05em;
}
.hero__lede { font-size: 1.15rem; color: var(--navy-2); max-width: 36ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.hero__ticks li {
  background: var(--foam); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.85rem; font-weight: 700; font-size: 0.88rem; color: var(--navy-2);
}
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 22px 30px rgba(10, 122, 163, 0.2)); }

/* ---------- 8. Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section--white { background: var(--foam); }
.section-head { max-width: 640px; margin: 0 auto 2.4rem; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.section-head p { color: var(--navy-2); font-size: 1.08rem; margin: 0; }

/* ---------- 9. Package builder ---------- */
.builder {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.8fr);
  gap: 1.6rem;
  align-items: start;
}
.step {
  background: var(--foam); border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 1.5rem; margin-bottom: 1.2rem; border: 0;
}
.step:last-child { margin-bottom: 0; }
.step legend {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--navy);
  padding: 0; margin-bottom: 1rem; float: left; width: 100%;
}
.step legend + * { clear: both; }
.step__no {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--mist-2); color: var(--sea-d);
  font-family: var(--body); font-weight: 800; font-size: 0.95rem;
}
.step__hint { font-family: var(--body); font-weight: 600; font-size: 0.85rem; color: var(--navy-3); margin-left: auto; }

.opts { display: grid; gap: 0.7rem; }
.opts--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.opts--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.opt { position: relative; display: block; cursor: pointer; }
/* The real input covers the whole card and sits above it. The package list
   items are positioned (for their bullets), and without the z-index they
   would sit on top: clicks still work through the label, but hovering the
   text would not light the card up. */
.opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; z-index: 2; }
.opt__card {
  display: flex; flex-direction: column; height: 100%;
  border: 2px solid var(--line); border-radius: var(--r-md);
  background: var(--foam);
  padding: 0.9rem 1rem;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.opt input:hover + .opt__card { border-color: var(--aqua-l); }
.opt input:checked + .opt__card { border-color: var(--sea); background: var(--mist); box-shadow: 0 0 0 3px rgba(18, 181, 216, 0.18); }
.opt input:focus-visible + .opt__card { outline: 3px solid var(--sea); outline-offset: 3px; }
.opt__title { font-weight: 800; font-size: 1rem; color: var(--navy); }
.opt__sub { font-size: 0.84rem; color: var(--navy-3); font-weight: 600; }
.opt__icon { width: 54px; height: 30px; margin-bottom: 0.45rem; color: var(--sea); }

.pkg__top { display: flex; flex-direction: column; gap: 0.1rem; }
.pkg__name { font-family: var(--display); font-weight: 600; font-size: 1.25rem; color: var(--navy); line-height: 1.1; }
.pkg__from { font-weight: 800; color: var(--sea-d); white-space: nowrap; }
.pkg__time { font-size: 0.84rem; font-weight: 700; color: var(--navy-3); margin: 0.1rem 0 0.6rem; }
/* Spans, not a list: a <label> may only hold inline content. */
.pkg__list { display: grid; gap: 0.3rem; }
.pkg__list > span { display: block; position: relative; padding-left: 1.3rem; font-size: 0.9rem; color: var(--navy-2); line-height: 1.35; }
.pkg__list > span::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 9px; height: 9px; border-radius: 50%; background: var(--aqua); }
.pkg__badge {
  position: absolute; top: -11px; left: 1rem; z-index: 1;
  background: var(--sun); color: var(--navy);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px;
}

.addons { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.addon { position: relative; cursor: pointer; }
.addon input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; z-index: 2; }
.addon span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.45rem 1rem 0.45rem 0.75rem;
  border: 2px solid var(--line); border-radius: 999px; background: var(--foam);
  font-weight: 700; font-size: 0.92rem; color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.addon span::before {
  content: "+"; display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--mist-2); color: var(--sea-d); font-weight: 800;
}
.addon em { font-style: normal; color: var(--navy-3); font-weight: 600; }
.addon input:hover + span { border-color: var(--aqua-l); }
.addon input:checked + span { border-color: var(--sea); background: var(--mist); }
.addon input:checked + span::before { content: "\2713"; background: var(--sea); color: var(--foam); }
.addon input:focus-visible + span { outline: 3px solid var(--sea); outline-offset: 3px; }

.summary {
  position: sticky; top: 92px;
  background: var(--navy); color: #e3f4f9;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 1.6rem; overflow: hidden;
}
.summary h3 { color: var(--foam); font-size: 1.4rem; margin-bottom: 0.9rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; padding: 0.25rem 0; }
.summary__row span:last-child { font-weight: 700; color: var(--foam); text-align: right; }
.summary__total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(227, 244, 249, 0.2);
  margin-top: 0.8rem; padding-top: 0.9rem;
}
.summary__price { font-family: var(--display); font-weight: 600; font-size: 3rem; line-height: 1; color: var(--sun); }
.summary__time { font-weight: 700; color: #bfe6f1; }
.summary__note { font-size: 0.8rem; color: #9fc4d1; margin: 0.4rem 0 1.1rem; }
.summary__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 0.3rem; font-size: 0.88rem; }
.summary__list li { position: relative; padding-left: 1.3rem; }
.summary__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--aqua-l); font-weight: 800; }
.summary .bubble { opacity: 0.35; }

/* ---------- 10. Why and how ---------- */
.perks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.perk { background: var(--foam); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.6rem; }
.perk__icon { width: 52px; height: 52px; border-radius: 16px; background: var(--mist-2); display: grid; place-items: center; margin-bottom: 1rem; color: var(--sea); }
.perk__icon svg { width: 28px; height: 28px; }
.perk h3 { font-size: 1.3rem; }
.perk p { color: var(--navy-2); margin: 0; }

.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.service {
  position: relative; display: flex; flex-direction: column;
  background: var(--foam); border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 1.6rem; text-decoration: none; color: var(--navy); overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service h3 { font-size: 1.5rem; }
.service p { color: var(--navy-2); }
.service__go { margin-top: auto; font-weight: 800; color: var(--sea); }

.area {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2rem; align-items: center;
  background: var(--foam); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.5rem);
}
.area h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.towns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.towns li { background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.9rem; font-weight: 700; font-size: 0.92rem; }

.cta {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, var(--sea) 0%, #0e99c4 100%);
  border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4rem) 1.5rem; color: var(--foam);
}
.cta h2 { color: var(--foam); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.cta p { color: #dff4fa; font-size: 1.1rem; max-width: 42ch; margin: 0 auto 1.5rem; }
.cta .hero__actions { justify-content: center; }
.cta__inner { position: relative; }

/* ---------- 11. Service pages ---------- */
.page-hero { position: relative; background: linear-gradient(160deg, #bdeefa 0%, #eaf9fd 60%, #ffffff 100%); overflow: hidden; }
.page-hero .wrap { position: relative; padding-top: clamp(2.8rem, 7vw, 4.5rem); padding-bottom: clamp(0.5rem, 2vw, 1rem); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); max-width: 16ch; }
.page-hero p { font-size: 1.12rem; color: var(--navy-2); max-width: 46ch; }

.sheet { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 1.6rem; align-items: start; }
.sheet__main { background: var(--foam); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(1.4rem, 4vw, 2.2rem); }
.sheet__main h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.checks li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 0.9rem; align-items: start; }
.checks li::before {
  content: "\2713"; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mist-2); color: var(--sea-d); font-weight: 800; font-size: 1.1rem;
}
.checks strong { display: block; font-size: 1.05rem; }
.checks span { color: var(--navy-2); font-size: 0.97rem; }
.side { position: sticky; top: 92px; background: var(--navy); color: #e3f4f9; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 1.6rem; }
.side h2 { color: var(--foam); font-size: 1.5rem; }
.side dl { margin: 0 0 1.3rem; }
.side dt { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #9fc4d1; }
.side dd { margin: 0.1rem 0 0.8rem; font-weight: 700; color: var(--foam); }

/* ---------- 12. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 1.6rem; align-items: start; }
.form { display: grid; gap: 1rem; background: var(--foam); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(1.4rem, 4vw, 2.2rem); }
.field label { display: block; font-weight: 800; font-size: 0.9rem; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 0.7rem 0.95rem;
  border: 2px solid var(--line); border-radius: var(--r-sm);
  background: var(--foam); color: var(--navy); font: 500 1rem/1.4 var(--body);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(18, 181, 216, 0.22); }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
.chosen { background: var(--mist); border: 2px dashed var(--aqua-l); border-radius: var(--r-md); padding: 1rem 1.1rem; }
.chosen[hidden] { display: none; }
.chosen h3 { font-size: 1.15rem; margin: 0 0 0.35rem; }
.chosen p { margin: 0; color: var(--navy-2); font-size: 0.95rem; }
.chosen strong { color: var(--navy); }
.chosen a { font-weight: 700; }
.notice { background: #fff6d3; border: 2px solid var(--sun); border-radius: var(--r-md); padding: 0.9rem 1.1rem; font-weight: 600; color: var(--navy); }
.notice[hidden] { display: none; }
.dial { background: var(--foam); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.6rem; margin: 0; }
.dial dt { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-3); }
.dial dd { margin: 0.15rem 0 1.1rem; font-family: var(--display); font-weight: 600; font-size: 1.45rem; line-height: 1.15; }
.dial dd:last-child { margin-bottom: 0; }
.dial dd a { color: var(--navy); text-decoration: none; }
.dial dd small { display: block; font-family: var(--body); font-weight: 600; font-size: 0.88rem; color: var(--navy-2); }

/* ---------- 13. Footer ---------- */
.foot { background: var(--navy); color: #b9d6df; padding: 2.8rem 0 2rem; font-size: 0.93rem; margin-top: clamp(3rem, 7vw, 5rem); }
.foot .brand { color: var(--foam); }
.foot .brand__name small { color: #8fb4c1; }
.foot__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 3rem; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; list-style: none; margin: 0; padding: 0; }
.foot__nav a { color: var(--foam); font-weight: 700; text-decoration: none; }
.foot__nav a:hover { color: var(--sun); }
.foot__concept { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(185, 214, 223, 0.2); font-size: 0.86rem; }
.foot__concept a { color: var(--sun); font-weight: 700; }

/* ---------- 14. Responsive ---------- */
@media (max-width: 1000px) {
  .builder, .sheet, .contact-grid, .area { grid-template-columns: minmax(0, 1fr); }
  .summary, .side { position: static; }
  .opts--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opts--3 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); }
  .hero__art { max-width: 520px; }
  .perks, .services { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 860px) {
  .masthead .wrap { flex-wrap: wrap; gap: 0.5rem 1rem; min-height: 0; padding-top: 0.6rem; padding-bottom: 0.4rem; }
  .nav { order: 3; width: 100%; overflow-x: auto; margin: 0 calc(-1 * 0.85rem); padding-bottom: 0.2rem; }
  .nav a { white-space: nowrap; }
  .masthead .btn { min-height: 42px; padding: 0.5rem 1rem; font-size: 0.9rem; }
}
@media (max-width: 520px) {
  .brand__name small { display: none; }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .step { padding: 1.2rem; }
  .step__hint { display: none; }
  .summary__price { font-size: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
