/* =========================================================================
   Fire Services Museum Victoria — website design system
   Built from the museum's 2025–26 posters and the C.BetterDesign Brand Colour
   Guide (Dec 2025): navy ground, red diagonal wedge and bottom band, Montserrat
   caps and bold italic, red rounded labels, red-toned heritage artwork, and real
   photography. One deliberate look: every surface paints its own colours.
   ========================================================================= */

:root {
  --navy: #282B39;
  --navy-deep: #1F2130;
  --navy-soft: #343849;
  --navy-line: rgba(255, 255, 255, .14);
  --red: #ED1C24;            /* brand red: wedge, band, large headings */
  --red-ui: #E0161E;         /* text-bearing red surfaces (AA with white) */
  --red-ui-hover: #C31017;
  --red-on-navy: #FF5C62;    /* small red text on navy (AA) */
  --blue: #2F57A7;
  --blue-hover: #244689;
  --gold: #AB8D55;
  --grey: #939598;
  --grey-light: #D1D3D4;
  --paper: #F3F3F4;
  --white: #FFFFFF;
  --ink: #282B39;
  --ink-2: #4C4F5E;
  --ink-3: #676A78;
  --rule: #DCDDE1;
  --rule-strong: #B6B8C1;
  --on-navy: #FFFFFF;
  --on-navy-2: #C9CBD3;
  --green: #0D8E5B;
  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --sp: clamp(64px, 8vw, 120px);
  --r: 10px;
  --r-lg: 16px;
  --header-h: 84px;
  --band: clamp(12px, 1.4vw, 22px);
  --wedge: clamp(56px, 9vw, 160px);
  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; background: var(--white); color: var(--ink); font: 400 1.0625rem/1.65 var(--font); -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-decoration-thickness: 1.5px; text-underline-offset: .18em; }
a:hover { color: var(--blue-hover); }
:focus-visible { outline: 3px solid #00AEEF; outline-offset: 3px; border-radius: 2px; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 800; line-height: 1.1; text-wrap: balance; color: inherit; }
h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); text-transform: uppercase; letter-spacing: .005em; line-height: 1.02; }
h2 { font-size: clamp(1.75rem, 3.1vw, 2.6rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.35rem); font-weight: 700; line-height: 1.3; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
small, .small { font-size: .875rem; }
b, strong { font-weight: 700; }
.ico { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico--fill { fill: currentColor; stroke: none; }
.tnum { font-variant-numeric: tabular-nums; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: #fff; color: var(--navy); padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip:focus { top: 12px; }

/* type roles */
.display { font-size: clamp(2.1rem, 3.9vw, 3.6rem); font-weight: 800; font-style: italic; line-height: 1.07; letter-spacing: -.015em; text-transform: none; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.55; font-weight: 500; max-width: 46ch; }
.tagline { font-weight: 700; font-style: italic; }
.caps-italic { font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: .02em; }
.h-red { color: var(--red); }
.h1-plain { text-transform: none; font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -.01em; }
.note { color: var(--ink-3); font-size: .95rem; }
.label { display: inline-block; background: var(--red-ui); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; padding: .45em .85em; border-radius: 12px; line-height: 1.1; font-size: .95rem; }
.label--lg { font-size: clamp(1.35rem, 2.6vw, 2rem); padding: .3em .6em; border-radius: 14px; }
.credit { font-size: .8rem; color: var(--ink-3); margin-top: .75em; }
.bg-navy .credit { color: var(--on-navy-2); }

/* ---------- layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gutter), 820px); margin-inline: auto; }
.section { padding-block: var(--sp); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--flush-top { padding-top: 0; }
.bg-navy { background: var(--navy); color: var(--on-navy); }
.bg-navy p, .bg-navy li, .bg-navy dd { color: var(--on-navy-2); }
.bg-navy a:not(.btn) { color: #fff; }
.bg-paper { background: var(--paper); }
.bg-red { background: var(--red-ui); color: #fff; }
.bg-red p { color: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px 40px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head h2 { margin: 0; }
.section-head .lead { margin: .6em 0 0; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 6vw, 110px); align-items: start; }
.two-col--text { grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); }
.stack > * + * { margin-top: 1rem; }
@media (max-width: 860px) { .two-col, .two-col--text { grid-template-columns: minmax(0, 1fr); } }

/* the poster device: red bottom band + diagonal wedge on the right edge */
.poster { position: relative; isolation: isolate; overflow: hidden; }
.poster::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: var(--band); background: var(--red); z-index: -1; }
.poster::after { content: ""; position: absolute; right: 0; bottom: 0; width: var(--wedge); height: 76%; background: var(--red); clip-path: polygon(100% 0, 100% 100%, 0 100%); z-index: -1; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--navy); color: #fff; box-shadow: 0 1px 0 var(--navy-line); }
.site-header__bar { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 14px; color: #fff; text-decoration: none; margin-right: auto; }
.brand:hover { color: #fff; }
.brand img { width: 58px; height: 58px; }
.brand__name { display: flex; flex-direction: column; font-weight: 800; text-transform: uppercase; font-size: .95rem; line-height: 1.12; letter-spacing: .02em; }
.brand__name span + span { letter-spacing: .34em; }
.nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a { display: block; padding: 10px 12px; color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem; border-bottom: 3px solid transparent; opacity: .88; }
.nav a:hover { opacity: 1; color: #fff; border-bottom-color: rgba(255, 255, 255, .35); }
.nav a[aria-current="page"] { opacity: 1; border-bottom-color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { position: relative; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r); border: 1.5px solid var(--navy-line); background: transparent; color: #fff; cursor: pointer; }
.icon-btn:hover { border-color: rgba(255, 255, 255, .5); }
.icon-btn .ico { width: 22px; height: 22px; }
.icon-btn--dark { color: var(--navy); border-color: var(--rule); }
.bag-count { position: absolute; top: -7px; right: -7px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--red-ui); color: #fff; font-size: .75rem; font-weight: 800; display: grid; place-items: center; border: 2px solid var(--navy); }
.menu-btn { display: none; }
@media (max-width: 1120px) { .nav { display: none; } .menu-btn { display: inline-grid; } }
@media (max-width: 640px) { .header-actions .header-join { display: none; } }
@media (max-width: 560px) {
  :root { --header-h: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand__name { font-size: .78rem; }
  .site-header__bar { gap: 10px; }
  .icon-btn { width: 42px; height: 42px; }
}
@media (max-width: 360px) { .brand__name { display: none; } }

/* live status strip */
.status { background: var(--red-ui); color: #fff; }
.status__bar { display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; min-height: 48px; padding-block: 8px; font-weight: 700; font-size: .95rem; }
.status a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; border-bottom: 2px solid rgba(255, 255, 255, .55); }
.status a:hover { color: #fff; border-bottom-color: #fff; }
.status.is-open { background: var(--green); }
.status[data-notice].is-notice { background: var(--red-ui); }
.status[data-notice]:not(.is-notice) { background: var(--navy); }
@media (max-width: 560px) { .status a span { display: none; } }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 80; background: var(--navy); color: #fff; overflow-y: auto; padding-bottom: calc(var(--band) + 48px); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.mobile-menu__nav { display: grid; margin-top: 16px; }
.mobile-menu__nav a:not(.btn) { color: #fff; text-decoration: none; font-weight: 800; font-size: clamp(1.6rem, 7vw, 2.2rem); padding: 10px 0; border-bottom: 1px solid var(--navy-line); }
.mobile-menu__nav .btn { margin-top: 24px; justify-self: start; }
.mobile-menu__info { margin-top: 32px; color: var(--on-navy-2); font-size: .95rem; }
.mobile-menu__info b { color: #fff; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; min-height: 52px; padding: 0 1.4em; border-radius: var(--r); border: 2px solid transparent; font: 700 1.0625rem/1.15 var(--font); text-decoration: none; cursor: pointer; white-space: nowrap; transition: background-color .15s, color .15s, border-color .15s; }
.btn .ico { width: 1.15em; height: 1.15em; transition: transform .15s; }
.btn:hover .ico--arrow { transform: translateX(3px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn--lg { min-height: 58px; padding: 0 1.6em; font-size: 1.125rem; }
.btn--sm { min-height: 44px; padding: 0 1.1em; font-size: .95rem; }
.btn--block { width: 100%; }
.btn--red { background: var(--red-ui); color: #fff; }
.btn--red:hover { background: var(--red-ui-hover); color: #fff; }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--grey-light); color: var(--navy); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .75); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: #fff; }
.btn--ghost-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost-navy:hover { background: var(--navy); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 700; text-decoration: none; color: inherit; border-bottom: 2px solid currentColor; padding-bottom: 2px; }
.link-arrow:hover { color: var(--red-ui); }
.bg-navy .link-arrow:hover { color: var(--red-on-navy); }
.link-arrow .ico { width: 1.1em; height: 1.1em; }

/* ---------- hero (home) ---------- */
.hero { background: var(--navy); color: #fff; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(24px, 4vw, 64px); align-items: end; min-height: min(70vh, 640px); padding-top: clamp(40px, 5vw, 72px); }
.hero__text { align-self: center; padding-bottom: clamp(48px, 6vw, 88px); }
.hero .display { margin-bottom: .45em; }
.hero .lead { color: var(--on-navy-2); margin-bottom: 1.75em; }
.hero__art { align-self: end; justify-self: end; width: 100%; max-width: 640px; margin-bottom: var(--band); }
.hero__art img { width: 100%; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero__text { padding-bottom: 8px; }
  .hero__art { max-width: 520px; justify-self: center; margin-top: 8px; }
}

/* ---------- page heads ---------- */
.page-head { background: var(--navy); color: #fff; padding-top: clamp(52px, 7vw, 100px); padding-bottom: calc(clamp(52px, 7vw, 96px) + var(--band)); }
.page-head h1 { margin-bottom: .3em; }
.page-head .lead { color: var(--on-navy-2); }
.page-head .tagline { color: #fff; }
.page-head .btn-row { margin-top: 1.75em; }
.page-head__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(24px, 5vw, 72px); align-items: end; }
.page-head--art { padding-bottom: 0; }
.page-head--art .page-head__text { padding-bottom: calc(clamp(52px, 7vw, 96px) + var(--band)); }
.page-head__art { justify-self: end; width: 100%; max-width: 560px; margin-bottom: var(--band); }
.page-head__side { justify-self: end; padding-bottom: calc(clamp(52px, 7vw, 96px) + var(--band)); }
@media (max-width: 860px) {
  .page-head__grid { grid-template-columns: minmax(0, 1fr); }
  .page-head--art .page-head__text { padding-bottom: 12px; }
  .page-head__art { justify-self: center; max-width: 440px; }
  .page-head__side { justify-self: start; }
}

/* ---------- split: photo + text, edge to edge ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split__media { position: relative; min-height: 460px; margin: 0; background: var(--navy-soft); }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body { display: flex; align-items: center; padding-block: var(--sp); padding-inline: clamp(28px, 5vw, 88px) max(var(--gutter), calc((100vw - var(--wrap)) / 2)); }
.split--flip .split__media { order: 2; }
.split--flip .split__body { padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2)) clamp(28px, 5vw, 88px); }
.split__inner { max-width: 560px; }
.split__inner .lead { max-width: none; }
.photo-credit { position: absolute; right: 0; bottom: 0; margin: 0; padding: 4px 10px; background: rgba(20, 22, 32, .7); color: #fff; font-size: .72rem; }
.photo-credit a { color: #fff; }
@media (max-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split__media { min-height: 0; aspect-ratio: 16 / 10; }
  .split--flip .split__media { order: 0; }
  .split__body, .split--flip .split__body { padding: clamp(40px, 8vw, 64px) var(--gutter); }
}

/* ---------- visit facts ---------- */
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 5vw, 80px); }
.facts h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: .6em; }
.fact-list { list-style: none; margin: 0 0 .8em; padding: 0; }
.fact-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-weight: 600; }
.fact-list li b { font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.fact-list small { display: block; font-weight: 500; color: var(--ink-3); }
.is-today > span:first-child::after { content: "Today"; display: inline-block; margin-left: .6em; padding: .15em .5em; border-radius: 6px; background: var(--red-ui); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; vertical-align: .15em; }
.address { font-weight: 700; font-size: 1.15rem; line-height: 1.45; }
@media (max-width: 900px) { .facts { grid-template-columns: minmax(0, 1fr); } }

/* ---------- visit page ---------- */
.hours-big { list-style: none; margin: 0 0 .9em; padding: 0; }
.hours-big li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: .5em 0; border-bottom: 2px solid var(--rule); font-weight: 800; font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.2; }
.hours-big li span:last-child { font-variant-numeric: tabular-nums; }
.prices { margin: 1.25rem 0 1rem; }
.prices > div { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.prices dt { font-weight: 800; font-size: 1.2rem; }
.prices dt small { display: block; font-weight: 500; font-style: italic; font-size: .9rem; color: var(--ink-3); }
.prices dd { margin: 0; font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-variant-numeric: tabular-nums; white-space: nowrap; }
.map-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .map-grid { grid-template-columns: minmax(0, 1fr); } }
.transit { display: grid; gap: 0; }
.transit__mode { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-top: 2px solid var(--red); }
.transit__mode:first-child { border-top: 0; padding-top: 0; }
.transit__mode h3 { margin: 0; font-size: 1.2rem; font-weight: 800; }
.transit__mode p { margin: .5em 0 0; font-weight: 500; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { display: inline-grid; place-items: center; min-width: 48px; height: 32px; padding: 0 10px; border-radius: 7px; font-weight: 800; font-size: .95rem; background: var(--c, #F27B03); color: var(--t, #fff); font-variant-numeric: tabular-nums; }
.pill--bus { --c: #F27B03; --t: #231A0B; }
.pill--train { --c: #fff; --t: var(--navy); border: 1.5px solid var(--rule-strong); border-top: 4px solid var(--line, #0072CE); border-radius: 4px; font-weight: 600; font-size: .85rem; }

/* ---------- embeds ---------- */
.embed { position: relative; width: 100%; border-radius: 14px; overflow: hidden; background: var(--navy-deep); }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed--16x9 { aspect-ratio: 16 / 9; }
.embed--map { aspect-ratio: 4 / 3; background: var(--grey-light); }
.embed--tour { aspect-ratio: 16 / 9; min-height: 420px; }
.embed--fb { aspect-ratio: auto; height: 860px; max-width: 500px; background: #fff; border: 1px solid var(--rule); }
@media (max-width: 700px) { .embed--tour { aspect-ratio: 4 / 5; min-height: 0; } .embed--map { aspect-ratio: 1 / 1; } .embed--fb { height: 640px; } }

/* films */
.player { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(260px, 1fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.player__now { margin-top: 14px; font-weight: 700; }
.playlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.playlist button { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 14px; align-items: center; width: 100%; padding: 8px; border: 1.5px solid var(--rule); border-radius: 12px; background: #fff; color: var(--ink); font: inherit; text-align: left; cursor: pointer; }
.playlist button:hover { border-color: var(--rule-strong); }
.playlist button[aria-current="true"] { border-color: var(--red-ui); box-shadow: inset 0 0 0 1px var(--red-ui); }
.playlist img { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; border-radius: 7px; }
.playlist b { display: block; line-height: 1.25; }
.playlist small { display: block; color: var(--ink-3); line-height: 1.35; margin-top: 2px; }
@media (max-width: 900px) { .player { grid-template-columns: minmax(0, 1fr); } }

/* ---------- news ---------- */
.news { list-style: none; margin: 0; padding: 0; }
.news-item { display: grid; grid-template-columns: minmax(130px, 190px) minmax(0, 1fr); gap: clamp(12px, 3vw, 40px); padding: 26px 0; border-top: 1px solid var(--rule); }
.news-item:last-child { border-bottom: 1px solid var(--rule); }
.news-item time { font-weight: 800; color: var(--red-ui); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; padding-top: .3em; }
.news-item h3 { margin-bottom: .35em; }
.news-item p { color: var(--ink-2); margin: 0 0 .6em; max-width: 62ch; }
.news-item p:last-child { margin-bottom: 0; }
.sample { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--rule-strong); border-radius: 6px; padding: .1em .45em; margin-left: .5em; vertical-align: .2em; }
@media (max-width: 640px) { .news-item { grid-template-columns: minmax(0, 1fr); gap: 4px; } }
.whatson-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, 500px); gap: clamp(32px, 5vw, 72px); align-items: start; }
.whatson-grid aside { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 980px) { .whatson-grid { grid-template-columns: minmax(0, 1fr); } .whatson-grid aside { position: static; } }

/* ---------- membership ---------- */
.member-band__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.member-band__price { font-size: 1.15rem; font-weight: 600; }
.member-band__price b { font-size: 1.6rem; font-weight: 800; }
@media (max-width: 900px) { .member-band__grid { grid-template-columns: minmax(0, 1fr); } }
.member-card { width: min(100%, 460px); aspect-ratio: 1.586 / 1; justify-self: center; border-radius: 20px; background: linear-gradient(155deg, #353A50 0%, var(--navy) 50%, #1C1E2B 100%); color: #fff; position: relative; overflow: hidden; padding: clamp(18px, 3.4vw, 28px); display: grid; grid-template-rows: auto 1fr auto; box-shadow: 0 34px 60px -24px rgba(10, 12, 20, .6); }
.member-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(171, 141, 85, .75); border-radius: 13px; pointer-events: none; }
.member-card__top { display: flex; align-items: center; gap: 12px; }
.member-card__top img { width: clamp(46px, 9vw, 64px); height: auto; }
.member-card__org { font-weight: 800; text-transform: uppercase; font-size: clamp(.62rem, 1.5vw, .82rem); line-height: 1.2; letter-spacing: .04em; }
.member-card__type { margin-left: auto; align-self: flex-start; background: var(--red-ui); color: #fff; font-weight: 800; font-size: clamp(.6rem, 1.4vw, .72rem); letter-spacing: .08em; text-transform: uppercase; padding: .35em .6em; border-radius: 6px; }
.member-card__name { align-self: end; font-weight: 800; font-size: clamp(1.1rem, 3.4vw, 1.75rem); text-transform: uppercase; line-height: 1.1; letter-spacing: .01em; margin-bottom: .5em; }
.member-card__meta { display: flex; justify-content: space-between; gap: 12px; font-size: clamp(.55rem, 1.3vw, .7rem); text-transform: uppercase; letter-spacing: .1em; color: var(--on-navy-2); }
.member-card__meta b { display: block; color: #fff; font-size: clamp(.72rem, 1.6vw, .92rem); letter-spacing: .05em; font-variant-numeric: tabular-nums; }
.benefits { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 44px); }
.benefits li { border-top: 3px solid var(--red); padding-top: 18px; }
.benefits h3 { margin-bottom: .4em; }
.benefits p { margin: 0; color: var(--ink-2); }
@media (max-width: 980px) { .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .benefits { grid-template-columns: minmax(0, 1fr); } }
.tiers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tier { display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1.5px solid var(--rule); border-radius: var(--r-lg); padding: clamp(20px, 2.4vw, 30px); }
.tier h3 { font-size: 1.4rem; font-weight: 800; margin: 0; }
.tier__who { color: var(--ink-3); font-size: .95rem; margin: 0 0 .8em; min-height: 2.8em; }
.tier__price { margin: 0; font-weight: 600; }
.tier__price b { font-size: 2.3rem; font-weight: 800; line-height: 1.1; font-variant-numeric: tabular-nums; }
.tier__then { margin: 0 0 1.2em; color: var(--ink-2); }
.tier .btn { margin-top: auto; }
@media (max-width: 980px) { .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .tiers { grid-template-columns: minmax(0, 1fr); } }
.amounts { display: flex; flex-wrap: wrap; gap: 10px; border: 0; padding: 0; margin: 0 0 18px; }
.amounts legend { font-weight: 700; margin-bottom: 10px; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; inset: 0; }
.chip-radio span { display: inline-grid; place-items: center; min-width: 84px; min-height: 52px; padding: 0 16px; border: 1.5px solid var(--rule-strong); border-radius: var(--r); font-weight: 800; font-size: 1.1rem; background: #fff; color: var(--navy); cursor: pointer; }
.chip-radio input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.chip-radio input:focus-visible + span { outline: 3px solid #00AEEF; outline-offset: 2px; }

/* ---------- forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-row--3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 640px) { .form-row, .form-row--3 { grid-template-columns: minmax(0, 1fr); } }
.field { display: grid; gap: 6px; min-width: 0; }
.field label, .field .field__label { font-weight: 600; font-size: .95rem; color: var(--ink); }
.field .opt { font-weight: 500; color: var(--ink-3); }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; font: 500 1rem var(--font); color: var(--ink); background: #fff; border: 1.5px solid var(--rule-strong); border-radius: 8px; }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47, 87, 167, .22); }
.field .hint { font-size: .875rem; color: var(--ink-3); margin: 0; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--red-ui); }
.error { color: var(--red-ui); font-size: .875rem; font-weight: 600; margin: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--red-ui); flex: none; }
.checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.inline-field { display: flex; gap: 8px; }
.inline-field input { flex: 1; min-width: 0; }
.panel { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 36px); }
.bg-navy .panel p, .bg-navy .panel li { color: var(--ink-2); }
.bg-navy .panel a:not(.btn) { color: var(--blue); }
.panel h3 { margin-bottom: .2em; }
.form-done { border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px); background: #fff; color: var(--ink); border-left: 6px solid var(--green); }
.form-done p { color: var(--ink-2); margin: 0 0 .5em; }
.form-done__title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--ink) !important; }
.form-done__title .ico { color: var(--green); width: 26px; height: 26px; }
.options { display: grid; gap: 10px; }
.option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 16px 18px; border: 1.5px solid var(--rule-strong); border-radius: 12px; background: #fff; cursor: pointer; }
.option input { width: 20px; height: 20px; margin: 0; accent-color: var(--navy); }
.option b { display: block; }
.option small { display: block; color: var(--ink-3); font-size: .9rem; line-height: 1.4; }
.option em { font-style: normal; font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }
.option:has(input:checked) { border-color: var(--navy); box-shadow: inset 0 0 0 1px var(--navy); background: #FAFAFB; }

/* ---------- shop ---------- */
.shop-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px 32px; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.cat-tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-tabs a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--rule-strong); color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.cat-tabs a:hover { border-color: var(--navy); color: var(--ink); }
.cat-tabs a[aria-current="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.shop-bar__right { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--ink-3); }
.shop-bar select { min-height: 44px; padding: 0 12px; border: 1.5px solid var(--rule-strong); border-radius: 8px; font: 600 .95rem var(--font); color: var(--ink); background: #fff; }
.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 28px); }
@media (max-width: 1000px) { .products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 680px) { .products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 1000px) { .products--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.product-tile { display: flex; flex-direction: column; gap: 10px; color: var(--ink); text-decoration: none; }
.product-tile:hover { color: var(--ink); }
.product-tile__img { position: relative; aspect-ratio: 1; background: #fff; border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; }
.product-tile__img img { width: 100%; height: 100%; object-fit: contain; padding: 7%; transition: transform .3s; }
.product-tile:hover .product-tile__img { border-color: var(--navy); }
.product-tile:hover .product-tile__img img { transform: scale(1.04); }
.product-tile__title { font-weight: 600; line-height: 1.35; font-size: .98rem; }
.product-tile__price { font-weight: 800; font-variant-numeric: tabular-nums; }
.product-tile__price small { font-weight: 600; color: var(--ink-3); font-size: .8rem; }
.soldout { position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .3em .55em; border-radius: 6px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 18px; padding: 0; font-size: .9rem; font-weight: 600; color: var(--ink-3); }
.crumbs a { color: var(--ink-3); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--rule-strong); }
.pdp { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 76px); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: minmax(0, 1fr); } }
.gallery__main { aspect-ratio: 1; background: #fff; border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }
.gallery__thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.gallery__thumbs button { width: 84px; aspect-ratio: 1; padding: 4px; border: 1.5px solid var(--rule); border-radius: 8px; background: #fff; cursor: pointer; }
.gallery__thumbs button[aria-current="true"] { border-color: var(--navy); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pdp__cat { font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--red-ui); margin-bottom: .5em; }
.pdp h1 { text-transform: none; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -.01em; line-height: 1.1; }
.pdp__price { font-size: 1.9rem; font-weight: 800; margin: .2em 0 .6em; font-variant-numeric: tabular-nums; }
.pdp__label { font-weight: 700; margin: 0 0 8px; }
.pdp__label span { font-weight: 500; color: var(--ink-2); }
.variant-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.variant-list button { min-height: 44px; padding: 8px 14px; border: 1.5px solid var(--rule-strong); border-radius: 8px; background: #fff; color: var(--ink); font: 600 .92rem var(--font); cursor: pointer; }
.variant-list button:hover { border-color: var(--navy); }
.variant-list button[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.variant-list button:disabled { opacity: .45; text-decoration: line-through; cursor: not-allowed; }
.buy-row { display: flex; gap: 12px; align-items: stretch; }
.buy-row .btn { flex: 1; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--rule-strong); border-radius: 8px; overflow: hidden; background: #fff; }
.qty button { width: 46px; min-height: 52px; border: 0; background: #fff; color: var(--ink); font: 700 1.3rem var(--font); cursor: pointer; }
.qty button:hover { background: var(--paper); }
.qty input { width: 44px; border: 0; text-align: center; font: 700 1.05rem var(--font); color: var(--ink); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty--sm button { width: 34px; min-height: 36px; font-size: 1.05rem; }
.qty--sm span { min-width: 28px; text-align: center; font-weight: 700; }
.stock { font-weight: 600; margin: 14px 0 0; color: var(--green); }
.stock.is-out { color: var(--ink-3); }
.pdp__desc { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--rule); color: var(--ink-2); }
.pdp__meta { display: grid; gap: 10px; margin-top: 20px; padding: 18px 20px; background: var(--paper); border-radius: 12px; font-size: .95rem; }
.pdp__meta b { color: var(--ink); }
.pdp__meta p { margin: 0; }

/* bag drawer */
.scrim { position: fixed; inset: 0; z-index: 90; background: rgba(20, 22, 32, .55); opacity: 0; transition: opacity .25s; }
.scrim.is-open { opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; width: min(100%, 440px); display: flex; flex-direction: column; background: #fff; color: var(--ink); box-shadow: -24px 0 60px rgba(0, 0, 0, .25); transform: translateX(100%); transition: transform .25s ease; }
.drawer.is-open { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--rule); }
.drawer__head h2 { margin: 0; font-size: 1.5rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer__foot { padding: 18px 22px 22px; border-top: 1px solid var(--rule); background: var(--paper); }
.bag-list { list-style: none; margin: 0; padding: 0; }
.bag-item { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.bag-item__img { width: 76px; height: 76px; border: 1px solid var(--rule); border-radius: 10px; background: #fff; overflow: hidden; }
.bag-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.bag-item__title { font-weight: 700; color: var(--ink); text-decoration: none; line-height: 1.3; }
.bag-item__variant { display: block; font-size: .875rem; color: var(--ink-3); }
.bag-item__row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.bag-item__remove { background: none; border: 0; padding: 6px 0 0; color: var(--ink-3); font: 600 .85rem var(--font); text-decoration: underline; cursor: pointer; }
.bag-empty { padding: 40px 0; text-align: center; }
.bag-empty p { font-weight: 600; }
.bag-total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; font-size: 1.1rem; }
.bag-total b { font-size: 1.5rem; font-weight: 800; }
.drawer__foot .small { color: var(--ink-3); margin: 6px 0 14px; }

/* ---------- checkout ---------- */
.checkout__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .8fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.co-step { margin-bottom: 36px; }
.co-step legend { font-weight: 800; font-size: 1.4rem; margin-bottom: 14px; padding: 0; }
.co-step > .form, .co-step > .options { margin-top: 4px; }
.summary { position: sticky; top: calc(var(--header-h) + 20px); background: var(--paper); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px); }
.summary h2 { font-size: 1.35rem; margin-bottom: 16px; }
.summary__items { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 14px; }
.sum-item { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 14px; align-items: center; }
.sum-item__img { position: relative; width: 64px; height: 64px; border-radius: 10px; background: #fff; border: 1px solid var(--rule); }
.sum-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.sum-item__qty { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 999px; background: var(--navy); color: #fff; font-size: .72rem; font-weight: 800; display: grid; place-items: center; }
.sum-item b { display: block; font-weight: 600; line-height: 1.3; font-size: .95rem; }
.sum-item small { color: var(--ink-3); }
.summary__totals { margin: 16px 0 0; }
.summary__totals div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.summary__totals dt { color: var(--ink-2); }
.summary__totals dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; }
.summary__totals .total { border-top: 1px solid var(--rule-strong); margin-top: 8px; padding-top: 14px; }
.summary__totals .total dt, .summary__totals .total dd { color: var(--ink); font-size: 1.35rem; font-weight: 800; }
.discount { margin-top: 18px; }
.discount label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.discount input { min-height: 48px; padding: 0 12px; border: 1.5px solid var(--rule-strong); border-radius: 8px; font: 600 .95rem var(--font); text-transform: uppercase; }
.discount .btn { min-height: 48px; }
@media (max-width: 960px) { .checkout__grid { grid-template-columns: minmax(0, 1fr); } .summary { position: static; order: -1; } }
.confirm { max-width: 780px; outline: none; }
.confirm__head { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.confirm__tick { width: 60px; height: 60px; flex: none; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; }
.confirm__tick .ico { width: 30px; height: 30px; stroke-width: 3; }
.confirm__kicker { margin: 0 0 4px; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; }
.confirm h1, .confirm h2 { margin: 0; }
.receipt { border: 1px solid var(--rule); border-radius: var(--r-lg); padding: clamp(18px, 3vw, 28px); margin: 24px 0; }
.receipt__row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px dashed var(--rule); }
.receipt__row:last-child { border-bottom: 0; }
.receipt__row--total { font-weight: 800; font-size: 1.2rem; border-top: 2px solid var(--ink); border-bottom: 0; margin-top: 6px; padding-top: 12px; }

/* ---------- payment element (demo) ---------- */
.pay { border: 1.5px solid var(--rule-strong); border-radius: 14px; padding: clamp(16px, 2.4vw, 24px); background: #fff; color: var(--ink); position: relative; }
.pay__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-weight: 700; }
.pay__head span { display: inline-flex; align-items: center; gap: 8px; }
.pay__demo { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #7A5B00; background: #FFF2C6; padding: .3em .6em; border-radius: 6px; }
.pay__express { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.pay-btn { min-height: 48px; border-radius: 8px; border: 1px solid transparent; font: 700 1rem var(--font); cursor: pointer; display: grid; place-items: center; }
.pay-btn--apple { background: #000; color: #fff; }
.pay-btn--google { background: #fff; color: #3C4043; border-color: #DADCE0; }
.pay-btn--link { background: #00D66F; color: #011E0E; font-weight: 800; }
.pay__powered { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 14px 0 0; font-size: 13px; font-weight: 600; color: #635BFF; }
@media (max-width: 420px) { .pay__express { grid-template-columns: minmax(0, 1fr); } }
.pay__or { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--ink-3); font-size: .875rem; font-weight: 600; }
.pay__or::before, .pay__or::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.pay .field + .field, .pay .form-row + .field, .pay .field + .form-row { margin-top: 14px; }
.card-input { position: relative; }
.card-input input { padding-right: 150px; letter-spacing: .03em; font-variant-numeric: tabular-nums; }
.card-brands { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; pointer-events: none; }
.card-brands svg { width: 36px; height: 23px; transition: opacity .15s; }
.card-brands.has-brand svg { opacity: .2; }
.card-brands.has-brand svg.is-brand { opacity: 1; }
.pay__hint { margin: 16px 0 0; font-size: .85rem; color: var(--ink-3); line-height: 1.5; }
.pay__error { margin: 14px 0 0; padding: 10px 14px; border-radius: 8px; background: #FCE8E9; color: #A30F15; font-weight: 600; font-size: .92rem; }
.pay__submit { margin-top: 18px; }
.pay__alt { margin-top: 10px; }
.pay.is-busy { pointer-events: none; }
.spinner { width: 20px; height: 20px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .4); border-top-color: #fff; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.wallet-sheet { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; padding: 20px; background: rgba(255, 255, 255, .94); border-radius: 14px; }
.wallet-sheet__box { width: min(100%, 340px); background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 22px; box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .35); text-align: center; }
.wallet-sheet__box p { margin: 0 0 6px; }
.wallet-sheet__amount { font-size: 2rem; font-weight: 800; }

/* ---------- join steps ---------- */
.steps { display: flex; gap: 10px; list-style: none; margin: 0 0 36px; padding: 0; }
.steps li { flex: 1; padding-top: 12px; border-top: 4px solid var(--rule); font-weight: 700; font-size: .95rem; color: var(--ink-3); }
.steps li.is-active { border-color: var(--red-ui); color: var(--ink); }
.steps li.is-done { border-color: var(--navy); color: var(--ink); }
.steps li { min-width: 0; }
@media (max-width: 600px) {
  .steps { gap: 6px; }
  .steps li { font-size: 0; }                /* bars only on phones; labels stay available to screen readers */
  .steps li.is-active { flex: 2.4; font-size: .85rem; }
}
.join-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .75fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
@media (max-width: 960px) { .join-grid { grid-template-columns: minmax(0, 1fr); } .join-grid .summary { position: static; } }
.step-actions { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--rule); }
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-weight: 700; font-size: 1.12rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-size: 1.7rem; font-weight: 800; color: var(--red-ui); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 22px; color: var(--ink-2); max-width: 64ch; }

/* ---------- people ---------- */
.people { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 4vw, 56px); }
.people li { border-top: 3px solid var(--red); padding-top: 18px; }
.people p { margin: 0; color: var(--ink-2); }
.people .role { font-weight: 700; color: var(--red-ui); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .3em; }
@media (max-width: 640px) { .people { grid-template-columns: minmax(0, 1fr); } }
.contact-lines { display: grid; gap: 10px; font-size: 1.1rem; font-weight: 600; margin: 0 0 1.5em; }
.contact-lines b { color: var(--red-on-navy); font-weight: 800; margin-right: .35em; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: var(--on-navy-2); padding: clamp(56px, 7vw, 96px) 0 calc(var(--band) + 28px); font-size: .95rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--navy-line); }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img { width: 104px; height: 104px; }
.footer-name { margin: 0 0 .35em; color: #fff; font-weight: 800; text-transform: uppercase; font-size: 1.3rem; line-height: 1.1; letter-spacing: .02em; }
.footer-brand .tagline { margin: 0; color: #fff; }
.footer-news { width: min(100%, 440px); }
.footer-news label { display: block; color: #fff; font-weight: 700; margin-bottom: 8px; }
.footer-news input { min-height: 52px; padding: 0 14px; border-radius: 8px; border: 1.5px solid transparent; font: 500 1rem var(--font); }
.footer-news .form-done { padding: 16px 18px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--navy-line); }
.footer-grid h2 { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid p { margin: 0 0 .8em; color: var(--on-navy-2); }
.footer-grid .contact-lines { font-size: .95rem; gap: 6px; }
.social { display: flex; gap: 10px; margin-top: 12px; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--navy-line); }
.social a:hover { background: var(--red-ui); border-color: var(--red-ui); }
.social .ico { width: 20px; height: 20px; }
.footer-ack { max-width: 78ch; padding-top: 28px; margin: 0 0 14px; color: var(--on-navy-2); }
.footer-legal { margin: 0; font-size: .85rem; color: var(--on-navy-2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } .footer-brand img { width: 80px; height: 80px; } }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: grid; align-items: center; }

/* narrow phones: let long button labels wrap, keep the card field roomy */
@media (max-width: 440px) {
  .btn { white-space: normal; text-align: center; }
  .card-input input { padding-right: 60px; }
  .card-brands svg { display: none; }
  .card-brands.has-brand svg.is-brand { display: block; }
}
.tier .btn { white-space: normal; text-align: center; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
@media print {
  .site-header, .status, .site-footer, .drawer, .scrim, .mobile-menu, .btn, .summary .discount { display: none !important; }
  body { font-size: 12pt; }
}
