/* Dialogwerk München – fine-mouse-7.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --c1: #8b4a2b;
  --c2: #c49a3c;
  --c3: #1a1714;
  --c4: #6d6462;
  --c5: #7a7166;
  --c6: #d5cdc1;
  --c7: #f5f0e8;
  --c8: #faf8f4;
  --c9: #ffffff;
  --border: #e0d9d0;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --max: 1290px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c4);
  background: var(--c8);
}

h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 300; color: var(--c3); line-height: 1.2; }
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
a { color: var(--c1); text-decoration: none; }
a:hover { color: var(--c2); }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

/* ====== HEADER ====== */
#masthead {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
#masthead.scrolled {
  position: fixed;
  background: var(--c8);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 16px 20px 16px 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.site-logo svg { width: 160px; height: auto; }
.site-logo .logo-text {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--c9);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
#masthead.scrolled .site-logo .logo-text { color: var(--c3); }
#masthead.scrolled .nav-link { color: var(--c3); }
#masthead.scrolled .nav-link:hover { color: var(--c1); }
#masthead.scrolled .header-cta { background: var(--c1); color: var(--c9); }

.primary-nav { display: flex; align-items: center; gap: 0; }
.nav-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--c9);
  padding: 0.76em 0.7em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--c2); }
.nav-link.active { color: var(--c9); }

.header-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c8);
  background: #585150;
  border-radius: 2px;
  padding: 4px 16px;
  margin-left: 20px;
  transition: background 0.2s, color 0.2s;
}
.header-cta:hover { background: var(--c1); color: var(--c9); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--c9);
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
#masthead.scrolled .mobile-toggle { color: var(--c3); }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10rem;
  background-color: var(--c3);
  background-image: url('../img-assets/hero-bg.webp');
  background-size: cover;
  background-position: 60% 50%;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,23,20,0.50);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 0 2rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem; height: 1px;
  background: currentColor;
  opacity: 0.8;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--serif);
  font-size: 68px;
  line-height: 65px;
  font-weight: 300;
  color: var(--c8);
  max-width: 935px;
  margin-bottom: 2rem;
  letter-spacing: -0.04px;
}
.hero-title em { color: var(--c2); font-style: italic; }
.hero-subtitle {
  font-size: 20px;
  color: var(--c6);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.btn-group { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c3);
  background: var(--c7);
  border-radius: 2px;
  padding: 14px 32px;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--c2); color: var(--c9); box-shadow: 0 15px 25px -7px rgba(0,0,0,0.15); }
.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c9);
  background: transparent;
  border-bottom: 1px solid var(--c6);
  padding: 14px 0;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--c2); border-color: var(--c2); }

/* ====== STATS STRIP ====== */
.stats-strip {
  background: var(--c7);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--c1);
  line-height: 1;
  letter-spacing: 2px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c5);
  margin-top: 8px;
}

/* ====== PHILOSOPHY SECTION ====== */
.philosophy {
  padding: 100px 0;
  background: var(--c8);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, calc(55% - 74px)) minmax(0, calc(45% - 74px));
  column-gap: 148px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
}
.philosophy-text .eyebrow { color: var(--c2); }
.philosophy-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--c3);
  margin-bottom: 2rem;
  line-height: 1.15;
}
.philosophy-heading em { color: var(--c2); font-style: italic; }
.philosophy-text p {
  font-size: 17px;
  color: var(--c4);
  margin-bottom: 1.4rem;
  line-height: 1.75;
}
.philosophy-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stats-row .stat-num { font-size: 48px; }
.philosophy-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: 0 20px 54px rgba(26,23,20,0.21);
}

/* ====== COURSES SECTION ====== */
.courses-section {
  background: var(--c3);
  padding: 80px 0;
}
.section-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem; height: 1px;
  background: currentColor;
  opacity: 0.8;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--c8);
  line-height: 1.15;
}
.section-title.dark { color: var(--c3); }
.courses-pair {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}
.course-card {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,23,20,0.55);
  z-index: 1;
  transition: background 0.3s;
}
.course-card:hover::before { background: rgba(26,23,20,0.4); }
.course-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.course-card-content { position: relative; z-index: 2; }
.course-status {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 0.5rem;
}
.course-card h3 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--c9);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

/* ====== PRICE GRID ====== */
.price-section {
  background: var(--c7);
  padding: 80px 0;
}
.price-section .section-eyebrow { color: var(--c2); }
.price-section .section-header { padding-bottom: 2rem; }
.price-section .section-title { color: var(--c3); }
.price-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.price-card {
  background: var(--c8);
  padding: 40px 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card:hover { border-color: var(--c1); box-shadow: 0 8px 32px rgba(26,23,20,0.08); }
.price-card.featured { border-color: var(--c2); background: var(--c3); }
.price-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--c1);
  line-height: 1;
  margin-bottom: 8px;
}
.price-card.featured .price-num { color: var(--c2); }
.price-card h3 {
  font-size: 20px;
  font-weight: 300;
  color: var(--c3);
  margin-bottom: 1rem;
}
.price-card.featured h3 { color: var(--c8); }
.price-card p {
  font-size: 15px;
  color: var(--c5);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.price-card.featured p { color: var(--c6); }
.price-tag {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--c3);
  display: block;
}
.price-card.featured .price-tag { color: var(--c9); }
.price-period {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c5);
}
.price-card.featured .price-period { color: var(--c6); }
.price-card-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c1);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.price-card.featured .price-card-cta { color: var(--c2); }
.price-card-cta:hover { color: var(--c2); }

/* ====== FEATURES GRID ====== */
.features-section {
  background: var(--c8);
  padding: 80px 0;
}
.features-section .section-eyebrow { color: var(--c2); }
.features-section .section-header { padding-bottom: 2rem; }
.features-section .section-title { color: var(--c3); }
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-item {
  padding: 2rem 2.5rem 2rem 0;
  border-top: 1px solid var(--border);
}
.feature-item:nth-child(n+4) { border-top: 1px solid var(--border); padding-top: 2rem; }
.feature-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--c1);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.feature-item h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: 0.8rem;
}
.feature-item p {
  font-size: 15px;
  color: var(--c5);
  line-height: 1.7;
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
  background: var(--c7);
  padding: 80px 0;
}
.testimonials-section .section-eyebrow { color: var(--c2); }
.testimonials-section .section-title { color: var(--c3); }
.testimonials-section .section-header { padding-bottom: 2rem; }
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, calc(55% - 74px)) minmax(0, calc(45% - 74px));
  column-gap: 148px;
  align-items: start;
}
.quote-main {
  background: var(--c3);
  padding: 48px 48px 59px 48px;
}
.quote-main blockquote {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--c7);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.quote-byline {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c5);
}
.quotes-stack { display: flex; flex-direction: column; gap: 16px; }
.quote-small {
  background: var(--c9);
  border-left: 3px solid var(--c2);
  padding: 24px;
}
.quote-small blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--c3);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.quote-small .quote-byline {
  font-size: 10px;
  letter-spacing: 2px;
}

/* ====== BIO SECTION ====== */
.bio-section {
  background: var(--c8);
  padding: 80px 0;
}
.bio-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, calc(40% - 40px)) minmax(0, calc(60% - 40px));
  column-gap: 80px;
  align-items: center;
}
.bio-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 54px rgba(26,23,20,0.21);
}
.bio-eyebrow {
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c5);
  margin-bottom: 1.2rem;
}
.bio-heading {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--c3);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.bio-heading em { color: var(--c2); font-style: italic; }
.bio-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--c4);
  margin-bottom: 1.2rem;
}

/* ====== CTA BAND ====== */
.cta-band {
  background: var(--c1);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--c9);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.cta-band p {
  font-size: 18px;
  color: rgba(250,248,244,0.8);
  margin-bottom: 2rem;
}
.cta-band a {
  color: var(--c2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-band .btn-primary {
  background: var(--c9);
  color: var(--c1);
  font-size: 13px;
}
.cta-band .btn-primary:hover { background: var(--c2); color: var(--c9); }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--c3);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  column-gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo-text {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--c9);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  color: var(--c6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(213,205,193,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c6);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--c2); color: var(--c2); }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c6);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--c5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--c2); }
.footer-contact p {
  font-size: 14px;
  color: var(--c5);
  line-height: 1.8;
}
.footer-contact a { color: var(--c5); }
.footer-contact a:hover { color: var(--c2); }
.footer-bottom {
  border-top: 1px solid rgba(213,205,193,0.15);
  padding-top: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--c5);
}

/* ====== COOKIES ALERT ====== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--c3);
  border-top: 1px solid rgba(196,154,60,0.3);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { font-size: 14px; color: var(--c6); max-width: 700px; line-height: 1.6; }
#cookie-banner a { color: var(--c2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
.btn-cookie-accept {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c3);
  background: var(--c2);
  border: none;
  border-radius: 2px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--c9); }
.btn-cookie-decline {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c5);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.btn-cookie-decline:hover { color: var(--c6); }

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  background: var(--c3);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; color: var(--c2); margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--c9);
  margin-bottom: 1rem;
}
.page-hero p { font-size: 18px; color: var(--c6); max-width: 560px; margin: 0 auto; }

/* ====== CONTENT SECTION ====== */
.content-section { padding: 80px 0; background: var(--c8); }
.content-section.alt-bg { background: var(--c7); }
.prose h2 { font-size: 36px; margin-bottom: 1.2rem; color: var(--c3); }
.prose h3 { font-size: 24px; margin: 2rem 0 1rem; color: var(--c3); }
.prose p { font-size: 16px; line-height: 1.8; color: var(--c4); margin-bottom: 1.2rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose ul li { font-size: 16px; line-height: 1.8; color: var(--c4); margin-bottom: 0.4rem; }
.prose a { color: var(--c1); }
.prose a:hover { color: var(--c2); }

/* ====== CONTACT FORM ====== */
.contact-section { padding: 80px 0; background: var(--c8); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-info h2 { font-size: 38px; margin-bottom: 1.5rem; }
.contact-info p { font-size: 16px; color: var(--c4); line-height: 1.8; margin-bottom: 1rem; }
.contact-info .contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-detail i { color: var(--c1); margin-top: 3px; width: 18px; }
.contact-form-wrap h3 { font-size: 28px; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c5);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--c9);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--c3);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { margin-top: 1rem; }
.btn-submit {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c8);
  background: var(--c3);
  border: none;
  border-radius: 2px;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.btn-submit:hover { background: var(--c1); box-shadow: 0 15px 25px -7px rgba(0,0,0,0.15); }
.form-note { font-size: 13px; color: var(--c5); margin-top: 0.8rem; }

/* ====== MAP PLACEHOLDER ====== */
.map-section { background: var(--c3); }
.map-placeholder {
  height: 380px;
  background: #2a2520;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c5);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ====== ABOUT PAGE ====== */
.about-values {
  background: var(--c7);
  padding: 80px 0;
}
.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.value-card i { color: var(--c1); font-size: 24px; margin-bottom: 1rem; }
.value-card h3 { font-size: 22px; margin-bottom: 0.8rem; }
.value-card p { font-size: 15px; color: var(--c5); line-height: 1.7; }
.about-team-section { padding: 80px 0; background: var(--c8); }
.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card img { width: 100%; height: 320px; object-fit: cover; margin-bottom: 1.2rem; }
.team-card h4 { font-size: 22px; margin-bottom: 0.3rem; }
.team-card .role {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 0.8rem;
}
.team-card p { font-size: 14px; color: var(--c5); line-height: 1.7; }

/* ====== MOBILE ====== */
@media (max-width: 1024px) {
  .testimonials-grid,
  .philosophy-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 3rem; }
  .bio-grid { grid-template-columns: 1fr; row-gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; row-gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .courses-pair { grid-template-columns: 1fr; row-gap: 10px; }
  .price-grid { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 46px; line-height: 50px; }
  .hero { padding-bottom: 6rem; }
  .section-title, .philosophy-heading { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .primary-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title em { display: block; }
  .btn-group { gap: 2rem; }
  .page-hero h1 { font-size: 38px; }
  #masthead { position: fixed; background: var(--c3); }
  .site-logo .logo-text { color: var(--c9); }
  .mobile-toggle { color: var(--c9); }
}

/* ====== MOBILE NAV DRAWER ====== */
#mobile-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--c3);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 80px 2rem 2rem;
  overflow-y: auto;
}
#mobile-drawer.open { right: 0; }
.drawer-nav ul { list-style: none; }
.drawer-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.drawer-nav ul li a {
  display: block;
  padding: 1em 0;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c8);
  transition: color 0.2s;
}
.drawer-nav ul li a:hover { color: var(--c2); }
.drawer-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: none; border: none;
  color: var(--c6); font-size: 22px;
  cursor: pointer;
}
#drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  display: none;
}
#drawer-overlay.visible { display: block; }
