/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.page-hero--vocal {
  background: linear-gradient(135deg, #f5edd8 0%, #f0e0c0 50%, #e8d4a8 100%);
}

.page-hero--piano {
  background: linear-gradient(135deg, #ede8f5 0%, #ddd4ee 50%, #cec4e4 100%);
}

.page-hero--flute {
  background: linear-gradient(135deg, #dff0e8 0%, #c8e8d8 50%, #b0dcc8 100%);
}

.page-hero--olivia {
  background: linear-gradient(135deg, #f5edd8 0%, #ece0ee 50%, #dde8e0 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #333;
}

.page-hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.page-hero-catch {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #666;
  font-style: italic;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: #f5f5f5;
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--gold-dark);
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { margin: 0 8px; }

/* ===== LP Sections ===== */
.lp-section {
  padding: 80px 0;
}

.bg-beige { background: var(--beige); }

.lp-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ===== Trouble List ===== */
.trouble-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trouble-list li {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trouble-cta-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ===== LP Block (two column) ===== */
.lp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lp-block-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 16px 0 24px;
}

.lp-block-text p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.lp-block-accent blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--gold-light);
  background: #fff;
  border-radius: var(--radius);
}

/* ===== Two Column Cards ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.two-col-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.two-col-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold-dark);
}

/* ===== Competition List ===== */
.competition-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.competition-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #f0ece4;
}

.competition-list li:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.competition-list li:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: none; }

.competition-name { font-weight: 500; }

.competition-result {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 16px;
}

/* ===== Genre Grid ===== */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.genre-item {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.genre-item h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.genre-item p { font-size: 0.95rem; line-height: 1.8; }

/* ===== Lesson Target Cards ===== */
.lesson-targets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lesson-target-card {
  background: var(--beige);
  padding: 32px;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.lesson-target-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.lesson-target-card p { font-size: 0.95rem; line-height: 1.8; }

/* ===== Fee Table ===== */
.fee-table-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fee-table th {
  background: var(--gold);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
}

.fee-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0ece4;
  font-size: 0.95rem;
}

.fee-table tr:last-child td { border-bottom: none; }

.fee-trial td { background: #fffbf4; }

.fee-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 600;
  white-space: nowrap;
}

.fee-notes {
  margin-top: 16px;
  padding-left: 4px;
}

.fee-notes li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 4px 0;
}

.fee-notes li::before {
  content: '※ ';
}

/* ===== Teacher Block ===== */
.teacher-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.teacher-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #e8e0d5;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.teacher-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}

.teacher-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.teacher-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.teacher-instrument {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.teacher-bio p {
  margin-bottom: 12px;
  line-height: 1.9;
  font-size: 0.95rem;
}

.teacher-career {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8e0d5;
}

.teacher-career li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}

.teacher-career li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== CTA Section ===== */
.lp-cta {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.lp-cta h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.lp-cta p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.8;
}

.lp-cta .btn-primary {
  background: #fff;
  color: var(--gold-dark);
}

.lp-cta .btn-primary:hover {
  background: var(--gold-light);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lp-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col,
  .genre-grid,
  .lesson-targets {
    grid-template-columns: 1fr;
  }

  .teacher-block {
    grid-template-columns: 1fr;
  }

  .teacher-photo-placeholder {
    aspect-ratio: 1/1;
    max-width: 200px;
    margin: 0 auto;
  }

  .competition-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .competition-result { margin-left: 0; }

  .page-hero { height: 280px; }
}
