:root {
  --ink: #111820;
  --muted: #59616d;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --cream: #fffaf0;
  --red: #c83f34;
  --gold: #bd8f34;
  --green: #407467;
  --line: #ded3c1;
  --shadow: 0 18px 46px rgba(17, 24, 32, 0.14);
  font-family: "Avenir Next", Avenir, "Josefin Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(222, 211, 193, 0.82);
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  font-size: 0.94rem;
  font-weight: 800;
}

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 62px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #121820;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 17, 23, 0.9), rgba(12, 17, 23, 0.62) 46%, rgba(12, 17, 23, 0.14)),
    linear-gradient(0deg, rgba(12, 17, 23, 0.6), rgba(12, 17, 23, 0.04) 48%);
}

.hero-content,
.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  padding: clamp(52px, 8vw, 92px) 0;
  color: #fff;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
}

.hero-subheadline {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.18rem, 2.6vw, 1.85rem);
  font-weight: 900;
  line-height: 1.24;
}

.hero-location,
.hero-proof {
  max-width: 660px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  background: transparent;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.section,
.banded-section,
.contact-band {
  padding: clamp(58px, 8vw, 104px) 0;
}

.banded-section {
  background: var(--surface);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(26px, 5vw, 46px);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  line-height: 1.02;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.22;
}

p,
li,
label,
input,
select,
textarea {
  font-size: 1.02rem;
  line-height: 1.62;
}

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

.lead {
  max-width: 820px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: #33404a;
}

.quick-grid,
.lesson-grid,
.program-grid,
.testimonial-grid,
.gallery-grid,
.portfolio-grid,
.trust-grid,
.age-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quick-card,
.lesson-card,
.program-card,
.testimonial-card,
.portfolio-card,
.trust-card,
.age-card {
  border-top: 4px solid var(--gold);
  background: var(--surface);
  padding: 24px;
  min-height: 190px;
}

.banded-section .quick-card,
.banded-section .lesson-card,
.banded-section .program-card,
.banded-section .testimonial-card,
.banded-section .portfolio-card,
.banded-section .trust-card,
.banded-section .age-card {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd4c6;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feature-list span {
  border: 1px solid var(--line);
  background: #fbfaf7;
  padding: 9px 12px;
  font-weight: 900;
}

.lesson-card a,
.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.portfolio-card span {
  display: inline-block;
  margin-top: 16px;
  color: #7a5a19;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 4px solid var(--gold);
  background: var(--surface);
  padding: 22px;
}

.timeline span {
  color: var(--red);
  font-weight: 900;
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  max-width: 760px;
  color: #39454f;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.instrument-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.46fr);
  gap: 28px;
  align-items: start;
}

.info-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
}

.info-panel ul {
  margin: 0;
  padding-left: 20px;
}

.rate-table {
  border: 1px solid var(--line);
  background: var(--surface);
}

.rate-table div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.rate-table div:last-child {
  border-bottom: 0;
}

.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figure:nth-child(n+2) img {
  object-fit: contain;
  padding: 12px;
  background: var(--paper);
}

.gallery-grid figcaption {
  min-height: 48px;
  padding: 13px 15px;
  color: var(--muted);
  font-weight: 900;
}

.contact-band {
  background: var(--green);
  color: #fff;
}

.contact-band .section-label {
  color: #f2ca78;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-band h1 {
  max-width: 100%;
  font-size: clamp(2.35rem, 5.2vw, 4.4rem);
  overflow-wrap: break-word;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #fff;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 11px 12px;
  font-family: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer {
  padding: 24px 0;
  background: #121820;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 0.92rem;
}

.footer-inner a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 17, 23, 0.88), rgba(12, 17, 23, 0.22)),
      linear-gradient(90deg, rgba(12, 17, 23, 0.5), rgba(12, 17, 23, 0.1));
  }

  .quick-grid,
  .lesson-grid,
  .program-grid,
  .testimonial-grid,
  .gallery-grid,
  .portfolio-grid,
  .trust-grid,
  .age-grid,
  .split,
  .instrument-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 9px 14px;
  }

  .brand span {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions,
  .cta-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }
}
