:root {
  --bg: #0f0d09;
  --bg-alt: #1a1710;
  --fg: #f5f0e8;
  --fg-muted: #9e9180;
  --accent: #c8922a;
  --accent-light: #e8b84b;
  --border: #2e2a20;
  --card-bg: #1a1710;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(15, 13, 9, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,9,0.95) 0%, rgba(15,13,9,0.5) 50%, rgba(15,13,9,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.5;
}
.hero-location {
  margin-top: 1.5rem;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

/* ── EYEBROW + SECTION HEADINGS ── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}

/* ── STORY ── */
.story {
  padding: 7rem 3rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.story-inner {
  max-width: 800px;
  margin: 0 auto;
}
.story-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 2rem;
}
.story-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── FEATURES ── */
.features {
  padding: 7rem 3rem;
  background: var(--bg);
}
.features .eyebrow, .features .section-heading {
  text-align: center;
  display: block;
}
.features .eyebrow { margin-bottom: 0.75rem; }
.features .section-heading { margin-bottom: 4rem; }
.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── COMMUNITY ── */
.community {
  padding: 7rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.community-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: center;
}
.community-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.community-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.community-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pillar {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.pillar:last-child { border-bottom: none; }
.pillar-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.pillar-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.community-stat-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.stat {
  padding: 2rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}
.stat:last-child { border-bottom: none; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SESSIONS ── */
.sessions {
  padding: 7rem 3rem;
  background: var(--bg);
}
.sessions-inner {
  max-width: 800px;
  margin: 0 auto;
}
.sessions-inner .eyebrow,
.sessions-inner .section-heading {
  display: block;
  text-align: center;
}
.sessions-inner .eyebrow { margin-bottom: 0.75rem; }
.sessions-inner .section-heading { margin-bottom: 4rem; }
.session-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  min-width: 3rem;
  opacity: 0.5;
}
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.sessions-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 3rem;
  background: var(--bg-alt);
  text-align: center;
}
.closing-inner {
  max-width: 820px;
  margin: 0 auto;
}
.closing-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}
.closing-sub {
  margin-top: 1.75rem;
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
.footer {
  padding: 4rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 680px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ── SCHEDULE TABLE ── */
.schedule-table {
  max-width: 500px;
  margin: 0 auto 3rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-header {
  background: var(--bg-alt);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.schedule-row:not(.schedule-header) span {
  font-size: 0.95rem;
  color: var(--fg);
}
.schedule-row:not(.schedule-header) span:last-child {
  color: var(--accent);
  font-weight: 600;
}

/* ── LOCATION ── */
.location {
  padding: 7rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.location-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.location-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.location-address {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.8;
  font-style: normal;
}
.location-address strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--accent);
  font-weight: 600;
}
.location-hours {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.location-hours strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.contact-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  flex-shrink: 0;
}
.contact-link {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent-light); }

/* ── SOCIAL ── */
.social {
  padding: 5rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.social-inner {
  max-width: 600px;
  margin: 0 auto;
}
.social-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.social-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
  background: var(--card-bg);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.social-icon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-content { padding: 0 1.5rem 4rem; }
  .story { padding: 5rem 1.5rem; }
  .features { padding: 5rem 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .community { padding: 5rem 1.5rem; }
  .community-inner { grid-template-columns: 1fr; gap: 3rem; }
  .community-stat-block { display: none; }
  .sessions { padding: 5rem 1.5rem; }
  .location { padding: 5rem 1.5rem; }
  .location-inner { grid-template-columns: 1fr; gap: 3rem; }
  .social { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .schedule-row { padding: 1rem; }
}

@media (max-width: 480px) {
  .step { gap: 1.25rem; }
  .step-num { font-size: 2.25rem; min-width: 2.5rem; }
}
