:root {
  --forest-dark: #141d17;
  --forest: #1e2b22;
  --forest-mid: #2c3f30;
  --sage: #a9c2a4;
  --sage-light: #cfe0c9;
  --cream: #f4f1e8;
  --gold: #c9a86a;
  --text-dim: #b7c2b5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Iowan Old Style', serif;
  background: var(--cream);
  color: var(--forest-dark);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 29, 23, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand span {
  color: var(--cream);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--sage-light);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--forest-dark) !important;
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(15, 22, 17, 0.72) 0%, rgba(15, 22, 17, 0.55) 40%, rgba(15, 22, 17, 0.88) 100%),
    url('assets/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 140px 20px 80px;
}

.hero-content {
  max-width: 760px;
}

.hero-symbol {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 18px;
}

.hero .tagline {
  color: var(--sage-light);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  max-width: 560px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 32px;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 106, 0.45);
}

.btn-outline {
  border: 1.5px solid var(--sage-light);
  color: var(--sage-light);
  margin-left: 14px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sage-light);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Sections */
section {
  padding: 90px 0;
}

.section-label {
  text-align: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--forest-dark);
  margin-bottom: 18px;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  color: #4a5750;
  font-size: 1.05rem;
}

/* About */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text p {
  margin-bottom: 16px;
  color: #384a3d;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
  color: var(--forest-mid);
  margin-top: 24px;
  font-size: 1.05rem;
}

.about-symbol-wrap {
  display: flex;
  justify-content: center;
}

.about-symbol {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(20, 29, 23, 0.25);
}

/* Benefits */
.benefits {
  background: var(--forest-dark);
  color: var(--cream);
}

.benefits .section-title {
  color: var(--cream);
}

.benefits .section-intro {
  color: var(--text-dim);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 106, 0.18);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--gold);
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--sage-light);
}

.benefit-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* Classes / Schedule */
.classes {
  background: var(--sage-light);
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.class-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 12px 30px rgba(20,29,23,0.08);
  border-top: 4px solid var(--forest);
}

.class-card h3 {
  color: var(--forest-dark);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.class-card .venue {
  color: var(--gold);
  font-size: 0.85rem;
  font-family: 'Trebuchet MS', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.class-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.class-row:last-child {
  border-bottom: none;
}

.class-row .level {
  color: #6b7a70;
}

.class-note {
  text-align: center;
  margin-top: 30px;
  color: var(--forest-mid);
  font-style: italic;
}

/* Private sessions */
.private {
  background: var(--cream);
  text-align: center;
}

.private-box {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--cream);
  border-radius: 20px;
  padding: 56px 40px;
}

.private-box h2 {
  color: #fff;
  margin-bottom: 16px;
}

.private-box p {
  color: var(--text-dim);
  margin-bottom: 28px;
}

.private-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--sage-light);
  font-size: 0.95rem;
}

.private-list li::before {
  content: "\2726";
  color: var(--gold);
  margin-right: 8px;
}

/* CTA */
.cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15,22,17,0.85), rgba(15,22,17,0.92)),
    url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.cta p {
  color: var(--sage-light);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Footer */
footer {
  background: var(--forest-dark);
  color: var(--text-dim);
  padding: 48px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-brand span {
  color: var(--cream);
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #7c8c81;
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-symbol-wrap {
    order: -1;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .class-grid {
    grid-template-columns: 1fr;
  }
  .private-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(15, 22, 17, 0.97);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(201,168,106,0.2);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
