@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&family=Bebas+Neue&family=Instrument+Serif:ital@0;1&display=swap");

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

:root {
  color-scheme: dark;
  --ink: #0c0a14;
  --surface: #17131f;
  --panel: #1d1827;
  --amber: #f5c84c;
  --cream: #f2ede2;
  --muted: #c8c1d1;
  --line: rgba(245, 200, 76, 0.24);
  --shell: min(1120px, calc(100% - 2rem));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 10, 20, 0.94);
  backdrop-filter: blur(16px);
}

.site-header-inner,
.site-footer-inner {
  width: var(--shell);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  color: var(--cream);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.logo span {
  color: var(--amber);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav .nav-cta {
  padding: 0.58rem 0.9rem;
  background: var(--amber);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(12, 10, 20, 0.98) 0%, rgba(12, 10, 20, 0.82) 48%, rgba(12, 10, 20, 0.28) 100%),
    linear-gradient(0deg, var(--ink), transparent 45%),
    var(--hero-image) center var(--hero-position, center) / cover no-repeat;
}

.hero-inner {
  width: var(--shell);
  margin: auto;
  padding: clamp(5rem, 11vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.2rem;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.3rem;
  height: 1px;
  background: var(--amber);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
}

h1 em,
h2 em {
  color: var(--amber);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  text-transform: none;
}

h2 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.035em;
}

.hero-lead,
.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.3rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--amber);
  color: var(--ink);
}

.section {
  width: var(--shell);
  margin: auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent), var(--surface);
}

.card .tag {
  display: inline-block;
  margin-bottom: 1.4rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card p,
.prose p,
.prose li {
  color: var(--muted);
  font-weight: 300;
}

.price {
  margin: 1.2rem 0 0.15rem;
  color: var(--amber);
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.6rem;
  line-height: 1;
}

.price small {
  color: var(--cream);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.total {
  color: var(--muted);
  font-size: 0.84rem;
}

.payment-plan {
  margin-top: 0.25rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 1.15rem 0 0;
  color: var(--cream) !important;
  font-size: 0.76rem;
  font-weight: 600 !important;
}

.quick-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.quick-points span:not(:last-child)::after {
  color: var(--amber);
  content: "·";
}

.more-details {
  margin-top: 1.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.more-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  color: var(--amber);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  list-style: none;
}

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

.more-details summary::after {
  content: "↓";
  font-size: 1rem;
  transition: transform 0.18s ease;
}

.more-details[open] summary::after {
  transform: rotate(180deg);
}

.more-details-content {
  padding: 0.55rem 0 0.25rem;
}

.more-details-content h4 {
  margin: 0 0 0.6rem;
  color: var(--cream);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.more-details-content .feature-list {
  margin-top: 0;
}

.more-details-content .feature-list strong {
  color: var(--cream);
}

.feature-list {
  margin: 1.3rem 0 0;
  padding: 1.1rem 0 0 1.1rem;
  border-top: 1px dashed var(--line);
  color: var(--muted);
}

.feature-list li {
  margin: 0.45rem 0;
}

.media-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.teacher-layout,
.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1rem;
}

.teacher-layout .media-card img {
  object-position: 68% 28%;
}

.about-photo-background {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-photo-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--surface);
  background-image: var(--about-background);
  background-position: var(--about-background-position, center);
  background-size: var(--about-background-size, cover);
  background-repeat: no-repeat;
}

.about-photo-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 10, 20, 0.97) 0%, rgba(12, 10, 20, 0.88) 48%, rgba(12, 10, 20, 0.48) 100%);
  pointer-events: none;
}

.about-photo-background--live {
  --about-background: url("../media/michael-performing-live-on-drums-ae8371c3.webp");
  --about-background-size: cover;
  --about-background-position: 72% center;
}

.about-photo-background--studio {
  --about-background: url("../media/michael-in-the-studio-4d1928c3.webp");
  --about-background-size: cover;
  --about-background-position: center;
}

.about-photo-background--studio::before {
  transform: scaleX(-1);
}

.about-profile-card {
  max-width: 580px;
}

.about-photo-background--live::after,
.about-photo-background--studio::after {
  background: linear-gradient(90deg, rgba(12, 10, 20, 0.98) 0%, rgba(12, 10, 20, 0.9) 48%, rgba(12, 10, 20, 0.46) 68%, rgba(12, 10, 20, 0.06) 100%);
}

.quote,
.trial-panel,
.cta-panel {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px dashed rgba(245, 200, 76, 0.6);
  background: rgba(245, 200, 76, 0.055);
}

.quote {
  color: var(--cream);
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
}

.quote cite {
  display: block;
  margin-top: 0.6rem;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.74rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-panel {
  text-align: center;
}

.cta-panel .section-lead,
.cta-panel .actions {
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 3.5rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.prose h3 {
  margin: 2rem 0 0.5rem;
  color: var(--amber);
}

.prose a {
  color: var(--amber);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .site-header-inner {
    padding: 0.7rem 0;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(0deg, var(--ink) 0%, rgba(12, 10, 20, 0.9) 50%, rgba(12, 10, 20, 0.3) 100%),
      var(--hero-image) var(--mobile-hero-position, center) / cover no-repeat;
  }

  .section-header,
  .teacher-layout,
  .studio-layout,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .media-card,
  .media-card img {
    min-height: 300px;
  }

  .about-photo-background {
    padding-top: 12rem;
  }

  .about-photo-background--live {
    --about-background-size: auto 17rem;
    --about-background-position: center top;
  }

  .about-photo-background--studio {
    --about-background-size: auto 15rem;
    --about-background-position: center top;
  }

  .about-photo-background--live::after,
  .about-photo-background--studio::after {
    background: linear-gradient(180deg, rgba(12, 10, 20, 0.04) 0, rgba(12, 10, 20, 0.25) 6rem, rgba(12, 10, 20, 0.88) 13.5rem, rgba(12, 10, 20, 0.98) 100%);
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-booking {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 64px;
    place-items: center;
    border-top: 1px solid var(--amber);
    background: rgba(12, 10, 20, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-booking a {
    width: calc(100% - 1.2rem);
    padding: 0.65rem;
    background: var(--amber);
    color: var(--ink);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (min-width: 761px) {
  .mobile-booking {
    display: none;
  }
}
