/* ==========================================================================
   HHA PTO — shared stylesheet
   Brand: HHA navy #1B1464 / school blue #396192 / bee gold #FDBF12
   Edit colors in one place: the :root block below.
   ========================================================================== */

:root {
  --navy:        #1B1464;
  --navy-soft:   #2A2380;
  --blue:        #396192;
  --blue-deep:   #2B4A73;
  --gold:        #FDBF12;
  --gold-light:  #FECB60;
  --gold-pale:   #FFF3D0;
  --cream:       #FFFBF2;
  --ink:         #16143A;
  --body:        #3B3A55;
  --muted:       #6C6B85;
  --line:        #E4E0D4;
  --white:       #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(27,20,100,.06), 0 2px 8px rgba(27,20,100,.06);
  --shadow-md: 0 4px 12px rgba(27,20,100,.08), 0 12px 32px rgba(27,20,100,.10);
  --shadow-lg: 0 8px 24px rgba(27,20,100,.12), 0 24px 64px rgba(27,20,100,.14);

  --radius:    14px;
  --radius-lg: 22px;
  --wrap:      1160px;

  --font: 'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
          'Helvetica Neue', Arial, sans-serif;
}

/* --------------------------------------------------------- reset & base */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p  { margin: 0 0 1.1em; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------- layout utils */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(48px, 7vw, 84px) 0; }
.section--tight { padding: clamp(32px, 4vw, 52px) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--pale  { background: var(--gold-pale); }
.section--navy  { background: var(--navy); color: #D7D5F0; }
.section--navy h2, .section--navy h3 { color: #fff; }

.center { text-align: center; }
.narrow { max-width: 680px; }
.narrow.center { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .85rem;
}
.section--navy .eyebrow { color: var(--gold); }

.lead { font-size: 1.14rem; color: var(--body); }
.section--navy .lead { color: #C9C7E8; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.split {
  display: grid; gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr 1fr; align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

hr.rule { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* --------------------------------------------------------- honeycomb bg */
.honeycomb {
  background-color: var(--navy);
  background-image:
    linear-gradient(150deg, rgba(57,97,146,.55) 0%, rgba(27,20,100,.92) 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96' viewBox='0 0 56 96'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.10' stroke-width='2'%3E%3Cpath d='M28 0l24 14v28L28 56 4 42V14z'/%3E%3Cpath d='M28 48l24 14v28L28 104 4 90V62z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover, 56px 96px;
}

/* --------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  padding: .82em 1.5em; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; text-align: center; text-decoration: none !important;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-light); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--onnavy { background: #fff; color: var(--navy); }
.btn--onnavy:hover { background: var(--gold); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--navy); }
.btn--sm { font-size: .9rem; padding: .6em 1.15em; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------- promo bar
   Sitewide strip above the header. Driven by window.HHA_PROMO in
   assets/js/events.js — it removes itself once the end date passes. */
.promo {
  background: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(253,191,18,.10) 0%, rgba(27,20,100,0) 55%);
  color: #fff;
  border-bottom: 2px solid var(--gold);
}
.promo__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  padding: 11px 46px 11px 22px;
  max-width: var(--wrap); margin-inline: auto;
  position: relative; text-align: center;
}
.promo__label {
  font-size: .73rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold);
}
.promo__text { font-size: .95rem; font-weight: 600; color: #EDECFA; }
.promo__text strong { color: #fff; }
.promo__cta {
  background: var(--gold); color: var(--navy);
  font-family: var(--font); font-size: .85rem; font-weight: 800;
  padding: .42em 1.05em; border-radius: 100px; white-space: nowrap;
  transition: background .14s ease, transform .14s ease;
}
.promo__cta:hover { background: var(--gold-light); transform: translateY(-1px); text-decoration: none; }
.promo__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #A9A7D4; cursor: pointer;
  font-size: 22px; line-height: 1; padding: 4px 9px; border-radius: 50%;
}
.promo__close:hover { color: #fff; background: rgba(255,255,255,.12); }

@media (max-width: 640px) {
  .promo__inner { gap: 8px; padding: 10px 40px 10px 16px; }
  .promo__label { font-size: .66rem; }
  .promo__text { font-size: .86rem; }
  .promo__cta { font-size: .8rem; }
}

/* --------------------------------------------------------- header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,251,242,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex; align-items: center; gap: 18px;
  min-height: 74px; padding-block: 10px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.08; }
.brand__name { font-weight: 800; font-size: 1.06rem; color: var(--navy); letter-spacing: -.02em; }
.brand__sub  { font-size: .68rem; font-weight: 700; letter-spacing: .11em;
               text-transform: uppercase; color: var(--blue); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .95rem; font-weight: 600; color: var(--navy);
  padding: .5em .72em; border-radius: 8px;
}
.nav a:hover { background: var(--gold-pale); text-decoration: none; }
.nav a[aria-current="page"] { background: var(--navy); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: 6px; }

.lang-toggle {
  display: inline-flex; border: 2px solid var(--navy); border-radius: 100px;
  overflow: hidden; background: transparent;
}
.lang-toggle button {
  font-family: var(--font); font-size: .8rem; font-weight: 800; letter-spacing: .04em;
  padding: .38em .72em; border: 0; background: transparent; color: var(--navy);
  cursor: pointer;
}
.lang-toggle button[aria-pressed="true"] { background: var(--navy); color: #fff; }

.nav-toggle {
  display: none; margin-left: auto; background: var(--navy); color: #fff;
  border: 0; border-radius: 10px; padding: .55em .8em; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: .9rem;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 22px 20px; box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .7em .8em; font-size: 1rem; }
  .header-actions { margin-left: 0; }
  .site-header__bar { position: relative; flex-wrap: wrap; }
}

/* --------------------------------------------------------- hero */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 5vw, 56px); align-items: center;
  padding-block: clamp(46px, 7vw, 86px);
}
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p { color: #D9D7F2; font-size: 1.12rem; max-width: 46ch; }

.hero-flag {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--gold); color: var(--navy);
  font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .42em .95em; border-radius: 100px; margin-bottom: 1.1rem;
}
.hero-art {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 18px;
}
.hero-art img { border-radius: 12px; }

/* next-up card inside hero */
.nextup {
  background: #fff; color: var(--body);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-lg);
}
.nextup__date {
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
}
.nextup h2 { font-size: 1.5rem; margin: .25em 0 .5em; }
.nextup p { font-size: .98rem; color: var(--body); margin-bottom: 1rem; }
.nextup__meta { font-size: .92rem; color: var(--muted); margin-bottom: 1.1rem; }
.nextup__meta strong { color: var(--navy); }

/* --------------------------------------------------------- page banner */
.page-head { color: #fff; padding-block: clamp(40px, 6vw, 70px); }
.page-head h1 { color: #fff; margin-bottom: .3em; }
.page-head p { color: #D9D7F2; font-size: 1.1rem; max-width: 62ch; margin: 0; }

.crumbs { font-size: .84rem; color: rgba(255,255,255,.68); margin-bottom: 1rem; }
.crumbs a { color: rgba(255,255,255,.86); }

/* --------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card--link { transition: transform .16s ease, box-shadow .16s ease; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .4em; }
.card p { font-size: .97rem; margin-bottom: 1em; }
.card > :last-child { margin-bottom: 0; margin-top: auto; }

.card__img {
  margin: -26px -26px 20px; border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; background: var(--gold-pale);
}
.card__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card__img--contain img { object-fit: contain; padding: 12px; background: #fff; }

.tag {
  display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .32em .7em; border-radius: 100px;
  background: var(--gold-pale); color: #8A6A00; margin-bottom: .8rem;
  align-self: flex-start;
}
.tag--new  { background: #DCF3E4; color: #14663A; }
.tag--live { background: var(--gold); color: var(--navy); }
.tag--soon { background: #E6ECF7; color: var(--blue-deep); }

/* quick-link tiles */
.tiles { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.tile {
  display: flex; flex-direction: column; gap: .4rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.tile:hover {
  text-decoration: none; transform: translateY(-3px);
  box-shadow: var(--shadow-md); border-color: var(--gold);
}
.tile__label { font-weight: 800; color: var(--navy); font-size: 1.02rem; }
.tile__note { font-size: .87rem; color: var(--muted); }

/* --------------------------------------------------------- stats */
.stats { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat { text-align: center; padding: 8px; }
.stat__num {
  font-size: clamp(2.1rem, 4.4vw, 3rem); font-weight: 800; color: var(--gold);
  line-height: 1; letter-spacing: -.03em;
}
.stat__label { font-size: .93rem; color: #C9C7E8; margin-top: .45rem; }
.section--white .stat__num, .section--cream .stat__num { color: var(--navy); }
.section--white .stat__label, .section--cream .stat__label { color: var(--muted); }

/* --------------------------------------------------------- event list */
.evlist { list-style: none; margin: 0; padding: 0; }
.evlist li {
  display: grid; grid-template-columns: 108px 1fr auto; gap: 20px; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.evlist li:last-child { border-bottom: 1px solid var(--line); }
.evlist__date {
  font-weight: 800; color: var(--navy); font-size: .95rem; letter-spacing: -.01em;
}
.evlist__date span { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.evlist__body h4 { margin: 0 0 .2em; }
.evlist__body p { margin: 0; font-size: .92rem; color: var(--muted); }
@media (max-width: 700px) {
  .evlist li { grid-template-columns: 1fr; gap: 8px; }
  .evlist li > * { grid-column: 1; }
}

/* --------------------------------------------------------- tables */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  font-size: .96rem;
}
table.data th, table.data td { padding: 13px 16px; text-align: left; vertical-align: top; }
table.data thead th {
  background: var(--navy); color: #fff; font-weight: 700; font-size: .84rem;
  letter-spacing: .06em; text-transform: uppercase;
}
table.data tbody tr + tr { border-top: 1px solid var(--line); }
table.data tbody tr:nth-child(even) { background: #FCFAF4; }
table.data td.num { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; color: var(--navy); }

/* --------------------------------------------------------- tier cards */
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.tier--feature { border: 2px solid var(--gold); box-shadow: var(--shadow-md); }
.tier__price {
  font-size: 2.15rem; font-weight: 800; color: var(--navy);
  letter-spacing: -.03em; line-height: 1; margin: .1em 0 .15em;
}
.tier__per { font-size: .86rem; color: var(--muted); font-weight: 600; }
.tier ul { list-style: none; margin: 1.1rem 0 1.4rem; padding: 0; font-size: .95rem; }
.tier li { padding-left: 1.5em; position: relative; margin-bottom: .5em; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .62em; height: .62em; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg);
}
.tier > :last-child { margin-top: auto; }

/* --------------------------------------------------------- funded amounts
   Drop a figure into <span class="fund__amt">$4,200</span> inside a card on
   the "What the PTO funded last year" section and it styles itself. */
.fund__amt {
  display: block;
  font-size: 1.9rem; font-weight: 800; color: var(--navy);
  letter-spacing: -.03em; line-height: 1; margin: 0 0 .5rem;
  font-variant-numeric: tabular-nums;
}
.fund__amt + h3 { margin-top: 0; }

/* --------------------------------------------------------- callouts */
.callout {
  background: var(--gold-pale); border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 1.75rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout h4 { margin-bottom: .4em; }

.note {
  font-size: .88rem; color: var(--muted); background: #F4F2EA;
  border: 1px dashed var(--line); border-radius: 10px; padding: 14px 18px;
}
.note p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------- people */
.people { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px;
}
.person__role {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .3rem;
}
.person__name { font-weight: 700; color: var(--navy); font-size: 1.05rem; }

/* --------------------------------------------------------- doc links */
.doclist { list-style: none; margin: 0; padding: 0; }
.doclist li { border-top: 1px solid var(--line); }
.doclist li:last-child { border-bottom: 1px solid var(--line); }
.doclist a {
  display: flex; align-items: baseline; gap: .7em; justify-content: space-between;
  padding: 15px 4px; font-weight: 600; color: var(--navy);
}
.doclist a:hover { background: var(--gold-pale); text-decoration: none; }
.doclist .ext { font-size: .74rem; font-weight: 800; letter-spacing: .09em;
                text-transform: uppercase; color: var(--muted); flex: 0 0 auto; }

/* --------------------------------------------------------- calendar embed */
.cal-frame {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
}
.cal-frame iframe { display: block; width: 100%; height: 620px; border: 0; }
@media (max-width: 700px) { .cal-frame iframe { height: 480px; } }

/* --------------------------------------------------------- calendar toggle */
.cal-toggle { margin-top: 2rem; }
.cal-toggle__btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--navy);
  background: #fff; border: 2px solid var(--navy); border-radius: 100px;
  padding: .72em 1.4em; cursor: pointer;
  transition: background .14s ease, color .14s ease;
}
.cal-toggle__btn:hover { background: var(--navy); color: #fff; }
.cal-toggle__chev { display: inline-block; transition: transform .18s ease; font-size: .85em; }
.cal-toggle__btn[aria-expanded="true"] .cal-toggle__chev { transform: rotate(90deg); }
.cal-toggle__panel { margin-top: 1.4rem; }
.cal-toggle__panel[hidden] { display: none; }

/* --------------------------------------------------------- photo gallery */
.gal-jump { font-size: .95rem; font-weight: 600; color: var(--muted); margin: 0; }
.gal-jump a { color: var(--navy); }

.gal {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.gal__item {
  display: block; position: relative; overflow: hidden;
  border-radius: 12px; background: var(--gold-pale);
  box-shadow: var(--shadow-sm); cursor: zoom-in;
  transition: transform .16s ease, box-shadow .16s ease;
}
.gal__item img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
}
.gal__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gal__item:hover img { opacity: .93; }

@media (max-width: 560px) {
  .gal { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
}

/* --------------------------------------------------------- lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,10,40,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 5vw;
}
.lb[hidden] { display: none; }
.lb__figure { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.lb__figure img {
  max-width: 100%; max-height: 82vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb__figure figcaption {
  color: #DCDAF4; font-size: .95rem; margin-top: 1rem;
  max-width: 60ch; margin-inline: auto;
}
.lb__close, .lb__nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff;
  border: 0; border-radius: 50%; cursor: pointer; line-height: 1;
  font-family: var(--font); transition: background .14s ease;
}
.lb__close:hover, .lb__nav:hover { background: rgba(255,255,255,.28); }
.lb__close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 30px; }
.lb__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 34px; }
.lb__prev { left: 14px; }
.lb__next { right: 14px; }
@media (max-width: 620px) {
  .lb__nav { width: 44px; height: 44px; font-size: 28px; }
  .lb__figure figcaption { font-size: .88rem; }
}

/* --------------------------------------------------------- footer */
.site-footer { background: var(--navy); color: #B9B7DC; padding: clamp(40px, 6vw, 64px) 0 28px; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em;
                  text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #DCDAF4; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.footer-grid li { margin-bottom: .55em; }
.footer-brand img { width: 190px; margin-bottom: 14px; border-radius: 8px; }
.footer-bottom {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem; color: #9998C4;
}

/* --------------------------------------------------------- misc */
.qr { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.qr img { width: 128px; border-radius: 10px; background: #fff; padding: 8px;
          border: 1px solid var(--line); }

.mark-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.mark-row img { width: 96px; }

@media print {
  .site-header, .site-footer, .nav-toggle, .lang-toggle { display: none !important; }
  body { background: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .btn:hover, .card--link:hover, .tile:hover { transform: none; }
}
