:root {
  color-scheme: light only;
  --red: #d71920;
  --red-dark: #a90f16;
  --ink: #111317;
  --muted: #6d737c;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f4f4f2;
  --green: #25d366;
  --page: min(1200px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { font: inherit; -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: -64px;
  left: 12px;
  padding: 10px 14px;
  background: #fff;
  color: #111;
}
.skip-link:focus { top: 12px; }

.top-bar {
  min-height: 41px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.top-bar a { text-decoration: none; }
.top-contact { display: inline-flex; align-items: center; gap: 7px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 88px;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.brand-link { display: inline-flex; align-items: center; text-decoration: none; }
.brand-link img { width: auto; height: 58px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative;
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #202124;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active { color: var(--red); background: rgba(215,25,32,.06); outline: none; }
.site-nav a.active::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 4px;
  left: 18px;
  height: 2px;
  background: var(--red);
}
.site-nav a.contact-link {
  padding-inline: 24px;
  margin-left: 6px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 4px 12px rgba(215,25,32,.28);
}

.hero {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #f80000, #ff3333);
  isolation: isolate;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 3px; background: #fff; }
.hero h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 820px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.96);
  font-size: 16px;
  line-height: 1.5;
}
.hero-aside {
  min-width: 220px;
  padding: 18px 0 2px 24px;
  border-left: 1px solid rgba(255,255,255,.42);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-aside strong { display: block; color: #fff; font-size: 16px; letter-spacing: .04em; }

.intro {
  width: var(--page);
  margin: 0 auto;
  padding: 94px 0 68px;
  display: none;
  grid-template-columns: minmax(0, .72fr) minmax(300px, .28fr);
  gap: 80px;
  align-items: end;
}
.section-label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro h2,
.moments-head h2,
.archive-head h2,
.cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
}
.intro-copy { margin: 0; color: var(--muted); font-size: 17px; }

.event-index {
  width: var(--page);
  margin: 36px auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.event-tab {
  position: relative;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17,19,23,.07);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.event-tab:hover {
  border-color: rgba(215,25,32,.45);
  box-shadow: 0 10px 24px rgba(17,19,23,.11);
  transform: translateY(-2px);
}
.event-tab:focus-visible {
  outline: 3px solid rgba(215,25,32,.25);
  outline-offset: 2px;
  border-color: var(--red);
}
.event-tab .number {
  min-width: 32px;
  min-height: 28px;
  margin-bottom: 15px;
  padding: 5px 9px;
  border-radius: 7px;
  background: #f1f2f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #747982;
  font-size: 11px;
  font-weight: 800;
}
.event-tab strong { display: block; font-size: 18px; line-height: 1.15; }
.event-tab small { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
.event-tab.active {
  border-color: var(--red);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 10px 24px rgba(215,25,32,.24);
}
.event-tab.active .number,
.event-tab.active strong,
.event-tab.active small { color: #fff; }
.event-tab.active .number { background: rgba(255,255,255,.18); }

.story-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  overflow: hidden;
}
.story-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .31fr) minmax(0, .69fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}
.story-number { color: var(--red); font-size: 13px; font-weight: 850; letter-spacing: .18em; }
.story-copy h2 {
  margin: 24px 0 14px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .96;
  letter-spacing: -.05em;
}
.story-meta { margin: 0 0 28px; color: rgba(255,255,255,.6); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.story-description { max-width: 430px; margin: 0; color: rgba(255,255,255,.78); font-size: 16px; }
.story-mosaic {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(220px, .82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.story-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #272a2f;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.story-photo:first-child { grid-row: 1 / span 2; }
.story-photo .photo-open img { width: 100%; height: 100%; object-fit: cover; transition: opacity .24s ease, transform .55s ease; }
.story-photo:hover .photo-open img { transform: scale(1.025); }
.story-photo::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.story-photo:hover::after,
.story-photo:focus-within::after { opacity: 1; }

.moments {
  width: var(--page);
  margin: 0 auto;
  padding: 102px 0 76px;
}
.moments-head {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, .35fr);
  gap: 60px;
  align-items: end;
}
.moments-note { margin: 0; color: var(--muted); }
.moments-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 14px;
}
.moment-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 12px;
  background: #eceeed;
  box-shadow: 0 8px 22px rgba(0,0,0,.09);
}
.moment-card:nth-child(1) { grid-column: span 8; grid-row: span 2; min-height: 590px; }
.moment-card:nth-child(2),
.moment-card:nth-child(3) { grid-column: span 4; min-height: 288px; }
.moment-card:nth-child(n+4):nth-child(-n+6) { grid-column: span 4; min-height: 340px; }
.moment-card:nth-child(7),
.moment-card:nth-child(8) { grid-column: span 6; min-height: 410px; }
.moment-card:nth-child(n+9) { grid-column: span 3; min-height: 280px; }
.moment-card .photo-open img { width: 100%; height: 100%; object-fit: cover; transition: opacity .24s ease, transform .5s ease, filter .3s ease; }
.moment-card:hover .photo-open img { transform: scale(1.02); filter: brightness(.8); }
.moment-caption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
}
.moment-card:hover .moment-caption,
.moment-card:focus-within .moment-caption { opacity: 1; transform: none; }
.archive-toggle-wrap { margin-top: 46px; display: flex; justify-content: center; }
.archive-toggle,
.load-more {
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.archive-toggle:hover,
.archive-toggle:focus-visible,
.load-more:hover,
.load-more:focus-visible { background: var(--ink); color: #fff; outline: none; }

.archive[hidden] { display: none; }
.archive { padding: 88px 0; border-top: 1px solid var(--line); background: var(--soft); }
.archive-inner { width: var(--page); margin: 0 auto; }
.archive-head {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
}
.archive-status { max-width: 400px; margin: 0; color: var(--muted); text-align: right; }
.archive-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.archive-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: #dedfdd;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}
.archive-card .photo-open img { width: 100%; height: 100%; object-fit: cover; transition: opacity .24s ease, transform .35s ease; }
.archive-card:hover .photo-open img { transform: scale(1.025); }
.story-photo .photo-open img,
.moment-card .photo-open img,
.archive-card .photo-open img { opacity: 0; }
.story-photo.is-loaded .photo-open img,
.moment-card.is-loaded .photo-open img,
.archive-card.is-loaded .photo-open img { opacity: 1; }
.is-loading .photo-open::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, #e4e5e3 24%, #f4f5f3 38%, #e4e5e3 52%);
  background-size: 220% 100%;
  animation: gallery-skeleton 1.25s ease-in-out infinite;
}
.is-error .photo-open::after {
  content: "Photo unavailable · Tap to retry";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 20px;
  display: grid;
  place-items: center;
  color: #6d7178;
  background: #eceeeb;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}
@keyframes gallery-skeleton {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}
.photo-open {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.photo-open:focus-visible { outline: 3px solid var(--red); outline-offset: -4px; }
.photo-download {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transform: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .18s ease, transform .18s ease;
}
.photo-download::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 6px;
  background: rgba(17,17,17,.72);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
}
.photo-download svg { position: relative; z-index: 1; width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
@media (hover: hover) and (pointer: fine) {
  .photo-download { opacity: 0; transform: translateY(-2px); }
  .story-photo:hover .photo-download,
  .story-photo:focus-within .photo-download,
  .moment-card:hover .photo-download,
  .moment-card:focus-within .photo-download,
  .archive-card:hover .photo-download,
  .archive-card:focus-within .photo-download,
  .photo-download:focus-visible { opacity: 1; transform: none; }
}
.photo-download:hover::before { background: var(--red); border-color: var(--red); }
.photo-download:active::before { transform: scale(.94); }
.photo-download:focus-visible { opacity: 1; transform: none; outline: 2px solid #fff; outline-offset: -2px; box-shadow: 0 0 0 2px var(--red); }
@media (max-width: 760px), (hover: none) and (pointer: coarse) {
  .photo-download { top: 6px; right: 6px; opacity: 1; transform: none; }
}
.load-more-wrap { margin-top: 30px; display: flex; justify-content: center; }

.cta {
  width: var(--page);
  margin: 0 auto 96px;
  padding: 62px;
  border-radius: 16px;
  color: #fff;
  background: var(--red);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
}
.cta p { max-width: 640px; margin: 14px 0 0; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cta a {
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.cta a.primary { background: #fff; color: var(--red); }

footer { padding: 36px 24px; border-top: 1px solid var(--line); background: #fff; color: #555b63; }
.footer-inner { width: min(1200px, 100%); margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--red); outline: none; }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  padding: 24px;
  background: rgba(5,7,10,.97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: block;
}
.lightbox-stage {
  position: relative;
  width: 100%;
  height: calc(100vh - 48px);
  height: calc(100dvh - 48px);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.lightbox-stage img {
  display: block;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 96px);
  max-height: calc(100dvh - 96px);
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  background: #090a0c;
  box-shadow: 0 22px 70px rgba(0,0,0,.48);
  opacity: 0;
  transition: opacity .2s ease;
}
.lightbox-stage.is-ready img { opacity: 1; }
.lightbox-download {
  position: fixed;
  z-index: 4;
  left: 24px;
  bottom: 22px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(16,18,22,.82);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.lightbox-download:hover,
.lightbox-download:focus-visible { background: var(--red); outline: 2px solid #fff; outline-offset: 2px; }
.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(20,22,26,.78);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--red); border-color: var(--red); }
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
#lightbox-prev { left: 24px; }
#lightbox-next { right: 24px; }
.lightbox-close {
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 24px;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-counter {
  position: fixed;
  z-index: 4;
  bottom: 33px;
  left: 50%;
  min-width: 72px;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(16,18,22,.72);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  transform: translateX(-50%);
}
.lightbox-status,
.lightbox-retry {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.lightbox-status {
  min-width: 180px;
  padding: 14px 18px 14px 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(20,22,26,.82);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.lightbox-stage.is-loading .lightbox-status::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 17px;
  height: 17px;
  margin-top: -10px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lightbox-spin .75s linear infinite;
}
.lightbox-retry {
  top: calc(50% + 58px);
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.lightbox-retry[hidden],
.lightbox-status[hidden] { display: none; }
@keyframes lightbox-spin { to { transform: rotate(360deg); } }

.loading {
  min-height: 280px;
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  :root { --page: min(100% - 40px, 1200px); }
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    padding: 100px 20px 20px;
    border: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 10px;
  }
  .site-nav a.active::after { display: none; }
  .site-nav a.contact-link { margin: 8px 0 0; }
  .hero-inner { grid-template-columns: 1fr; align-content: end; gap: 28px; }
  .hero-aside { min-width: 0; max-width: 360px; }
  .intro { grid-template-columns: 1fr; gap: 28px; }
  .event-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-shell { padding: 30px; }
  .story-inner { grid-template-columns: 1fr; }
  .story-copy { max-width: 720px; }
  .story-mosaic { min-height: 560px; }
  .moments-head { grid-template-columns: 1fr; gap: 20px; }
  .moment-card:nth-child(n+9) { grid-column: span 6; }
  .archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 30px); }
  .top-bar {
    min-height: 35px;
    padding: 8px 12px;
    gap: 18px;
    font-size: 12px;
    line-height: 19.2px;
    white-space: nowrap;
  }
  .top-contact { gap: 4px; }
  .status-dot { width: 7px; height: 7px; }
  .site-header { min-height: 76px; padding: 12px 16px; }
  .brand-link img { height: 52px; }
  .hero { min-height: 160px; }
  .hero-inner {
    width: 100%;
    min-height: 160px;
    padding: 12px;
  }
  .eyebrow { display: none; }
  .hero h1 {
    max-width: 340px;
    margin: 0 auto;
    font-size: 23px;
    line-height: 1.05;
    letter-spacing: -.02em;
  }
  .hero-copy {
    display: block;
    max-width: 350px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
  }
  .hero-aside { display: none; }
  .intro { display: none; }
  .event-index {
    margin: 16px auto;
    padding-bottom: 8px;
    border: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .event-tab {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--line) !important;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(17,19,23,.08);
    grid-column: auto !important;
    scroll-snap-align: start;
    transform: none;
  }
  .event-tab::after,
  .event-tab .number,
  .event-tab small { display: none; }
  .event-tab strong { color: var(--ink); font-size: 12px; line-height: 1; white-space: nowrap; }
  .event-tab.active {
    border-color: var(--red) !important;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: 0 5px 14px rgba(215,25,32,.22);
  }
  .event-tab.active strong { color: #fff; }
  .story-shell {
    width: 100%;
    padding: 0 0 42px;
    border-radius: 0;
    color: var(--ink);
    background: #fff;
    box-shadow: none;
    overflow: visible;
  }
  .story-inner { width: var(--page); display: block; }
  .story-copy { display: none; }
  .story-mosaic {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .story-photo,
  .story-photo:first-child {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: var(--photo-ratio, 4 / 3);
    border: 6px solid #fff;
    border-left: 3px solid var(--red);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
  }
  .story-photo .photo-open img,
  .moment-card .photo-open img,
  .archive-card .photo-open img { object-fit: contain; background: #f2f3f4; }
  .moments { padding: 28px 0 42px; }
  .moments-head { display: none; }
  .intro h2, .moments-head h2, .archive-head h2, .cta h2 { font-size: 34px; }
  .moments-grid { grid-template-columns: 1fr; gap: 12px; }
  .moment-card,
  .moment-card:nth-child(n) {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: var(--photo-ratio, 4 / 3);
    border: 6px solid #fff;
    border-left: 3px solid var(--red);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
  }
  .moment-caption { opacity: 1; transform: none; font-size: 9px; text-shadow: 0 1px 5px rgba(0,0,0,.8); }
  .archive { padding: 60px 0; }
  .archive-head { align-items: flex-start; flex-direction: column; }
  .archive-status { text-align: left; }
  .archive-grid { grid-template-columns: 1fr; gap: 12px; }
  .archive-card {
    aspect-ratio: var(--photo-ratio, 4 / 3);
    border: 6px solid #fff;
    border-left: 3px solid var(--red);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
  }
  .cta { width: 100%; margin-bottom: 0; padding: 48px 24px; }
  .cta-actions { width: 100%; }
  .cta a { flex: 1 1 100%; }
  .footer-inner { flex-direction: column; }
  .lightbox { padding: 8px; }
  .lightbox-stage { width: 100%; height: calc(100dvh - 16px); }
  .lightbox-stage img { max-width: calc(100vw - 16px); max-height: calc(100dvh - 128px); border-radius: 4px; }
  .lightbox-nav { top: 50%; width: 44px; height: 44px; transform: translateY(-50%); }
  .lightbox-nav:hover { transform: translateY(-50%); }
  #lightbox-prev { left: 10px; }
  #lightbox-next { right: 10px; }
  .lightbox-close { width: 42px; height: 42px; top: 12px; right: 12px; transform: none; }
  .lightbox-close:hover { transform: none; }
  .lightbox-download { top: auto; bottom: max(12px, env(safe-area-inset-bottom)); left: 12px; min-height: 42px; padding: 9px 12px; }
  .lightbox-counter { right: 12px; bottom: max(18px, calc(env(safe-area-inset-bottom) + 6px)); left: auto; transform: none; }
  .lightbox-status { max-width: calc(100% - 40px); }
}

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

/* Public navigation additions; the Gallery V3 photo layout stays unchanged. */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  z-index: 400;
  box-shadow: 0 -2px 8px rgba(0,0,0,.1);
}
.bottom-bar-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 0 10px;
}
.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 5px;
  min-height: 50px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}
.bottom-bar-item:hover,
.bottom-bar-item[aria-current="page"] { color: var(--red); background: #f7f7f7; }
.bottom-bar-item-icon { font-size: 24px; line-height: 1; }
.back-home-btn {
  position: fixed;
  bottom: 140px;
  right: 16px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(248,0,0,.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,.3);
  transition: transform .2s, background .2s;
}
.back-home-btn:hover { background: rgba(200,0,0,.95); transform: scale(1.1); }
.back-home-btn svg { width: 22px; height: 22px; fill: #fff; }
body.lightbox-open .mobile-bottom-bar,
body.lightbox-open .back-home-btn { visibility: hidden; pointer-events: none; }
@media (max-width: 768px) {
  /* Reserve the bar and safe area so the final gallery content remains reachable. */
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .mobile-bottom-bar { display: block; }
  .site-header { min-height: 84px; padding: 10px 12px; justify-content: center; }
  .site-header .brand-link {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    margin: 0;
    flex: 0 0 auto;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .site-header .brand-link img {
    display: block;
    width: 236px;
    height: auto;
    max-width: calc(100vw - 128px);
    object-fit: contain;
  }
  .site-header .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 0 0 auto;
    transform: none;
    z-index: 1001;
  }
}
