:root {
  --ink: #f7f1e7;
  --muted: #c9beb1;
  --paper: #fff9ef;
  --charcoal: #141313;
  --panel: #211d1a;
  --line: rgba(255, 249, 239, 0.16);
  --gold: #d8a84e;
  --copper: #b96f45;
  --teal: #4aa6a0;
  --wine: #6d2439;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(20, 19, 19, 0.9), rgba(20, 19, 19, 0));
}

.site-header.solid {
  position: sticky;
  background: rgba(20, 19, 19, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 168, 78, 0.55);
  border-radius: 50%;
  color: var(--gold);
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--ink);
}

nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(216, 168, 78, 0.48);
  border-radius: 6px;
  color: var(--ink);
}

.nav-cta:hover {
  background: rgba(216, 168, 78, 0.14);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: 150px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 19, 19, 0.96) 0%, rgba(20, 19, 19, 0.76) 42%, rgba(20, 19, 19, 0.38) 100%),
    linear-gradient(0deg, rgba(20, 19, 19, 1) 0%, rgba(20, 19, 19, 0) 38%);
}

.hero-content,
.hero-player {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

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

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

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 10vw, 9.2rem);
  line-height: 0.86;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.booking {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.play-feature,
.demo-card button,
.demo-meta button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.primary {
  background: var(--gold);
  color: #17120c;
}

.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.hero-player {
  align-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(33, 29, 26, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-player h2 {
  font-size: 2.3rem;
}

.hero-player p {
  color: var(--muted);
}

.play-feature,
.demo-card button,
.demo-meta button {
  width: 100%;
  padding: 10px 14px;
  background: var(--teal);
  color: #071c1b;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #191715;
}

.intro-band div {
  padding: 26px clamp(18px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.intro-band strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.intro-band span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.page {
  padding-top: 0;
}

.page-title {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(109, 36, 57, 0.32), transparent 42%),
    linear-gradient(180deg, #211d1a, #141313);
}

.page-title h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
}

.page-title p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.16rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.split-section.light {
  background: var(--paper);
  color: #1e1915;
}

.split-section.light .eyebrow {
  color: var(--wine);
}

.split-section.light p,
.copy-block p {
  color: #66584b;
}

.copy-block {
  max-width: 760px;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
}

.feature-card {
  display: block;
  min-height: 250px;
  padding: 26px;
  background: #211d1a;
  border: 1px solid transparent;
}

.feature-card:hover {
  border-color: rgba(216, 168, 78, 0.48);
}

.feature-card span {
  color: var(--gold);
  font-weight: 900;
}

.feature-card p {
  color: var(--muted);
}

.studio-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(74, 166, 160, 0.18), transparent 34%),
    #191715;
}

.studio-strip h2 {
  max-width: 660px;
}

.service-band {
  background: var(--paper);
  color: #1e1915;
}

.service-band .eyebrow {
  color: var(--wine);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #dfd2bf;
  border: 1px solid #dfd2bf;
}

.service-list article {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
}

.service-list p {
  color: #66584b;
}

.testimonials-section {
  background:
    linear-gradient(135deg, rgba(216, 168, 78, 0.12), transparent 34%),
    #141313;
}

.compact-testimonials {
  padding-block: clamp(36px, 5vw, 64px);
}

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

.testimonial-strip article {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 24px;
  background: #211d1a;
}

.testimonial-strip p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.12;
}

.testimonial-strip strong {
  margin-top: 22px;
  color: var(--gold);
}

.testimonial-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.studio-points article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px;
  background: #211d1a;
}

.studio-points strong {
  color: var(--gold);
}

.studio-points span {
  color: var(--muted);
}

.credits-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
}

.credit-block {
  padding: 28px;
  background: var(--paper);
  color: #1e1915;
}

.credit-block h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.credit-block ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: #66584b;
}

.credit-block strong {
  color: #1e1915;
}

.pull-quote {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: #191715;
}

.pull-quote p {
  max-width: 980px;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 1.02;
}

.pull-quote span {
  color: var(--gold);
  font-weight: 900;
}

.compact-quote {
  padding-block: clamp(38px, 5vw, 64px);
}

.compact-quote p {
  font-size: clamp(1.75rem, 3.6vw, 3.7rem);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.range-section {
  background: var(--paper);
  color: #1e1915;
}

.range-section .eyebrow {
  color: var(--wine);
}

.range-section .section-heading p:not(.eyebrow),
.range-grid p {
  color: #66584b;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: #dfd2bf;
  border: 1px solid #dfd2bf;
}

.range-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
}

.range-grid span {
  color: var(--copper);
  font-weight: 900;
}

.demos-section {
  background:
    linear-gradient(135deg, rgba(109, 36, 57, 0.28), transparent 34%),
    #141313;
}

.demos-section.compact {
  padding-top: 46px;
}

.controls {
  display: grid;
  grid-template-columns: minmax(260px, 440px) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.search-field input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  background: #211d1a;
  color: var(--ink);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
}

.chip.active {
  border-color: var(--gold);
  background: rgba(216, 168, 78, 0.16);
  color: var(--ink);
}

.demo-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
}

.demo-meta button {
  width: auto;
  min-height: 38px;
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.demo-card {
  display: grid;
  gap: 18px;
  min-height: 184px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.demo-card h3 {
  overflow-wrap: anywhere;
}

.demo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.76rem;
}

.booking {
  justify-content: space-between;
  align-items: start;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--gold);
  color: #17120c;
}

.inline-booking,
.contact-panel {
  margin: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 72px);
  border-radius: 10px;
}

.contact-panel {
  min-height: calc(100vh - 150px);
}

.contact-panel h1 {
  margin-bottom: 20px;
  color: #17120c;
  font-size: clamp(3.3rem, 8vw, 7rem);
}

.booking div {
  max-width: 650px;
}

.booking .eyebrow {
  color: var(--wine);
}

.booking .primary {
  background: #17120c;
  color: var(--ink);
}

.booking-form {
  display: grid;
  gap: 12px;
  width: min(100%, 440px);
  padding: 18px;
  border: 1px solid rgba(23, 18, 12, 0.18);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.35);
}

.booking-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 18, 12, 0.25);
  border-radius: 6px;
  padding: 11px 12px;
  background: rgba(255, 249, 239, 0.72);
  color: #17120c;
}

.booking-form textarea {
  resize: vertical;
}

.now-playing {
  position: sticky;
  bottom: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(180px, 360px) 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: rgba(20, 19, 19, 0.94);
  backdrop-filter: blur(16px);
}

.now-playing audio {
  width: 100%;
}

.now-playing .mini-label {
  margin-bottom: 2px;
  font-size: 0.68rem;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .site-header.solid {
    position: static;
  }

  .site-header,
  .site-header.solid {
    align-items: flex-start;
    flex-direction: column;
    background: rgba(20, 19, 19, 0.98);
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    padding-top: 120px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 19, 19, 0.94), rgba(20, 19, 19, 0.56)),
      linear-gradient(0deg, rgba(20, 19, 19, 1) 0%, rgba(20, 19, 19, 0) 48%);
  }

  .intro-band,
  .range-grid,
  .controls,
  .now-playing,
  .split-section,
  .feature-grid,
  .service-list,
  .testimonial-strip,
  .studio-strip,
  .studio-points article {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(3.2rem, 18vw, 4.4rem);
  }

  .hero-player {
    padding: 18px;
  }

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