:root {
  --ink: #091c1b;
  --green: #0b3b34;
  --bright: #35d07f;
  --cream: #f2efe5;
  --paper: #faf8f1;
  --brass: #caa966;
  --line: rgba(9, 28, 27, 0.18);
  --display: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  transition: background 0.25s, height 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(9, 28, 27, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 13px; line-height: 1; }
.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.site-header.scrolled .brand-mark { width: 50px; height: 50px; }
.brand strong, .brand small { display: block; text-transform: uppercase; letter-spacing: 0.12em; }
.brand strong { font-size: 12px; margin-bottom: 5px; }
.brand small { font-size: 9px; opacity: 0.78; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
.site-nav a { transition: color 0.2s; }
.site-nav a:hover { color: var(--bright); }
.nav-cta {
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  min-height: 780px;
  height: 100svh;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; filter: saturate(.85) contrast(1.04); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,20,19,.76) 0%, rgba(5,20,19,.18) 52%, rgba(5,20,19,.08) 75%),
    linear-gradient(0deg, rgba(5,20,19,.92) 0%, rgba(5,20,19,.25) 54%, rgba(5,20,19,.12) 100%);
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 64px;
  left: clamp(24px, 8vw, 130px);
  width: min(760px, 82vw);
  transform: none;
}
.eyebrow {
  margin: 0 0 25px;
  color: var(--bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; margin: 0 14px 4px 0; background: currentColor; }
.eyebrow.dark { color: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 400; line-height: .95; letter-spacing: -.035em; }
h1 { margin: 0 0 25px; font-size: clamp(68px, 8.5vw, 138px); max-width: 820px; }
.hero-copy { max-width: 550px; margin-bottom: 38px; color: rgba(255,255,255,.77); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--bright); color: var(--ink); }
.button-primary:hover { background: white; }
.text-link { font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px; }
.text-link span { color: var(--bright); margin-left: 5px; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 78px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--bright); box-shadow: 0 0 0 5px rgba(53,208,127,.18); }

.section { padding: 120px clamp(24px, 8vw, 130px); }
.intro { display: grid; grid-template-columns: .45fr 1.3fr; column-gap: 8vw; }
.section-label {
  padding-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro-copy h2, .events h2, .contact h2 { font-size: clamp(54px, 7vw, 112px); margin-bottom: 42px; }
.intro-copy > p { max-width: 720px; font-size: clamp(19px, 2vw, 27px); line-height: 1.55; color: #41514e; }
.arrow-link { display: inline-flex; gap: 22px; margin-top: 18px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; padding-bottom: 5px; }
.stats { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 95px; border-top: 1px solid var(--line); }
.stats article { padding: 34px 24px 0 0; border-right: 1px solid var(--line); }
.stats article + article { padding-left: 28px; }
.stats article:last-child { border-right: 0; }
.stats strong { display: block; font-family: var(--display); font-size: clamp(45px, 5vw, 76px); font-weight: 400; line-height: 1; color: var(--green); }
.stats span { display: block; margin-top: 10px; color: #65716f; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.marquee { overflow: hidden; background: var(--green); color: var(--cream); padding: 28px 0; }
.marquee-track { display: flex; gap: 32px; width: max-content; align-items: center; animation: scroll 24s linear infinite; }
.marquee span { font-family: var(--display); font-size: 40px; }
.marquee i { color: var(--bright); font-style: normal; font-size: 12px; }
@keyframes scroll { to { transform: translateX(-50%); } }

.gallery {
  display: grid;
  grid-template-columns: 1.4fr .72fr;
  grid-template-rows: 360px 360px;
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}
.gallery figure { position: relative; overflow: hidden; margin: 0; background: var(--green); }
.gallery-wide { grid-row: 1 / 3; }
.gallery-tall { grid-column: 2; grid-row: 1; }
.gallery-small { grid-column: 2; grid-row: 2; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s;
}
.gallery-wide img { object-position: center; }
.gallery-tall img { object-position: 43% center; }
.gallery-small img { object-position: 40% center; }
.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,20,19,.72), transparent 42%);
  pointer-events: none;
}
.gallery figure:hover img { transform: scale(1.025); filter: saturate(1); }
.gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 26px;
  bottom: 22px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.gallery figcaption small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.7);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: none;
}
.gallery-link-bar {
  display: flex;
  justify-content: center;
  padding: 34px 24px 42px;
  background: var(--ink);
  color: white;
}
.gallery-link-bar .arrow-link { border-color: rgba(255,255,255,.55); }

.events { background: var(--cream); }
.events-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 8vw; align-items: end; }
.events-heading > p { max-width: 400px; margin-bottom: 50px; color: #66716e; font-size: 18px; }
.event { display: grid; grid-template-columns: 120px 1fr 40px; align-items: center; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); transition: padding .25s, background .25s; }
.event:last-child { border-bottom: 1px solid var(--line); }
.event:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.54); }
.event-date { display: flex; align-items: baseline; gap: 12px; }
.event-date strong { font-family: var(--display); font-size: 54px; font-weight: 400; line-height: 1; }
.event-date span, .event-info p { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.event-info p { margin-bottom: 4px; }
.event-info h3 { margin-bottom: 4px; font-family: var(--display); font-size: clamp(24px, 3vw, 38px); font-weight: 400; line-height: 1.2; }
.event-info > span { color: #76807d; font-size: 13px; }
.event-arrow { font-size: 24px; color: var(--green); }
.event-list a.event { color: inherit; text-decoration: none; }
.events-empty {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.events-empty p { margin: 0 0 8px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.events-empty strong { font-family: var(--display); font-size: clamp(24px, 3vw, 38px); font-weight: 400; }
.announcement {
  margin: 0 0 28px;
  padding: 18px 22px;
  border-left: 4px solid var(--bright);
  background: rgba(31, 131, 95, .08);
  color: var(--green);
  font-weight: 700;
}

.learn { position: relative; min-height: 770px; overflow: hidden; background: var(--green); color: white; padding: 110px max(24px, 10vw); }
.learn-pattern {
  position: absolute;
  inset: 0 50% 0 0;
  opacity: .35;
  background:
    linear-gradient(45deg, transparent 46%, var(--bright) 47%, var(--bright) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 46%, var(--brass) 47%, var(--brass) 52%, transparent 53%);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent);
}
.learn-content { position: relative; z-index: 1; width: min(680px, 100%); margin-left: auto; }
.learn h2 { font-size: clamp(62px, 8vw, 120px); margin-bottom: 35px; }
.learn-content > p { max-width: 570px; color: rgba(255,255,255,.72); font-size: 18px; }
.learn-details { display: grid; grid-template-columns: 1fr 1fr; max-width: 600px; margin: 50px 0 38px; border-top: 1px solid rgba(255,255,255,.2); }
.learn-details div { padding-top: 20px; }
.learn-details span, .learn-details strong { display: block; }
.learn-details span { color: var(--bright); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.learn-details strong { margin-top: 5px; font-size: 16px; }
.button-light { background: white; color: var(--green); }
.button-light:hover { background: var(--bright); }

.contact { padding-top: 140px; padding-bottom: 140px; }
.contact h2 { max-width: 1100px; }
.contact-row { display: flex; justify-content: space-between; align-items: center; gap: 50px; padding-top: 35px; border-top: 1px solid var(--line); }
.contact-row p { max-width: 570px; margin: 0; color: #64716e; font-size: 18px; }
.contact-copy { flex: 1; }
.contact-details { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 28px; }
.contact-details a {
  font-family: var(--display);
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.2;
  border-bottom: 1px solid var(--line);
  transition: color .2s, border-color .2s;
}
.contact-details a:hover { color: var(--green); border-color: var(--green); }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.contact-actions .arrow-link { margin-top: 0; }
.button-dark { background: var(--ink); color: white; white-space: nowrap; }
.button-dark:hover { background: var(--green); }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 58px clamp(24px, 5vw, 78px); background: var(--ink); color: white; }
.brand-footer { justify-self: start; max-width: 340px; }
.brand-footer .brand-mark { width: 68px; height: 68px; }
.footer-links { display: flex; gap: 26px; color: rgba(255,255,255,.68); font-size: 12px; }
footer > p { justify-self: end; margin: 0; color: rgba(255,255,255,.45); font-size: 11px; }

@media (max-width: 820px) {
  .site-header { height: 74px; padding: 0 22px; }
  .brand { gap: 9px; }
  .brand-mark, .site-header.scrolled .brand-mark { width: 48px; height: 48px; }
  .brand strong { font-size: 10px; letter-spacing: .09em; }
  .brand small { max-width: 200px; font-size: 7px; letter-spacing: .08em; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: transparent;
    color: inherit;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--ink);
    font-family: var(--display);
    font-size: 42px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav-cta { border: 0; padding: 0; }
  .hero { min-height: 720px; }
  .hero-image { object-position: 53% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,20,19,.56), rgba(5,20,19,.08)), linear-gradient(0deg, rgba(5,20,19,.95), rgba(5,20,19,.08) 70%); }
  .hero-content { left: 24px; bottom: 76px; width: calc(100% - 48px); }
  h1 { font-size: clamp(62px, 20vw, 92px); }
  .hero-copy { font-size: 16px; max-width: 430px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-note { left: 24px; right: auto; bottom: 24px; }
  .section { padding: 80px 24px; }
  .intro { display: block; }
  .section-label { margin-bottom: 45px; }
  .intro-copy h2, .events h2, .contact h2 { font-size: clamp(52px, 15vw, 78px); }
  .stats { grid-column: auto; grid-template-columns: 1fr; margin-top: 65px; }
  .stats article, .stats article + article { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 430px 300px 300px; }
  .gallery-wide, .gallery-tall, .gallery-small { grid-column: 1; }
  .gallery-wide { grid-row: 1; }
  .gallery-tall { grid-row: 2; }
  .gallery-small { grid-row: 3; }
  .gallery-link-bar { justify-content: flex-start; }
  .events-heading { display: block; }
  .events-heading > p { margin-bottom: 30px; }
  .event { grid-template-columns: 78px 1fr; gap: 18px; padding: 25px 0; }
  .event-date { align-items: flex-start; flex-direction: column; gap: 3px; }
  .event-date strong { font-size: 43px; }
  .event-arrow { display: none; }
  .learn { padding: 90px 24px; }
  .learn-pattern { inset: 0; opacity: .16; }
  .learn-details { grid-template-columns: 1fr; gap: 18px; }
  .contact-row { align-items: flex-start; flex-direction: column; }
  .contact-actions { align-items: flex-start; }
  .contact-details { flex-direction: column; align-items: flex-start; gap: 14px; }
  footer { grid-template-columns: 1fr; text-align: left; }
  .brand-footer .brand-mark { width: 62px; height: 62px; }
  .footer-links { flex-wrap: wrap; }
  footer > p { justify-self: start; }
}

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