﻿:root {
  --bg: #fdf8f3;
  --surface: #ffffff;
  --text: #2c1810;
  --muted: #6b5244;
  --primary: #b45309;
  --primary-hover: #92400e;
  --warm: #fef3e2;
  --border: #e8d5c0;
  --dark-bg: #1c110a;
  --radius: 14px;
  --shadow: 0 4px 22px rgba(180,83,9,.06);
}

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

body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3, blockquote { font-family: "Lora", Georgia, serif; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* NAV */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,248,243,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; gap: 1.4rem; padding: .85rem 0; }
.logo { font-family: "Lora", serif; font-weight: 700; font-size: 1.15rem; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 1.3rem; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .93rem; }
.nav-links a:hover { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; text-decoration: none; border: none;
  border-radius: var(--radius); background: var(--primary); color: #fff;
  padding: .72rem 1.4rem; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: background .15s;
}
.btn:hover { background: var(--primary-hover); }
.btn-sm { padding: .48rem .95rem; font-size: .9rem; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--warm); }

/* HERO */
.hero { padding: 3.5rem 0 2rem; }
.hero-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.18; margin-bottom: .8rem; }
.lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.3rem; max-width: 50ch; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.hero-image img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: 18px; border: 1px solid var(--border); box-shadow: var(--shadow);
}

/* SECTIONS */
.section { padding: 3rem 0; }
.section-title { font-size: 1.7rem; text-align: center; margin-bottom: .3rem; }
.section-subtitle { text-align: center; color: var(--muted); max-width: 60ch; margin: 0 auto 2rem; }
.section-warm { background: var(--warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* PROGRAMS */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.program-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow);
}
.prog-tag {
  display: inline-block; background: var(--warm); color: var(--primary);
  padding: .2rem .6rem; border-radius: 99px; font-size: .78rem; font-weight: 700; margin-bottom: .5rem;
  border: 1px solid var(--border);
}
.program-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.program-card p { color: var(--muted); font-size: .93rem; margin-bottom: .5rem; }
.prog-meta { font-size: .82rem; color: #9a7e6e; font-weight: 600; }

/* COACHES */
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.coach-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.3rem; text-align: center;
  box-shadow: var(--shadow);
}
.coach-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto .7rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #333;
}
.coach-card h3 { margin-bottom: .1rem; font-size: 1.05rem; }
.coach-role { color: var(--primary); font-size: .85rem; font-weight: 600; margin-bottom: .5rem; }
.coach-card p:last-child { color: var(--muted); font-size: .9rem; text-align: left; }

/* COMMUNITY */
.community-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.community-split h2 { margin-bottom: .5rem; }
.community-split > div:first-child p { color: var(--muted); margin-bottom: 1rem; }
.feature-list { list-style: none; display: grid; gap: .35rem; }
.feature-list li::before { content: "✦ "; color: var(--primary); font-weight: 700; }
.community-quote { display: grid; gap: 1rem; }
blockquote {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem; font-style: italic;
  font-size: .95rem; box-shadow: var(--shadow);
}
cite { display: block; margin-top: .5rem; font-style: normal; font-size: .85rem; color: var(--muted); font-family: "Nunito Sans", sans-serif; }

/* REGISTER */
.section-register { background: var(--warm); border-top: 1px solid var(--border); }
.register-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: start; }
.register-info h2 { margin-bottom: .4rem; }
.register-info p { color: var(--muted); margin-bottom: 1.2rem; }
.register-perks { display: flex; gap: 1rem; }
.perk {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: .6rem .8rem; text-align: center;
}
.perk strong { display: block; font-size: 1.1rem; color: var(--primary); }
.perk span { font-size: .82rem; color: var(--muted); }
.register-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; display: grid; gap: .5rem;
  box-shadow: var(--shadow);
}
.register-form label { font-size: .88rem; font-weight: 700; }
.register-form input, .register-form select {
  width: 100%; border: 1px solid var(--border); border-radius: 10px;
  padding: .62rem .72rem; font-size: .95rem;
}
.register-form button {
  margin-top: .4rem; border: 0; border-radius: 10px;
  background: var(--primary); color: #fff; padding: .72rem; font-weight: 700; cursor: pointer;
  transition: background .15s;
}
.register-form button:hover { background: var(--primary-hover); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.form-note a { color: var(--primary); }

/* FOOTER */
.site-footer { background: var(--dark-bg); color: #8b7362; padding: 2.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-family: "Lora", serif; font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: .3rem; }
.footer-brand span { color: var(--primary); }
.footer-grid p { font-size: .9rem; }
.footer-grid h4 { color: #c9a98a; margin-bottom: .5rem; font-size: .88rem; }
.footer-grid a { display: block; color: #8b7362; text-decoration: none; font-size: .88rem; margin-bottom: .25rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2e1f14; margin-top: 2rem; padding-top: 1rem; }
.footer-bottom p { font-size: .82rem; }

@media (max-width: 860px) {
  .hero-layout, .program-grid, .coach-grid, .community-split, .register-layout, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-image img { height: 280px; }
  .register-perks { flex-direction: column; }
}
