/* ── Home page sections ── */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  margin-top: var(--nav-h);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,46,24,.97) 0%,
    rgba(0,46,24,.65) 42%,
    rgba(0,46,24,.22) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6% 52px;
  display: flex;
  flex-direction: column;
}
.hero-pre {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-pre::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-content h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  max-width: 720px;
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content .hero-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 52px;
}

/* Learn More callout */
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
.learn-more:hover { color: var(--gold); }
.learn-more:hover .lm-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(3px);
}
.lm-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: border-color .2s, color .2s, transform .3s;
  color: rgba(255,255,255,.55);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sb-item {
  padding: 22px;
  text-align: center;
  border-right: 1px solid rgba(0,46,24,.15);
}
.sb-item:last-child { border-right: none; }
.sb-num {
  font-family: 'Merriweather', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.sb-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,46,24,.65);
  margin-top: 4px;
}

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  border-radius: 4px;
  overflow: hidden;
  height: 640px;
  border: 1px solid var(--border-l);
  box-shadow: 0 16px 48px rgba(0,66,37,.12);
  position: relative;
}
.about-photo::before {
  content: '';
  position: absolute;
  top: 24px; left: 0; bottom: 24px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  z-index: 1;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-r p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
}

/* ── CLASSES ── */
#classes { background: var(--green); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.class-card {
  background: var(--green-mid);
  border: 1px solid var(--border-g);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.class-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.card-num {
  padding: 24px 24px 0;
  font-family: 'Merriweather', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,162,39,.18);
  line-height: 1;
}
.card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 8px 24px 0;
}
.card-body {
  padding: 16px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}
.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.card-meta-item {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-meta-item i { color: var(--gold); font-size: 9px; }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-g);
}
.card-price {
  font-family: 'Merriweather', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.card-price span {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .about-wrap   { grid-template-columns: 1fr; }
  .about-photo  { height: 420px; }
  .classes-grid { grid-template-columns: 1fr; }
  .stats-bar    { grid-template-columns: 1fr 1fr; }
}
