/* styles.css */

/*
 * DM Sans — numerals only
 * unicode-range restricts this font face to digit characters and associated
 * punctuation ($, :). Browsers use DM Sans for those glyphs and fall back to
 * Raleway for all other characters. Applied via body font-family stack.
 */
@font-face {
  font-family: 'Resonate Numerals';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CnsqZG40F9JadbnoEwAopxhTg.ttf) format('truetype');
  unicode-range: U+0024, U+0030-0039, U+003A;
}

@font-face {
  font-family: 'Resonate Numerals';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CnsqZG40F9JadbnoEwARZthTg.ttf) format('truetype');
  unicode-range: U+0024, U+0030-0039, U+003A;
}

:root {
  --bg-dark: #121212;
  --bg-dark-2: #171717;
  --bg-light: #f5f1e8;
  --text-dark: #121212;
  --text-muted-dark: rgba(18, 18, 18, 0.78);
  --text-light: #f5f1e8;
  --text-muted-light: rgba(245, 241, 232, 0.78);
  --accent: #76d9da;
  --border-light: rgba(18, 18, 18, 0.12);
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.12);
  --container: 1240px;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Resonate Numerals', 'DM Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #161616 0, #161616 260px, var(--bg-light) 260px);
}

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

.section-pad {
  padding: 120px 0;
}

.section-pad-tight {
  padding: 88px 0;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero-title,
.heading-xl,
.heading-lg,
.heading-md,
.card-title {
  margin: 0;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero-title {
  font-size: clamp(52px, 8.4vw, 112px);
  max-width: 920px;
}

.heading-xl {
  font-size: clamp(40px, 5vw, 64px);
}

.heading-lg {
  font-size: clamp(34px, 4.2vw, 52px);
}

.heading-md {
  font-size: clamp(28px, 3.1vw, 40px);
}

.body-lg,
.body-md,
.body-sm,
.body-xs,
p,
li,
span,
strong,
small,
figcaption,
label {
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

.body-lg,
.body-md,
.body-sm,
.body-xs,
p {
  text-wrap: pretty;
}

.body-lg {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.55;
}

.body-md {
  font-size: 20px;
  line-height: 1.65;
}

.body-sm {
  font-size: 18px;
  line-height: 1.62;
}

.body-xs {
  font-size: 15px;
  line-height: 1.65;
}

.muted-dark {
  color: var(--text-muted-dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--text-light);
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--accent);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text-light);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin: 0 auto;
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.mobile-panel {
  display: none;
  background: #151515;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0 22px;
}

.mobile-panel a {
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.86;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
    url("assets/images/home/resonate-home-cta-start-here-mural-detail.webp");
  background-position: center 40%;
  background-size: 120%;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  outline: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(18, 18, 18, 0.72);
  transition: color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text-dark);
  outline: none;
}

.hero {
  position: relative;
  min-height: min(100vh, 980px);
  overflow: clip;
  background: #111;
  color: white;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 28%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 90px;
}

.hero__content {
  max-width: 980px;
}

.hero__cta-wrap {
  margin-top: 44px;
}

.intro {
  background: var(--bg-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.intro-copy {
  max-width: 840px;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.48;
}

.intro-sentence {
  display: block;
  font-weight: 700;
}

.intro-sentence + .intro-sentence {
  margin-top: 1.1em;
}

.intro-meta {
  display: grid;
  gap: 14px;
  margin-top: 72px;
  color: rgba(18, 18, 18, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.intro-meta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
}

.intro-meta__row span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.intro-meta__row span + span::before {
  content: "•";
  margin: 0 18px;
  color: rgba(18, 18, 18, 0.28);
}

.intro-meta__row--note {
  color: rgba(18, 18, 18, 0.42);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.intro-meta__row--note span + span::before {
  content: none;
  margin: 0;
}

.rounded-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ddd;
  box-shadow: var(--shadow-soft);
}

.intro-visual,
.method-visual,
.music-matters__visual,
.membership__visual {
  aspect-ratio: 4 / 5;
}

.intro-visual img,
.method-visual img,
.music-matters__visual img,
.studio-bridge__visual img,
.membership__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.belief {
  background: var(--bg-dark);
  color: var(--text-light);
}

.belief-grid {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.belief-bar {
  width: 90px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--accent);
}

.belief-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 46px;
  margin-top: 28px;
}

.methodology {
  background: var(--bg-light);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.method-list {
  display: grid;
  gap: 56px;
  margin-top: 40px;
}

.method-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.method-item__num {
  font-family: 'DM Sans', sans-serif;
  color: rgba(18, 18, 18, 0.18);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.method-item h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
}

.method-item p {
  margin: 0;
  color: var(--text-muted-dark);
  font-size: 18px;
  line-height: 1.6;
}

.music-matters {
  background: var(--bg-light);
}

.music-matters__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: center;
}

.music-matters__visual {
  max-width: 420px;
  margin-inline: auto;
}

.music-matters__rule {
  width: 100px;
  height: 1px;
  margin: 28px 0;
  background: rgba(18, 18, 18, 0.12);
}

.space-matters {
  position: relative;
  overflow: clip;
  background: #0f0f0f;
  color: var(--text-light);
}

.space-matters__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url("assets/images/home/resonate-home-space-matters-lobby-lounge-wide.webp") center / cover no-repeat;
  filter: saturate(0.88);
}

.space-matters__inner {
  position: relative;
  z-index: 1;
}

.space-matters__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.space-matters__slider-wrap {
  min-width: 0;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  flex: 0 0 88%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: #222;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: center;
  aspect-ratio: 1 / 1;
}

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

.carousel-dots {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots button[aria-current="true"] {
  background: var(--accent);
  transform: scale(1.35);
}

.fit-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.fit-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-card {
  padding: 30px 28px;
  border: 1px solid rgba(18, 18, 18, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fit-card:hover,
.fit-card:focus-within {
  transform: translateY(-1px);
  border-color: rgba(18, 18, 18, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.fit-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.fit-card p {
  margin: 0;
  color: var(--text-muted-dark);
  font-size: 18px;
  line-height: 1.55;
}

.pathways {
  position: relative;
  overflow: clip;
  background: #0e0e0e;
  color: var(--text-light);
}

.pathways__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.8) 36%, rgba(0, 0, 0, 0.48) 74%, rgba(0, 0, 0, 0.14) 100%),
    url("assets/images/home/resonate-home-pathways-guitar-selection.webp") right center / cover no-repeat;
}

.pathways__inner {
  position: relative;
  z-index: 1;
}

.pathways__intro {
  max-width: 640px;
  margin-bottom: 42px;
}

.pathways-list {
  display: grid;
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pathways-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}

.pathways-item:hover,
.pathways-item:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.pathways-item h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.pathways-item__icon {
  color: rgba(255, 255, 255, 0.25);
  font-size: 28px;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.pathways-item:hover .pathways-item__icon,
.pathways-item:focus-visible .pathways-item__icon {
  color: var(--accent);
  transform: translateX(4px);
}

.studio-bridge {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.studio-bridge__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 62px;
  align-items: center;
}

.studio-bridge__visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.membership {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.membership__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 68px;
  align-items: start;
}

.membership-list {
  display: grid;
  gap: 34px;
  margin-top: 64px;
}

.membership-list h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.membership-list p {
  margin: 0;
  color: var(--text-muted-dark);
  font-size: 18px;
  line-height: 1.6;
}

.pricing {
  background: var(--bg-light);
}

.pricing__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing__title-wrap {
  margin-bottom: 40px;
  text-align: center;
}

.pricing-table {
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.pricing-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.pricing-num {
  font-family: 'DM Sans', sans-serif;
  color: rgba(18, 18, 18, 0.42);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.pricing-row__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.pricing-row__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-row__label strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.pricing-row__label span {
  font-family: 'DM Sans', sans-serif;
  color: rgba(18, 18, 18, 1);
  font-size: 11px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pricing-row__price {
  font-family: 'DM Sans', sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.pricing-note {
  max-width: 780px;
  margin: 36px auto 0;
  color: var(--text-muted-dark);
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.teachers {
  background: var(--bg-light);
}

.teachers__head {
  max-width: 980px;
  margin-bottom: 34px;
}

.teachers__team-link {
  margin-top: 20px;
}

.teacher-rail-wrap {
  position: relative;
  overflow: hidden;
}

.teacher-rail-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 10px;
  width: 140px;
  background: linear-gradient(to right, transparent, var(--bg-light) 85%);
  pointer-events: none;
  z-index: 1;
}

.teacher-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.teacher-rail::-webkit-scrollbar {
  display: none;
}

.teacher-card {
  flex: 0 0 230px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
}

.teacher-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  aspect-ratio: 3 / 4;
}

.teacher-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.teacher-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72) 100%);
}

.teacher-card:hover img,
.teacher-card:focus-visible img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.teacher-card:focus-visible {
  outline: none;
}

.teacher-card__name {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: white;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.banner-sign {
  padding: 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.banner-sign img {
  width: 100%;
  height: min(48vw, 620px);
  object-fit: cover;
  object-position: center 54%;
}

.final-cta {
  background: var(--bg-light);
  text-align: center;
}

.final-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--text-muted-dark);
  font-size: 18px;
  line-height: 1.65;
}

.final-cta__button {
  margin-top: 32px;
}

.happening {
  background: #e8e3d8;
}

.happening__intro {
  max-width: 640px;
  margin-bottom: 96px;
}

.happening__intro p {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--text-muted-dark);
}

.happening__featured-copy .body-md {
  font-size: 18px;
}

.happening__featured {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(0, 1fr);
  gap: 84px;
  align-items: center;
}

.happening__visual {
  aspect-ratio: 4 / 3;
}

.happening__item-title {
  margin: 0 0 20px;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.happening__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0 48px;
  padding: 0;
  list-style: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
}

.happening__secondary {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-top: 104px;
  padding-top: 56px;
  border-top: 1px solid var(--border-light);
}

.happening__secondary-visual {
  aspect-ratio: 4 / 3;
}

.happening__secondary h3 {
  margin: 0 0 20px;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.happening__secondary p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--text-muted-dark);
}

.site-footer {
  padding: 54px 0 38px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, 0.8fr));
  gap: 28px 40px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-family: 'DM Sans', sans-serif;
  color: rgba(245, 241, 232, 0.84);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}

.footer-meta {
  font-family: 'DM Sans', sans-serif;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.video-modal.is-open {
  display: flex;
}

.video-modal__dialog {
  position: relative;
  width: min(100%, 1040px);
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

.video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 0;
  color: white;
}

.video-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.video-modal__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.video-modal__body {
  padding: 18px;
}

.video-frame,
#videoFrameWrap {
  width: 100%;
}

.video-frame iframe,
#videoFrameWrap iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
}

@media (max-width: 1120px) {
  .intro-grid,
  .method-grid,
  .music-matters__grid,
  .studio-bridge__grid,
  .membership__grid,
  .space-matters__grid,
  .happening__featured,
  .happening__secondary {
    grid-template-columns: 1fr;
  }

  .belief-copy {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
  }

  .belief-copy p {
    margin: 0;
  }

  .space-matters__copy {
    max-width: 720px;
  }

  .carousel__item {
    flex-basis: 84%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .happening__secondary-visual {
    aspect-ratio: 3 / 2;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: 88vh;
  }

  .hero img {
    object-position: 40% center;
  }

  .section-pad {
    padding: 96px 0;
  }

  .section-pad-tight {
    padding: 76px 0;
  }

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

  .pricing-row__main {
    grid-template-columns: 1fr;
  }

  .teacher-card {
    flex-basis: 190px;
  }

  .carousel__item {
    flex-basis: 92%;
  }

  .pathways__bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.82) 100%),
      url("assets/images/home/resonate-home-pathways-guitar-selection.webp") center right / cover no-repeat;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .banner-sign img {
    height: min(52vw, 260px);
    object-position: center 52%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero__inner {
    padding: 56px 0 58px;
  }

  .hero__cta-wrap {
    margin-top: 34px;
  }

  .body-md,
  .body-sm {
    font-size: 18px;
  }

  .intro-meta {
    gap: 10px;
    margin-top: 52px;
  }

  .intro-meta__row {
    display: grid;
    gap: 10px;
  }

  .intro-meta__row span + span::before {
    content: none;
    margin: 0;
  }

  .belief-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .belief-bar {
    width: 70px;
    margin-top: 0;
  }

  .method-item {
    grid-template-columns: 44px 1fr;
  }

  .method-item__num {
    font-size: 22px;
  }

  .cta-button {
    min-height: 58px;
    padding: 0 24px;
    font-size: 12px;
  }

  .teacher-card {
    flex-basis: 170px;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal__body {
    padding: 14px;
  }
}

/* ── Contact page ─────────────────────────────────────────── */

.contact-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.68) 100%),
    url("assets/images/contact/resonate-contact-hero-teal-acoustic-wall-lamp.webp") center / cover no-repeat;
  color: var(--text-light);
  padding: 80px 0 90px;
}

.contact-hero .eyebrow {
  color: var(--accent);
  opacity: 1;
}

.contact-hero__sub {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--text-muted-light);
}

.contact-details {
  background: var(--bg-light);
}

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

.contact-details__grid h3 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  opacity: 0.6;
}

.contact-details__grid p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted-dark);
}

.contact-details__grid a {
  color: var(--text-muted-dark);
  transition: color 0.2s ease;
}

.contact-details__grid a:hover {
  color: var(--text-dark);
}

.contact-directions-link {
  margin-top: 14px;
}

.contact-details__divider {
  margin: 64px 0 0;
  border: 0;
  border-top: 1px solid var(--border-light);
}

.contact-guidance {
  margin: 48px 0 0;
  max-width: 700px;
}

.contact-form-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.contact-form-wrap {
  max-width: 640px;
}

.contact-form__intro {
  margin: 16px 0 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.contact-form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: white;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23121212' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.contact-form__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: var(--radius-pill);
  background: var(--text-dark);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #2a2a2a;
  outline: none;
}

.contact-form__inquiry {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.contact-form__inquiry p {
  margin: 0;
}

.site-nav a[aria-current="page"],
.mobile-panel a[aria-current="page"] {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 860px) {
  .contact-hero {
    padding: 64px 0 72px;
  }

  .contact-details__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.contact-form__error {
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(18, 18, 18, 0.06);
  border-radius: 14px;
  border-left: 3px solid rgba(18, 18, 18, 0.25);
}

.contact-form__error p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted-dark);
}

/* ── Thank-you page ─────────────────────────────────────────── */
.thankyou-section {
  background: var(--bg-light);
  min-height: calc(100vh - var(--header-height) - 320px);
  display: flex;
  align-items: flex-start;
}

.thankyou-wrap {
  max-width: 560px;
  padding: 80px 0 40px;
}

.thankyou-body {
  margin: 24px 0 40px;
  color: var(--text-muted-dark);
}

.thankyou-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: var(--radius-pill);
  background: var(--text-dark);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.thankyou-home-link:hover,
.thankyou-home-link:focus-visible {
  background: #2a2a2a;
  outline: none;
}

.thankyou-inquiry {
  margin: 32px 0 0;
  color: var(--text-muted-dark);
}

/* ── Piano Lessons page ───────────────────────────────────── */

.piano-hero .eyebrow {
  color: var(--text-light);
  opacity: 0.88;
}

.piano-hero__sub {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(245, 241, 232, 0.82);
}

@media (min-width: 860px) {
  .piano-hero h1 {
    max-width: 22ch;
  }
}

/* Editorial orientation */

.piano-orientation {
  background: var(--bg-light);
  padding: 140px 0;
}

.piano-orientation__copy {
  max-width: 800px;
  margin-inline: auto;
}

.piano-orientation__copy h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-bottom: 28px;
}

.piano-orientation__copy h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 4.7vw, 58px);
}

.piano-orientation__copy p {
  margin: 0 0 22px;
}

.piano-orientation__copy p:last-child {
  margin-bottom: 0;
}

/* How piano learning unfolds */

.piano-approach {
  background: var(--bg-light);
  padding: 120px 0;
}

.piano-approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.piano-approach__visual {
  aspect-ratio: 4 / 3;
  position: sticky;
  top: var(--header-height);
  order: 2;
}

.piano-approach__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.piano-approach__head {
  margin-bottom: 0;
}

.piano-approach__head h2 {
  margin-bottom: 14px;
}

.piano-approach__head p {
  margin: 0;
}

@media (min-width: 860px) {
  .piano-approach__head p {
    max-width: 45ch;
  }

  .piano-approach__grid > div:last-child {
    max-width: 60ch;
  }
}

/* Keyboard detail break — editorial image between approach and fit */

.piano-detail-break {
  overflow: hidden;
  line-height: 0;
}

.piano-detail-break img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 52%;
  display: block;
}

/* Who piano lessons fit — two-column with portrait image */

.piano-fit {
  background: var(--bg-light);
  padding: 120px 0;
}

.piano-fit__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.piano-fit__visual {
  aspect-ratio: 3 / 4;
}

.piano-fit__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.piano-fit__content h2 {
  margin-bottom: 32px;
}

@media (min-width: 1121px) {
  .piano-fit__content {
    max-width: 52ch;
  }
}

.piano-fit__entries {
  margin: 0;
  padding: 0;
}

.piano-fit__entry {
  padding: 22px 0;
  border-top: 1px solid var(--border-light);
}

.piano-fit__entry:last-child {
  padding-bottom: 0;
  border-bottom: 1px solid var(--border-light);
}

.piano-fit__entry dt {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-dark);
}

.piano-fit__entry dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  max-width: 500px;
}

/* Practical lesson options + pricing */

.piano-options {
  background: #e8e3d8;
}

.piano-options__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.piano-options__head h2 {
  margin-bottom: 14px;
}

.piano-options__head p {
  margin: 0;
}

.piano-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 72px;
}

.piano-option {
  padding: 28px 26px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.piano-option h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.piano-option p {
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted-dark);
}

/* Pricing snapshot */

.piano-pricing {
  padding-top: 52px;
}

.piano-pricing__title {
  margin: 0 0 28px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text-dark);
}

.piano-pricing .pricing-table,
.pricing .pricing-table {
  border-top: none;
}

.piano-pricing .pricing-table {
  max-width: 860px;
}

.piano-pricing__note {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

/* Teacher section — trust intro + piano teacher rail (merged)
   Reuses .teacher-rail-wrap, .teacher-rail, .teacher-card from homepage styles.
   Add/remove .teacher-card elements per instrument page — no JS changes required. */

.piano-teachers {
  background: var(--bg-dark);
  color: var(--text-light);
}

.piano-teachers__intro {
  max-width: 56ch;
  margin-bottom: 52px;
}

.piano-teachers__intro h2 {
  margin-top: 16px;
  margin-bottom: 36px;
}

.piano-teachers__intro > p {
  margin: 0 0 28px;
  color: var(--text-muted-light);
}

.piano-teachers__intro > p:last-child {
  margin: 40px 0 0;
  color: var(--text-muted-light);
}

/* Correct the rail fade for dark section background */
.piano-teachers .teacher-rail-wrap::after {
  background: linear-gradient(to right, transparent, var(--bg-dark) 94%);
}

.piano-teachers .teacher-card {
  flex-basis: 240px;
  transition: transform 0.28s ease;
}

/* Full color portraits by default on piano page — no grayscale */
.piano-teachers .teacher-card__image img {
  filter: grayscale(0%);
}

/* Subtle card lift + restrained zoom on hover — no grayscale transition */
.piano-teachers .teacher-card:hover,
.piano-teachers .teacher-card:focus-visible {
  transform: translateY(-4px);
}

.piano-teachers .teacher-card:hover img,
.piano-teachers .teacher-card:focus-visible img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

/* Piano page responsive */

@media (max-width: 1120px) {
  .piano-approach__grid {
    grid-template-columns: 1fr;
  }

  .piano-approach__visual {
    position: static;
    aspect-ratio: 4 / 3;
    max-width: 560px;
    order: 0;
  }

  .piano-fit__grid {
    grid-template-columns: 1fr;
  }

  .piano-fit__visual {
    aspect-ratio: 4 / 3;
    max-width: 560px;
  }
}

@media (max-width: 860px) {
  .piano-options__grid {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .piano-options .heading-lg {
    text-wrap: balance;
  }

  .piano-pricing .pricing-row__label strong {
    font-size: 19px;
  }

  .piano-teachers .teacher-card {
    flex-basis: 220px;
  }

  .piano-orientation {
    padding: 100px 0;
  }

  .piano-approach {
    padding: 80px 0;
  }

  .final-cta p {
    text-wrap: balance;
  }
}

@media (max-width: 640px) {
  .piano-option {
    padding: 22px 20px;
  }

  .piano-pricing {
    padding-top: 40px;
  }

  .piano-detail-break img {
    height: 240px;
  }
}
/* ── Guitar Lessons page ───────────────────────────────────── */

.guitar-hero {
  position: relative;
}

.guitar-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.08) 60%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
}

.guitar-hero .hero__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .guitar-hero::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      transparent 90%
    );
  }
}

.guitar-hero .eyebrow {
  color: var(--text-light);
  opacity: 0.88;
}

.guitar-hero__sub {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(245, 241, 232, 0.82);
}

@media (min-width: 860px) {
  .guitar-hero h1 {
    max-width: 22ch;
  }
}

/* Editorial orientation */

.guitar-orientation {
  background: var(--bg-light);
  padding: 140px 0;
}

.guitar-orientation__copy {
  max-width: 800px;
  margin-inline: auto;
}

.guitar-orientation__copy h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-bottom: 28px;
}

.guitar-orientation__copy h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 4.7vw, 58px);
}

.guitar-orientation__copy p {
  margin: 0 0 22px;
}

.guitar-orientation__copy p:last-child {
  margin-bottom: 0;
}

/* How guitar learning unfolds */

.guitar-approach {
  background: var(--bg-light);
  padding: 120px 0;
}

.guitar-approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.guitar-approach__visual {
  aspect-ratio: 4 / 3;
  position: sticky;
  top: var(--header-height);
  order: 2;
}

.guitar-approach__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.guitar-approach__head {
  margin-bottom: 0;
}

.guitar-approach__head h2 {
  margin-bottom: 14px;
}

.guitar-approach__head p {
  margin: 0;
}

@media (min-width: 860px) {
  .guitar-approach__head p {
    max-width: 45ch;
  }

  .guitar-approach__grid > div:last-child {
    max-width: 60ch;
  }
}

/* Guitar rack detail break */

.guitar-detail-break {
  overflow: hidden;
  line-height: 0;
}

.guitar-detail-break img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Who guitar lessons fit */

.guitar-fit {
  background: var(--bg-light);
  padding: 120px 0;
}

.guitar-fit__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.guitar-fit__visual {
  aspect-ratio: 3 / 4;
}

.guitar-fit__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guitar-fit__content h2 {
  margin-bottom: 32px;
}

@media (min-width: 1121px) {
  .guitar-fit__content {
    max-width: 52ch;
  }
}

/* Practical lesson options + pricing */

.guitar-options {
  background: #e8e3d8;
}

.guitar-options__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.guitar-options__head h2 {
  margin-bottom: 14px;
}

.guitar-options__head p {
  margin: 0;
}

.guitar-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 72px;
}

.guitar-option {
  padding: 28px 26px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.guitar-option h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.guitar-option p {
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted-dark);
}

/* Pricing snapshot */

.guitar-pricing {
  padding-top: 52px;
}

.guitar-pricing .pricing-table {
  border-top: none;
  max-width: 860px;
}

.guitar-pricing__note {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

/* Teacher section */

.guitar-teachers {
  background: var(--bg-dark);
  color: var(--text-light);
}

.guitar-teachers__intro {
  max-width: 56ch;
  margin-bottom: 52px;
}

.guitar-teachers__intro h2 {
  margin-top: 16px;
  margin-bottom: 36px;
}

.guitar-teachers__intro > p {
  margin: 0 0 28px;
  color: var(--text-muted-light);
}

.guitar-teachers__intro > p:last-child {
  margin: 40px 0 0;
  color: var(--text-muted-light);
}

/* Correct the rail fade for dark section background */
.guitar-teachers .teacher-rail-wrap::after {
  background: linear-gradient(to right, transparent, var(--bg-dark) 94%);
}

.guitar-teachers .teacher-card {
  flex-basis: 240px;
  transition: transform 0.28s ease;
}

/* Full color portraits by default on guitar page — no grayscale */
.guitar-teachers .teacher-card__image img {
  filter: grayscale(0%);
}

/* Subtle card lift + restrained zoom on hover */
.guitar-teachers .teacher-card:hover,
.guitar-teachers .teacher-card:focus-visible {
  transform: translateY(-4px);
}

.guitar-teachers .teacher-card:hover img,
.guitar-teachers .teacher-card:focus-visible img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

/* Guitar page responsive */

@media (max-width: 1120px) {
  .guitar-approach__grid {
    grid-template-columns: 1fr;
  }

  .guitar-approach__visual {
    position: static;
    aspect-ratio: 4 / 3;
    max-width: 560px;
    order: 0;
  }

  .guitar-fit__grid {
    grid-template-columns: 1fr;
  }

  .guitar-fit__visual {
    aspect-ratio: 4 / 3;
    max-width: 560px;
  }
}

@media (max-width: 860px) {
  .guitar-options__grid {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .guitar-options .heading-lg {
    text-wrap: balance;
  }

  .guitar-pricing .pricing-row__label strong {
    font-size: 19px;
  }

  .guitar-teachers .teacher-card {
    flex-basis: 220px;
  }

  .guitar-orientation {
    padding: 100px 0;
  }

  .guitar-approach {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .guitar-option {
    padding: 22px 20px;
  }

  .guitar-pricing {
    padding-top: 40px;
  }

  .guitar-detail-break img {
    height: 240px;
  }
}

/* =============================================================================
   VOICE LESSONS PAGE
   ============================================================================= */

.voice-hero {
  position: relative;
}

.voice-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.08) 60%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
}

.voice-hero .hero__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .voice-hero::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      transparent 90%
    );
  }
}

.voice-hero .eyebrow {
  color: var(--text-light);
  opacity: 0.88;
}

.voice-hero__sub {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(245, 241, 232, 0.82);
}

@media (min-width: 860px) {
  .voice-hero h1 {
    max-width: 22ch;
  }
}

/* Editorial orientation */

.voice-orientation {
  background: var(--bg-light);
  padding: 140px 0;
}

.voice-orientation__copy {
  max-width: 800px;
  margin-inline: auto;
}

.voice-orientation__copy h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-bottom: 28px;
}

.voice-orientation__copy h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 4.7vw, 58px);
}

.voice-orientation__copy p {
  margin: 0 0 22px;
}

.voice-orientation__copy p:last-child {
  margin-bottom: 0;
}

/* How voice learning unfolds */

.voice-approach {
  background: var(--bg-light);
  padding: 120px 0;
}

.voice-approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.voice-approach__visual {
  aspect-ratio: 4 / 3;
  position: sticky;
  top: var(--header-height);
  order: 2;
}

.voice-approach__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.voice-approach__head {
  margin-bottom: 0;
}

.voice-approach__head h2 {
  margin-bottom: 14px;
}

.voice-approach__head p {
  margin: 0;
}

@media (min-width: 860px) {
  .voice-approach__head p {
    max-width: 45ch;
  }

  .voice-approach__grid > div:last-child {
    max-width: 60ch;
  }
}

/* Voice detail break */

.voice-detail-break {
  overflow: hidden;
  line-height: 0;
}

.voice-detail-break img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Who voice lessons fit */

.voice-fit {
  background: var(--bg-light);
  padding: 120px 0;
}

.voice-fit__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.voice-fit__visual {
  aspect-ratio: 3 / 4;
}

.voice-fit__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.voice-fit__content h2 {
  margin-bottom: 32px;
}

@media (min-width: 1121px) {
  .voice-fit__content {
    max-width: 52ch;
  }
}

/* Practical lesson options + pricing */

.voice-options {
  background: #e8e3d8;
}

.voice-options__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.voice-options__head h2 {
  margin-bottom: 14px;
}

.voice-options__head p {
  margin: 0;
}

.voice-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 72px;
}

.voice-option {
  padding: 28px 26px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.voice-option h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.voice-option p {
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted-dark);
}

/* Pricing snapshot */

.voice-pricing {
  padding-top: 52px;
}

.voice-pricing .pricing-table {
  border-top: none;
  max-width: 860px;
}

.voice-pricing__note {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

/* Teacher section */

.voice-teachers {
  background: var(--bg-dark);
  color: var(--text-light);
}

.voice-teachers__intro {
  max-width: 56ch;
  margin-bottom: 52px;
}

.voice-teachers__intro h2 {
  margin-top: 16px;
  margin-bottom: 36px;
}

.voice-teachers__intro > p {
  margin: 0 0 28px;
  color: var(--text-muted-light);
}

.voice-teachers__intro > p:last-child {
  margin: 40px 0 0;
  color: var(--text-muted-light);
}

/* Correct the rail fade for dark section background */
.voice-teachers .teacher-rail-wrap::after {
  background: linear-gradient(to right, transparent, var(--bg-dark) 94%);
}

.voice-teachers .teacher-card {
  flex-basis: 240px;
  transition: transform 0.28s ease;
}

/* Full color portraits by default on voice page — no grayscale */
.voice-teachers .teacher-card__image img {
  filter: grayscale(0%);
}

/* Subtle card lift + restrained zoom on hover */
.voice-teachers .teacher-card:hover,
.voice-teachers .teacher-card:focus-visible {
  transform: translateY(-4px);
}

.voice-teachers .teacher-card:hover img,
.voice-teachers .teacher-card:focus-visible img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

/* Voice page responsive */

@media (max-width: 1120px) {
  .voice-approach__grid {
    grid-template-columns: 1fr;
  }

  .voice-approach__visual {
    position: static;
    aspect-ratio: 4 / 3;
    max-width: 560px;
    order: 0;
  }

  .voice-fit__grid {
    grid-template-columns: 1fr;
  }

  .voice-fit__visual {
    aspect-ratio: 4 / 3;
    max-width: 560px;
  }

  .voice-fit__visual img {
    object-position: right top;
  }
}

@media (max-width: 860px) {
  .voice-options__grid {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .voice-options .heading-lg {
    text-wrap: balance;
  }

  .voice-pricing .pricing-row__label strong {
    font-size: 19px;
  }

  .voice-teachers .teacher-card {
    flex-basis: 220px;
  }

  .voice-orientation {
    padding: 100px 0;
  }

  .voice-approach {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .voice-option {
    padding: 22px 20px;
  }

  .voice-pricing {
    padding-top: 40px;
  }

  .voice-detail-break img {
    height: 240px;
  }
}

/* =============================================================================
   DRUMS LESSONS PAGE
   ============================================================================= */

.drums-hero {
  position: relative;
}

.drums-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.08) 60%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
}

.drums-hero .hero__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .drums-hero::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.4) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      transparent 90%
    );
  }

  .drums-hero img {
    object-position: 70% center;
  }
}

.drums-hero .eyebrow {
  color: var(--text-light);
  opacity: 0.88;
}

.drums-hero__sub {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(245, 241, 232, 0.82);
}

@media (min-width: 860px) {
  .drums-hero h1 {
    max-width: 22ch;
  }
}

/* Editorial orientation */

.drums-orientation {
  background: var(--bg-light);
  padding: 140px 0;
}

.drums-orientation__copy {
  max-width: 800px;
  margin-inline: auto;
}

.drums-orientation__copy h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-bottom: 28px;
}

.drums-orientation__copy h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 4.7vw, 58px);
}

.drums-orientation__copy p {
  margin: 0 0 22px;
}

.drums-orientation__copy p:last-child {
  margin-bottom: 0;
}

/* How drum learning unfolds */

.drums-approach {
  background: var(--bg-light);
  padding: 120px 0;
}

.drums-approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.drums-approach__visual {
  aspect-ratio: 4 / 3;
  position: sticky;
  top: var(--header-height);
  order: 2;
}

.drums-approach__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.drums-approach__head {
  margin-bottom: 0;
}

.drums-approach__head h2 {
  margin-bottom: 14px;
}

.drums-approach__head p {
  margin: 0;
}

@media (min-width: 860px) {
  .drums-approach__head p {
    max-width: 45ch;
  }

  .drums-approach__grid > div:last-child {
    max-width: 60ch;
  }
}

/* Drums detail break */

.drums-detail-break {
  overflow: hidden;
  line-height: 0;
}

.drums-detail-break img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Who drum lessons fit */

.drums-fit {
  background: var(--bg-light);
  padding: 120px 0;
}

.drums-fit__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.drums-fit__visual {
  aspect-ratio: 3 / 4;
}

.drums-fit__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.drums-fit__content h2 {
  margin-bottom: 32px;
}

@media (min-width: 1121px) {
  .drums-fit__content {
    max-width: 52ch;
  }
}

/* Practical lesson options + pricing */

.drums-options {
  background: #e8e3d8;
}

.drums-options__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.drums-options__head h2 {
  margin-bottom: 14px;
}

.drums-options__head p {
  margin: 0;
}

.drums-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 72px;
}

.drums-option {
  padding: 28px 26px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.drums-option h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.drums-option p {
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted-dark);
}

/* Pricing snapshot */

.drums-pricing {
  padding-top: 52px;
}

.drums-pricing .pricing-table {
  border-top: none;
  max-width: 860px;
}

.drums-pricing__note {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

/* Teacher section */

.drums-teachers {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* Single-teacher two-column layout */

.drums-teachers__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.drums-teachers__intro {
  max-width: none;
  margin-bottom: 0;
}

.drums-teachers__intro h2 {
  margin-top: 16px;
  margin-bottom: 36px;
}

.drums-teachers__intro > p {
  margin: 0 0 28px;
  color: var(--text-muted-light);
}

.drums-teachers__portrait {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Kill the rail's horizontal-scroll presentation for the single-card variant */
.drums-teachers__portrait .teacher-rail-wrap {
  overflow: visible;
}

.drums-teachers__portrait .teacher-rail-wrap::after {
  display: none;
}

.drums-teachers__portrait .teacher-rail {
  display: block;
  overflow: visible;
  padding-bottom: 0;
}

/* Scale the single card up to fit-portrait size */
.drums-teachers__portrait .teacher-card {
  flex: none;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  transition: transform 0.28s ease;
}

/* Rail label as portrait caption */
.drums-teachers__rail-label {
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
  text-align: left;
  color: var(--text-muted-light);
}

/* Full color portraits — no grayscale */
.drums-teachers .teacher-card__image img {
  filter: grayscale(0%);
}

/* Subtle card lift + restrained zoom on hover */
.drums-teachers .teacher-card:hover,
.drums-teachers .teacher-card:focus-visible {
  transform: translateY(-4px);
}

.drums-teachers .teacher-card:hover img,
.drums-teachers .teacher-card:focus-visible img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

/* Drums page responsive */

@media (max-width: 1120px) {
  .drums-approach__grid {
    grid-template-columns: 1fr;
  }

  .drums-approach__visual {
    position: static;
    aspect-ratio: 4 / 3;
    max-width: 560px;
    order: 0;
  }

  .drums-fit__grid {
    grid-template-columns: 1fr;
  }

  .drums-fit__visual {
    aspect-ratio: 4 / 3;
    max-width: 560px;
  }

  .drums-fit__visual img {
    object-position: right top;
  }

  .drums-teachers__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .drums-teachers__portrait .teacher-card {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .drums-options__grid {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .drums-options .heading-lg {
    text-wrap: balance;
  }

  .drums-pricing .pricing-row__label strong {
    font-size: 19px;
  }

  .drums-orientation {
    padding: 100px 0;
  }

  .drums-approach {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .drums-option {
    padding: 22px 20px;
  }

  .drums-pricing {
    padding-top: 40px;
  }

  .drums-detail-break img {
    height: 240px;
  }
}

/* =====================================================
   Team page — team.html
   ===================================================== */

/* Hero */

.team-hero {
  position: relative;
}

.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.18) 60%,
    transparent 85%
  );
  pointer-events: none;
  z-index: 1;
}

.team-hero .hero__inner {
  position: relative;
  z-index: 2;
}

.team-hero__content {
  max-width: 720px;
}

.team-hero__h1 {
  font-size: clamp(52px, 7vw, 88px);
  margin-bottom: 28px;
}

.team-hero__sub {
  max-width: 580px;
  color: rgba(245, 241, 232, 0.85);
}

@media (max-width: 860px) {
  .team-hero::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.5) 38%,
      rgba(0, 0, 0, 0.2) 68%,
      transparent 90%
    );
  }

  .team-hero__h1 {
    margin-bottom: 20px;
  }
}

/* Kelly section */

.team-kelly {
  background: var(--bg-light);
}

.team-kelly__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 72px;
  align-items: center;
}

.team-kelly__copy .eyebrow {
  color: var(--text-muted-dark);
}

.team-kelly__copy h2 {
  margin: 12px 0 28px;
}

.team-kelly__copy p {
  margin: 0;
  max-width: 54ch;
}

.team-kelly__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  margin-inline: auto;
  display: block;
}

@media (max-width: 1120px) {
  .team-kelly__layout {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .team-kelly__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-kelly__portrait img {
    max-width: 320px;
  }
}

/* Instructors section */

.team-instructors {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.team-instructors__head {
  max-width: 720px;
  margin-bottom: 64px;
}

.team-instructors__head h2 {
  margin-bottom: 20px;
}

.team-instructors__head p {
  margin: 0;
}

/* Instructors grid */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-grid .teacher-card {
  flex: none;
  width: 100%;
}

/* Tags line below portrait */

.teacher-card__tags {
  display: block;
  margin-top: 10px;
  padding: 0 2px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--text-muted-dark);
}

@media (max-width: 1120px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-instructors__head {
    margin-bottom: 40px;
  }

  .teacher-card__tags {
    font-size: 11px;
  }
}
