@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #14201a;
  --muted: #607068;
  --forest: #173f33;
  --forest-2: #235849;
  --sage: #dce6df;
  --gold: #b88f51;
  --gold-pale: #ead8b5;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --line: rgba(20, 32, 26, .12);
  --shadow: 0 24px 70px rgba(24, 44, 35, .12);
  --radius: 30px;
  --container: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.soft { background: #eee9df; }
.dark { color: #fff; background: var(--forest); }

h1, h2, h3, .serif {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}
h1 { font-size: clamp(3.3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.8rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
p { margin: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.28rem); }
.dark .lead { color: rgba(255,255,255,.7); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  width: var(--container);
  min-height: 78px;
  margin: auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 24px;
  background: rgba(255,253,248,.91);
  box-shadow: 0 15px 45px rgba(17,37,29,.12);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #fff;
  background: var(--forest);
  font: 800 1rem/1 "Manrope", sans-serif;
  box-shadow: 0 9px 22px rgba(23,63,51,.2);
}
.brand-copy { display: grid; line-height: 1.12; }
.brand-copy strong { font-size: .92rem; letter-spacing: .02em; }
.brand-copy span { color: var(--muted); font-size: .69rem; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; width: 100%; }
.main-nav a {
  padding: 10px 10px;
  border-radius: 10px;
  color: #536159;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .25s ease;
}
.main-nav a:hover { color: var(--forest); background: rgba(23,63,51,.07); }
.main-nav a.active { color: #fff; background: var(--forest); }
.nav-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--forest);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: .25s ease;
}
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 22px; }
.nav-toggle::after { top: 29px; }
.nav-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; transform: scaleX(.2); }
.nav-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #fff; background: var(--forest); box-shadow: 0 13px 30px rgba(23,63,51,.22); }
.btn-primary:hover { background: var(--forest-2); box-shadow: 0 18px 38px rgba(23,63,51,.28); }
.btn-light { color: var(--forest); background: #fff; }
.btn-outline { border-color: var(--line); background: rgba(255,255,255,.5); }
.btn-gold { color: #182019; background: var(--gold-pale); }

.hero { min-height: 100svh; padding: 132px 0 42px; }
.hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; min-height: calc(100svh - 174px); }
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 5vw 60px max(24px, calc((100vw - 1180px)/2));
}
.hero-copy h1 em { color: var(--gold); font-weight: 600; }
.hero-copy .lead { margin-top: 28px; }
.hero-visual { position: relative; min-height: 620px; margin-right: 24px; overflow: hidden; border-radius: 34px; background: #d8ded9; box-shadow: var(--shadow); }
.hero-visual img { height: 100%; object-fit: cover; object-position: 52% center; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(9,29,21,.38)); }
.floating-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  max-width: 300px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  color: #fff;
  background: rgba(15,43,33,.72);
  backdrop-filter: blur(12px);
}
.floating-note strong { display: block; font-family: "Manrope",sans-serif; font-size: 1.2rem; }
.floating-note span { font-size: .78rem; opacity: .78; }

.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 170px 0 70px;
  overflow: hidden;
  color: #fff;
  background: #102d25;
}
.home-hero-media,
.home-hero-media::after { position: absolute; inset: 0; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.home-hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(8,25,19,.92) 0%, rgba(8,25,19,.7) 42%, rgba(8,25,19,.18) 78%), linear-gradient(0deg, rgba(8,25,19,.65), transparent 55%);
}
.home-hero-content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; }
.home-hero-content h1 { max-width: 920px; font-size: clamp(3.6rem, 7.5vw, 7.5rem); }
.home-hero-content h1 span { display: block; color: var(--gold-pale); }
.home-hero-content .lead { max-width: 650px; margin-top: 28px; color: rgba(255,255,255,.76); }
.home-hero-content .btn-outline { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.home-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--gold-pale);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-kicker::before { content: ""; width: 42px; height: 2px; background: currentColor; }
.home-signature {
  position: absolute;
  right: 0;
  bottom: 2px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 24px;
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,.32);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-signature strong { color: var(--gold-pale); font-size: 1.55rem; letter-spacing: -.03em; }

.intro-hero { padding: 178px 0 76px; }
.intro-hero .heading-row { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 60px; }
.intro-hero h1 { font-size: clamp(3.4rem, 7.2vw, 7.2rem); }
.intro-hero .lead { justify-self: end; }
.hero-banner { height: min(62vw, 680px); margin-top: 58px; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.hero-banner img { height: 100%; object-fit: cover; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 58px; }
.section-head .lead { max-width: 540px; }
.section-head.center { display: block; max-width: 760px; margin: 0 auto 58px; text-align: center; }
.section-head.center .lead { margin: 22px auto 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.split-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media img { aspect-ratio: 4 / 5; object-fit: cover; }
.split-copy p + p { margin-top: 18px; }
.split-copy .lead { margin-top: 28px; }

.stats { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.stat { padding: 32px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--forest); font: 700 clamp(2.5rem,4vw,4rem)/1 "Manrope",sans-serif; letter-spacing: -.06em; }
.stat span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }

.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(28,45,37,.06);
}
.card-number { color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.card h3 { margin: 18px 0 14px; }
.card p { color: var(--muted); }
.card-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; font-size: 1.3rem; background: var(--sage); }

.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.gallery-item { position: relative; min-height: 320px; overflow: hidden; border-radius: 24px; background: #d8ded9; }
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 7; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(n+5) { grid-column: span 4; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-caption { position: absolute; inset: auto 16px 16px; padding: 14px 16px; border-radius: 14px; color: #fff; background: rgba(15,43,33,.76); backdrop-filter: blur(8px); }

.timeline { display: grid; gap: 22px; }
.event-card { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 430px; overflow: hidden; border-radius: 28px; background: var(--paper); box-shadow: 0 18px 55px rgba(25,44,35,.08); }
.event-card:nth-child(even) { grid-template-columns: 1.18fr .82fr; }
.event-card:nth-child(even) .event-media { order: 2; }
.event-media img { height: 100%; object-fit: cover; }
.event-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px,5vw,70px); }
.event-meta { margin-bottom: 18px; color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.event-content h3 { font-size: clamp(2rem,3vw,3.2rem); }
.event-content p { margin-top: 20px; color: var(--muted); }

.quote {
  padding: clamp(42px,7vw,88px);
  border-radius: 32px;
  color: #fff;
  background: var(--forest);
  text-align: center;
}
.quote blockquote { max-width: 900px; margin: 0 auto; font: 700 clamp(2rem,4vw,4rem)/1.15 "Manrope",sans-serif; letter-spacing: -.05em; }
.quote cite { display: block; margin-top: 28px; color: var(--gold-pale); font-style: normal; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }

.info-band { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border-radius: 26px; background: rgba(255,255,255,.12); }
.info-cell { padding: 36px; background: var(--forest-2); }
.info-cell small { display: block; margin-bottom: 10px; color: var(--gold-pale); letter-spacing: .12em; text-transform: uppercase; }
.info-cell strong { font-size: 1.08rem; }

.news-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.news-card { overflow: hidden; border-radius: 28px; background: var(--paper); box-shadow: 0 18px 55px rgba(25,44,35,.08); }
.news-card img { height: 330px; object-fit: cover; }
.news-content { padding: 34px; }
.news-content time { color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-content h3 { margin: 14px 0 18px; }
.news-content p { color: var(--muted); }

.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.join-card { position: relative; min-height: 460px; padding: clamp(34px,5vw,62px); overflow: hidden; border-radius: 30px; }
.join-card:first-child { color: #fff; background: var(--forest); }
.join-card:last-child { background: var(--gold-pale); }
.join-card h3 { max-width: 380px; font-size: clamp(2.3rem,4vw,4rem); }
.join-card p { max-width: 470px; margin-top: 22px; opacity: .75; }
.join-card .btn { position: absolute; bottom: 50px; left: clamp(34px,5vw,62px); }

.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.cta { position: relative; overflow: hidden; padding: 90px; border-radius: 34px; color: #fff; background: var(--forest); }
.cta::after { content: "♪"; position: absolute; right: 5%; top: -60px; color: rgba(255,255,255,.06); font: 700 24rem/1 "Manrope",sans-serif; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { max-width: 720px; }
.cta p { max-width: 580px; margin-top: 22px; color: rgba(255,255,255,.7); }

.site-footer { padding: 70px 0 30px; color: rgba(255,255,255,.72); background: #0f2e25; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .8fr .8fr; gap: 60px; }
.footer-brand { color: #fff; font: 700 1.7rem/1 "Manrope",sans-serif; letter-spacing: -.05em; }
.footer-copy { max-width: 380px; margin-top: 18px; }
.footer-col h4 { margin: 0 0 16px; color: var(--gold-pale); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 7px 0; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .brand-copy { display: none; }
  .main-nav a { font-size: .61rem; padding-inline: 8px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 32px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 680px); --radius: 24px; }
  .section { padding: 78px 0; }
  .site-header { top: 10px; }
  .nav-shell { min-height: 66px; padding: 8px 9px 8px 13px; border-radius: 19px; }
  .brand-copy { display: grid; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    justify-content: stretch;
    gap: 4px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    background: rgba(247,243,235,.98);
    box-shadow: 0 20px 55px rgba(17,37,29,.2);
    transform: translateY(-10px) scale(.985);
    transform-origin: top;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { width: 100%; padding: 13px 16px; font-size: .76rem; text-align: left; }
  .hero { padding-top: 102px; }
  .hero-grid { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { padding: 46px 24px 50px; }
  .hero-copy h1 { font-size: clamp(3.7rem,17vw,6rem); }
  .hero-visual { min-height: 68svh; margin: 0 15px; border-radius: 26px; }
  .floating-note { right: 16px; bottom: 16px; left: 16px; max-width: none; }
  .home-hero { min-height: 860px; padding: 150px 0 56px; }
  .home-hero-media img { object-position: 58% center; }
  .home-hero-media::after { background: linear-gradient(0deg, rgba(8,25,19,.97) 0%, rgba(8,25,19,.65) 58%, rgba(8,25,19,.16) 100%); }
  .home-hero-content h1 { font-size: clamp(3.5rem, 12vw, 6rem); }
  .home-signature { position: relative; right: auto; bottom: auto; margin-top: 40px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }
  .intro-hero { padding-top: 136px; }
  .intro-hero .heading-row { grid-template-columns: 1fr; gap: 26px; }
  .intro-hero .lead { justify-self: start; }
  .hero-banner { height: 68svh; margin-top: 38px; border-radius: 26px; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 22px; }
  .split { grid-template-columns: 1fr; }
  .split-media img { aspect-ratio: 4/3; }
  .cards { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; min-height: 260px; }
  .event-card, .event-card:nth-child(even) { grid-template-columns: 1fr; }
  .event-card:nth-child(even) .event-media { order: 0; }
  .event-media img { height: 330px; }
  .news-grid, .join-grid { grid-template-columns: 1fr; }
  .info-band { grid-template-columns: 1fr; }
  .cta { padding: 58px 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
}

@media (max-width: 520px) {
  .brand-copy span { display: none; }
  .section { padding: 66px 0; }
  .button-row { flex-direction: column; }
  .btn { width: 100%; }
  .hero-copy { padding-inline: 17px; }
  .home-hero { min-height: 780px; padding-bottom: 38px; }
  .home-hero-content h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-visual { min-height: 570px; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: 1/-1; }
  .event-media img, .news-card img { height: 270px; }
  .news-content { padding: 26px; }
  .join-card { min-height: 500px; }
  .cta { padding: 48px 24px; border-radius: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
