/* =============================================================
   Sisters Eagle Airport (6K5) — Design System
   Modern, accessible, fast. No framework. ~1 stylesheet.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — high-desert Oregon + aviation */
  --navy-900: #071a2f;
  --navy-800: #0b2a4a;
  --navy-700: #113a63;
  --navy-600: #1b4f82;
  --sky-500:  #2e86c1;
  --sky-400:  #4aa3df;
  --sky-300:  #8ecbef;
  --sky-100:  #e3f1fb;

  /* Warm high-desert sunset accent */
  --sun-600:  #c85a24;
  --sun-500:  #e8712f;
  --sun-400:  #f39244;
  --sun-100:  #fce9dc;

  /* Neutrals */
  --ink-900: #0e1620;
  --ink-700: #2b3644;
  --ink-500: #566172;
  --ink-400: #7c8798;
  --line:    #e2e8f0;
  --paper:   #ffffff;
  --paper-2: #f5f8fc;
  --paper-3: #eef3f9;

  /* Standard aviation flight-category colors */
  --vfr:  #1e8e3e;
  --mvfr: #1a73e8;
  --ifr:  #d93025;
  --lifr: #9334e6;

  /* Semantic */
  --bg:        var(--paper);
  --bg-alt:    var(--paper-2);
  --bg-elev:   var(--paper);
  --surface:   var(--paper);
  --text:      var(--ink-900);
  --text-soft: var(--ink-500);
  --border:    var(--line);
  --brand:     var(--navy-800);
  --brand-2:   var(--sky-500);
  --accent:    var(--sun-500);
  --accent-ink:#ffffff;
  --header-bg: rgba(255,255,255,.82);
  --header-brd:rgba(11,42,74,.10);

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Sora", var(--font-sans);
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Code", Consolas, monospace;

  /* Scale */
  --step--1: clamp(.82rem, .78rem + .2vw, .9rem);
  --step-0:  clamp(1rem, .95rem + .25vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + .9vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.5rem + 1.8vw, 2.7rem);
  --step-4:  clamp(2.4rem, 1.8rem + 3vw, 4rem);

  /* Space + shape */
  --sp-1: .375rem; --sp-2: .625rem; --sp-3: 1rem; --sp-4: 1.5rem;
  --sp-5: 2.25rem; --sp-6: 3.5rem; --sp-7: 5.5rem;
  --radius: 14px; --radius-lg: 22px; --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(9,30,66,.06), 0 1px 3px rgba(9,30,66,.08);
  --shadow:    0 6px 20px -6px rgba(9,30,66,.18), 0 2px 6px rgba(9,30,66,.08);
  --shadow-lg: 0 24px 60px -18px rgba(9,30,66,.34);
  --container: 1150px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="dark"] {
  --bg:        #0a1622;
  --bg-alt:    #0f1e2e;
  --bg-elev:   #12263a;
  --surface:   #12263a;
  --text:      #eaf1f8;
  --text-soft: #9fb2c6;
  --border:    #21374d;
  --brand:     #e8f2fb;
  --brand-2:   var(--sky-400);
  --header-bg: rgba(10,22,34,.80);
  --header-brd:rgba(255,255,255,.08);
  --paper-2:   #0f1e2e;
  --paper-3:   #12263a;
  --shadow:    0 6px 24px -6px rgba(0,0,0,.55);
  --shadow-lg: 0 30px 70px -20px rgba(0,0,0,.7);
  --sun-100:   #33241a;
  --sky-100:   #10273c;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
:focus-visible { outline: 3px solid var(--sky-400); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: var(--step--1);
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: .5rem;
}
.section-head { max-width: 60ch; margin-bottom: var(--sp-5); }
.section-head h2 { margin-top: .4rem; }
.section-head p { color: var(--text-soft); font-size: var(--step-1); margin-top: .75rem; }
.lead { font-size: var(--step-1); color: var(--text-soft); }
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }
.visually-hidden {
  position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;padding:0;margin:-1px;
}

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--accent); --_fg: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: var(--step-0);
  padding: .8rem 1.4rem; border-radius: 100px; border: 1.5px solid transparent;
  background: var(--_bg); color: var(--_fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--_bg) 70%, transparent);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 14px 26px -10px color-mix(in srgb, var(--_bg) 70%, transparent); }
.btn:active { transform: translateY(0); }
.btn--ghost { --_bg: transparent; --_fg: var(--text); border-color: var(--border); box-shadow: none; }
.btn--ghost:hover { border-color: var(--brand-2); color: var(--brand-2); box-shadow: none; }
.btn--brand { --_bg: var(--brand); --_fg: #fff; }
[data-theme="dark"] .btn--brand { --_fg: var(--navy-900); }
.btn--sm { padding: .5rem 1rem; font-size: var(--step--1); }
.btn--lg { padding: .95rem 1.8rem; font-size: var(--step-1); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(160%) blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-brd);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 1rem; height: 68px; }
/* Brand lockup: logo + two stacked, left-aligned lines that never wrap */
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; text-decoration: none; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand__logo { width: 40px; height: 40px; border-radius: 10px; }
.brand__lockup { display: flex; flex-direction: column; justify-content: center; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.08; letter-spacing: .015em; text-transform: uppercase; color: var(--text); white-space: nowrap; }
.brand__tag { font-size: .66rem; font-weight: 500; line-height: 1; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); white-space: nowrap; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-links a {
  display: block; color: var(--text); font-weight: 500; font-size: .93rem; padding: .5rem .6rem; border-radius: 9px;
  white-space: nowrap; transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.is-active { background: color-mix(in srgb, var(--brand-2) 14%, transparent); color: var(--brand-2); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.icon-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer;
  transition: border-color .15s, transform .15s;
}
.icon-btn:hover { border-color: var(--brand-2); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; }
.nav-toggle { display: none; }

/* Collapse to the hamburger menu before the row gets crowded */
@media (max-width: 1120px) {
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border); padding: .5rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .22s var(--ease);
    max-height: calc(100dvh - 68px); overflow-y: auto; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-toggle { display: inline-grid; }
}
@media (max-width: 560px) {
  .brand__logo { width: 34px; height: 34px; }
  .brand__name { font-size: .92rem; }
  .brand__tag { display: none; }                /* hide tagline, keep name on one line */
  .nav-actions .btn { display: none; }          /* menu covers "Fly In" on phones */
  .nav { gap: .5rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,26,47,.55) 0%, rgba(7,26,47,.35) 40%, rgba(7,26,47,.9) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(46,134,193,.28), transparent 60%);
}
.hero__inner { padding-block: clamp(3.5rem, 9vw, 7rem) clamp(2.5rem, 5vw, 3.5rem); display: grid; gap: 2.5rem; }
.hero__eyebrow { color: var(--sun-400); }
.hero h1 { font-size: var(--step-4); color: #fff; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero__tag { font-size: var(--step-1); color: #dbe8f3; max-width: 46ch; margin-top: 1.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.hero__scroll { display: inline-flex; align-items: center; gap: .5rem; color: #cfe0ef; font-size: var(--step--1); margin-top: 1.5rem; }

/* ---------- Live conditions widget ---------- */
.wx {
  background: color-mix(in srgb, var(--navy-900) 55%, transparent);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 1.35rem 1.5rem; backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg); max-width: 560px;
}
.wx__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.wx__title { display: flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 600; font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: #cfe0ef; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--vfr); box-shadow: 0 0 0 0 currentColor; animation: pulse 2.2s infinite; color: var(--vfr); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 color-mix(in srgb,currentColor 60%,transparent);} 70%{box-shadow:0 0 0 10px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }
.cat-badge {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  padding: .3rem .8rem; border-radius: 100px; color: #fff; background: var(--ink-500);
  display: inline-flex; align-items: center; gap: .4rem;
}
.cat-badge[data-cat="VFR"]  { background: var(--vfr); }
.cat-badge[data-cat="MVFR"] { background: var(--mvfr); }
.cat-badge[data-cat="IFR"]  { background: var(--ifr); }
.cat-badge[data-cat="LIFR"] { background: var(--lifr); }
.wx__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-top: 1.1rem; }
.wx__cell { background: rgba(255,255,255,.06); border-radius: 12px; padding: .7rem .6rem; text-align: center; }
.wx__cell .k { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #a9c2d8; }
.wx__cell .v { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; color: #fff; margin-top: .2rem; }
.wx__meta { display:flex; flex-wrap:wrap; gap: .35rem 1rem; margin-top: .9rem; font-size: var(--step--1); color: #bcd0e2; }
.wx__meta code { font-family: var(--font-mono); color: #fff; }
.wx__raw { margin-top: .8rem; font-family: var(--font-mono); font-size: .72rem; color: #9fb8cd; word-break: break-word; line-height: 1.5; }
.wx__disclaim { margin-top: .7rem; font-size: .68rem; color: #8fa7bd; }
@media (max-width: 520px) { .wx__grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- Pilot quick-reference card ---------- */
.pilotcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.pilotcard__head { background: var(--brand); color: #fff; padding: 1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
[data-theme="dark"] .pilotcard__head { color: var(--navy-900); }
.pilotcard__head h3 { color: inherit; font-size: var(--step-1); }
.pilotcard__id { font-family: var(--font-mono); font-weight: 700; font-size: 1.6rem; letter-spacing: .05em; }
.pilotcard__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); }
.spec { padding: 1rem 1.4rem; border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
.spec .k { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); }
.spec .v { font-family: var(--font-mono); font-weight: 600; font-size: 1.15rem; margin-top: .2rem; }
.spec .sub { font-size: .78rem; color: var(--text-soft); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.35rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand-2) 40%, var(--border)); }
.card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--sky-100); color: var(--brand-2); margin-bottom: 1rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.card p { color: var(--text-soft); font-size: var(--step-0); }
.card__link { margin-top: 1rem; display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-family: var(--font-head); }
.card__link svg { transition: transform .2s; }
.card--link:hover .card__link svg { transform: translateX(4px); }

/* ---------- Fees / price table ---------- */
.pricelist { display: grid; gap: .1rem; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .9rem 0; border-bottom: 1px dashed var(--border);
}
.price-row:last-child { border-bottom: 0; }
.price-row .label { font-weight: 500; }
.price-row .label small { display: block; color: var(--text-soft); font-weight: 400; font-size: .82rem; }
.price-row .amount { font-family: var(--font-mono); font-weight: 700; font-size: 1.25rem; color: var(--brand-2); white-space: nowrap; }
.fuel-card { display: grid; gap: 1rem; }
.fuel-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius); background: var(--bg-alt); border: 1px solid var(--border); }
.fuel-badge { font-family: var(--font-mono); font-weight: 700; padding: .4rem .7rem; border-radius: 8px; color: #fff; }
.fuel-badge.avgas { background: var(--vfr); }
.fuel-badge.jeta { background: var(--ink-700); }
.fuel-row .desc { flex: 1; }
.fuel-row .desc b { display: block; }
.fuel-row .desc small { color: var(--text-soft); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { font-size: var(--step--1); padding: .35rem .8rem; border-radius: 100px; background: var(--sky-100); color: var(--brand); font-weight: 500; border: 1px solid transparent; }
.chip svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 3px; }

/* alert / notam */
.alert { display: flex; gap: 1rem; padding: 1.2rem 1.4rem; border-radius: var(--radius); border: 1px solid; align-items: flex-start; }
.alert svg { flex: none; width: 24px; height: 24px; margin-top: 2px; }
.alert--warn { background: color-mix(in srgb, var(--sun-500) 12%, var(--surface)); border-color: color-mix(in srgb, var(--sun-500) 40%, transparent); color: var(--text); }
.alert--warn svg { color: var(--sun-600); }
.alert h3 { font-size: var(--step-0); margin-bottom: .3rem; }
.alert ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--text-soft); }
.alert li { margin-bottom: .25rem; }

/* media split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }

/* webcams */
.cam { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-alt); box-shadow: var(--shadow-sm); }
.cam__frame { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); display: grid; place-items: center; color: #cfe0ef; position: relative; }
.cam__frame img { width: 100%; height: 100%; object-fit: cover; }
.cam__ph { display: grid; place-items: center; gap: .6rem; text-align: center; padding: 1rem; }
.cam__ph svg { width: 42px; height: 42px; opacity: .92; }
.cam__ph .live { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.cam__ph .live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #ff5252; box-shadow: 0 0 0 0 rgba(255,82,82,.6); animation: pulse 2s infinite; color: #ff5252; }
.cam__ph small { color: #a9c2d8; font-size: .8rem; }
.cam__body { padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cam__body b { font-family: var(--font-head); }
.cam__body small { color: var(--text-soft); display: block; }

/* timeline */
.timeline { position: relative; display: grid; gap: 1.5rem; padding-left: 1.5rem; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand-2), transparent); }
.tl-item { position: relative; }
.tl-item::before { content: ""; position: absolute; left: -1.5rem; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent); }
.tl-item .yr { font-family: var(--font-mono); font-weight: 700; color: var(--brand-2); }
.tl-item h3 { font-size: var(--step-0); margin: .1rem 0 .2rem; }
.tl-item p { color: var(--text-soft); font-size: var(--step-0); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; }
.contact-item .ci-ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--sky-100); color: var(--brand-2); display: grid; place-items: center; }
.contact-item .ci-ic svg { width: 20px; height: 20px; }
.contact-item b { display: block; font-family: var(--font-head); }
.contact-item a, .contact-item span { color: var(--text-soft); }
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: var(--step--1); font-family: var(--font-head); }
.field input, .field textarea, .field select {
  font: inherit; padding: .75rem .9rem; border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text); width: 100%; transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-2); }
.form-note { font-size: var(--step--1); color: var(--text-soft); }

/* map */
.map-embed { border: 0; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); box-shadow: var(--shadow-sm); filter: saturate(.95); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #c6d6e6; padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.site-footer a { color: #cfe0ef; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; border-radius: 10px; }
.footer-brand b { font-family: var(--font-head); font-size: 1.1rem; color: #fff; }
.footer-col h4 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #8fabc6; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a { font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--1); color: #8fabc6; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.footer-social svg { width: 20px; height: 20px; }
.disclaimer { background: rgba(255,255,255,.04); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .8rem; color: #9db4cb; margin-bottom: 2rem; display: flex; gap: .7rem; }
.disclaimer svg { flex: none; width: 20px; height: 20px; color: var(--sun-400); }

/* reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{opacity:1;transform:none;} }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.stat { background: var(--surface); padding: 1.4rem 1rem; text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: var(--step-3); color: var(--brand-2); letter-spacing: -.03em; }
.stat .l { font-size: var(--step--1); color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Announcement banner (admin-driven) ---------- */
.site-banner { display: flex; align-items: center; gap: .75rem; padding: .7rem clamp(1rem,4vw,2rem); font-size: var(--step--1); font-weight: 500; border-bottom: 1px solid; }
.site-banner__msg { flex: 1; }
.site-banner svg { flex: none; width: 18px; height: 18px; }
.site-banner__x { flex: none; background: none; border: 0; color: inherit; cursor: pointer; font-size: 1.2rem; line-height: 1; opacity: .7; padding: .2rem .4rem; border-radius: 6px; }
.site-banner__x:hover { opacity: 1; background: rgba(0,0,0,.08); }
.site-banner[data-type="info"]  { background: var(--sky-100); color: var(--brand); border-color: color-mix(in srgb, var(--brand-2) 25%, transparent); }
.site-banner[data-type="warn"]  { background: var(--sun-100); color: var(--sun-600); border-color: color-mix(in srgb, var(--sun-500) 35%, transparent); }
.site-banner[data-type="alert"] { background: color-mix(in srgb, var(--ifr) 12%, var(--bg)); color: var(--ifr); border-color: color-mix(in srgb, var(--ifr) 35%, transparent); }

/* admin-driven status note */
.status-note { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; padding: .5rem .85rem; border-radius: 100px; font-size: var(--step--1); font-weight: 600;
  background: color-mix(in srgb, var(--sun-500) 14%, var(--surface)); color: var(--sun-600); border: 1px solid color-mix(in srgb, var(--sun-500) 35%, transparent); }
.status-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.price-tag { font-family: var(--font-mono); font-weight: 700; font-size: 1.25rem; color: var(--brand-2); }
.price-tag + small { color: var(--text-soft); }

/* utilities */
.center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.stack > * + * { margin-top: 1rem; }
.text-soft { color: var(--text-soft); }
