:root {
  --green: #147a3a;
  --green-dark: #0b3d22;
  --gold: #f0c84a;
  --ink: #102016;
  --paper: #f6f3ea;
  --muted: #5c6b5e;
  --frame: #fff;
  --frame-line: #d7e0d4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: rgba(10, 28, 16, 0.94);
  color: #fff;
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.brand img { width: 46px; height: 46px; object-fit: contain; background: #000; border-radius: 8px; flex-shrink: 0; }
.brand strong { display: block; letter-spacing: .08em; font-size: 14px; }
.brand small { color: #c9d9cc; font-size: 11px; }
.nav-links { display: flex; gap: 18px; margin-left: auto; }
.nav-links a { color: #e8f0ea; text-decoration: none; font-weight: 600; font-size: 14px; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-btn, .menu-btn {
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 700;
}
.menu-btn { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  letter-spacing: .02em;
}
.btn-gold { background: var(--gold); color: #1a1404; }
.btn-ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn-green { background: var(--green); color: #fff; margin-top: 20px; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,12,.25), rgba(8,20,12,.78) 70%);
}
.hero-copy {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 72px;
  color: #fff;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 8px;
}
.hero h1, .schedule-page h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 8vw, 92px);
  line-height: .9;
  margin: 0 0 16px;
}
.lede { max-width: 560px; font-size: 18px; line-height: 1.5; color: #eef3ee; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-ctas.center { justify-content: center; }

.strip { background: var(--green-dark); color: #fff; padding: 22px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.strip b { display: block; font-size: 18px; }
.strip span { color: #c5d8c9; font-size: 13px; }

.section { padding: 72px 0; }
.section.alt { background: var(--paper); }
.section h2 { font-family: "Bebas Neue", sans-serif; font-size: 42px; margin: 0 0 20px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.quote {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #fff;
}
.quote span { color: var(--muted); font-size: 13px; }

.cards { display: grid; gap: 18px; }
.cards.two { grid-template-columns: 1fr 1fr; }
.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16,32,22,.08);
  border: 1px solid var(--frame-line);
}
.card h3 { margin-top: 0; color: var(--green); }
.card ul { padding-left: 18px; line-height: 1.7; }
.price { font-size: 28px; font-weight: 800; margin-bottom: 0; }
.muted, .note { color: var(--muted); }
.note { margin-top: 16px; text-align: center; }

.photo-frame {
  margin: 0;
  background: var(--frame);
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--frame-line);
  box-shadow: 0 10px 28px rgba(16,32,22,.1);
  overflow: hidden;
  min-height: 0;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.split .photo-frame { height: 460px; }

.mosaic-band { padding: 8px 0 40px; }
.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 18px;
}
.photo-frame.tall { grid-row: span 2; }
.mosaic-wide {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
  grid-auto-rows: 250px;
}
.gallery-head { padding-bottom: 8px; }
#gallery { padding-bottom: 40px; }

.enrol {
  background: #0b3d22;
  color: #fff;
  text-align: center;
}
.enrol .lede { margin: 0 auto 36px; max-width: 640px; }
.light { color: var(--gold); }
.enrol h2 { color: #fff; }
.qr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto 36px;
}
.qr-row figure {
  margin: 0;
  background: #fff;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--frame-line);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.qr-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.qr-row figcaption {
  margin: 0;
  padding: 12px 8px 4px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0b3d22;
}

.calendar-frame { margin-top: 28px; }
.calendar-frame img { height: auto; object-fit: contain; background: #fff; }
.schedule-page .cards.two { align-items: start; }

.site-footer {
  background: #0b2c1f;
  color: #eef3ee;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  padding: 48px 0 36px;
  align-items: start;
}
.footer-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.footer-cta h2 {
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #f0c84a;
  margin: 0 0 12px;
  max-width: 340px;
}
.footer-lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,.88);
  max-width: 38ch;
}
.footer-social { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.footer-social a:hover { text-decoration: underline; }
.footer-contact {
  display: grid;
  gap: 18px;
  padding-top: 2px;
  justify-self: end;
  justify-items: end;
  text-align: right;
}
.footer-contact h3 {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.footer-contact a,
.footer-contact p {
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-note {
  margin-top: 6px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.55) !important;
}
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bar-inner {
  display: flex;
  justify-content: center;
  padding: 14px 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-align: center;
}

@media (max-width: 820px) {
  .wrap { width: min(1120px, calc(100% - 24px)); }
  .nav {
    flex-wrap: wrap;
    padding: 8px 12px;
    gap: 8px;
  }
  .brand strong { font-size: 12px; }
  .brand small { display: none; }
  .brand img { width: 40px; height: 40px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 5;
    background: #0b3d22;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4px;
  }
  .nav-links.open a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open a:last-child { border-bottom: 0; }
  .menu-btn { display: inline-flex; min-width: 40px; justify-content: center; }
  .btn { padding: 10px 14px; font-size: 13px; }
  .hero { min-height: 78vh; }
  .hero-copy { margin-bottom: 40px; }
  .lede { font-size: 15px; }
  .hero-ctas .btn { flex: 1 1 140px; }
  .section { padding: 44px 0; }
  .section h2 { font-size: 32px; margin-bottom: 16px; }
  .split, .cards.two, .strip-grid { grid-template-columns: 1fr; }
  .split { gap: 20px; }
  .split .photo-frame { height: 260px; }
  .quote { margin-top: 16px; }
  .strip { padding: 8px 0; }
  .strip-grid > div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: center;
  }
  .strip-grid > div:last-child { border-bottom: 0; }
  .mosaic,
  .mosaic-wide {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 150px;
    gap: 12px;
  }
  .photo-frame { padding: 6px; border-radius: 12px; }
  .photo-frame img { border-radius: 8px; }
  .photo-frame.tall {
    grid-row: auto;
    grid-column: span 2;
    min-height: 190px;
  }
  .mosaic-wide .photo-frame:first-child {
    grid-column: span 2;
    min-height: 190px;
  }
  .qr-row {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 18px;
  }
  .enrol .hero-ctas { flex-direction: column; }
  .enrol .hero-ctas .btn { width: 100%; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { min-height: 44px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 20px;
  }
  .footer-cta h2 {
    max-width: 280px;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .footer-kicker { font-size: 10px; margin-bottom: 8px; }
  .footer-lead {
    font-size: 13px;
    margin-bottom: 14px;
    max-width: none;
  }
  .footer-social { gap: 18px; }
  .footer-social a {
    font-size: 14px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .footer-contact {
    gap: 14px;
    padding-top: 0;
    justify-self: stretch;
    justify-items: start;
    text-align: left;
  }
  .footer-contact > div { padding: 0; border: 0; }
  .footer-contact a,
  .footer-contact p {
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .footer-contact a { display: inline; min-height: 0; padding: 0; }
  .footer-bar-inner {
    padding: 12px 0 18px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .mosaic,
  .mosaic-wide { grid-auto-rows: 130px; }
  .photo-frame.tall,
  .mosaic-wide .photo-frame:first-child { min-height: 168px; }
}
