/* ============================================
   TAM Custom Styles — sydney-child/tam-custom.css
   learnmusiceasily.com
   ============================================ */

:root {
  --tam-primary: #30b0c7;
  --tam-primary-hover: #278DA0;
  --tam-secondary: #FF3B30;
  --tam-black: #101212;
  --tam-white: #FAFFFF;
  --tam-bg-muted: #F1F4F4;
  --tam-border: #DCE2E2;
  --tam-text-muted: #5C6363;
  --tam-text-caption: #8A9090;
  --tam-font-heading: 'Playfair Display', Georgia, serif;
  --tam-font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-soft: 0 2px 12px rgba(16,18,18,0.08);
  --shadow-tiny: 0 1px 6px rgba(16,18,18,0.06);
}

/* ---- Reset & base for TAM pages ---- */
.tam-landing-page,
.tam-booking-page,
.tam-tutor-page {
  font-family: var(--tam-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--tam-black);
  background: var(--tam-white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
.tam-landing-page *,
.tam-booking-page *,
.tam-tutor-page * { box-sizing: border-box; }
.tam-landing-page img,
.tam-booking-page img,
.tam-tutor-page img { max-width: 100%; display: block; }
.tam-landing-page h1,
.tam-landing-page h2,
.tam-landing-page h3,
.tam-landing-page h4,
.tam-booking-page h1,
.tam-booking-page h2,
.tam-booking-page h3,
.tam-tutor-page h1,
.tam-tutor-page h2,
.tam-tutor-page h3 {
  font-family: var(--tam-font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--tam-black);
}
.tam-landing-page p { margin: 0 0 16px; }
.tam-landing-page a { color: var(--tam-primary); text-decoration: none; }

/* ---- Container ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--tam-font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--tam-primary); color: var(--tam-white) !important; border-color: var(--tam-primary); }
.btn-primary:hover { background: var(--tam-primary-hover); border-color: var(--tam-primary-hover); color: var(--tam-white) !important; }
.btn-secondary { background: transparent; color: var(--tam-black) !important; border-color: var(--tam-black); }
.btn-secondary:hover { border-color: var(--tam-primary); color: var(--tam-primary); }
.btn-ghost { background: none; border: none; color: var(--tam-primary); padding: 14px 4px; font-weight: 600; font-family: var(--tam-font-body); font-size: 15px; }
.btn-ghost:hover { color: var(--tam-primary-hover); }
.btn-ghost .arrow { display: inline-block; transition: transform 0.18s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tam-primary);
  margin-bottom: 14px;
  font-family: var(--tam-font-body);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--tam-primary);
}
.eyebrow.center { justify-content: center; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: 38px; }
.section-head p { color: var(--tam-text-muted); }
section.tam-section { padding: 80px 0; }
.section-muted { background: var(--tam-bg-muted); }

/* ---- Checklist ---- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; gap: 12px; padding: 8px 0; color: var(--tam-text-muted); font-size: 15px; }
.checklist li::before { content: '\2713'; color: var(--tam-primary); font-weight: 700; flex-shrink: 0; }

/* ============================================
   HEADER / NAV (Landing page)
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(39,141,160,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(250,255,255,0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nav__logo img { height: 48px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--tam-font-body);
}
.nav__links a { color: #FAFFFF; transition: color 0.15s; }
.nav__links a:hover { color: rgba(250,255,255,0.7); }
.nav__cta { display: flex; align-items: center; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: #FAFFFF; margin: 4px 0; transition: 0.2s ease; }
/* Scrolled header state */
.site-header.scrolled { background: rgba(18,18,28,0.97); backdrop-filter: blur(4px); border-bottom-color: transparent; }
.site-header.scrolled .nav__links a { color: #FAFFFF !important; }
.site-header.scrolled .nav__links a:hover { color: var(--tam-primary) !important; }
.site-header.scrolled .nav__toggle span { background: #FAFFFF; }

/* Hero dark-teal overrides */
.hero .eyebrow { color: rgba(250,255,255,0.72); }
.hero .trust-row { color: rgba(250,255,255,0.82); }
.hero .trust-row li::before { background: rgba(250,255,255,0.5) !important; color: rgba(250,255,255,0.5) !important; }
.hero .btn-primary { background: #FAFFFF !important; color: #278DA0 !important; border-color: #FAFFFF !important; }
.hero .btn-primary:hover { background: #F1F4F4 !important; color: #278DA0 !important; border-color: #F1F4F4 !important; }
.hero .btn-ghost { color: #FAFFFF !important; }
.hero .btn-ghost:hover { color: rgba(250,255,255,0.72) !important; }

/* ============================================
   HERO
   ============================================ */
.hero { padding: 64px 0 0; overflow: hidden; background: #278DA0; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
.hero__content h1 { font-size: 46px; margin-bottom: 20px; color: #FAFFFF; }
.hero__content h1 em { font-style: italic; color: #FAFFFF; }
.hero__sub { font-size: 16px; color: rgba(250,255,255,0.85); max-width: 480px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--tam-text-muted);
}
.trust-row li { display: flex; align-items: center; gap: 8px; }
.trust-row li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--tam-primary); flex-shrink: 0; }
.hero__ctas { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hero__media { position: relative; }
.hero__media img { border-radius: 10px; width: 100%; height: 85vh; object-fit: cover; }
.hero__testimonial {
  position: absolute;
  left: -40px;
  bottom: -28px;
  background: var(--tam-white);
  border: 1px solid var(--tam-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 18px 20px;
  max-width: 280px;
}
.hero__testimonial .stars { color: var(--tam-primary); font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.hero__testimonial p { font-style: italic; font-family: var(--tam-font-heading); font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.hero__testimonial-by { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--tam-text-caption); }
.hero__testimonial-by img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }

/* Stats */
.stats { background: var(--tam-black); color: var(--tam-bg-muted); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.stats__item { padding: 36px 20px; border-left: 1px solid rgba(250,255,255,0.12); }
.stats__item:first-child { border-left: none; }
.stats__num { font-family: var(--tam-font-heading); font-size: 32px; font-weight: 700; color: var(--tam-primary); margin-bottom: 6px; }
.stats__label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(250,255,255,0.65); font-family: var(--tam-font-body); }

/* Hero animations */
@keyframes tam-fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.hero__content > * { opacity:0; animation: tam-fadeUp 0.6s ease forwards; }
.hero__content .eyebrow { animation-delay: 0.05s; }
.hero__content h1 { animation-delay: 0.15s; }
.hero__content .hero__sub { animation-delay: 0.25s; }
.hero__content .trust-row { animation-delay: 0.35s; }
.hero__content .hero__ctas { animation-delay: 0.45s; }
@keyframes tam-slideIn { from { opacity:0; transform:translateX(-12px); } to { opacity:1; transform:translateX(0); } }
.hero__testimonial { animation: tam-slideIn 0.6s ease forwards; animation-delay: 0.7s; opacity:0; }

/* ============================================
   FEATURE CARDS (What You Get)
   ============================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 64px; }
.feature-card {
  background: var(--tam-white);
  border: 1px solid var(--tam-border);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease;
}
.feature-card:hover { transform: translateY(-2px); }
.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--tam-bg-muted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--tam-text-muted); font-size: 15px; margin: 0; }
.detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.detail-row h3 { font-size: 22px; margin-bottom: 16px; }
.mini-instruments { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-instruments span { background: var(--tam-white); border: 1px solid var(--tam-border); border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 600; font-family: var(--tam-font-body); }

/* ============================================
   INSTRUMENTS
   ============================================ */
.instruments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.instrument-tile {
  background: var(--tam-white);
  border: 1px solid var(--tam-border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.instrument-tile:hover { transform: translateY(-2px); border-color: var(--tam-primary); }
.instrument-tile img { width: 48px; height: 48px; margin: 0 auto 14px; }
.instrument-tile h4 { font-family: var(--tam-font-body); font-weight: 600; font-size: 15px; margin: 0; }
.instrument-tile.selected { border-color: var(--tam-primary); background: var(--tam-primary-faint); box-shadow: 0 0 0 2px var(--tam-primary); position: relative; }
.instrument-tile.selected::after { content: "\2713"; position: absolute; top: 8px; right: 10px; font-size: 13px; font-weight: 700; color: var(--tam-primary); }
.instrument-tile--tailored { border-style: dashed; border-color: var(--tam-primary); position: relative; }
.badge { display: inline-block; background: var(--tam-bg-muted); color: var(--tam-text-muted); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border-radius: 999px; padding: 4px 12px; margin-top: 8px; font-family: var(--tam-font-body); }
.instruments-footnote { text-align: center; margin-top: 36px; color: var(--tam-text-muted); font-size: 14px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: var(--tam-white);
  border: 1px solid var(--tam-border);
  border-radius: 10px;
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.price-card__label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tam-text-caption); font-family: var(--tam-font-body); }
.price-card__price { font-family: var(--tam-font-heading); font-weight: 700; font-size: 44px; color: var(--tam-primary); margin: 6px 0 0; }
.price-card__price small { font-family: var(--tam-font-body); font-weight: 400; font-size: 15px; color: var(--tam-text-muted); display: block; margin-top: 4px; }
.price-card .checklist { margin: 28px 0; flex-grow: 1; }
.price-card__footnote { font-size: 13px; color: var(--tam-text-caption); margin: 16px 0 0; }
.comparison-callout { margin-top: 36px; background: var(--tam-bg-muted); border-radius: 10px; padding: 24px 28px; font-size: 14px; color: var(--tam-text-muted); text-align: center; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: var(--tam-white); border: 1px solid var(--tam-border); border-radius: 10px; padding: 28px; box-shadow: var(--shadow-soft); }
.testimonial-card .stars { color: var(--tam-primary); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-family: var(--tam-font-heading); font-style: italic; font-size: 15.5px; color: var(--tam-black); }
.testimonial-card__by { font-size: 13px; color: var(--tam-text-caption); font-weight: 600; margin-top: 16px; font-family: var(--tam-font-body); }

/* ============================================
   TUTORS
   ============================================ */
.tutor-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--tam-border);
}
.tutor-card:last-of-type { border-bottom: none; }
.tutor-card--reverse { grid-template-columns: 1fr 1fr; }
.tutor-card--reverse .tutor-card__photo { order: 2; }
.tutor-card__photo img { border-radius: 10px; width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-soft); }
.tutor-card__role { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tam-primary); margin-bottom: 6px; font-family: var(--tam-font-body); }
.tutor-card h3 { font-size: 30px; margin-bottom: 12px; }
.tutor-card blockquote { margin: 0 0 16px; font-family: var(--tam-font-heading); font-style: italic; font-size: 17px; color: var(--tam-black); border-left: 3px solid var(--tam-primary); padding-left: 16px; }
.tutor-card p.bio { color: var(--tam-text-muted); }
.tutor-card__specialties { list-style: none; margin: 20px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; font-size: 14px; font-family: var(--tam-font-body); }
.tutor-card__specialties li { display: flex; gap: 8px; align-items: flex-start; }
.tutor-card__specialties li::before { content: '\1F3B5'; flex-shrink: 0; font-size: 13px; }
.tutor-card__availability { font-size: 13px; color: var(--tam-text-caption); margin-bottom: 20px; font-family: var(--tam-font-body); }
.tutor-card__ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.tam-tutor-card-link { display: block; margin-top: 8px; color: #5C6363; font-size: 13px; text-decoration: none; font-family: var(--tam-font-body); }
.tam-tutor-card-link:hover { text-decoration: underline; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--tam-border); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--tam-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--tam-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item__q .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--tam-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--tam-primary);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-item__q .icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; color: var(--tam-text-muted); font-size: 15px; font-family: var(--tam-font-body); }
.faq-item.open .faq-item__a { max-height: 500px; padding-bottom: 22px; }

/* ============================================
   FINAL CTA + FOOTER
   ============================================ */
.final-cta { background: var(--tam-black); color: var(--tam-white); text-align: center; padding: 80px 0; }
.final-cta h2 { color: var(--tam-white); font-size: 36px; }
.final-cta p { color: rgba(250,255,255,0.7); max-width: 520px; margin: 0 auto 28px; }
.final-cta .micro { margin-top: 18px; font-size: 13px; color: rgba(250,255,255,0.5); font-family: var(--tam-font-body); }
.site-footer { background: var(--tam-bg-muted); padding: 40px 0; text-align: center; font-size: 13px; color: var(--tam-text-caption); font-family: var(--tam-font-body); }
.site-footer img { height: 28px; width: auto; display: block; margin: 0 auto 14px; }
.site-footer a { color: var(--tam-text-muted); }
.site-footer p { margin: 4px 0; }

/* ============================================
   MENTORSHIP MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,18,18,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--tam-white);
  border-radius: 10px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(16,18,18,0.18);
  animation: tam-fadeUp 0.25s ease;
}
.modal__header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px 0; }
.modal__header h3 { font-size: 24px; margin: 0; font-family: var(--tam-font-heading); }
.modal__close { background: none; border: none; font-size: 22px; line-height: 1; cursor: pointer; color: var(--tam-text-caption); padding: 4px 8px; }
.modal__close:hover { color: var(--tam-black); }
.modal__tabs { display: flex; gap: 4px; padding: 16px 28px 0; border-bottom: 1px solid var(--tam-border); }
.modal__tab { background: none; border: none; padding: 10px 4px; margin-right: 24px; font-family: var(--tam-font-body); font-weight: 600; font-size: 14px; color: var(--tam-text-caption); cursor: pointer; border-bottom: 2px solid transparent; }
.modal__tab.active { color: var(--tam-primary); border-bottom-color: var(--tam-primary); }
.modal__body { padding: 24px 28px 32px; }
.modal__pane { display: none; }
.modal__pane.active { display: block; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; font-family: var(--tam-font-body); }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--tam-border); border-radius: 8px; font-family: var(--tam-font-body); font-size: 15px; background: var(--tam-white); color: var(--tam-black); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--tam-primary); }
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-mentorship .price-display { font-family: var(--tam-font-heading); font-weight: 700; font-size: 36px; color: var(--tam-primary); margin: 16px 0 4px; }
.about-mentorship .price-display small { font-family: var(--tam-font-body); font-weight: 400; font-size: 14px; color: var(--tam-text-muted); display: block; }
.about-mentorship .footer-note { font-size: 13px; color: var(--tam-text-caption); background: var(--tam-bg-muted); border-radius: 8px; padding: 14px 16px; margin: 20px 0; }

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-page { background: var(--tam-bg-muted); min-height: 85vh; padding: 48px 0 80px; }
.booking-shell { max-width: 720px; margin: 0 auto; background: var(--tam-white); border-radius: 12px; box-shadow: var(--shadow-soft); overflow: hidden; }
.booking-header { text-align: center; padding: 36px 24px 0; }
.booking-header h1 { font-size: 28px; margin-bottom: 4px; font-family: var(--tam-font-heading); }
.booking-header p { color: var(--tam-text-muted); font-size: 14px; font-family: var(--tam-font-body); }
.progress { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 24px 24px 0; }
.progress__dot { width: 28px; height: 28px; border-radius: 50%; background: var(--tam-bg-muted); border: 1px solid var(--tam-border); color: var(--tam-text-caption); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: all 0.2s ease; flex-shrink: 0; font-family: var(--tam-font-body); }
.progress__dot.active { background: var(--tam-primary); border-color: var(--tam-primary); color: var(--tam-white); }
.progress__dot.done { background: var(--tam-primary-hover); border-color: var(--tam-primary-hover); color: var(--tam-white); }
.progress__line { width: 28px; height: 1px; background: var(--tam-border); }
.step-body { padding: 32px 32px 40px; min-height: 360px; }
.step { display: none; animation: tam-fadeUp 0.35s ease; }
.step.active { display: block; }
.step h2 { font-size: 24px; margin-bottom: 6px; text-align: center; font-family: var(--tam-font-heading); }
.step__sub { text-align: center; color: var(--tam-text-muted); font-size: 14px; margin-bottom: 28px; font-family: var(--tam-font-body); }
.option-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.option-card { border: 1.5px solid var(--tam-border); border-radius: 10px; padding: 20px 12px; text-align: center; cursor: pointer; background: var(--tam-white); transition: all 0.15s ease; }
.option-card:hover { border-color: var(--tam-primary); transform: translateY(-2px); }
.option-card.selected { border-color: var(--tam-primary); background: rgba(48,176,199,0.06); box-shadow: 0 0 0 1px var(--tam-primary); }
.option-card img { width: 36px; height: 36px; margin: 0 auto 10px; }
.option-card span { font-size: 13px; font-weight: 600; display: block; font-family: var(--tam-font-body); }
.slot-list { display: flex; flex-direction: column; gap: 10px; }
.slot-option { border: 1.5px solid var(--tam-border); border-radius: 10px; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.15s ease; }
.slot-option:hover { border-color: var(--tam-primary); }
.slot-option.selected { border-color: var(--tam-primary); background: rgba(48,176,199,0.06); box-shadow: 0 0 0 1px var(--tam-primary); }
.slot-option__time { font-weight: 600; font-size: 15px; font-family: var(--tam-font-body); }
.slot-option__badge { font-size: 12px; color: var(--tam-text-caption); background: var(--tam-bg-muted); border-radius: 999px; padding: 4px 10px; font-family: var(--tam-font-body); }
.slot-option--taken { opacity: 0.40; cursor: not-allowed; }
.slot-option--taken:hover { border-color: var(--tam-border); }
.slot-option__badge--taken { background: #cc4444; color: #fff; }
.format-toggle { margin-top: 24px; }
.format-toggle__label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 10px; font-family: var(--tam-font-body); }
.format-toggle__switch { display: inline-flex; border: 1.5px solid var(--tam-border); border-radius: 10px; overflow: hidden; }
.format-toggle__option { font-family: var(--tam-font-body); font-size: 14px; font-weight: 600; padding: 10px 20px; border: none; background: var(--tam-white); color: var(--tam-text-muted); cursor: pointer; transition: all 0.15s ease; }
.format-toggle__option + .format-toggle__option { border-left: 1.5px solid var(--tam-border); }
.format-toggle__option.active { background: var(--tam-primary); color: var(--tam-white); }
.format-toggle__option:hover:not(.active) { background: var(--tam-bg-muted); }
.step-nav { display: flex; justify-content: space-between; align-items: center; padding: 0 32px 32px; }
.step-nav .spacer { flex: 1; }
.summary-box { border: 1px solid var(--tam-border); border-radius: 10px; background: var(--tam-bg-muted); padding: 20px 24px; margin: 24px 0; }
.summary-box dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 14px; font-family: var(--tam-font-body); }
.summary-box dt { color: var(--tam-text-caption); font-weight: 600; }
.summary-box dd { margin: 0; }
.confirm-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(48,176,199,0.12); color: var(--tam-primary); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; }
.prep-list { list-style: none; padding: 0; margin: 20px 0; }
.prep-list li { padding: 6px 0 6px 24px; position: relative; color: var(--tam-text-muted); font-size: 14px; font-family: var(--tam-font-body); }
.prep-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--tam-primary); font-weight: 700; }
.email-note { font-size: 13px; color: var(--tam-text-caption); text-align: center; margin-top: 24px; font-family: var(--tam-font-body); }
.tutor-reveal { text-align: center; padding: 20px; background: rgba(48,176,199,0.06); border: 1px solid var(--tam-primary); border-radius: 10px; margin: 16px 0; }
.tutor-reveal h3 { font-size: 20px; color: var(--tam-primary); margin-bottom: 6px; }
.tutor-reveal p { font-size: 14px; color: var(--tam-text-muted); margin: 0; font-family: var(--tam-font-body); }

/* ============================================
   TUTOR PAGES (/tutors/john/, /tutors/kyle/)
   ============================================ */
.tutor-page {
  background: #278DA0;
  color: #FAFFFF;
  min-height: 85vh;
}
.tutor-page__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.tutor-page--reverse .tutor-page__row { direction: rtl; }
.tutor-page--reverse .tutor-page__row > * { direction: ltr; }
.tutor-page__photo { position: relative; overflow: hidden; min-height: 360px; }
.tutor-page__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tutor-page__photo--glow { border-radius: 0 24px 24px 0; }
.tutor-page--reverse .tutor-page__photo--glow { border-radius: 24px 0 0 24px; }
.tutor-page__photo--glow::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
.tutor-page__photo--collage .tutor-page__collage-item { position: absolute; border: 3px solid #278DA0; border-radius: 8px; overflow: hidden; width: 28%; aspect-ratio: 1/1; box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.tutor-page__photo--collage .tutor-page__collage-item img { width: 100%; height: 100%; object-fit: cover; }
.tutor-page__photo--collage .tutor-page__collage-item:nth-child(2) { bottom: 24px; left: 24px; }
.tutor-page__photo--collage .tutor-page__collage-item:nth-child(3) { bottom: 24px; left: calc(24px + 28% + 12px); }
.tutor-page__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  gap: 18px;
  color: #FAFFFF;
}
.tutor-page__backlink { color: #FAFFFF; opacity: 0.7; font-size: 13px; text-decoration: none; font-family: var(--tam-font-body); }
.tutor-page__backlink:hover { text-decoration: underline; opacity: 1; color: #FAFFFF; }
.tutor-page__role { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #FAFFFF; opacity: 0.85; font-family: var(--tam-font-body); }
.tutor-page__name { font-family: var(--tam-font-heading); font-weight: 700; font-size: 52px; margin: 0; line-height: 1.1; color: #0D0D0D; background: #FAFFFF; padding: 14px 40px; box-shadow: 4px 4px 24px rgba(0,0,0,0.12); position: relative; z-index: 2; }
/* John — box extends left into photo */
.tutor-page:not(.tutor-page--reverse) .tutor-page__name { padding-left: 108px; margin-left: -108px; width: calc(100% + 108px); }
/* Kyle — box extends right into photo */
.tutor-page--reverse .tutor-page__name { padding-right: 108px; width: calc(100% + 108px); box-shadow: -4px 4px 24px rgba(0,0,0,0.12); }
.tutor-page__quote { font-family: var(--tam-font-heading); font-style: italic; font-size: 20px; margin: 0; max-width: 480px; opacity: 0.95; color: #FAFFFF; }
.tutor-page__bio { font-family: var(--tam-font-body); font-size: 15px; line-height: 1.7; max-width: 520px; color: #FAFFFF; opacity: 0.92; margin: 0; }
.tutor-page__message-label { font-weight: 600; display: block; margin-bottom: 4px; font-family: var(--tam-font-body); font-size: 13px; opacity: 0.75; }
.tutor-page__message { font-family: var(--tam-font-body); font-size: 15px; line-height: 1.7; max-width: 520px; color: #FAFFFF; opacity: 0.85; margin: 0; font-style: italic; }
.tutor-page__cta { background: #FAFFFF; color: #278DA0; border-radius: 8px; padding: 14px 28px; font-family: var(--tam-font-body); font-weight: 600; font-size: 15px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.18s ease; }
.tutor-page__cta:hover { background: #F1F4F4; color: #278DA0; }
.tutor-page__video-section { background: rgba(0,0,0,0.15); padding: 64px 24px; text-align: center; }
.tutor-page__video-section h2 { color: #FAFFFF; font-size: 28px; margin-bottom: 24px; }
/* John's page: subtle cool diagonal — scoped to non-reverse layout */
.tutor-page:not(.tutor-page--reverse) .tutor-page__row {
  background: linear-gradient(90deg, transparent 50%, rgba(0,0,0,0.10) 100%);
}
.video-placeholder { max-width: 800px; margin: 0 auto; aspect-ratio: 16/9; background: rgba(0,0,0,0.25); border: 2px dashed rgba(250,255,255,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: rgba(250,255,255,0.6); font-family: var(--tam-font-body); }
.video-placeholder .play-icon { font-size: 48px; opacity: 0.5; }

/* Placeholder states for tutors/instruments awaiting real photos or icons */
.tutor-card__photo--placeholder,
.tutor-page__photo--placeholder {
  background: rgba(0,0,0,0.06);
  border: 2px dashed var(--tam-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--tam-text-caption);
  font-family: var(--tam-font-body);
  font-size: 13px;
  text-align: center;
}
.tutor-card__photo--placeholder { border-radius: 10px; aspect-ratio: 4/5; }
.tutor-page__photo--placeholder { width: 100%; height: 100%; min-height: 360px; border: none; border-radius: 0; background: rgba(0,0,0,0.15); color: rgba(250,255,255,0.6); }
.tutor-card__photo--placeholder .placeholder-icon,
.tutor-page__photo--placeholder .placeholder-icon { font-size: 40px; opacity: 0.6; }
.tutor-card__photo { position: relative; }
.photo-ai-note {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(16,18,18,0.72);
  color: #FAFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--tam-font-body);
  letter-spacing: 0.02em;
  z-index: 2;
  backdrop-filter: blur(2px);
}
.tutor-page__photo .photo-ai-note { bottom: 20px; left: 20px; }
.instrument-tile__icon-placeholder {
  font-size: 32px;
  margin: 0 auto 14px;
  line-height: 1;
}
.option-card__icon-placeholder { margin: 0 auto 10px; font-size: 26px; line-height: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--tam-white); border-bottom: 1px solid var(--tam-border); padding: 16px 24px 24px; gap: 16px; align-items: flex-start; z-index: 99; }
  .nav__links.open .nav__cta { width: 100%; }
  .nav__links.open .nav__cta .btn { width: 100%; }
  .nav__toggle { display: block; }
  .nav { position: relative; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; margin-bottom: 60px; }
  .hero__testimonial { left: 16px; right: 16px; max-width: none; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stats__item:nth-child(3) { border-left: none; }
  .cards-3 { grid-template-columns: 1fr; }
  .detail-row { grid-template-columns: 1fr; gap: 32px; }
  .instruments-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .tutor-card, .tutor-card--reverse { grid-template-columns: 1fr; gap: 24px; }
  .tutor-card--reverse .tutor-card__photo { order: 0; }
  .tutor-card__photo img { aspect-ratio: 16/10; }
  .tutor-card__specialties { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: repeat(2,1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  section.tam-section { padding: 56px 0; }
  .section-head h2 { font-size: 30px; }
  .tutor-page__row { grid-template-columns: 1fr; direction: ltr !important; }
  .tutor-page--reverse .tutor-page__row > * { direction: ltr; }
  .tutor-page__photo { min-height: 50vh; }
  .tutor-page__photo--glow, .tutor-page--reverse .tutor-page__photo--glow { border-radius: 0; }
  .tutor-page__content { padding: 40px 24px; }
  .tutor-page__name { font-size: 38px; margin-left: 0 !important; padding: 12px 20px !important; width: auto !important; }
}
@media (max-width: 600px) {
  .hero__content h1 { font-size: 36px; }
  .step-body { padding: 24px 20px 32px; }
  .step-nav { padding: 0 20px 24px; }
  .modal { margin: 0; border-radius: 10px 10px 0 0; max-height: 92vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
}
