:root {
  --ink: #11243d;
  --navy: #15385e;
  --navy-deep: #07192d;
  --red: #c51f3d;
  --red-dark: #9e1730;
  --gold: #d5a951;
  --paper: #f5f6f5;
  --muted: #687687;
  --line: #dce2e7;
  --shadow: 0 22px 60px rgba(7, 25, 45, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  border-top: 7px solid var(--red);
  background: #fff;
}
.brand img { width: 210px; height: 62px; object-fit: contain; }
.header-link { color: var(--navy); font-size: 14px; font-weight: 800; text-decoration: none; }
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 25, 45, .98), rgba(14, 49, 84, .88)),
    repeating-linear-gradient(110deg, transparent 0 32px, rgba(255, 255, 255, .03) 32px 33px);
}
.hero::before {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(197, 31, 61, .11), 0 0 0 140px rgba(255, 255, 255, .025);
  content: "";
}
.hero-inner { position: relative; z-index: 1; width: min(1180px, calc(100% - 48px)); margin: auto; padding: 88px 0 74px; }
.eyebrow, .section-kicker { margin: 0 0 7px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow { color: #f1a5b3; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { max-width: 850px; margin: 0; font-family: Georgia, "Noto Serif SC", serif; font-size: clamp(44px, 7vw, 78px); font-weight: 600; letter-spacing: -.045em; line-height: 1.12; }
h1 span { display: inline-block; white-space: nowrap; }
.lead { max-width: 760px; margin: 22px 0 30px; color: #dce5ee; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 24px; border-radius: 8px; font-weight: 850; text-decoration: none; transition: .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 12px 26px rgba(197, 31, 61, .25); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border: 1px solid rgba(255, 255, 255, .35); color: #fff; background: rgba(255, 255, 255, .08); }
.facts { display: grid; max-width: 950px; grid-template-columns: repeat(4, 1fr); margin: 54px 0 0; border-top: 1px solid rgba(255, 255, 255, .18); }
.facts div { padding: 20px 25px 0 0; }
.facts dt { color: #9eb0c2; font-size: 12px; }
.facts dd { margin: 2px 0 0; font-size: 18px; font-weight: 850; }
.section-nav { position: sticky; top: 0; z-index: 5; display: flex; justify-content: center; gap: 28px; overflow-x: auto; padding: 15px 24px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px); }
.section-nav a { flex: 0 0 auto; color: #42556a; font-size: 13px; font-weight: 800; text-decoration: none; }
.section-nav a:hover { color: var(--red); }
.page { width: min(1180px, calc(100% - 48px)); margin: auto; padding-top: 74px; }
.intro, .content-section { padding: 0 0 90px; border-bottom: 1px solid var(--line); scroll-margin-top: 58px; }
.content-section { padding-top: 90px; }
.section-title { margin-bottom: 40px; }
.section-title.centered { max-width: 700px; margin-right: auto; margin-left: auto; text-align: center; }
.section-title > p:last-child { max-width: 780px; color: var(--muted); }
h2 { margin: 0; color: var(--navy-deep); font-family: Georgia, "Noto Serif SC", serif; font-size: clamp(30px, 4vw, 46px); line-height: 1.18; }
h3 { color: var(--navy-deep); }
.programme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.programme-card { position: relative; overflow: hidden; min-height: 300px; padding: 42px; border-radius: 20px; color: #fff; box-shadow: var(--shadow); }
.programme-card::after { position: absolute; right: -55px; bottom: -90px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.programme-card.contemporary { background: linear-gradient(145deg, #163e69, #07192d); }
.programme-card.classical { background: linear-gradient(145deg, #c51f3d, #861329); }
.programme-card > span { font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.programme-card h3 { margin: 24px 0 10px; color: #fff; font: 600 clamp(26px, 3vw, 38px) Georgia, "Noto Serif SC", serif; }
.programme-card p { max-width: 460px; color: rgba(255,255,255,.78); }
.card-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 17px; margin-top: 28px; }
.card-actions a { padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 14px; font-weight: 800; text-decoration: none; }
.assessment-note { display: flex; align-items: center; gap: 26px; margin-top: 20px; padding: 24px 30px; border: 1px solid #e7d8b9; border-radius: 14px; background: #fffaf0; }
.assessment-note strong { flex: 0 0 auto; color: #966b17; font-size: 20px; }
.assessment-note p { margin: 0; color: #6f634b; }
.portfolio-layout { display: grid; grid-template-columns: 300px 1fr; gap: 55px; align-items: start; }
.duration-card { padding: 38px; border-radius: 18px; color: #fff; background: linear-gradient(145deg, var(--red), var(--red-dark)); box-shadow: var(--shadow); }
.duration-card span { display: block; font: 62px/1 Georgia, serif; }
.duration-card strong { display: block; margin-top: 8px; font-size: 18px; }
.duration-card p { margin: 20px 0 0; color: #f8dbe1; font-size: 14px; }
.number-list { margin: -8px 0 0; padding-left: 22px; }
.number-list li { margin: 0 0 15px; padding-left: 8px; }
.number-list li::marker { color: var(--red); font-weight: 900; }
.script-box { margin: 44px 0 0 355px; padding: 30px 34px; border-left: 4px solid var(--gold); background: #fff; box-shadow: 0 12px 35px rgba(9, 27, 49, .055); }
.script-box h3 { margin: 0 0 15px; }
.script-box blockquote { margin: 0; color: #526174; font-family: Georgia, serif; font-style: italic; }
.instrument-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.instrument-list span { padding: 22px 10px; border: 1px solid var(--line); border-radius: 13px; color: var(--navy-deep); background: #fff; font: 600 21px Georgia, "Noto Serif SC", serif; text-align: center; }
.resource-row { display: flex; justify-content: center; gap: 16px; margin-top: 28px; }
.resource-row a, .test-links a { padding-bottom: 2px; border-bottom: 1px solid var(--red); color: var(--red); font-size: 14px; font-weight: 800; text-decoration: none; }
.schedule-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 62px; align-items: start; }
.schedule-title { font-size: clamp(30px, 3.2vw, 39px); white-space: nowrap; }
.schedule-layout > div > p:not(.section-kicker) { color: var(--muted); }
.schedule-image { margin: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.schedule-image img { width: 100%; border-radius: 8px; }
.test-links { margin-top: 35px; padding: 26px 28px; border-left: 4px solid var(--red); background: #fff; }
.test-links strong { color: var(--navy-deep); font-size: 18px; }
.test-links p { margin: 8px 0 16px; color: var(--muted); font-size: 14px; }
.test-links a { display: block; width: fit-content; margin-top: 10px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { min-height: 235px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 35px rgba(9, 27, 49, .055); }
.info-card > span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.info-card h3 { margin: 16px 0 9px; font-size: 20px; }
.info-card p { margin: 0 0 15px; color: var(--muted); font-size: 14px; }
.info-card ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; }
.info-card li { margin: 5px 0; padding-left: 2px; }
.info-card li::marker { color: var(--red); }
.info-card a { color: var(--red); font-size: 14px; font-weight: 850; }
.action-card { color: #fff; background: var(--navy); }
.action-card > span, .action-card h3, .action-card p { color: #fff; }
.action-card .text-button { display: inline-block; margin-top: 8px; padding-bottom: 3px; border-bottom: 2px solid #e7627a; color: #fff; text-decoration: none; }
.fee-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.price { margin: 25px 0 0; }
.price strong { display: block; color: var(--red); font-size: clamp(38px, 5vw, 58px); line-height: 1; }
.price span { color: var(--muted); font-size: 13px; }
.fee-details { padding: 30px 35px; border-left: 4px solid var(--red); background: #fff; box-shadow: 0 12px 35px rgba(9, 27, 49, .055); }
.fee-details p { margin: 0; }
.fee-details p + p { margin-top: 15px; color: var(--muted); }
.contact { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin: 70px 0; padding: clamp(34px, 6vw, 64px); border-radius: 22px; color: #fff; background: linear-gradient(130deg, var(--navy-deep), var(--navy)); box-shadow: var(--shadow); }
.contact h2 { color: #fff; }
.contact p:not(.section-kicker) { margin-bottom: 0; color: #c7d2dc; }
.contact-actions { display: flex; flex: 0 0 auto; flex-direction: column; align-items: center; gap: 12px; }
.email-link { color: #fff; font-size: 13px; }
footer { padding: 28px 24px; color: #8290a0; background: var(--navy-deep); font-size: 12px; text-align: center; }

@media (max-width: 900px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .portfolio-layout, .schedule-layout, .fee-section { grid-template-columns: 1fr; gap: 38px; }
  .schedule-title { white-space: normal; }
  .script-box { margin-left: 0; }
  .instrument-list { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { align-items: flex-start; flex-direction: column; }
  .contact-actions { align-items: flex-start; }
}

@media (max-width: 650px) {
  .site-header { height: 72px; padding: 0 18px; }
  .brand img { width: 160px; height: 52px; }
  .header-link { display: none; }
  .hero-inner, .page { width: min(100% - 32px, 1180px); }
  .hero-inner { padding: 62px 0 54px; }
  .facts { margin-top: 40px; }
  .facts div { padding-right: 12px; }
  .facts dd { font-size: 16px; }
  .section-nav { justify-content: flex-start; }
  .page { padding-top: 48px; }
  .intro { padding-bottom: 65px; }
  .content-section { padding: 65px 0; }
  .programme-grid, .card-grid { grid-template-columns: 1fr; }
  .programme-card { min-height: 0; padding: 30px; }
  .assessment-note { align-items: flex-start; flex-direction: column; gap: 5px; }
  .instrument-list { grid-template-columns: repeat(2, 1fr); }
  .resource-row { align-items: center; flex-direction: column; }
  .info-card { min-height: 0; }
  .contact { margin: 45px 0; }
}


.email-copy-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.email-copy-inline a { color: inherit; }
.copy-email-button {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  border: 0;
  border-radius: 4px;
  padding: 2px 8px;
  background: #c92035;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: none;
}


.important-link-row {
  gap: 12px;
  margin-top: 16px;
}
.important-resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #c92035;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(201, 32, 53, .22);
}
