:root {
  --navy: #081a35;
  --navy-2: #102a50;
  --burgundy: #6f1029;
  --burgundy-2: #8f1838;
  --gold: #d7aa45;
  --gold-light: #f5df9a;
  --black: #0a0a0b;
  --ink: #1b2230;
  --muted: #667085;
  --cream: #fbf8f1;
  --white: #ffffff;
  --line: rgba(8, 26, 53, .12);
  --shadow: 0 18px 50px rgba(8, 26, 53, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 36px), 820px); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-burgundy { background: var(--burgundy); color: var(--white); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--burgundy);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.bg-navy .eyebrow, .bg-burgundy .eyebrow { color: var(--gold-light); }
h1, h2, h3, h4 {
  margin: 0 0 15px;
  color: var(--navy);
  line-height: 1.08;
}
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}
h1 { font-size: clamp(3.1rem, 8vw, 6.6rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4rem); }
h3 { font-size: 1.25rem; }
.bg-navy h1, .bg-navy h2, .bg-navy h3,
.bg-burgundy h1, .bg-burgundy h2, .bg-burgundy h3 { color: var(--white); }
.lead { font-size: clamp(1.02rem, 2vw, 1.22rem); max-width: 720px; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }

.skip-link {
  position: fixed; left: 15px; top: -100px; z-index: 9999;
  background: var(--gold); color: var(--navy); padding: 10px 16px; font-weight: 800;
}
.skip-link:focus { top: 15px; }

.topbar {
  background: var(--burgundy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
}
.topbar .container {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 280px; height: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  display: inline-block;
  padding: 11px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  font-size: .84rem;
  font-weight: 700;
}
.nav-link:hover, .nav-link.active { background: rgba(215,170,69,.18); color: var(--burgundy); }
.nav-cta { margin-left: 8px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 49px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(8,26,53,.15); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary { background: var(--burgundy); color: var(--white); }
.btn-outline { border-color: rgba(255,255,255,.65); color: var(--white); background: transparent; }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(215,170,69,.25), transparent 25%),
    radial-gradient(circle at 10% 80%, rgba(111,16,41,.8), transparent 34%),
    linear-gradient(125deg, #040d1c 0%, #081a35 55%, #102a50 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,.15) 49%, transparent 51%),
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,.08) 49%, transparent 51%);
  background-size: 60px 60px;
}
.hero .container { position: relative; z-index: 1; }
.hero-home { padding: 112px 0 95px; min-height: 650px; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero h1 { color: var(--white); }
.hero-copy { max-width: 710px; }
.hero-copy p { color: rgba(255,255,255,.82); }
.hero-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
}
.hero-card .tag {
  display: inline-block; padding: 6px 10px; border-radius: 999px;
  color: var(--gold-light); background: rgba(215,170,69,.13);
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.hero-card h3 { margin-top: 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.15rem; }
.hero-meta { display: grid; gap: 10px; margin: 20px 0; }
.hero-meta div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 9px; }
.hero-meta span:first-child { color: rgba(255,255,255,.65); }
.page-hero { padding: 86px 0 72px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.3rem); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 730px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(-38px);
  position: relative;
  z-index: 2;
}
.stat { padding: 28px 24px; border-right: 1px solid var(--line); text-align: center; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--burgundy); font-family: "Cormorant Garamond", serif; font-size: 2.2rem; line-height: 1; }
.stat span { font-size: .77rem; font-weight: 700; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 25px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .board-grid > * { min-width: 0; }
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(8,26,53,.06);
}
.card h3 { margin-top: 4px; }
.card-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  margin-bottom: 18px; border-radius: 14px;
  color: var(--burgundy); background: rgba(215,170,69,.18);
  font-size: 1.25rem; font-weight: 900;
}
.card.featured { border: 2px solid var(--gold); transform: translateY(-8px); }
.number-card .number {
  color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 700; line-height: 1;
}
.link-arrow { color: var(--burgundy); font-weight: 800; text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.visual-panel {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 25% 20%, rgba(215,170,69,.36), transparent 25%),
    linear-gradient(145deg, var(--burgundy), var(--navy));
  box-shadow: var(--shadow);
}
.visual-panel::after {
  content: "06";
  color: rgba(255,255,255,.12);
  font-family: "Cormorant Garamond", serif;
  font-size: 17rem;
  font-weight: 700;
}
.visual-panel .panel-label {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { position: relative; padding: 10px 0 10px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; display: grid; place-items: center;
  border-radius: 50%; color: var(--navy); background: var(--gold); font-size: .75rem; font-weight: 900;
}

.quote {
  margin: 0;
  padding: 34px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--cream);
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.board-card { padding: 22px; border-radius: 18px; background: var(--cream); border: 1px solid var(--line); }
.board-card strong { display: block; color: var(--burgundy); }
.board-card span { color: var(--muted); font-size: .84rem; }

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.event-art {
  min-height: 255px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(215,170,69,.42), transparent 26%),
    linear-gradient(135deg, var(--burgundy), var(--navy));
}
.event-art .big { font-family: "Cormorant Garamond", serif; font-size: 4.2rem; font-weight: 700; line-height: .9; }
.event-body { padding: 26px; }
.event-date { color: var(--burgundy); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.event-details { list-style: none; padding: 0; margin: 18px 0; }
.event-details li { padding: 7px 0; border-bottom: 1px solid var(--line); }
.status-badge {
  display: inline-block; padding: 6px 11px; border-radius: 999px;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(215,170,69,.2); color: var(--burgundy);
}
.status-past { background: #eef1f5; color: #596270; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 25px 0;
}
.countdown div {
  padding: 16px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  text-align: center;
  background: rgba(255,255,255,.06);
}
.countdown strong { display: block; color: var(--gold-light); font-size: 1.9rem; line-height: 1; }
.countdown span { font-size: .68rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .12em; }

.price-card { position: relative; }
.price-card .price { margin: 10px 0; color: var(--burgundy); font-family: "Cormorant Garamond", serif; font-size: 3.3rem; font-weight: 700; line-height: 1; }
.price-card .small { color: var(--muted); font-size: .78rem; }
.payment-box {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--burgundy));
}
.payment-box strong { color: var(--gold-light); }
.copy-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 12px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; background: rgba(255,255,255,.08);
}
.copy-btn {
  border: 0; border-radius: 999px; padding: 7px 12px; cursor: pointer;
  background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 800;
}

form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
label { display: grid; gap: 7px; color: var(--navy); font-size: .8rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd5df;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(215,170,69,.28); border-color: var(--gold); }
textarea { min-height: 145px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.form-note { color: var(--muted); font-size: .78rem; }

.contact-list { display: grid; gap: 14px; }
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 16px;
  background: var(--cream);
}
.contact-item .icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--gold); color: var(--navy); font-weight: 900; }
.contact-item a { color: var(--burgundy); font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.contact-item > div:last-child, .footer-links a, .copy-row strong { overflow-wrap: anywhere; }

.cta-band {
  padding: 50px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 50%, rgba(215,170,69,.25), transparent 25%),
    linear-gradient(120deg, var(--burgundy), var(--navy));
}
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem,4vw,3.2rem); }

.site-footer { color: rgba(255,255,255,.75); background: #050c17; }
.footer-main { padding: 55px 0 35px; display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 35px; }
.footer-logo { width: 275px; margin-bottom: 16px; }
.footer-title { color: var(--gold-light); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 13px 0 0; }
.footer-links li { margin: 8px 0; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; }

/* Content is visible by default. JavaScript only adds an optional entrance animation. */
.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: reveal-in .65s ease both; }
@keyframes reveal-in {
  from { opacity: .2; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .menu-toggle { display: block; }
  .nav-list {
    position: fixed;
    inset: 118px 0 auto 0;
    display: grid;
    gap: 6px;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .nav-list.open { transform: translateY(0); }
  .nav-link { display: block; padding: 13px; }
  .nav-cta { margin-left: 0; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-home { padding-top: 80px; }
  .hero-card { max-width: 650px; }
  .grid-4, .board-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar span:last-child { display: none; }
  .brand img { width: 225px; }
  .nav-wrap { min-height: 75px; }
  .nav-list { inset: 111px 0 auto; }
  .section { padding: 68px 0; }
  .stats { grid-template-columns: repeat(2,1fr); transform: none; margin: 25px auto; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-2, .grid-3, .grid-4, .board-grid, .form-grid { grid-template-columns: 1fr; }
  .card.featured { transform: none; }
  .countdown { grid-template-columns: repeat(2,1fr); }
  .contact-item { grid-template-columns: 40px minmax(0,1fr); padding: 16px; }
  .copy-row { align-items: flex-start; }
  .cta-band .container, .footer-bottom .container { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-home { min-height: auto; padding: 72px 0; }
}
@media (max-width: 460px) {
  .topbar { display: none; }
  .nav-list { inset: 76px 0 auto; }
  .brand img { width: 205px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}


/* Photo integration and gallery */
.photo-feature {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.photo-feature img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.photo-feature::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(5,12,23,.88));
}
.photo-feature figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  color: var(--white);
}
.photo-feature figcaption strong {
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.photo-feature figcaption span { color: var(--gold-light); font-size: .82rem; }

.photo-preview-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: repeat(2, 230px);
  gap: 14px;
}
.preview-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy);
  box-shadow: 0 10px 30px rgba(8,26,53,.12);
}
.preview-photo.preview-wide { grid-row: 1 / span 2; }
.preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}
.preview-photo:hover img { transform: scale(1.04); opacity: .9; }

.page-hero-photo {
  min-height: 430px;
  display: grid;
  align-items: end;
}
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,13,28,.94) 0%, rgba(8,26,53,.78) 48%, rgba(8,26,53,.38) 100%);
}
.page-hero-photo .container { position: relative; z-index: 2; }
.page-hero-events {
  background-image: url("../images/gallery/picnic-2026-01.jpg");
  background-position: center 40%;
  background-size: cover;
}

.event-photo {
  height: 270px;
  overflow: hidden;
  background: var(--navy);
}
.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.event-card:hover .event-photo img { transform: scale(1.035); }

.gallery-section { overflow: hidden; }
.gallery-section .section-heading p { color: rgba(255,255,255,.75); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 225px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: #050c17;
  cursor: zoom-in;
}
.gallery-item:nth-child(7n+2),
.gallery-item:nth-child(7n+5) { grid-row: span 2; }
.gallery-item.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}
.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  padding: 42px 16px 15px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(5,12,23,.9));
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-overlay strong { font-size: .75rem; }
.gallery-overlay small { color: var(--gold-light); }
.gallery-item:hover img { transform: scale(1.045); opacity: .9; }
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 40px 80px;
  background: rgba(2,6,14,.94);
}
.lightbox.open { display: grid; }
.lightbox figure {
  max-width: min(1200px, 90vw);
  max-height: 88vh;
  margin: 0;
  text-align: center;
}
.lightbox figure img {
  max-width: 100%;
  max-height: 80vh;
  margin: auto;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.lightbox figcaption {
  margin-top: 12px;
  color: var(--gold-light);
  font-weight: 700;
}
.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.lightbox-close {
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
}
.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.2rem;
  transform: translateY(-50%);
}
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 1050px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .photo-preview-grid { grid-template-columns: 1.25fr 1fr; }
  .preview-photo.preview-wide { grid-row: 1 / span 2; }
  .photo-preview-grid .preview-photo:last-child { display: none; }
}
@media (max-width: 760px) {
  .photo-preview-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: 250px 180px 180px;
  }
  .preview-photo.preview-wide { grid-column: 1 / -1; grid-row: auto; }
  .photo-preview-grid .preview-photo:last-child { display: block; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-auto-rows: 190px;
  }
  .gallery-item.gallery-featured { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-item:nth-child(7n+2),
  .gallery-item:nth-child(7n+5) { grid-row: span 1; }
  .lightbox { padding: 64px 15px 25px; }
  .lightbox-nav { top: auto; bottom: 18px; }
  .lightbox-prev { left: calc(50% - 62px); }
  .lightbox-next { right: calc(50% - 62px); }
  .page-hero-photo { min-height: 480px; }
}
@media (max-width: 460px) {
  .photo-preview-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 230px); }
  .preview-photo.preview-wide { grid-column: auto; }
  .gallery-grid { grid-auto-rows: 165px; gap: 9px; }
  .gallery-item { border-radius: 12px; }
  .gallery-overlay { display: none; }
}


/* Contrast fixes: dark sections with light cards and countdown panels */
.bg-navy .card,
.bg-burgundy .card {
  color: var(--ink);
}

.bg-navy .card h2,
.bg-navy .card h3,
.bg-navy .card h4,
.bg-burgundy .card h2,
.bg-burgundy .card h3,
.bg-burgundy .card h4 {
  color: var(--navy);
}

.bg-navy .card p,
.bg-navy .card li,
.bg-burgundy .card p,
.bg-burgundy .card li {
  color: var(--ink);
}

.bg-navy .card .eyebrow,
.bg-burgundy .card .eyebrow {
  color: var(--burgundy);
}

.bg-navy .card .muted,
.bg-burgundy .card .muted {
  color: var(--muted);
}

.hero-card {
  color: var(--white);
}

.hero-card h2,
.hero-card h3,
.hero-card h4 {
  color: var(--white);
}

.hero-card p {
  color: rgba(255,255,255,.84);
}

.hero-card .hero-meta span:first-child {
  color: rgba(255,255,255,.68);
}

.hero-card .hero-meta strong {
  color: var(--white);
}

.hero-card .check-list li {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.16);
}

.hero-card .check-list li::before {
  color: var(--navy);
  background: var(--gold);
}

.hero-card .countdown strong {
  color: var(--gold-light);
}

.hero-card .countdown span {
  color: rgba(255,255,255,.76);
}


.programs-section .card {
  background: var(--white);
}

.programs-section .card h3 {
  color: var(--navy);
}

.programs-section .card p {
  color: #344054;
}


/* Direct Payment visibility fix */
.payment-box {
  color: var(--white);
}

.payment-box .eyebrow {
  color: var(--gold-light);
}

.payment-box h2,
.payment-box h3,
.payment-box h4 {
  color: var(--white);
}

.payment-box p {
  color: rgba(255,255,255,.88);
}

.payment-box .copy-row {
  color: var(--white);
}

.payment-box .copy-row strong {
  color: var(--gold-light);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payment-box .copy-btn {
  flex-shrink: 0;
}
