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

:root {
  --bg:        #0C0C0C;
  --bg2:       #141414;
  --bg3:       #1C1C1C;
  --red:       #761d1d;
  --red-dark:  #5a1515;
  --gold:      #F0A500;
  --white:     #F5F5F5;
  --muted:     #8A8A8A;
  --border:    #2A2A2A;
  --font:      'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,16,46,0.2);
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms;
}

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

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background 200ms !important;
}

.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/heidi.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.38) saturate(0.55);
}

.dict-entry {
  font-family: 'Georgia', 'Times New Roman', serif;
  text-align: left;
  max-width: 780px;
  width: 100%;
  line-height: 1.6;
}

.dict-word {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.dict-pron {
  font-size: clamp(15px, 2vw, 24px);
  color: #ccc;
  font-style: italic;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.dict-pos {
  font-size: clamp(13px, 1.5vw, 18px);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.dict-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 16px 0;
}

.dict-def {
  font-size: clamp(14px, 1.6vw, 20px);
  color: #e8e8e8;
  margin-bottom: 10px;
}

.dict-def-num {
  font-weight: 700;
  color: var(--red);
  margin-right: 6px;
}

.dict-example {
  font-size: clamp(12px, 1.3vw, 16px);
  color: #aaa;
  font-style: italic;
  margin: 4px 0 14px 20px;
}

.dict-example::before { content: '"'; }
.dict-example::after  { content: '"'; }

.dict-syn {
  font-size: clamp(11px, 1.2vw, 15px);
  color: #999;
  margin-top: 20px;
}

.dict-syn strong {
  font-weight: 600;
  color: #ccc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82em;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(12,12,12,0.82) 0%, rgba(12,12,12,0.45) 60%, rgba(12,12,12,0.1) 100%),
    linear-gradient(to bottom, rgba(12,12,12,0.1)  0%, rgba(12,12,12,0.5) 80%, rgba(12,12,12,1)   100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 64px;
}

.hero-logo {
  width: 160px;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  transition: background 200ms, transform 150ms;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 200ms, background 200ms;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--red);
  padding: 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  padding: 28px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── SECTION SHARED ── */
section { padding: 100px 48px; }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title span { color: var(--red); }

.section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 28px 0;
}

/* ── COACHES ── */
#coaches { background: var(--bg); }

.coaches-header {
  text-align: center;
  margin-bottom: 72px;
}

.coaches-header .section-desc { margin: 0 auto; }
.coaches-header .divider { margin: 28px auto; }

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.coach-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 250ms, transform 250ms;
}

.coach-card:hover {
  border-color: rgba(200,16,46,0.5);
  transform: translateY(-4px);
}

/* ── COACH CAROUSEL ── */
.coach-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg3);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12,12,12,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms, background 200ms;
  z-index: 3;
  padding: 0;
}

.coach-img-wrap:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: rgba(200,16,46,0.85); border-color: transparent; }

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 200ms, transform 200ms;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.coach-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 3;
}

.coach-body {
  padding: 36px;
}

.coach-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.coach-role {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.coach-bio {
  font-size: 15px;
  line-height: 1.75;
  color: #ABABAB;
  margin-bottom: 28px;
}

.coach-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 2px;
}

.opl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms, color 200ms;
  cursor: pointer;
}

.opl-link:hover {
  background: var(--red);
  color: var(--white);
}

.opl-link svg { flex-shrink: 0; }

/* ── ACHIEVEMENTS ── */
#achievements { background: var(--bg2); }

.achievements-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.achievements-header {
  margin-bottom: 64px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.achievement-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: border-color 250ms;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.achievement-card:hover { border-color: rgba(200,16,46,0.4); }

.achievement-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.achievement-icon svg { color: var(--red); }

.achievement-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.achievement-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* highlight list */
.highlights-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  list-style: none;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #C0C0C0;
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 4px;
  border: 1px solid var(--border);
}

.check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── CTA ── */
#cta {
  background: var(--bg);
  padding: 120px 48px;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .section-label { display: block; text-align: center; }
.cta-inner .divider { margin: 28px auto; }

.cta-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 52px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 200ms;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
}

.form-field select option { background: #1C1C1C; }

.form-field textarea { resize: vertical; min-height: 100px; }

.cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 72px 20px; }
  #cta { padding: 80px 20px; }
  footer { padding: 32px 20px; flex-direction: column; text-align: center; }
  .coaches-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-item { min-width: 130px; padding: 22px 20px; }
  #hero { justify-content: flex-start; }
  .hero-content { padding: 96px 24px 40px; }
  .hero-logo { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── SCROLL FADE ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-bg { transition: none; }
  .scroll-line { animation: none; }
}

/* ── PHILOSOPHY ── */
#philosophy {
  background: var(--bg);
  padding: 100px 48px;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.philosophy-manifesto {
  position: relative;
  padding: 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.manifesto-quote-mark {
  font-family: 'Georgia', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--red);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
  user-select: none;
}

.manifesto-text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
  margin-bottom: 24px;
}

.manifesto-text span { color: var(--red); font-style: normal; font-weight: 700; }

.manifesto-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 250ms, transform 250ms;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.pillar-card:hover { border-color: rgba(118,29,29,0.5); transform: translateY(-2px); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pillar-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 900px) {
  .philosophy-top { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-pillars { grid-template-columns: 1fr; }
}
