/* ==========================================================================
   Our ABC Academy — 2026 design system
   Palette taken from the school seal: forest green and vermilion from the
   figures, marigold from the ring. Signature motif: the gamosa border.
   ========================================================================== */

:root {
  --forest-950: #06231a;
  --forest-900: #0a2e23;
  --forest-800: #0f3d2e;
  --forest-700: #155240;
  --forest-500: #1f7a58;
  --leaf: #2f9a6c;
  --red: #c4232b;
  --red-700: #9e1a21;
  --gold: #f2c230;
  --gold-600: #d9a514;
  --cream: #fbf7ef;
  --cream-2: #f4ede0;
  --sand: #e9dfcb;
  --ink: #13201a;
  --ink-2: #3a4a42;
  --mute: #66776e;
  --line: rgba(19, 32, 26, .12);
  --line-2: rgba(19, 32, 26, .2);
  --white: #fff;

  --display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --max: 1240px;
  --pad: clamp(20px, 4.5vw, 64px);
  --sec: clamp(64px, 8vw, 120px);
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(10, 46, 35, .25);
  --shadow-lg: 0 30px 60px -20px rgba(10, 46, 35, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* The gamosa: white cloth, red woven borders, a repeating red motif. */
  --gamosa: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='18' viewBox='0 0 36 18'%3E%3Crect width='36' height='18' fill='%23fbf7ef'/%3E%3Crect y='0' width='36' height='3' fill='%23c4232b'/%3E%3Crect y='15' width='36' height='3' fill='%23c4232b'/%3E%3Cpath d='M18 5l4 4-4 4-4-4z' fill='%23c4232b'/%3E%3Cpath d='M4 8h4v2H4zM28 8h4v2h-4z' fill='%23c4232b'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body); font-size: 17px; line-height: 1.65; color: var(--ink);
  background: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--forest-900); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 12px; top: 12px; z-index: 999; background: var(--gold); color: var(--forest-900);
  padding: 10px 16px; border-radius: 999px; font-weight: 600; transform: translateY(-200%); transition: transform .2s; }
.skip:focus { transform: none; }

/* ── Type ──────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ''; width: 22px; height: 3px; border-radius: 2px; background: currentColor; }
.eyebrow.on-dark { color: var(--gold); }
h1, h2, h3, .display { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; line-height: 1.05;
  font-variation-settings: 'opsz' 96, 'SOFT' 50; }
h2 { font-size: clamp(34px, 4.6vw, 60px); margin-top: 14px; }
h2 em, h1 em { font-style: italic; font-weight: 500; color: var(--red); }
.on-dark h2 em, .on-dark h1 em { color: var(--gold); }
h3 { font-size: clamp(22px, 2.1vw, 28px); line-height: 1.15; }
.lede { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.6; color: var(--ink-2); max-width: 60ch; margin-top: 18px; }
.on-dark .lede { color: rgba(251, 247, 239, .78); }
.prose p { color: var(--ink-2); max-width: 64ch; }
.prose p + p { margin-top: 1em; }
.prose strong { color: var(--ink); }
.head { margin-bottom: clamp(36px, 4vw, 56px); }
.head.center { text-align: center; }
.head.center .lede { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15.5px; line-height: 1; padding: 15px 24px; border-radius: 999px;
  border: 2px solid transparent; transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold { background: var(--gold); color: var(--forest-900); box-shadow: 0 8px 20px -8px rgba(217, 165, 20, .7); }
.btn-gold:hover { background: #ffd24a; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-700); }
.btn-forest { background: var(--forest-800); color: var(--cream); }
.btn-forest:hover { background: var(--forest-700); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--forest-800); }
.btn-glass { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255, 255, 255, .24); }
.btn-wa { background: #1faa55; color: #fff; }
.btn-wa:hover { background: #178a45; }
.link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--forest-700);
  border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: gap .2s var(--ease);
}
.link:hover { gap: 13px; }
.link svg { width: 16px; height: 16px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Gamosa band ───────────────────────────────────────────────────────── */
.gamosa { height: 18px; background: var(--gamosa) repeat-x center / auto 18px; }
.gamosa.thin { height: 12px; background-size: auto 12px; }

/* ── Top bar & header ──────────────────────────────────────────────────── */
.topbar {
  background: var(--forest-950); color: rgba(251, 247, 239, .72); font-size: 13.5px;
  position: relative; z-index: 60;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a:hover { color: var(--gold); }
.topbar .l, .topbar .r { display: flex; align-items: center; gap: 20px; }
.topbar .pill { border: 1px solid rgba(251, 247, 239, .25); padding: 3px 12px; border-radius: 999px; }
.topbar .soc { display: flex; gap: 12px; }
.topbar .soc svg { width: 15px; height: 15px; fill: currentColor; }

.header {
  position: sticky; top: 0; z-index: 50; transition: background .3s, box-shadow .3s, color .3s;
  background: rgba(251, 247, 239, .92); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line);
}
.header.over { position: fixed; left: 0; right: 0; top: 40px; background: transparent; border-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none; color: #fff; }
.header.over.solid { top: 0; background: rgba(251, 247, 239, .95); color: var(--ink); border-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(0, 0, 0, .3); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 54px; height: 54px; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .18)); }
.brand .t1, .brand .t2 { display: block; }
.brand .t1 { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -.01em; line-height: 1; }
.brand .t2 { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-top: 5px; }
.menu { display: flex; align-items: center; gap: 4px; }
.menu a { white-space: nowrap; font-weight: 500; font-size: 15.5px; padding: 10px 13px; border-radius: 999px; transition: background .2s; }
.menu a:hover { background: rgba(127, 127, 127, .14); }
.menu a[aria-current] { background: var(--forest-800); color: var(--cream); }
.header.over:not(.solid) .menu a[aria-current] { background: rgba(255, 255, 255, .2); color: #fff; }
.header .cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid currentColor; opacity: .9;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s, opacity .2s; }
.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 45; background: var(--forest-900); color: var(--cream);
  padding: 120px var(--pad) 40px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.menu-open .drawer { opacity: 1; visibility: visible; transform: none; }
.menu-open .header, .menu-open .header.over { color: var(--cream); background: transparent; border-color: transparent; box-shadow: none; }
.drawer a.big { font-family: var(--display); font-size: clamp(30px, 8vw, 44px); font-weight: 600; padding: 6px 0;
  border-bottom: 1px solid rgba(251, 247, 239, .12); display: flex; justify-content: space-between; align-items: center; }
.drawer a.big:hover { color: var(--gold); }
.drawer .meta { margin-top: 28px; display: grid; gap: 10px; color: rgba(251, 247, 239, .72); }
.drawer .row { margin-top: 24px; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden;
  background: var(--forest-900); isolation: isolate; }
.hero .slides { position: absolute; inset: 0; z-index: -2; }
.hero .slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  animation: slide 28s infinite; transform: scale(1.08); }
.hero .slides img:nth-child(1) { animation-delay: 0s; }
.hero .slides img:nth-child(2) { animation-delay: 7s; }
.hero .slides img:nth-child(3) { animation-delay: 14s; }
.hero .slides img:nth-child(4) { animation-delay: 21s; }
@keyframes slide {
  0% { opacity: 0; transform: scale(1.08); }
  4% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 35, 26, .55) 0%, rgba(6, 35, 26, .1) 30%, rgba(6, 35, 26, .35) 55%, rgba(6, 35, 26, .92) 100%); }
.hero .wrap { width: 100%; padding-top: 180px; padding-bottom: clamp(40px, 6vw, 72px); }
.hero h1 { font-size: clamp(48px, 8.4vw, 124px); line-height: .95; max-width: 13ch; margin-top: 18px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .25); }
.hero .lede { color: rgba(255, 255, 255, .88); max-width: 50ch; }
.hero .row { margin-top: 34px; }
.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: clamp(40px, 6vw, 72px);
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .22); flex-wrap: wrap; }
.hero-foot .facts { display: flex; gap: clamp(18px, 3.5vw, 48px); flex-wrap: wrap; }
.hero-foot .fact b { display: block; font-family: var(--display); font-size: clamp(26px, 2.6vw, 36px); font-weight: 600; color: var(--gold); line-height: 1; }
.hero-foot .fact span { font-size: 13.5px; color: rgba(255, 255, 255, .78); }
.hero-caption { font-size: 12.5px; color: rgba(255, 255, 255, .7); display: flex; align-items: center; gap: 8px; }
.hero-caption::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ── Ticker ────────────────────────────────────────────────────────────── */
.ticker { background: var(--gold); color: var(--forest-900); overflow: hidden; white-space: nowrap; font-weight: 600; }
.ticker .track { display: inline-flex; gap: 48px; padding: 14px 0; animation: marquee 40s linear infinite; }
.ticker:hover .track { animation-play-state: paused; }
.ticker a { display: inline-flex; align-items: center; gap: 12px; }
.ticker a::before { content: '✦'; color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ──────────────────────────────────────────────────────────── */
.sec { padding: var(--sec) 0; }
.sec.alt { background: var(--cream-2); }
.sec.dark { background: var(--forest-900); color: var(--cream); }
.sec.dark .prose p, .sec.dark .lede, .sec.dark .ticks li { color: rgba(251, 247, 239, .82); }
.sec.dark h2 em { color: var(--gold); }
.phero h1 em { color: var(--gold); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.split.rev > :first-child { order: 2; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: var(--white); border-radius: var(--r); padding: 28px 24px; border: 1px solid var(--line);
  position: relative; overflow: hidden; }
.stat::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: var(--gamosa) repeat-x center / auto 12px; }
.stat b { display: block; font-family: var(--display); font-size: clamp(40px, 4.4vw, 58px); font-weight: 600; line-height: 1;
  color: var(--forest-800); letter-spacing: -.03em; }
.stat span { display: block; font-weight: 600; margin-top: 10px; }
.stat small { color: var(--mute); font-size: 14px; }

/* Photo frame with caption */
.photo { position: relative; border-radius: var(--r); overflow: hidden; background: var(--sand); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption { position: absolute; left: 12px; bottom: 12px; right: 12px; font-size: 13px; color: #fff;
  background: rgba(6, 35, 26, .66); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: 999px; width: fit-content; max-width: calc(100% - 24px); }
.photo.tall { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 16 / 10; }
.photo.sq { aspect-ratio: 1; }
.collage { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; aspect-ratio: 1 / 1; }
.collage .photo:first-child { grid-row: span 2; }

/* Stories bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 16px; }
.story { position: relative; border-radius: var(--r); overflow: hidden; color: #fff; display: flex; align-items: flex-end;
  isolation: isolate; background: var(--forest-800); }
.story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.story::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6, 35, 26, .05) 15%, rgba(6, 35, 26, .55) 50%, rgba(6, 35, 26, .94) 100%); }
.story:hover img { transform: scale(1.06); }
.story .in { padding: clamp(18px, 2vw, 28px); }
.story .eyebrow { color: var(--gold); }
.story h3 { margin-top: 8px; font-size: clamp(24px, 2.4vw, 34px); }
.story p { margin-top: 8px; font-size: 15px; color: rgba(255, 255, 255, .85); max-width: 42ch; }
.story .go { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
  color: var(--forest-900); display: grid; place-items: center; transform: scale(.8); opacity: 0; transition: all .3s var(--ease); }
.story .go svg { width: 18px; height: 18px; }
.story:hover .go, .story:focus-visible .go { transform: none; opacity: 1; }
.bento .story:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.bento .story:nth-child(2) { grid-column: span 5; }
.bento .story:nth-child(3) { grid-column: span 5; }
.bento .story:nth-child(4) { grid-column: span 4; }
.bento .story:nth-child(5) { grid-column: span 4; }
.bento .story:nth-child(6) { grid-column: span 4; }

/* Stage journey */
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: s; }
.stage { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.stage:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stage .photo { border-radius: 0; aspect-ratio: 4 / 3; }
.stage .in { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.stage .n { width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 700;
  display: grid; place-items: center; margin-top: -36px; border: 3px solid #fff; position: relative; }
.stage h3 { font-size: 22px; }
.stage .cls { font-size: 14px; color: var(--mute); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.sec.alt .card { background: var(--cream); }
.sec.dark .card { background: rgba(255, 255, 255, .05); border-color: rgba(251, 247, 239, .14); }
.card .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--cream-2); color: var(--red);
  display: grid; place-items: center; margin-bottom: 16px; }
.sec.dark .card .ic { background: rgba(242, 194, 48, .14); color: var(--gold); }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 15.5px; }
.sec.dark .card p { color: rgba(251, 247, 239, .75); }
.card .num { font-family: var(--display); font-size: 44px; color: var(--red); line-height: 1; font-weight: 600; margin-bottom: 8px; }

/* Timeline (news) */
.timeline { position: relative; display: grid; gap: 24px; }
.item { display: grid; grid-template-columns: 150px 1fr; gap: clamp(20px, 3vw, 48px); padding: 28px 0; border-top: 1px solid var(--line); }
.item time { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--forest-700); line-height: 1.1; }
.item time small { display: block; font-family: var(--body); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-top: 6px; }
.item h3 { font-size: clamp(24px, 2.4vw, 32px); }
.item p { color: var(--ink-2); margin-top: 8px; max-width: 62ch; }
.item .pics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.item .pics .photo { aspect-ratio: 4 / 3; border-radius: 12px; cursor: zoom-in; }

.news-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nm { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; display: block; }
.nm:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.nm .photo { border-radius: 0; aspect-ratio: 16 / 10; }
.nm .in { padding: 18px 20px 22px; }
.nm .tag { font-size: 12.5px; font-weight: 600; color: var(--red); letter-spacing: .08em; text-transform: uppercase; }
.nm h3 { font-size: 21px; margin-top: 6px; }

/* CTA band */
.band { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.band .wrap { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px);
  display: grid; grid-template-columns: 1.3fr auto; gap: 32px; align-items: center; }
.band h2 { color: #fff; margin: 0; }
.band h2 em { color: var(--gold); }
.band p { color: rgba(255, 255, 255, .85); margin-top: 14px; max-width: 54ch; }
.band .seal { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 420px; opacity: .08; pointer-events: none; }

/* Page hero (inner pages) */
.phero { position: relative; color: #fff; isolation: isolate; overflow: hidden; background: var(--forest-900);
  padding: calc(84px + 40px + clamp(60px, 9vw, 130px)) 0 clamp(48px, 6vw, 80px); }
.phero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.phero::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 35, 26, .6), rgba(6, 35, 26, .55) 40%, rgba(6, 35, 26, .92)); }
.phero h1 { font-size: clamp(44px, 7vw, 96px); max-width: 16ch; margin-top: 14px; }
.phero .lede { color: rgba(255, 255, 255, .86); }
.crumbs { font-size: 14px; color: rgba(255, 255, 255, .75); display: flex; gap: 8px; }
.crumbs a:hover { color: var(--gold); }

/* Sub-navigation on long pages */
.subnav { position: sticky; top: 84px; z-index: 30; background: rgba(251, 247, 239, .95); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.subnav .wrap { display: flex; gap: 6px; overflow-x: auto; padding-top: 10px; padding-bottom: 10px; scrollbar-width: none; }
.subnav .wrap::-webkit-scrollbar { display: none; }
.subnav a { flex-shrink: 0; font-size: 14.5px; font-weight: 500; padding: 8px 15px; border-radius: 999px; color: var(--ink-2); }
.subnav a:hover { background: var(--cream-2); }
.subnav a.on { background: var(--forest-800); color: var(--cream); }

/* Lists */
.ticks { display: grid; gap: 12px; margin-top: 20px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.ticks li::before { content: ''; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--forest-800) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2c230' stroke-width='3'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center / 14px no-repeat; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { font-size: 14px; font-weight: 500; padding: 7px 14px; border-radius: 999px; background: var(--cream-2); border: 1px solid var(--line); }
button.chip { cursor: pointer; transition: all .2s; }
button.chip:hover { border-color: var(--forest-800); }
button.chip[aria-pressed='true'] { background: var(--forest-800); border-color: var(--forest-800); color: var(--cream); }

/* Gallery */
.masonry { columns: 4 260px; column-gap: 14px; }
.masonry figure { break-inside: avoid; margin-bottom: 14px; border-radius: 14px; overflow: hidden; position: relative; cursor: zoom-in; background: var(--sand); }
.masonry figure[hidden] { display: none; }
.masonry img { width: 100%; transition: transform .6s var(--ease); }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px; font-size: 13.5px; color: #fff;
  background: linear-gradient(transparent, rgba(6, 35, 26, .85)); opacity: 0; transition: opacity .3s; }
.masonry figure:hover figcaption, .masonry figure:focus-visible figcaption { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(6, 20, 15, .95); display: grid;
  grid-template-rows: 1fr auto; place-items: center; padding: 60px 70px 24px; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: calc(100svh - 150px); width: auto; border-radius: 10px; }
.lightbox p { color: rgba(255, 255, 255, .85); padding-top: 16px; text-align: center; font-size: 15px; }
.lightbox button { position: absolute; width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff;
  display: grid; place-items: center; transition: background .2s; }
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox .x { top: 16px; right: 16px; }
.lightbox .prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 12px; top: 50%; transform: translateY(-50%); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; font-weight: 600; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px;
  border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; font-size: 20px; font-weight: 500; color: var(--red); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 22px 22px; color: var(--ink-2); max-width: 70ch; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: st; }
.steps .card { position: relative; padding-top: 30px; }
.steps .card::before { counter-increment: st; content: counter(st); font-family: var(--display); font-size: 64px; font-weight: 600;
  color: var(--gold); line-height: 1; display: block; margin-bottom: 10px; }

/* Forms */
.form { background: var(--white); border-radius: var(--r); padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: 12px;
  background: var(--cream); font-size: 16px; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest-500); box-shadow: 0 0 0 4px rgba(31, 122, 88, .15); }
.form .row { margin-top: 22px; }
.form .note { font-size: 13.5px; color: var(--mute); margin-top: 14px; }
.form .msg { padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 15px; }
.form .msg.err { background: #fde8e8; color: var(--red-700); }
.form .msg[hidden] { display: none; }

/* Contact tiles */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.tile { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s var(--ease); }
a.tile:hover { border-color: var(--forest-500); transform: translateY(-2px); }
.tile .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--forest-800); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.tile .ic svg { width: 22px; height: 22px; }
.tile small { display: block; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.tile b { display: block; font-weight: 600; margin-top: 2px; }

/* Tables */
.table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.table th, .table td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15.5px; }
.table tr:last-child th, .table tr:last-child td { border-bottom: 0; }
.table th { width: 40%; font-weight: 600; color: var(--ink); background: var(--cream-2); }
.table td { color: var(--ink-2); }
.table-wrap { overflow-x: auto; border-radius: var(--r); }
.notice { border-left: 4px solid var(--gold); background: var(--white); padding: 20px 24px; border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink-2); }
.notice b { color: var(--ink); }

/* Footer */
.footer { background: var(--forest-950); color: rgba(251, 247, 239, .72); }
.footer .wrap { padding-top: clamp(56px, 7vw, 90px); }
.footer .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(251, 247, 239, .12); }
.footer .brand { color: var(--cream); }
.footer .about { margin-top: 18px; max-width: 36ch; font-size: 15px; }
.footer h4 { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer li { margin-bottom: 10px; font-size: 15px; }
.footer a:hover { color: var(--gold); }
.footer .soc { display: flex; gap: 10px; margin-top: 22px; }
.footer .soc a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(251, 247, 239, .2); display: grid; place-items: center; transition: all .2s; }
.footer .soc a:hover { background: var(--gold); color: var(--forest-900); border-color: var(--gold); }
.footer .soc svg { width: 17px; height: 17px; fill: currentColor; }
.footer .base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 28px; font-size: 13.5px; }

.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 60px; height: 60px; border-radius: 50%; background: #1faa55; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(31, 170, 85, .7); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* Reveal */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; } .rv.d2 { transition-delay: .16s; } .rv.d3 { transition-delay: .24s; } .rv.d4 { transition-delay: .32s; }
.no-js .rv { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero .slides img:first-child { opacity: 1; transform: none; }
  .rv { opacity: 1; transform: none; }
  .ticker .track { white-space: normal; flex-wrap: wrap; justify-content: center; padding: 14px var(--pad); gap: 12px 32px; }
  .ticker .track a:nth-child(n+5) { display: none; }
}

@media (max-width: 1100px) {
  .menu { display: none; }
  .burger { display: inline-flex; }
  .header .cta .btn-ghost { display: none; }
  .journey { grid-template-columns: repeat(3, 1fr); }
  .footer .grid { grid-template-columns: 1fr 1fr; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .split, .band .wrap { grid-template-columns: 1fr; }
  .split.rev > :first-child { order: 0; }
  .stats, .cards, .news-mini, .steps { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .bento .story:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .bento .story:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .item { grid-template-columns: 1fr; gap: 10px; }
  .topbar .hide-sm { display: none; }
  .tiles { grid-template-columns: 1fr; }
  .header .cta .btn-gold { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cards, .cards.two, .cards.four, .news-mini, .steps, .journey, .form .grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 16px; }
  .bento { grid-template-columns: 1fr; }
  .bento .story:nth-child(1) { grid-column: span 1; }
  .footer .grid { grid-template-columns: 1fr; }
  .brand .t2 { display: none; }
  .brand img { width: 46px; height: 46px; }
  .header .wrap { height: 72px; }
  .item .pics { grid-template-columns: 1fr 1fr; }
  .lightbox { padding: 60px 12px 16px; }
  .lightbox .prev, .lightbox .next { top: auto; bottom: 16px; transform: none; }
  .table th, .table td { display: block; width: 100%; }
  .table th { border-bottom: 0; padding-bottom: 4px; }
  .collage { aspect-ratio: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .collage .photo:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
  .collage .photo { aspect-ratio: 1; }
}
@media print {
  .topbar, .header, .drawer, .wa-float, .ticker, .subnav, .band, .footer .soc { display: none !important; }
  .phero { padding: 20px 0; background: none; color: #000; }
  .phero > img, .phero::after { display: none; }
  .phero h1, .phero .lede, .crumbs { color: #000; }
  body { background: #fff; }
}
