/* ============================================
   FONT LOADING — self-hosted Italianno for logo
   font-display: optional eliminates FOUT flicker.
   ============================================ */
@font-face {
  font-family: 'Italianno';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('image/Italianno-Regular.woff2') format('woff2');
}

:root {
  --paper: #F5EFE3;
  --paper-light: #FAF5EA;
  --paper-deep: #ECE2CE;
  --ink: #1F1A17;
  --ink-soft: #5E544C;
  --ink-muted: #918778;
  --wine: #6B2225;
  --wine-deep: #481416;
  --wine-soft: #8C3E3F;
  --burgundy-tint: rgba(107, 34, 37, 0.08);
  --gold: #B5894C;
  --gold-soft: #D4B584;
  --rust: #A0533F;
  --line: #D4C8B0;
  --line-soft: rgba(107, 34, 37, 0.15);
  --shadow-sm: 0 4px 12px -4px rgba(31, 26, 23, 0.12);
  --shadow-md: 0 14px 32px -10px rgba(31, 26, 23, 0.20);
  --shadow-lg: 0 30px 60px -20px rgba(31, 26, 23, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
::selection { background: var(--wine); color: var(--paper-light); }
img { max-width: 100%; display: block; }

/* ============ SHEET MUSIC BACKGROUND ============ */
.sheet-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.sheet-bg-decorative {
  opacity: 0.5;
}
.sheet-bg-watermark {
  opacity: 0.26;
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.display em, em.fancy {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.italic-fancy {
  font-style: italic;
  font-variation-settings: "opsz" 22, "SOFT" 100, "WONK" 1;
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
section {
  padding: 120px 0;
  position: relative;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wine);
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow.center { justify-content: center; }

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
  max-width: 720px;
}

.section-desc {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.6;
}

/* ============ NAV ============ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 239, 227, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.site-nav.scrolled { border-bottom-color: var(--line-soft); }
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  gap: 4px;
}
.logo-script {
  font-family: 'Italianno', 'Edwardian Script ITC', 'Apple Chancery', 'Snell Roundhand', 'Lucida Handwriting', 'Brush Script MT', cursive;
  font-size: 58px;
  color: var(--wine);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.85;
}
.logo-script em {
  font-style: normal;
  color: var(--gold);
}
.logo-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-left: 4px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wine);
  color: var(--paper-light);
}
.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light {
  background: var(--paper-light);
  color: var(--wine);
}
.btn-light:hover { background: white; }

/* ============ HERO ============ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-sheet-1 {
  top: 120px; right: -80px;
  width: 600px;
}
.hero-sheet-2 {
  bottom: -50px; left: -60px;
  width: 400px;
  transform: rotate(-8deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wine);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(48px, 7vw, 92px);
  margin-bottom: 36px;
}
.hero-desc {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-frame {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 239, 227, 0.4);
  pointer-events: none;
  z-index: 2;
}
.hero-card {
  position: absolute;
  bottom: -30px; left: -30px;
  background: var(--paper-light);
  padding: 20px 26px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 1px solid var(--line-soft);
  max-width: 240px;
}
.hero-card-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 6px;
  font-weight: 600;
}
.hero-card-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  font-variation-settings: "opsz" 22, "SOFT" 100, "WONK" 1;
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-card-meta {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ============ MARQUEE ============ */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-light);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 22, "SOFT" 100, "WONK" 1;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '♪';
  color: var(--wine);
  font-style: normal;
  font-size: 24px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ ABOUT DUO ============ */
.about-duo {
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.about-sheet {
  top: -30px; right: -100px;
  width: 500px;
  transform: rotate(15deg);
}
.about-duo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.about-duo-photo {
  aspect-ratio: 3 / 2;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-duo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.about-duo-photo::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 239, 227, 0.5);
  pointer-events: none;
  z-index: 2;
}
.about-duo-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.about-duo-content h2 em {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.about-duo-content p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 540px;
}
.about-duo-signature {
  margin-top: 36px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--wine);
  font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
}

/* ============ QUOTE BLOCK ============ */
.quote-block {
  padding: 100px 0;
  background: var(--wine);
  color: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.quote-sheet {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  opacity: 0.08;
}
.quote-block .container {
  max-width: 900px;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  font-style: italic;
  font-variation-settings: "opsz" 40, "SOFT" 100, "WONK" 1;
  color: var(--paper-light);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.quote-block cite {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}

/* ============ TEACHERS PREVIEW ============ */
.teachers-section { position: relative; overflow: hidden; }
.teachers-sheet {
  bottom: 100px; left: -120px;
  width: 480px;
  transform: rotate(-12deg);
}
.teachers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
}
.teacher-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-light);
  padding: 48px 44px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.teacher-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.teacher-card:hover {
  border-color: var(--wine);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.teacher-card:hover::before { transform: scaleX(1); }

.teacher-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.teacher-tag {
  display: inline-block;
  background: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid var(--line-soft);
}
.teacher-icon {
  color: var(--wine);
  opacity: 0.85;
}
.teacher-quote-block {
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.teacher-quote-block p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--wine);
  font-variation-settings: "opsz" 20, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.005em;
}
.teacher-name {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.teacher-role {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 22px;
}
.teacher-bio {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 15.5px;
  line-height: 1.65;
}
.teacher-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.credential {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
}
.teacher-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
  width: fit-content;
  margin-top: auto;
}
.teacher-link:hover { gap: 12px; }

/* ============ LESSONS ============ */
.lessons-section {
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.lessons-sheet-1 {
  top: 80px; right: -100px;
  width: 450px;
  transform: rotate(8deg);
}
.lessons-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lesson-card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.lesson-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.lesson-card:hover {
  border-color: var(--wine);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lesson-card:hover::before { transform: scaleX(1); }
.lesson-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--wine);
  border: 1px solid var(--line-soft);
}
.lesson-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.lesson-subtitle {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 20px;
}
.lesson-desc {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 15px;
}
.lesson-details {
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  margin-top: auto;
}
.lesson-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}
.lesson-detail-row span:first-child { color: var(--ink-muted); }
.lesson-detail-row span:last-child { color: var(--ink); font-weight: 600; }

/* ============ STATS ============ */
.stats-section {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats-sheet {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  opacity: 0.05;
}
/* Narrative intro */
.stats-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stats-eyebrow {
  color: var(--gold) !important;
  margin-bottom: 24px;
}
.stats-eyebrow::after {
  background: var(--gold);
  opacity: 0.8;
}
.stats-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-weight: 400;
  color: var(--paper-light);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.stats-title em {
  font-style: italic;
  color: var(--gold);
}
.stats-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: rgba(245, 239, 227, 0.75);
}

/* Subtle divider between intro and stats */
.stats-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

/* Stats grid — refined */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.stat-block {
  text-align: center;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 11vw, 130px);
  line-height: 1;
  margin-bottom: 18px;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  letter-spacing: -0.04em;
}
.stat-plus {
  font-size: 0.55em;
  font-style: italic;
  color: var(--gold-soft);
  vertical-align: 0.15em;
  margin-left: 0.05em;
}
.stat-context {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(245, 239, 227, 0.65);
  margin-bottom: 6px;
  line-height: 1.4;
}
.stat-label {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  letter-spacing: -0.005em;
  color: var(--paper-light);
  line-height: 1.3;
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 30, "WONK" 1;
}
.stat-label-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: rgba(245, 239, 227, 0.6);
  display: inline-block;
  margin-top: 4px;
}

/* ============ CONCERT ============ */
.concert-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.concert-sheet {
  top: 50px; left: -80px;
  width: 400px;
  transform: rotate(-15deg);
}
.concert-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.concert-images {
  position: relative;
  height: 600px;
}
.concert-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
}
.concert-img-1 {
  width: 75%; height: 65%;
  top: 0; left: 0;
}
.concert-img-2 {
  width: 55%; height: 50%;
  bottom: 0; right: 0;
  z-index: 2;
}
.concert-badge {
  position: absolute;
  bottom: 30px; right: 0;
  background: var(--wine);
  color: var(--paper-light);
  padding: 14px 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
  z-index: 3;
  font-variation-settings: "opsz" 18, "SOFT" 100, "WONK" 1;
}
.concert-content h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.concert-content h3 em {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.concert-content p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 540px;
}
.concert-meta {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  align-items: center;
}
.concert-meta-item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.concert-meta-item .value {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--ink);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 140px 0;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.testimonial-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.testimonial-header .section-title { margin: 0 auto 16px; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonials-grid.testimonials-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  gap: 36px;
}
.testimonial-card {
  background: var(--paper);
  padding: 36px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  color: var(--wine);
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-meta { font-size: 12px; color: var(--ink-muted); }

/* ============ FOOTER ============ */
footer {
  background: var(--wine-deep);
  color: var(--paper-deep);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-sheet {
  top: 0; right: 0;
  width: 600px;
  opacity: 0.06;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h4 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--paper-light);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-brand h4 em {
  font-style: italic;
  font-variation-settings: "opsz" 28, "SOFT" 100, "WONK" 1;
  color: var(--gold-soft);
}
.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--paper-deep);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 227, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.6;
}

/* ============ WHATSAPP ============ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
  z-index: 50;
  cursor: pointer;
  transition: transform 0.25s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============ EXTRA SHEET POSITIONS ============ */
.hero-sheet-3 {
  bottom: 100px; right: 200px;
  width: 280px;
  transform: rotate(12deg);
}
.about-sheet-2 {
  bottom: -40px; left: -80px;
  width: 380px;
  transform: rotate(-7deg);
}
.quote-side-1 {
  top: 30px; left: -100px;
  width: 380px;
  transform: rotate(-18deg);
  opacity: 0.07;
}
.teachers-sheet-2 {
  top: 80px; right: -80px;
  width: 340px;
  transform: rotate(10deg);
}
.lessons-sheet-2 {
  bottom: 40px; left: -100px;
  width: 420px;
  transform: rotate(-10deg);
}
.concert-sheet-2 {
  bottom: -60px; right: -80px;
  width: 460px;
  transform: rotate(8deg);
}
.testimonials-sheet-1 {
  top: 60px; left: -110px;
  width: 400px;
  transform: rotate(-12deg);
}
.testimonials-sheet-2 {
  bottom: 80px; right: -120px;
  width: 440px;
  transform: rotate(14deg);
}
.stats-sheet-2 {
  top: -50px; right: -120px;
  width: 420px;
  transform: rotate(-8deg);
  opacity: 0.04;
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   NAVIGATION — Mobile Hamburger Menu
   ============================================ */

/* Hamburger button — hidden on desktop by default */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 110;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile-only nav CTA (Book a Trial inside dropdown) — hidden on desktop */
.nav-cta-mobile {
  display: none;
}

/* Prevent body scroll when menu open */
body.nav-locked {
  overflow: hidden;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  /* ===== Mobile nav: hamburger + dropdown ===== */
  nav.site-nav {
    padding: 14px 20px;
    position: fixed;
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    z-index: 100;
  }
  .nav-toggle { display: flex; }
  
  /* Hide desktop "Book a Trial" button on mobile (CTA moves into dropdown menu) */
  nav.site-nav > .btn.btn-primary { display: none; }
  
  /* Mobile dropdown menu */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper-light);
    border-bottom: 1px solid var(--line-soft);
    padding: 8px 24px 24px;
    gap: 0;
    box-shadow: 0 14px 32px -10px rgba(31, 26, 23, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease-out, opacity 0.2s;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    border-bottom: 1px solid var(--line-soft);
    margin: 0;
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 20px;
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    text-decoration: none;
  }
  .nav-links a::after { display: none; }
  
  /* Mobile CTA button at bottom of menu */
  .nav-cta-mobile {
    display: block;
    border-bottom: none !important;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
  }
  .nav-cta-mobile a {
    text-align: center;
    padding: 14px 24px !important;
    font-style: normal !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* Smaller logo on mobile so nav bar isn't enormous */
  .logo-script { font-size: 38px; }
  .logo-tag { font-size: 8px; letter-spacing: 0.28em; }

  /* Hero text scales down */
  .hero h1, .hero .display { font-size: clamp(38px, 9vw, 56px) !important; line-height: 1.04 !important; }
  
  /* Touch-friendly button heights */
  .btn { min-height: 44px; padding: 12px 24px; }
  
  /* Footer columns stack with breathing room */
  .footer-col { margin-bottom: 8px; }
  .footer-col h5 { margin-bottom: 14px; }
  .hero { padding: 130px 0 60px; }
  .hero-grid, .teachers-grid, .lessons-grid, .lessons-header,
  .concert-grid, .testimonials-grid, .footer-grid, .stats-grid,
  .about-duo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { width: 100%; }
  .concert-images { height: 420px; }
  .stats-intro { margin-bottom: 40px; }
  .stats-divider { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr; gap: 56px; max-width: 360px; }
  section { padding: 80px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .sheet-bg { display: none; }
}


/* ============================================
   INNER PAGE — PAGE HEADER
   ============================================ */
.page-header {
  padding: 160px 0 80px;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.page-header-inner { max-width: 900px; position: relative; z-index: 2; }
.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-header p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.6;
}
.page-sheet-1 {
  top: 100px; right: -120px;
  width: 500px;
  transform: rotate(8deg);
}
.page-sheet-2 {
  bottom: -80px; left: -100px;
  width: 400px;
  transform: rotate(-10deg);
}

/* ============================================
   TEACHERS PAGE
   ============================================ */
.teacher-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.teacher-detail:nth-of-type(even) { background: var(--paper-light); }
.teacher-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.teacher-detail-grid.reverse {
  grid-template-columns: 1.15fr 0.85fr;
  direction: rtl;
}
.teacher-detail-grid.reverse > * { direction: ltr; }

.teacher-detail-meta {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.teacher-detail-icon-large {
  color: var(--wine);
  opacity: 0.9;
}
.teacher-detail-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.05;
}
.teacher-detail-role {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 12px;
}
.teacher-detail-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--wine);
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-variation-settings: "opsz" 22, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.005em;
}
.teacher-bio-full {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.75;
}
.teacher-bio-full strong { color: var(--ink); font-weight: 600; }
.teacher-credentials-list {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.teacher-credentials-list h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.teacher-credentials-list ul { list-style: none; }
.teacher-credentials-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.teacher-credentials-list li::before {
  content: '♪';
  color: var(--wine);
  flex-shrink: 0;
  font-size: 14px;
}

/* Together on stage */
.together-section {
  padding: 140px 0;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.together-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.together-video {
  max-width: 900px;
  margin: 60px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.together-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA section */
.cta-section {
  padding: 100px 0;
  background: var(--wine);
  color: var(--paper-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta-section h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-variation-settings: "opsz" 56, "SOFT" 100, "WONK" 1;
}
.cta-section p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta-sheet {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  opacity: 0.07;
}

/* ============================================
   LESSONS PAGE
   ============================================ */
.lesson-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.lesson-detail:nth-of-type(even) { background: var(--paper-light); }
.lesson-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.lesson-detail-meta { position: sticky; top: 110px; }
.lesson-detail-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 14, "SOFT" 100, "WONK" 1;
}
.lesson-detail-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.lesson-detail-info {
  margin-top: 32px;
  background: var(--paper);
  padding: 28px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
}
.lesson-detail:nth-of-type(even) .lesson-detail-info {
  background: var(--paper-light);
  border-color: var(--line);
}
.lesson-detail-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
  color: var(--wine);
}
.lesson-detail-content h3:first-child { margin-top: 0; }
.lesson-detail-content p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.lesson-detail-content ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
  color: var(--ink-soft);
}
.lesson-detail-content li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
.lesson-detail-content li::before {
  content: '♪';
  color: var(--wine);
  position: absolute;
  left: 0;
  font-size: 14px;
}
.lesson-detail-content strong { color: var(--ink); }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 16px 24px;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.gallery-tab:hover { color: var(--ink); }
.gallery-tab.active { color: var(--wine); }
.gallery-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--wine);
}

.concert-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.concert-item {
  display: block;
  color: inherit;
  /* not clickable — purely visual archive */
}
.concert-item-img {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  background: var(--paper-light);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.concert-item-img img {
  width: 100%;
  height: auto;
  display: block;
  /* image keeps its natural aspect ratio — landscape stays landscape, portrait stays portrait */
}
.concert-item-year {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--paper-light);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--wine);
}
.concert-item-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.concert-item-subtitle {
  font-size: 13px;
  color: var(--ink-muted);
}

.video-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.video-archive .video-card {
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
}
.video-archive .video-card iframe { width: 100%; height: 100%; border: none; }
.video-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-top: 20px;
  letter-spacing: -0.01em;
}
.video-item p {
  color: var(--ink-muted);
  font-size: 13px;
  margin-top: 4px;
}

.recordings-card {
  margin-top: 60px;
  padding: 48px;
  background: var(--paper-light);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}
.recordings-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  margin: 20px 0 24px;
  letter-spacing: -0.01em;
}
.recordings-list { list-style: none; }
.recordings-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.recordings-list li:last-child { border-bottom: none; }
.recording-title { font-weight: 600; font-size: 15px; }
.recording-subtitle { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }
.recording-composer {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--wine);
  font-variation-settings: "opsz" 18, "SOFT" 100, "WONK" 1;
  font-size: 18px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section-inner { padding: 100px 0; position: relative; overflow: hidden; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-info h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.contact-info h2 em {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: "opsz" 48, "SOFT" 100, "WONK" 1;
}
.contact-detail {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-detail:first-of-type { border-top: 1px solid var(--line-soft); }
.contact-detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--paper-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  border: 1px solid var(--line-soft);
}
.contact-detail-content .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-detail-content .value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact-detail-content .value a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.contact-form {
  background: var(--paper-light);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-form > p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wine);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--wine);
  color: var(--paper-light);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--wine-deep); }

/* Map */
.map-embed {
  margin-top: 60px;
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* FAQ */
.faq-section {
  padding: 100px 0;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.faq-list { display: flex; flex-direction: column; }
details.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
}
details.faq-item:first-child { border-top: 1px solid var(--line-soft); }
details.faq-item summary {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  color: var(--wine);
  transition: transform 0.3s;
  line-height: 1;
  flex-shrink: 0;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* Mobile adjustments for inner pages */
@media (max-width: 900px) {
  .teacher-detail-grid,
  .teacher-detail-grid.reverse,
  .lesson-detail-grid,
  .contact-page-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .teacher-detail-meta, .lesson-detail-meta { position: static; }
  .concert-archive { grid-template-columns: 1fr 1fr; }
  .video-archive { grid-template-columns: 1fr; }
  .page-header { padding: 130px 0 60px; }
  .contact-form { padding: 32px 24px; }
  .recordings-card { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .concert-archive { grid-template-columns: 1fr; }
}


/* ============================================
   HOMEPAGE VIDEO SHOWCASE
   ============================================ */
.video-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.video-showcase {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-sm);
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

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


/* ============ HOMEPAGE FEATURED SINGLE VIDEO ============ */
.video-feature {
  margin-top: 60px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  position: relative;
  z-index: 2;
}
.video-feature iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ============ YOUTUBE THUMBNAIL CARDS ============ */
/* For videos that disable embedding — clickable thumbnails that open YouTube */
.video-thumb {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.3s, transform 0.6s;
}
.video-thumb:hover img {
  filter: brightness(0.78);
  transform: scale(1.04);
}
.video-thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 52px;
  background: rgba(31, 26, 23, 0.75);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}
.video-thumb:hover .video-thumb-play {
  background: var(--wine);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-thumb-play::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
.video-thumb-yt-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  z-index: 2;
}
.video-thumb-yt-label::before {
  content: 'YouTube · ';
  color: #FF0000;
}

/* Featured/large thumbnail for homepage hero video */
.video-thumb-featured {
  margin-top: 60px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.video-thumb-featured .video-thumb-play {
  width: 96px;
  height: 68px;
}
.video-thumb-featured .video-thumb-play::before {
  border-width: 16px 0 16px 26px;
}

.video-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .video-thumbs-grid { grid-template-columns: 1fr; }
}


/* ============================================
   STUDIO PAGE
   ============================================ */

/* Intro section — text + photo split */
.studio-intro {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--paper-light);
}
.studio-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.studio-intro-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.studio-intro-text p strong { color: var(--ink); font-weight: 600; }
.studio-quote {
  font-family: 'Fraunces', serif !important;
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.5 !important;
  color: var(--wine) !important;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin-top: 32px !important;
  font-variation-settings: "opsz" 22, "SOFT" 100, "WONK" 1;
}
.studio-intro-photo .photo-frame {
  background: var(--paper-light);
  padding: 14px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.studio-intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* Three studio rooms */
.studio-rooms {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.studio-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.studio-room:last-child { margin-bottom: 0; }
.studio-room.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.studio-room.reverse > * { direction: ltr; }

.studio-room-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.studio-room-img img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.studio-room-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 14, "SOFT" 100, "WONK" 1;
}
.studio-room-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.studio-room-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.studio-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.studio-features li {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--wine);
  padding: 6px 14px;
  background: var(--burgundy-tint);
  border-radius: 999px;
}

/* Lesson in progress */
.studio-lesson {
  padding: 120px 0;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.studio-lesson-photo {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.studio-lesson-photo img {
  width: 100%;
  display: block;
}
.studio-lesson-caption {
  max-width: 760px;
  margin: 60px auto 0;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  z-index: 2;
  font-variation-settings: "opsz" 30, "SOFT" 100, "WONK" 1;
}
.studio-lesson-caption em {
  color: var(--wine);
  font-style: italic;
}

/* Beyond the studio — 3 card grid */
.studio-beyond {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.studio-beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  z-index: 2;
}
.beyond-card {
  display: flex;
  flex-direction: column;
}
.beyond-card-img {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.beyond-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.beyond-card:hover .beyond-card-img img { transform: scale(1.04); }
.beyond-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.beyond-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* Features / recognition section */
.studio-features-section {
  padding: 100px 0;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  padding: 36px 24px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.feature-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-badge img {
  max-width: 160px;
  max-height: 100px;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.feature-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink-muted);
}
.feature-badge-text {
  justify-content: space-between;
}
.feature-badge-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 20px;
}
.feature-badge-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--wine);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
}
.feature-badge-subtitle {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .studio-intro-grid,
  .studio-room,
  .studio-room.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .studio-beyond-grid {
    grid-template-columns: 1fr;
  }
  .features-row {
    grid-template-columns: 1fr;
  }
  .studio-rooms .studio-room { margin-bottom: 60px; }
}


/* ============================================
   TEACHER PHOTOS (homepage cards + detail sidebar)
   ============================================ */

/* Homepage teacher card — small centered clickable photo.
   Portrait/polaroid style — 200px wide, sits inside the card padding,
   centered. Clicking goes to the teacher's detail section. */
.teacher-photo {
  display: block;
  position: relative;
  width: 200px;
  max-width: 60%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 auto 28px;
  cursor: pointer;
  background: var(--paper-deep);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s;
}
.teacher-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s, filter 0.3s;
  filter: saturate(0.95);
}
.teacher-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}
.teacher-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--paper);
  color: var(--wine);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.teacher-photo::after {
  /* subtle hover indicator: "click to read more" */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(31,26,23,0.15));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.teacher-photo:hover::after { opacity: 1; }

/* Teachers detail page — photo in sidebar (non-clickable, already on this page) */
.teacher-detail-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 4px;
}
.teacher-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .teacher-photo {
    width: 180px;
  }
}


/* ============ HERO PHOTO CLICKABLE HOTSPOTS ============ */
/* Left half = Tan Dihui, right half = Ng Wei Ping.
   Transparent <a> tags over each half of the hero image — no visual hover,
   just cursor:pointer indicates clickability. */
.hero-frame { position: relative; }

.hero-hotspot {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  cursor: pointer;
}
.hero-hotspot-left { left: 0; }
.hero-hotspot-right { right: 0; }


/* ============================================
   CONTACT PAGE — Teacher cards + Transport
   ============================================ */
.contact-cards-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.teacher-contact-card {
  position: relative;
  background: var(--paper-light);
  padding: 48px 40px 40px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}

.teacher-contact-card-tag {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--wine);
  padding: 5px 12px;
  background: var(--paper);
  border-radius: 999px;
}

.teacher-contact-card h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.teacher-contact-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.2s;
}
.contact-method:last-child { border-bottom: none; }
.contact-method:hover { padding-left: 6px; }

.contact-method-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.contact-method:hover .contact-method-icon {
  background: var(--wine);
  color: var(--paper-light);
  border-color: var(--wine);
}

.contact-method-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-method-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  font-weight: 600;
}
.contact-method-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

/* Address + Facebook row below the two cards */
.contact-extra-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  position: relative;
  z-index: 2;
}
.contact-extra-item {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 15px;
  color: var(--ink-soft);
}
.contact-extra-item svg {
  flex-shrink: 0;
  color: var(--wine);
}
.contact-extra-item strong {
  color: var(--ink);
  display: inline-block;
}
.contact-extra-item a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Getting Here */
.getting-here-section {
  padding: 100px 0;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.transport-card {
  background: var(--paper);
  padding: 36px 28px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.transport-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-light);
  border-radius: 50%;
  color: var(--wine);
}
.transport-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.transport-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.transport-card strong {
  color: var(--ink);
  font-weight: 600;
}

.transport-list {
  list-style: none;
  padding: 0;
}
.transport-list li {
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line-soft);
}
.transport-list li:last-child { border-bottom: none; }

/* Mobile */
@media (max-width: 800px) {
  .contact-cards-grid,
  .contact-extra-row,
  .transport-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .teacher-contact-card { padding: 36px 28px 28px; }
}


/* ============================================
   HOMEPAGE CONCERT — single big featured photo
   (replaces the old .concert-img-1/concert-img-2 split)
   ============================================ */
.concert-hero-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 3;
}
.concert-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   LESSONS PAGE — Teaching Objectives & Goals
   ============================================ */
.teaching-philosophy {
  padding: 100px 0;
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.philosophy-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.philosophy-intro {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto 60px;
  font-variation-settings: "opsz" 26, "SOFT" 100, "WONK" 1;
}

.goal-heading {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--wine);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.goal-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 32px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.goal-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 38, "SOFT" 100, "WONK" 1;
}
.goal-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.goal-card p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 800px) {
  .goals-grid { grid-template-columns: 1fr; gap: 16px; }
  .goal-card { padding: 24px; }
  .concert-hero-photo { aspect-ratio: 4 / 3; }
}
