/* ===========================================================
   Euromeeting 2027 — shared site styles
   Warm / nature feel · plain HTML/CSS, no build step
   =========================================================== */

:root {
  --ink: #1b1a16;
  --ink-2: #41403a;
  --ink-mute: #6b6a60;
  --paper: #f4efe6;
  --paper-2: #fbf8f2;
  --paper-card: #ffffff;
  --line: rgba(27, 26, 22, 0.12);
  --line-strong: rgba(27, 26, 22, 0.24);

  --accent: oklch(0.6 0.15 38);          /* warm terracotta */
  --accent-hover: oklch(0.54 0.17 38);
  --forest: oklch(0.46 0.07 150);        /* deep pine */
  --lake: oklch(0.5 0.07 220);           /* muted lake blue */

  --shadow-sm: 0 2px 8px -3px rgba(27, 26, 22, 0.25);
  --shadow-md: 0 14px 30px -16px rgba(27, 26, 22, 0.35);
  --shadow-lg: 0 30px 60px -24px rgba(10, 14, 22, 0.5),
               0 12px 24px -14px rgba(10, 14, 22, 0.4);

  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1080px;

  --font-sans: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Reusable type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--light { color: rgba(255,255,255,0.92); }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.015em; }

/* ===========================================================
   Header / nav
   =========================================================== */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(18px, 4vw, 40px);
}
.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.brand__year { font-style: italic; opacity: 0.85; }
.site-header .brand { align-items: center; gap: 13px; flex-wrap: nowrap; }
.brand__emblem {
  height: 64px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.brand__lockup { display: grid; justify-items: start; line-height: 1; flex: none; }
.brand__rt {
  font-family: var(--font-sans);
  font-weight: 700; font-size: 28px; letter-spacing: 0.03em;
  color: #fff; text-shadow: 0 1px 9px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.brand__city {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 11px; letter-spacing: 0.34em;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 9px rgba(0,0,0,0.5);
  margin-top: 6px; padding-top: 5px;
  border-top: 2px solid #f4c20a;
  align-self: stretch;
  white-space: nowrap;
}

.site-nav {
  display: flex; align-items: center; gap: 4px;
}
.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.94);
  font-size: 15px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { background: rgba(255,255,255,0.16); }
.site-nav a[aria-current="page"] {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  text-shadow: none;
  box-shadow: var(--shadow-sm);
}
.site-nav .nav-cta:hover { background: var(--accent-hover); }

/* Burger (mobile) */
.nav-toggle { display: none; }
.nav-close { display: none; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(20,20,18,0.42);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: ""; display: block;
  width: 20px; height: 2px; border-radius: 2px;
  background: #fff; position: relative;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }

/* ===========================================================
   Banner (top of every page)
   =========================================================== */
.banner {
  position: relative;
  isolation: isolate;
  color: #fff;
  display: grid;
  overflow: hidden;
}
.banner__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("assets/tausta.png");
  background-size: cover;
  background-position: 50% 45%;
}
.banner__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.12) 26%, rgba(0,0,0,0.12) 60%, rgba(0,0,0,0.55) 100%);
}

/* Home hero — full height */
.hero {
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding: 24px;
}
.hero__center {
  align-self: center;
  display: grid; justify-items: center; text-align: center;
  gap: 22px;
  max-width: 760px;
  padding-top: 40px;
}
.hero__title {
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.94;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero__title .it { font-style: italic; font-weight: 400; }
.hero__tagline {
  font-size: clamp(17px, 2.2vw, 21px);
  max-width: 30ch;
  margin: 0;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 14px rgba(0,0,0,0.4);
  text-wrap: balance;
}
.hero__bottom {
  align-self: end;
  display: grid; justify-items: center; gap: 16px;
  padding-bottom: 10px;
}

/* Inner page banner — shorter */
.banner--page {
  min-height: clamp(300px, 44vh, 440px);
  align-items: end;
  padding: 0 clamp(18px, 4vw, 40px) clamp(34px, 6vh, 56px);
}
.banner--page .banner__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 12px;
}
.banner--page h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.96;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.banner--page .banner__sub {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 50ch;
  margin: 0;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  text-wrap: pretty;
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 18px; font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.1s, background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 22px 44px; font-size: 21px; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-lg); }
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; }
.btn--ghost-light {
  background: rgba(255,255,255,0.1); color: #fff;
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Details pill (dates · location) ---------- */
.pill {
  list-style: none; margin: 0;
  padding: 12px 22px;
  display: inline-flex; align-items: center; gap: 18px;
  background: rgba(20,20,18,0.42);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: rgba(255,255,255,0.96);
  font-family: var(--font-mono);
  font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase;
}
.pill li { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.pill li svg { opacity: 0.85; }
.pill__sep { width: 1px; height: 14px; background: rgba(255,255,255,0.32); }

/* ===========================================================
   Content sections
   =========================================================== */
.section {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 4vw, 40px);
}
.section--paper2 { background: var(--paper-2); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap--narrow { max-width: 760px; }

.section__head { margin-bottom: clamp(32px, 5vw, 52px); }
.section__head h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
  margin: 12px 0 0;
}
.section__head p {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  max-width: 56ch; text-wrap: pretty;
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.32;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.lead .it { font-style: italic; color: var(--accent); }
.prose p { font-size: 17px; color: var(--ink-2); margin: 0 0 18px; max-width: 64ch; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Quick-link cards (home) ---------- */
.quicklinks {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.qcard {
  display: grid; gap: 10px; align-content: start;
  text-decoration: none; color: inherit;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.14s, box-shadow 0.14s, border-color 0.14s;
}
.qcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.qcard__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 14%, transparent);
  color: var(--accent);
  margin-bottom: 4px;
}
.qcard h3 { font-size: 23px; margin: 0; }
.qcard p { margin: 0; color: var(--ink-mute); font-size: 15px; }
.qcard__go {
  margin-top: 6px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- Program / schedule ---------- */
.days { display: grid; gap: clamp(20px, 3vw, 30px); }
.day {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.day__head {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding: 22px clamp(20px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklch, var(--accent) 6%, var(--paper-2));
}
.day__date {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}
.day__name { font-family: var(--font-display); font-size: 28px; margin: 0; }
.day__tag { margin-left: auto; font-size: 14px; color: var(--ink-mute); }
.slots { list-style: none; margin: 0; padding: 8px clamp(20px, 3vw, 30px) 18px; }
.slot {
  display: grid; grid-template-columns: 110px 1fr; gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.slot:first-child { border-top: 0; }
.slot--tba { grid-template-columns: 1fr; }
.slot__time {
  font-family: var(--font-mono); font-size: 14px; color: var(--ink-mute);
  font-variant-numeric: tabular-nums; padding-top: 2px;
}
.slot__body h4 { margin: 0 0 4px; font-family: var(--font-sans); font-size: 17px; font-weight: 600; }
.slot__body p { margin: 0; color: var(--ink-mute); font-size: 15px; }
.is-placeholder { color: var(--ink-mute); font-style: italic; }

/* ---------- Travel modes ---------- */
.modes {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.mode {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: grid; gap: 14px; align-content: start;
}
.mode__icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center;
  background: color-mix(in oklch, var(--lake) 16%, transparent);
  color: var(--lake);
}
.mode h3 { font-size: 25px; margin: 0; }
.mode p { margin: 0; color: var(--ink-2); font-size: 16px; }
.mode a { color: var(--accent); font-weight: 600; text-decoration: none; }
.mode a:hover { text-decoration: underline; }
.mode__steps { margin: 4px 0 0; padding-left: 18px; color: var(--ink-2); font-size: 16px; }
.mode__steps li { margin: 0 0 8px; }
.mode__steps li:last-child { margin-bottom: 0; }

/* ---------- Pretour options ---------- */
.options {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.option {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.option__head {
  padding: 26px clamp(22px, 3vw, 30px) 22px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklch, var(--forest) 7%, var(--paper-2));
  display: grid; gap: 12px;
}
.option__head h3 { font-size: 27px; margin: 0; display: flex; align-items: center; gap: 12px; }
.option__label {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 18px; font-weight: 700;
}
.option__meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.option__when {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute);
}
.price-tag {
  display: inline-flex; align-items: baseline; gap: 3px;
  background: var(--accent); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: 16px;
  font-variant-numeric: tabular-nums;
}
.price-tag small { font-weight: 500; font-size: 12px; opacity: 0.85; }
.option__body { padding: 8px clamp(22px, 3vw, 30px) 4px; flex: 1; }
.option__body .slots { padding-left: 0; padding-right: 0; }
.option__intro { margin: 18px 0 4px; color: var(--ink-2); font-size: 16px; }
.option__foot {
  padding: 18px clamp(22px, 3vw, 30px) 26px;
}
.option__foot .btn { width: 100%; justify-content: center; }
.option__note {
  margin: 12px 0 0; text-align: center;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-mute);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.ccard {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  display: grid; gap: 12px; align-content: start;
}
.ccard__label {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
}
.ccard__value { font-size: 27px; font-weight: 600; line-height: 1.2; word-break: break-word; }
.ccard a { color: var(--accent); text-decoration: none; }
.ccard a:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: clamp(56px, 8vw, 88px) clamp(18px, 4vw, 40px);
}
.cta-band h2 { font-size: clamp(30px, 5vw, 48px); margin: 0 0 14px; }
.cta-band p { margin: 0 auto 28px; max-width: 48ch; color: rgba(255,255,255,0.88); font-size: 18px; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: clamp(44px, 6vw, 64px) clamp(18px, 4vw, 40px) 36px;
}
.site-footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 28px 32px;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.4fr;
  align-items: start;
}
.footer-col { display: grid; gap: 11px; justify-items: start; align-content: start; }
.footer-col__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.footer-col a {
  text-decoration: none; color: rgba(255,255,255,0.82); font-size: 16px;
}
.footer-col a:hover { color: #fff; }
.footer-brand .brand { color: #fff; text-shadow: none; font-size: 26px; margin-bottom: 12px; }
.footer-brand p {
  margin: 0; color: rgba(255,255,255,0.6);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-nav { display: grid; gap: 10px; justify-items: start; }
.footer-nav a {
  text-decoration: none; color: rgba(255,255,255,0.82); font-size: 16px;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--maxw); margin: 28px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; gap: 14px 22px; flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
}
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center;
}
.footer-legal a {
  color: rgba(255,255,255,0.72); text-decoration: none;
}
.footer-legal a:hover { color: #fff; }

/* ---------- Legal pages ---------- */
.legal-updated {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-mute);
  margin: 0 0 30px;
}
.legal { color: var(--ink-2); }
.legal > h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 31px);
  color: var(--ink); margin: 46px 0 14px; line-height: 1.15;
}
.legal > h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--font-sans); font-weight: 700; font-size: 18px;
  color: var(--ink); margin: 26px 0 8px;
}
.legal p { font-size: 17px; line-height: 1.65; margin: 0 0 16px; max-width: 68ch; }
.legal ul { margin: 0 0 16px; padding-left: 22px; max-width: 68ch; }
.legal li { font-size: 17px; line-height: 1.6; margin: 0 0 9px; }
.legal a { color: var(--accent); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal__note {
  margin: 40px 0 0; padding: 20px 24px;
  background: color-mix(in oklch, var(--accent) 7%, var(--paper-2));
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--ink-2);
}

/* ===========================================================
   Reveal on scroll
   =========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .site-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column; align-items: stretch;
    gap: 6px;
    background: var(--paper-2);
    padding: 92px 22px 28px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.26s cubic-bezier(0.2,0.9,0.3,1);
    z-index: 30;
  }
  .nav-toggle:checked ~ .site-nav { transform: none; }
  .nav-close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 16px; right: 18px;
    width: 44px; height: 44px;
    border-radius: 12px;
    cursor: pointer;
    color: var(--ink);
    background: transparent;
    transition: background 0.15s;
  }
  .nav-close:hover { background: var(--line); }
  .nav-close::before, .nav-close::after {
    content: ""; position: absolute;
    width: 22px; height: 2px; border-radius: 2px;
    background: currentColor;
  }
  .nav-close::before { transform: rotate(45deg); }
  .nav-close::after { transform: rotate(-45deg); }
  .site-nav a {
    color: var(--ink); text-shadow: none;
    font-size: 18px; padding: 13px 16px;
    border-radius: 12px;
  }
  .site-nav a:hover { background: var(--line); }
  .site-nav a[aria-current="page"] { background: color-mix(in oklch, var(--accent) 14%, transparent); color: var(--accent); }
  .site-nav .nav-cta { margin: 10px 0 0; color: #fff; justify-content: center; }
  .nav-toggle:checked ~ .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .nav-burger span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span::after { transform: translateY(-6px) rotate(-45deg); }

  .brand__emblem { height: 52px; }
  .brand__rt { font-size: 23px; }
  .brand__city { font-size: 10px; letter-spacing: 0.3em; }

  /* Footer → two columns on tablet */
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 30px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .pill { flex-direction: column; gap: 8px; padding: 14px 22px; border-radius: 18px; }
  .pill__sep { width: 26px; height: 1px; }
  .slot { grid-template-columns: 84px 1fr; gap: 14px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 26px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
  .footer-legal { gap: 6px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
