:root {
  --ink: #151515;
  --ink-soft: #2f3134;
  --muted: #62666c;
  --paper: #fbfaf7;
  --paper-deep: #f2eee7;
  --white: #ffffff;
  --line: #e6dfd5;
  --stage: #111111;
  --stage-soft: #1c1d20;
  --accent: #c7272b;
  --accent-dark: #941f22;
  --blue: #31546b;
  --olive: #657057;
  --shadow: 0 18px 55px rgba(17, 17, 17, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(199, 39, 43, 0.35);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.03;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  min-width: 220px;
  align-items: center;
}

.brand__logo {
  width: 280px;
  height: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 10px 11px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 15px 20px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--small {
  min-height: 40px;
  padding: 11px 15px;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link--light {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background: var(--stage);
}

.hero--subpage,
.hero--subpage .hero__inner {
  min-height: 560px;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 660px;
  flex-direction: column;
  justify-content: center;
  padding: 86px 0 74px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  color: var(--white);
  font-size: 76px;
}

.hero__lead {
  max-width: 710px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

.hero__actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 13px;
}

.section {
  padding: 104px 0;
  background: var(--white);
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  background: var(--stage);
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: 54px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 19px;
}

.section-heading--dark h2,
.section-heading--dark p {
  color: var(--white);
}

.section-heading--dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.concept-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-step {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
  overflow: hidden;
}

.concept-step::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(21, 21, 21, 0.06);
  font-family: "Fraunces", Georgia, serif;
  font-size: 112px;
  line-height: 1;
}

.concept-step--band::after {
  content: "A";
}

.concept-step--instrument::after {
  content: "B";
}

.concept-step__label {
  display: inline-block;
  margin-bottom: 76px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-step h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.concept-step p {
  max-width: 440px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: start;
}

.split__intro {
  position: sticky;
  top: 112px;
}

.split__intro h2 {
  font-size: 50px;
}

.split__intro p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 18px;
}

.benefit-grid,
.program-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: 1fr;
}

.benefit-card,
.program-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--paper);
}

.benefit-card h3,
.program-card h3 {
  margin-bottom: 12px;
}

.program-card h3 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(199, 39, 43, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.program-card h3 a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.timeline-item {
  min-height: 310px;
  padding: 28px;
  background: var(--stage-soft);
}

.timeline-item__number {
  display: block;
  margin-bottom: 82px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.timeline-item h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.67);
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  min-height: 250px;
}

.program-card:nth-child(2) {
  background: #f6f8f8;
}

.program-card:nth-child(3) {
  background: #f7f5f0;
}

.program-card:nth-child(4) {
  background: #f4f6f2;
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}

.audience-panel--secondary {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.audience-panel > div {
  padding: 34px;
  background: var(--white);
}

.audience-panel h3 {
  margin-bottom: 12px;
}

.section--pricing {
  background: var(--paper-deep);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 56px;
  align-items: start;
}

.pricing-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 38px;
}

.price-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.price-card__header .eyebrow {
  margin-bottom: 0;
}

.price-card__price {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
  text-align: right;
}

.price-card__price span {
  display: block;
  font-size: 64px;
  font-weight: 700;
}

.price-card__price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.price-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.price-note {
  border-top: 1px solid var(--line);
  margin: 0 0 28px;
  padding-top: 24px;
  color: var(--ink-soft);
  font-weight: 600;
}

.stage-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
  align-items: start;
}

.stage-copy {
  border-top: 3px solid var(--accent);
  padding-top: 26px;
}

.stage-copy h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.route-link {
  margin-top: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 8 / 5;
  border-radius: 4px;
  filter: grayscale(1) contrast(1.04);
  object-fit: cover;
}

.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workshop-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 18px;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-member {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--stage-soft);
}

.team-member img {
  width: 100%;
  aspect-ratio: 8 / 5;
  filter: grayscale(1) contrast(1.06);
  object-fit: cover;
}

.team-member__body {
  padding: 22px;
}

.team-member h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.team-member__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.team-member__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.team-member__links a:hover {
  color: var(--white);
}

.credential-band {
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
}

.credential-band p {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
  padding: 22px 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--accent);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 24px 24px;
}

.section--cta {
  background: var(--accent);
}

.cta-panel {
  max-width: 980px;
}

.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p,
.cta-panel address,
.cta-panel a {
  color: var(--white);
}

.cta-panel h2 {
  max-width: 760px;
  font-size: 58px;
}

.cta-panel p {
  max-width: 740px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.section--cta .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--accent);
}

.section--cta .btn:hover {
  border-color: var(--stage);
  background: var(--stage);
  color: var(--white);
}

.cta-panel address {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: var(--stage);
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding: 54px 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--white);
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .brand__logo {
    width: 250px;
  }

  .header-cta {
    position: absolute;
    top: 18px;
    right: 20px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .section-heading h2,
  .split__intro h2 {
    font-size: 44px;
  }

  .program-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .stage-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .split__intro,
  .pricing-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 220px;
  }

  .header-cta {
    position: static;
  }

  .main-nav ul {
    justify-content: flex-start;
  }

  .main-nav a {
    padding: 8px 9px 8px 0;
    font-size: 12px;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero--subpage,
  .hero--subpage .hero__inner {
    min-height: 540px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split__intro h2,
  .cta-panel h2 {
    font-size: 36px;
  }

  .section-heading p:not(.eyebrow),
  .split__intro p:not(.eyebrow),
  .cta-panel p {
    font-size: 17px;
  }

  .concept-flow {
    grid-template-columns: 1fr;
  }

  .concept-step {
    min-height: auto;
    padding: 28px;
  }

  .concept-step__label {
    margin-bottom: 50px;
  }

  .program-grid,
  .team-grid,
  .timeline,
  .audience-panel,
  .pricing-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .price-card__header {
    flex-direction: column;
  }

  .price-card__price {
    text-align: left;
  }

  .price-card__price span {
    font-size: 54px;
  }

  .timeline {
    gap: 1px;
  }

  .timeline-item {
    min-height: auto;
  }

  .timeline-item__number {
    margin-bottom: 44px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero__actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .program-card,
  .audience-panel > div,
  .price-card,
  .concept-step {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
