@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=Inter:wght@400;500&display=swap');

:root {
  --bg:        #1a2e1c;
  --surface:   #213625;
  --surface2:  #293e2d;
  --border:    #334a36;
  --accent:    #c9a84c;
  --accentl:   #dfc06a;
  --text:      #ece7de;
  --muted:     #7a7872;
  --redbg:     rgba(139,34,34,.13);
  --redbdr:    rgba(139,34,34,.38);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .03em;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accentl); }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 70px;
  background: rgba(11,12,11,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: inherit;
}
.nav-logo svg { width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem; font-weight: 600; letter-spacing: .07em;
  line-height: 1.2; color: var(--text);
}
.nav-logo-name span {
  display: block;
  font-size: .58rem; font-weight: 400;
  letter-spacing: .22em; color: var(--accent);
  text-transform: uppercase;
}
.nav-menu {
  display: flex; align-items: center; gap: .1rem;
  list-style: none;
}
.nav-menu a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
  padding: .45rem .85rem; border-radius: 3px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--accent);
  background: rgba(201,168,76,.08);
}
.nav-hamburger {
  display: none;
  background: none; border: 1px solid var(--border);
  border-radius: 3px; cursor: pointer;
  padding: .4rem .5rem; color: var(--text);
  flex-direction: column; gap: 4px;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: currentColor; border-radius: 1px;
  transition: all .25s;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 70px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 50%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 5% 80%, rgba(201,168,76,.04) 0%, transparent 55%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.032) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 4rem clamp(1rem,4vw,2.5rem);
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(201,168,76,.3);
  padding: .35rem .9rem; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead {
  color: var(--muted); font-size: 1.05rem;
  max-width: 460px; margin-bottom: 2.25rem; line-height: 1.8;
}
.hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-visual svg {
  width: 380px; height: 380px;
  filter: drop-shadow(0 0 52px rgba(201,168,76,.16));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  padding: .8rem 1.65rem; border-radius: 3px;
  border: none; cursor: pointer; transition: all .18s;
  text-decoration: none; white-space: nowrap;
}
.btn-gold {
  background: var(--accent); color: #0b0c0b; font-weight: 600;
}
.btn-gold:hover {
  background: var(--accentl); color: #0b0c0b;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,.28);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent); color: var(--accent);
}

/* ── LAYOUT UTILITIES ────────────────────────────── */
hr.rule {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.section    { padding: 6rem clamp(1rem,4vw,2.5rem); }
.section-sm { padding: 4rem clamp(1rem,4vw,2.5rem); }
.wrap { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .27em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .55rem;
}
.section-title { margin-bottom: .75rem; }
.section-lead {
  color: var(--muted); max-width: 560px;
  margin-bottom: 2.5rem; line-height: 1.8;
}

/* ── STATS STRIP ─────────────────────────────────── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 3rem clamp(1rem,4vw,2.5rem);
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-n {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--accent); line-height: 1;
}
.stat-l {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  margin-top: .4rem;
}

/* ── CARDS ───────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 1.25rem;
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}
.card:hover {
  border-color: rgba(201,168,76,.38);
  transform: translateY(-2px);
}
.card-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,.1); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 1rem;
}
.card h3 { font-size: .98rem; margin-bottom: .4rem; }
.card p  { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ── TWO-COL ─────────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.three-col {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

/* ── TABLE ───────────────────────────────────────── */
.data-table {
  width: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  border-collapse: collapse;
}
.data-table th {
  background: var(--surface2);
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  padding: .875rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text); font-size: .93rem;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td.val {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; color: var(--accent); text-align: right;
}

/* ── ALERT ───────────────────────────────────────── */
.alert {
  background: var(--redbg); border: 1px solid var(--redbdr);
  border-radius: 6px; padding: 1.375rem 1.5rem;
  margin-bottom: 2rem;
}
.alert-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; letter-spacing: .05em;
  color: #e07070; margin-bottom: .35rem;
}
.alert p { color: #c49090; font-size: .9rem; line-height: 1.65; }

/* ── INFOBOX ─────────────────────────────────────── */
.infobox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
}
.infobox-label {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .4rem;
}
.infobox p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── PROSE ───────────────────────────────────────── */
.prose { color: var(--muted); line-height: 1.85; }
.prose p { margin-bottom: 1.2rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 500; }

/* ── BULLET LIST ─────────────────────────────────── */
.bullet-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted); font-size: .93rem; line-height: 1.7;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%;
}
.bullet-list li strong {
  display: block;
  color: var(--text); font-weight: 500;
  margin-bottom: .2rem;
}

/* ── PAGE HERO ───────────────────────────────────── */
.phero {
  padding-top: 70px;
  min-height: 38vh;
  display: flex; align-items: flex-end;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.phero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 88% 50%, rgba(201,168,76,.055) 0%, transparent 65%);
}
.phero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.022) 1px, transparent 1px);
  background-size: 40px 40px;
}
.phero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 4rem clamp(1rem,4vw,2.5rem) 3rem;
}
.phero-inner h1 { font-size: clamp(2rem,5vw,3.25rem); }

/* ── HERO LOGO IMG ───────────────────────────────── */
.hero-logo-img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  animation: float 7s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero-logo-img { width: 220px; height: 220px; }
}
@media (max-width: 560px) {
  .hero-logo-img { width: 160px; height: 160px; }
}

/* ── GALLERY ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: .875rem;
}
.gallery-cell {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease;
}
.gallery-cell:hover img { transform: scale(1.05); }

/* ── LIGHTBOX ────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.is-open {
  opacity: 1; pointer-events: all;
}
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transform: scale(.95);
  transition: transform .25s ease;
  display: block;
}
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 2rem; line-height: 1;
  opacity: .6; transition: opacity .15s; padding: .25rem;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px; cursor: pointer;
  color: #fff; padding: .875rem 1rem;
  font-size: 1.1rem; line-height: 1; opacity: .65;
  transition: opacity .15s, background .15s;
}
.lightbox-btn:hover { opacity: 1; background: rgba(255,255,255,.15); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute; bottom: 1.25rem;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem; letter-spacing: .18em;
}

/* ── AFFILIATES ──────────────────────────────────── */
.affiliate-row {
  display: flex; flex-wrap: wrap; gap: .625rem;
}
.affiliate-pill {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: .45rem 1rem; border-radius: 100px;
  text-decoration: none; transition: color .15s, border-color .15s;
}
.affiliate-pill:hover {
  color: var(--accent); border-color: rgba(201,168,76,.4);
}

/* ── SESSION TIMES ───────────────────────────────── */
.session-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.5rem 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.session-day {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--accent); min-width: 90px;
  letter-spacing: .03em;
}
.session-time { color: var(--text); font-size: .93rem; }
.session-note { color: var(--muted); font-size: .83rem; margin-top: .2rem; }

/* ── CONTACT CARD ────────────────────────────────── */
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 2.5rem;
  max-width: 600px;
}
.contact-card a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem; letter-spacing: .05em;
  color: var(--accent);
}
.contact-card a:hover { color: var(--accentl); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem clamp(1rem,4vw,2.5rem) 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-brand p {
  color: var(--muted); font-size: .87rem;
  line-height: 1.75; max-width: 270px;
  margin-top: .875rem;
}
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: .66rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-links a { color: var(--muted); font-size: .87rem; transition: color .15s; }
.footer-links a:hover { color: var(--accent); }
.footer-addr {
  font-style: normal; color: var(--muted);
  font-size: .87rem; line-height: 1.85;
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { color: var(--muted); font-size: .78rem; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center; gap: 2.5rem;
  }
  .hero-visual { order: -1; }
  .hero-visual svg { width: 240px; height: 240px; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .three-col { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .nav-menu {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(11,12,11,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: .75rem; gap: .125rem;
  }
  .nav-menu.is-open { display: flex; }
  .nav-hamburger { display: flex; }

  .hero-visual svg { width: 180px; height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}
