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

:root {
  --forest:        #20201A;
  --moss:          #2A2A22;
  --gold:          #6E7A3E;
  --gold-lt:       #5B6533;
  --olive-bright:  #A6B45E;
  --cream:         #EAE6DC;
  --greige-lt:     #F3F0E9;
  --charcoal:      #20201A;
  --warm-gray:     #6A675C;
  --white:         #FFFFFF;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

/* ── NAV ── */
nav {
  background: var(--greige-lt);
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(32,32,26,0.1);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.fret-mark {
  position: relative;
  width: 52px;
  height: 30px;
  background: var(--forest);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.fret-mark .strings {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 4px, rgba(255,255,255,0.42) 4px 5px);
}

.fret-mark .frets {
  position: absolute;
  inset: 0;
  display: flex;
}

.fret-mark .nut {
  width: 5px;
  height: 100%;
  background: var(--gold);
}

.fret-mark .fret {
  flex: 1;
  border-right: 1.5px solid rgba(110,122,62,0.9);
}

.fret-mark .fret:last-child { border-right: none; }

.fret-mark .inlay {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.nav-brand-text { color: var(--forest); }
.nav-brand-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(32,32,26,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-lt) !important; }

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 6rem 6vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(110,122,62,0.16);
}

.hero::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 20px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(110,122,62,0.1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-inner { max-width: 600px; }

.hero-media { min-height: 380px; align-self: stretch; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-manifesto {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.hero-manifesto em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-lt); }

.btn-ghost {
  display: inline-block;
  color: var(--forest);
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.8rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(32,32,26,0.28);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--moss);
  padding: 0 6vw;
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  padding: 1.8rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  max-width: 220px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--olive-bright);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

/* ── SECTIONS ── */
section { padding: 5.5rem 6vw; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text p:last-child { margin-bottom: 0; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ── LESSONS ── */
.lessons { background: var(--cream); }

.lessons-intro {
  max-width: 620px;
  margin-bottom: 3.5rem;
}

.lessons-intro p {
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.lesson-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid rgba(30,58,47,0.08);
}

.lesson-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.lesson-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.lesson-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--forest);
  color: var(--white);
}

.philosophy .section-title { color: var(--white); }
.philosophy .section-eyebrow { color: var(--olive-bright); }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.philosophy-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(166,180,94,0.4);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.point-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.point-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.philosophy-aside {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(166,180,94,0.28);
  border-radius: 8px;
  padding: 2rem;
}

.philosophy-aside h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--olive-bright);
  margin-bottom: 1rem;
}

.aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.aside-list li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.1rem;
  position: relative;
}

.aside-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive-bright);
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text .section-title { margin-bottom: 1rem; }

.contact-text p {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.method-icon {
  background: var(--cream);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.method-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 0.2rem;
}

.method-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.method-value a {
  color: inherit;
  text-decoration: none;
}

.method-value a:hover { color: var(--gold); }

.method-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 0.15rem;
}

.contact-form-panel {
  background: var(--cream);
  border-radius: 10px;
  padding: 2.5rem;
}

.contact-form-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(30,58,47,0.18);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

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

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

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.85rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.form-submit:hover { background: var(--gold-lt); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 2.5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.footer-brand span { color: var(--olive-bright); }

.footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── MEDIA PLACEHOLDERS ── */
.media-ph {
  position: relative;
  background: repeating-linear-gradient(135deg, #e6e1d6 0 11px, #ddd7ca 11px 22px);
  border: 1px solid rgba(32,32,26,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c8675;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 1.25rem;
  min-height: 200px;
}

.media-ph.dark {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 11px, rgba(255,255,255,0.02) 11px 22px);
  border: 1px solid rgba(166,180,94,0.25);
  color: rgba(255,255,255,0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { min-height: 240px; }
  .about, .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { max-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links { display: none; }
}
