@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: hsl(212, 24%, 10%);
  --ink-2: hsl(210, 14%, 22%);
  --muted: hsl(210, 8%, 39%);
  --paper: hsl(44, 30%, 96%);
  --surface: hsl(42, 34%, 98%);
  --line: hsl(39, 18%, 75%);
  --brass: hsl(39, 72%, 45%);
  --brass-2: hsl(36, 64%, 31%);
  --green-2: hsl(142, 10%, 18%);
  --wine: hsl(350, 42%, 25%);
  --white: hsl(0, 0%, 100%);
  --shadow-soft: 0 24px 80px hsla(212, 24%, 10%, 0.14);
  --shadow-hard: 0 28px 70px hsla(212, 24%, 10%, 0.24);
  --max: 1180px;
  --gutter: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, hsla(39, 72%, 45%, 0.045) 1px, transparent 1px),
    linear-gradient(hsla(39, 72%, 45%, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection {
  color: var(--ink);
  background: hsl(42, 82%, 74%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - var(--gutter)));
  padding: 10px 10px 10px 12px;
  border: 1px solid hsla(39, 18%, 82%, 0.55);
  background: hsla(44, 30%, 96%, 0.86);
  box-shadow: 0 10px 36px hsla(212, 24%, 10%, 0.08);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  padding: 11px 12px;
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav .current {
  color: var(--ink);
}

.site-nav .nav-cta {
  margin-left: 4px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: hsla(0, 0%, 100%, 0.32);
}

.nav-toggle {
  display: none;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  margin-bottom: 24px;
  font-size: 72px;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--brass-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede,
.hero-subtitle {
  color: var(--ink-2);
  font-size: 21px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.primary:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.button.ghost {
  color: var(--white);
  border-color: hsla(0, 0%, 100%, 0.75);
  background: hsla(0, 0%, 100%, 0.08);
}

.button.light {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.button.full {
  width: 100%;
}

.text-link {
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: " ->";
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  object-fit: cover;
  object-position: 66% 48%;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, hsla(212, 24%, 8%, 0.86) 0%, hsla(212, 24%, 8%, 0.66) 36%, hsla(212, 24%, 8%, 0.16) 72%),
    linear-gradient(0deg, hsla(212, 24%, 8%, 0.54) 0%, transparent 38%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: 176px 0 210px;
}

.home-hero .eyebrow,
.home-hero .hero-subtitle {
  color: hsl(42, 45%, 87%);
}

.home-hero h1 {
  max-width: 730px;
  margin-bottom: 20px;
  font-size: 110px;
}

.hero-subtitle {
  max-width: 670px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-index {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  left: max(20px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid hsla(0, 0%, 100%, 0.32);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.22);
  backdrop-filter: blur(18px);
}

.hero-index a {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  border-right: 1px solid hsla(0, 0%, 100%, 0.22);
  text-decoration: none;
}

.hero-index a:last-child {
  border-right: 0;
}

.hero-index span {
  color: hsl(42, 70%, 70%);
  font-size: 12px;
  font-weight: 900;
}

.hero-index strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}

.hero-index small {
  color: hsl(42, 28%, 83%);
  font-size: 13px;
}

.intro-panel,
.pathways,
.studio-focus,
.listening-room,
.reach-section,
.final-cta,
.seo-content,
.service-area-grid,
.page-hero,
.lesson-feature,
.lesson-types,
.method-section,
.faq-section,
.recording-hero,
.featured-recording,
.recording-grid,
.hire-section,
.bio-section,
.credentials-section,
.contact-page {
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  padding: 94px 0 76px;
  border-bottom: 1px solid var(--line);
}

.intro-panel p:last-child,
.pathway p,
.studio-focus p,
.reach-columns p,
.final-cta p,
.lesson-feature p,
.method-steps p,
.faq-list p,
.recording-card p,
.featured-recording p,
.hire-section li,
.bio-section p:not(.eyebrow):not(.lede),
.credential-list p,
.contact-details span,
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--muted);
}

.pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px 0 96px;
}

.pathway {
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  background: hsla(42, 34%, 98%, 0.74);
  box-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.8) inset;
}

.lesson-pathway {
  background:
    linear-gradient(180deg, hsla(39, 72%, 45%, 0.08), transparent 52%),
    hsla(42, 34%, 98%, 0.82);
}

.performance-pathway {
  color: var(--white);
  background:
    linear-gradient(160deg, hsla(39, 72%, 45%, 0.2), transparent 45%),
    var(--green-2);
}

.performance-pathway .section-kicker,
.performance-pathway p,
.performance-pathway .text-link {
  color: hsl(42, 36%, 86%);
}

.pathway .text-link {
  display: inline-block;
  margin-top: 20px;
}

.studio-focus {
  padding: 0 0 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.focus-list,
.lesson-types,
.method-steps,
.credential-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.focus-list article,
.lesson-types article,
.method-steps article,
.credential-list article {
  min-height: 265px;
  padding: 28px;
  background: var(--surface);
}

.focus-list span,
.lesson-types span {
  display: block;
  margin-bottom: 52px;
  color: var(--brass-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.listening-room {
  display: grid;
  grid-template-columns: 0.85fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-hard);
}

.listening-room .section-kicker,
.listening-room p {
  color: hsl(42, 32%, 82%);
}

.listening-room h2 {
  margin-bottom: 12px;
}

.mini-player {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid hsla(42, 32%, 82%, 0.28);
  background: hsla(0, 0%, 100%, 0.06);
}

.play-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  background: hsl(42, 72%, 72%);
  font-size: 12px;
  font-weight: 900;
}

.mini-player strong,
.mini-player small {
  display: block;
}

.mini-player small {
  color: hsl(42, 28%, 78%);
}

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

.reach-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.reach-columns ul,
.hire-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.seo-content {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 48px;
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.seo-content p {
  color: var(--muted);
}

.seo-copy-columns {
  display: grid;
  gap: 24px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.seo-link-grid a {
  min-height: 88px;
  padding: 20px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.seo-link-grid a:hover {
  color: var(--wine);
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 64px 0 84px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.service-area-grid article {
  min-height: 300px;
  padding: 28px;
  background: var(--surface);
}

.service-area-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--brass-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-area-grid p {
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 0 0 102px;
}

.final-cta img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 48% 30%;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

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

.page-hero,
.recording-hero,
.bio-section,
.contact-page {
  padding-top: 154px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.recording-hero h1,
.bio-section h1,
.contact-page h1 {
  max-width: 900px;
  font-size: 70px;
}

.lesson-feature {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  padding: 64px 0;
}

.inquiry-panel,
.contact-form,
.recording-card {
  border: 1px solid var(--line);
  background: hsla(42, 34%, 98%, 0.82);
  box-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.8) inset;
}

.inquiry-panel {
  align-self: start;
  position: sticky;
  top: 104px;
  padding: 26px;
}

.inquiry-panel h2 {
  font-size: 32px;
}

.panel-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.panel-note span {
  color: var(--muted);
}

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

.method-section,
.faq-section,
.credentials-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

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

.faq-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-list details {
  padding: 22px 26px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}

.faq-list p {
  margin: 12px 0 0;
}

.recording-hero {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 76px;
}

.recording-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 38%;
  box-shadow: var(--shadow-soft);
}

.recording-hero .button + .button {
  margin-left: 10px;
}

.featured-recording {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 44px 0 70px;
  border-top: 1px solid var(--line);
}

.large-video-placeholder,
.video-placeholder {
  display: grid;
  place-items: center;
  color: hsl(42, 38%, 86%);
  background:
    linear-gradient(135deg, hsla(39, 72%, 45%, 0.22), transparent 42%),
    radial-gradient(circle at 72% 28%, hsla(39, 72%, 45%, 0.18), transparent 36%),
    var(--ink);
}

.large-video-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 320px;
  box-shadow: var(--shadow-hard);
}

.large-video-placeholder span,
.video-placeholder span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recording-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 76px;
}

.recording-card {
  overflow: hidden;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
}

.recording-card h2,
.recording-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.recording-card h2 {
  margin-top: 24px;
  font-size: 30px;
}

.recording-card p {
  padding-bottom: 26px;
}

.hire-section {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px 0 102px;
  border-top: 1px solid var(--line);
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) 1fr;
  gap: 58px;
  align-items: center;
  padding-bottom: 84px;
}

.bio-section img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 38%;
  box-shadow: var(--shadow-soft);
}

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

.contact-page {
  display: grid;
  grid-template-columns: 0.85fr minmax(340px, 0.68fr);
  gap: 58px;
  align-items: start;
  padding-bottom: 102px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.contact-details p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  background: var(--white);
  font: 500 15px "Manrope", "Segoe UI", sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid hsl(42, 72%, 72%);
  outline-offset: 2px;
}

.contact-form textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
}

.thanks-page section {
  max-width: 720px;
}

@media (max-width: 1050px) {
  :root {
    --gutter: 28px;
  }

  h1,
  .page-hero h1,
  .recording-hero h1,
  .bio-section h1,
  .contact-page h1 {
    font-size: 58px;
  }

  .home-hero h1 {
    font-size: 86px;
  }

  h2 {
    font-size: 38px;
  }

  .intro-panel,
  .pathways,
  .section-heading,
  .listening-room,
  .reach-columns,
  .final-cta,
  .seo-content,
  .page-hero,
  .lesson-feature,
  .recording-hero,
  .featured-recording,
  .hire-section,
  .bio-section,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .lesson-types,
  .focus-list,
  .method-steps,
  .credential-list,
  .recording-grid,
  .service-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiry-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    background: hsla(0, 0%, 100%, 0.22);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 13px;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero-image {
    object-position: 68% 48%;
  }

  .home-hero-overlay {
    background:
      linear-gradient(90deg, hsla(212, 24%, 8%, 0.86), hsla(212, 24%, 8%, 0.5)),
      linear-gradient(0deg, hsla(212, 24%, 8%, 0.66), transparent 52%);
  }

  .home-hero-content {
    padding: 140px 0 28px;
  }

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

  h1,
  .page-hero h1,
  .recording-hero h1,
  .bio-section h1,
  .contact-page h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .lede,
  .hero-subtitle {
    font-size: 18px;
  }

  .hero-index {
    position: relative;
    grid-template-columns: 1fr;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 24px);
    margin: 0 auto 24px;
  }

  .hero-index a {
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
  }

  .hero-index a:last-child {
    border-bottom: 0;
  }

  .hero-index strong {
    font-size: 21px;
  }

  .intro-panel,
  .pathways,
  .studio-focus,
  .reach-section,
  .method-section,
  .faq-section,
  .credentials-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .pathways {
    padding-top: 24px;
  }

  .pathway,
  .listening-room,
  .contact-form {
    padding: 24px;
  }

  .recording-hero .button + .button {
    margin-top: 10px;
    margin-left: 0;
  }

  .lesson-types,
  .focus-list,
  .method-steps,
  .credential-list,
  .recording-grid,
  .service-area-grid,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .focus-list article,
  .lesson-types article,
  .method-steps article,
  .credential-list article,
  .service-area-grid article {
    min-height: 0;
  }

  .page-hero,
  .recording-hero,
  .bio-section,
  .contact-page {
    padding-top: 126px;
  }

  .site-footer {
    display: grid;
    width: calc(100% - 24px);
  }

  .site-footer div {
    flex-wrap: wrap;
  }
}
