/* === BASE === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --bg: #faf7f2;
  --bg-2: #f3ede4;
  --surface: #ede6da;
  --surface-2: #e5dccf;
  --accent: #b89a5a;
  --accent-hover: #a6873e;
  --accent-dim: rgba(184, 154, 90, 0.12);
  --accent-border: rgba(184, 154, 90, 0.3);
  --text: #2e2b26;
  --text-muted: #7a7368;
  --text-dim: #a09889;
  --border: rgba(46, 43, 38, 0.10);
  --border-strong: rgba(46, 43, 38, 0.18);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --shadow-md: 0 4px 24px rgba(46, 43, 38, 0.08);
  --shadow-lg: 0 12px 48px rgba(46, 43, 38, 0.12);
  --max-w: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === LOGO BANNER === */
.logo-banner {
  width: 100%;
  height: 380px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.logo-banner img {
  height: 266px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-banner {
    height: 190px;
    padding: 0 1.5rem;
  }
  .logo-banner img {
    height: 160px;
  }
}

/* === NAV === */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100;
}

.nav-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 88px; width: auto; max-height: 88px; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.nav-phone {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone a {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-phone a:hover { color: var(--accent-hover); }

.nav-contact {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-contact:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #faf7f2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 154, 90, 0.25);
}

/* === MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 43, 38, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.75rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s;
}
.modal-close:hover { background: var(--surface); border-color: var(--border-strong); }

.modal-overline {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.modal h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* === FORM === */
.modal-form { display: flex; flex-direction: column; gap: 0.85rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237a7368' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  background: var(--accent);
  color: #faf7f2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.95rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form-message {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.form-success {
  background: rgba(46, 125, 71, 0.10);
  border: 1px solid rgba(46, 125, 71, 0.25);
  color: #2e7d47;
}
.form-error {
  background: rgba(180, 74, 74, 0.10);
  border: 1px solid rgba(180, 74, 74, 0.25);
  color: #b44a4a;
}

.form-disclosure {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* === HERO === */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184, 154, 90, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(184, 154, 90, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-text { display: flex; flex-direction: column; }

.hero-overline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 100px;
  line-height: 1.4;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #faf7f2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
}
.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 154, 90, 0.3);
}

.hero-image-wrap { position: relative; }

.hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.hero-img-glow {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184,154,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-top: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === DIFFERENTIATION === */
.differentiation {
  padding: 7rem 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.diff-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.diff-quote cite {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  padding-left: 1.75rem;
  margin-bottom: 1.5rem;
}

.diff-context {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.75rem;
  line-height: 1.7;
}

.diff-features { display: flex; flex-direction: column; gap: 0; }

.diff-item {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.diff-item:last-child { border-bottom: none; }

.diff-marker {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.diff-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.diff-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === PROGRAMS (3 Tiers) === */
.programs {
  padding: 7rem 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.programs-header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
}

.programs-header .section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.programs-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.programs-header > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.tier-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tier-card:hover::before { opacity: 1; }

.tier-card-featured {
  background: var(--surface-2);
  border-color: var(--accent-border);
}
.tier-card-featured::before { opacity: 1; }

.tier-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.tier-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.tier-price-wrap {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.tier-price-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.35rem;
}

.tier-courses { display: flex; flex-direction: column; gap: 1.25rem; }

.tier-course { display: flex; flex-direction: column; gap: 0.4rem; }

.tier-course-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.tier-course-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tier-course-includes li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}

.tier-course-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.tier-card-footer {
  padding-top: 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier-view-btn {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.tier-view-btn:hover { color: var(--accent); }

.tier-register-btn {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--accent);
  color: #faf7f2;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}
.tier-register-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* === TEAM / MEET YOUR INSTRUCTORS === */
.team-section {
  padding: 7rem 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.team-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.team-header .section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.team-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.team-header > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.team-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-photo-wrap {
  width: 100%;
  height: auto;
  overflow: visible;
  background: var(--surface-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.03);
}

.team-card-body {
  padding: 2.25rem 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-role {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.team-credentials {
  font-style: italic;
  font-weight: 400;
}

.team-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.team-bio {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.team-bio p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CLASS CALENDAR === */
.calendar-section {
  padding: 7rem 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.calendar-header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.calendar-header .section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.calendar-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 0.75rem;
}

.calendar-header > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.calendar-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.calendar-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.calendar-meta-item strong {
  color: var(--accent);
  font-weight: 600;
}

/* Monthly Calendar Widget */
.month-calendar-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.month-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.month-calendar-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
}

.month-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.month-nav-btn:hover:not(:disabled) {
  background: var(--surface-2);
  border-color: var(--accent-border);
  color: var(--accent);
}
.month-nav-btn:disabled { cursor: default; }

.month-calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.legend-beginner { background: #5b8a6e; }
.legend-advanced { background: var(--accent); }
.legend-booked { background: var(--text-dim); }

.month-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.cal-day-header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 0.5rem 0 0.75rem;
}

#calendarDays {
  display: contents;
}

.cal-day {
  min-height: 80px;
  border: 1px solid var(--border);
  margin: -0.5px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  background: var(--bg);
  transition: background 0.15s, box-shadow 0.15s;
}

.cal-day-empty {
  background: transparent;
  border-color: transparent;
}

.cal-day-num {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cal-day-has-class {
  cursor: pointer;
  background: var(--bg);
}
.cal-day-has-class:hover {
  background: var(--surface-2);
  box-shadow: inset 0 0 0 2px var(--accent-border);
  z-index: 2;
}

.cal-day-has-class .cal-day-num {
  font-weight: 700;
  color: var(--text);
}

.cal-day-beginner {
  border-left: 3px solid #5b8a6e;
}

.cal-day-advanced {
  border-left: 3px solid var(--accent);
}

.cal-day-sold-out {
  opacity: 0.65;
}

.cal-day-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 0.15rem;
}

.cal-day-beginner .cal-day-label { color: #5b8a6e; }
.cal-day-advanced .cal-day-label { color: var(--accent); }

.cal-day-status {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cal-day-status-booked { color: var(--text-dim); }

/* Detail Panel */
.cal-detail-panel {
  margin-top: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  overflow: hidden;
}

.cal-detail-inner {
  padding: 2rem;
  position: relative;
}

.cal-detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: background 0.2s;
}
.cal-detail-close:hover { background: var(--surface-2); }

.cal-detail-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.cal-badge-beginner {
  background: rgba(91, 138, 110, 0.12);
  color: #5b8a6e;
  border: 1px solid rgba(91, 138, 110, 0.25);
}
.cal-badge-advanced {
  background: rgba(184, 154, 90, 0.12);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.cal-detail-inner h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.cal-detail-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cal-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cal-detail-spots {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cal-detail-bar-wrap { margin-bottom: 1.25rem; }

.cal-detail-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.cal-detail-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s;
}

.cal-register-btn {
  background: var(--accent);
  color: #faf7f2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.cal-register-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cal-waitlist-btn {
  background: var(--surface-2);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cal-waitlist-btn:hover {
  background: var(--bg);
  border-color: var(--accent-border);
}

/* Private Mentorship CTA */
.private-mentorship-note {
  max-width: 900px;
  margin: 2rem auto 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.private-mentorship-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.private-mentorship-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.private-mentorship-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.private-mentorship-text a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}
.private-mentorship-text a:hover { color: var(--accent-hover); }

/* === INQUIRY / BOTTOM CTA === */
.inquiry-section {
  padding: 7rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.inquiry-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.inquiry-left .section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.inquiry-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.inquiry-left > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.inquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.inquiry-contact-item strong { color: var(--text); }

.inquiry-contact-item a {
  color: var(--accent);
  transition: color 0.2s;
}
.inquiry-contact-item a:hover { color: var(--accent-hover); }

.inline-form { display: flex; flex-direction: column; gap: 0.85rem; }

/* === PRICING PAGE === */
.pricing-hero {
  padding: 4rem 4rem 3rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.pricing-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-hero .section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.pricing-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.pricing-hero > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.disclosure-banner {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.disclosure-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #faf7f2;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.disclosure-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.disclosure-text strong { color: var(--text); font-weight: 600; }

.pricing-page-body { padding: 5rem 4rem; }

.pricing-page-grid { max-width: var(--max-w); margin: 0 auto; }

.pricing-page-section { margin-bottom: 5rem; }
.pricing-page-section:last-child { margin-bottom: 0; }

.pps-header { margin-bottom: 2rem; }

.pps-header h2 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.pps-header p { font-size: 0.88rem; color: var(--text-muted); }

.pps-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.pps-tier-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pps-tier-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.pps-tier-courses { display: flex; flex-direction: column; gap: 0.75rem; }

.pps-course { display: flex; flex-direction: column; gap: 0.3rem; }

.pps-course-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.pps-course-items { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; }

.pps-course-items li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 0.9rem;
  position: relative;
}

.pps-course-items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* === FOOTER === */
footer {
  padding: 3.5rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 2.5rem;
  gap: 3rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-links { display: flex; gap: 4rem; }

.footer-col h4 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--accent); }

.footer-col li a.tel-link { color: var(--accent); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #faf7f2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.footer-cta:hover { background: var(--accent-hover); }

/* === REGISTRATION SECTION === */
.registration-section {
  padding: 7rem 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.registration-inner {
  max-width: 860px;
  margin: 0 auto;
}

.registration-header {
  text-align: center;
  margin-bottom: 3rem;
}

.registration-header .section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.registration-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.registration-header > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.registration-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.registration-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.registration-form .form-group.full-width {
  grid-column: 1 / -1;
}

.form-section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.5rem 0;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label strong {
  color: var(--text);
  font-weight: 500;
}

.selected-class-display {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-class-info {}

.selected-class-date {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.selected-class-tier {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.change-class-btn {
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
}

.change-class-btn:hover { color: var(--text); }

/* === MOBILE NAV — hamburger + slide-down menu === */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger-open span:nth-child(2) { opacity: 0; }
.nav-hamburger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 5rem 2rem 3rem;
}
.mobile-nav.mobile-nav-open {
  display: flex;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: var(--accent); }
.mobile-nav-phone {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  border-bottom: none;
  margin-top: 0.5rem;
}
.mobile-nav-cta {
  margin-top: 1.5rem;
  background: var(--accent);
  color: #faf7f2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: background 0.2s;
}
.mobile-nav-cta:hover { background: var(--accent-hover); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-center { gap: 1.5rem; }
  .diff-inner { gap: 3rem; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diff-inner, .inquiry-inner { grid-template-columns: 1fr; gap: 3rem; }
  .topnav { padding: 1rem 2rem; }
  .hero, .differentiation, .programs, .inquiry-section, .pricing-page-body, .calendar-section, .registration-section { padding: 4rem 2rem; }
  .pricing-hero { padding: 3rem 2rem 2rem; }
  footer { padding: 3rem 2rem; }
  .month-calendar-wrap { padding: 1.5rem; }
}

@media (max-width: 900px) {
  .hero-image-wrap {
    display: block;
    width: 100%;
    order: -1;
    margin-bottom: 1rem;
  }
  .hero-img {
    height: auto;
    object-fit: contain;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .logo-banner { padding: 1.25rem 1.5rem; }
  .logo-banner img { height: 133px; }
  .topnav .nav-logo-wrap { display: none; }
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-link { font-size: 0.6rem; letter-spacing: 0.04em; }
  .nav-phone { font-size: 0.65rem; gap: 0.15rem; }
  .nav-phone svg { width: 10px; height: 10px; }
  .nav-contact { font-size: 0.6rem; }
  .nav-cta { padding: 0.35rem 0.7rem; font-size: 0.6rem; }
  .topnav { padding: 0.7rem 0.75rem; gap: 0.5rem; flex-wrap: nowrap; }

  /* Hero */
  .hero { padding: 0 1.25rem; min-height: auto; }
  .hero-inner { padding: 2rem 0; gap: 1.5rem; }
  .hero-img { height: auto; object-fit: contain; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .hero-body { font-size: 0.95rem; margin-bottom: 1.75rem; }

  /* Programs */
  .programs, .differentiation, .inquiry-section, .pricing-page-body, .calendar-section, .registration-section {
    padding: 3.5rem 1.25rem;
  }
  .team-section { padding: 3.5rem 1.25rem; }
  .tiers-grid { grid-template-columns: 1fr; }

  /* Tier buttons — min 44px tap target */
  .tier-register-btn {
    padding: 0.75rem 1.3rem;
    min-height: 44px;
  }

  .team-card-body { padding: 1.5rem; }

  /* Forms — 16px minimum to prevent iOS auto-zoom */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 2rem 1.25rem; }
  .modal h2 { font-size: 1.75rem; }
  .registration-form .form-row { grid-template-columns: 1fr; }
  .pps-tier-grid { grid-template-columns: 1fr; }

  /* Form submit — 44px tap target */
  .form-submit { min-height: 48px; font-size: 1rem; }

  /* Nav CTA in modal context */
  .nav-cta { min-height: 44px; }

  /* Footer */
  footer { padding: 2.5rem 1.25rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }

  /* Calendar */
  .month-calendar-wrap { padding: 1rem 0.5rem 1.5rem; border-radius: 14px; }
  .month-calendar-nav { margin-bottom: 1rem; }
  .month-calendar-title { font-size: 1.25rem; }
  /* Prev/next nav buttons — 44px tap target */
  .month-nav-btn { width: 44px; height: 44px; }
  /* Day cells — compact but tappable */
  .cal-day { min-height: 52px; padding: 0.25rem 0.2rem; }
  .cal-day-label { font-size: 0.48rem; letter-spacing: 0; }
  .cal-day-status { font-size: 0.45rem; }
  .cal-day-num { font-size: 0.7rem; }
  .cal-detail-inner { padding: 1.25rem; }
  .cal-detail-meta { gap: 1rem; flex-direction: column; }
  .month-calendar-legend { gap: 0.75rem; flex-wrap: wrap; }
  .private-mentorship-note { flex-direction: column; }
  /* Calendar CTA buttons — 44px */
  .cal-register-btn, .cal-waitlist-btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    min-height: 48px;
    text-align: center;
  }
  /* Registration form inside calendar */
  .registration-section { padding: 2.5rem 1.25rem; }
  .registration-form { padding: 1.5rem 1.25rem; }
  .selected-class-display { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .checkbox-label { font-size: 0.82rem; }
  /* Pricing hero */
  .pricing-hero { padding: 2.5rem 1.25rem 2rem; }
  .pricing-page-body { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
  /* Extra narrow — keep content from breaking */
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-cta { width: 100%; justify-content: center; min-height: 48px; }
  .stat-num { font-size: 1.75rem; }
  /* Calendar: absolute minimum usable on 360px */
  .cal-day { min-height: 46px; }
  .cal-day-num { font-size: 0.65rem; }
  .cal-day-label { display: none; } /* Too tiny — rely on color indicator only */
  .cal-day-has-class .cal-day-num { font-weight: 800; }
  /* Legend stays visible to explain colors */
  /* Team section */
  .team-name { font-size: 1.5rem; }
  /* Footer */
  .footer-logo-img { height: 40px; }
}