:root {
  --paper: #fbf6ec;
  --paper-soft: #fffaf2;
  --ink: #191410;
  --muted: #6f6258;
  --line: rgba(25, 20, 16, 0.14);
  --gold: #c79d50;
  --gold-deep: #946b2a;
  --black: #0e0b09;
  --wine: #6c1e1c;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 246, 236, 0.9);
  border-bottom: 1px solid rgba(25, 20, 16, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.05;
}

.brand small {
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.language-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
}

.language-toggle {
  padding: 0.45rem 0.8rem;
}

.menu-toggle {
  display: none;
  padding: 0.55rem 0.9rem;
}

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.96) contrast(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 11, 9, 0.74), rgba(14, 11, 9, 0.24) 50%, rgba(14, 11, 9, 0.04)),
    linear-gradient(0deg, rgba(14, 11, 9, 0.7), rgba(14, 11, 9, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) 0;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.recordings h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 9vw, 8.5rem);
}

.hero-copy {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #17110b;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.intro-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateY(-50%);
  background: var(--line);
  border: 1px solid var(--line);
}

.intro-strip div {
  background: var(--paper-soft);
  padding: clamp(1rem, 3vw, 1.7rem);
}

.intro-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
}

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

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.section h2,
.recordings h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.text-column {
  max-width: 720px;
  color: #332a23;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

.text-column p:first-child {
  margin-top: 0;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(170px, 0.46fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.service-list p,
.contact-note,
.repertoire-grid p {
  margin: 0;
  color: var(--muted);
}

.recordings {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  background: var(--black);
  color: white;
  min-height: 760px;
}

.recordings-image {
  min-height: 520px;
}

.recordings-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  opacity: 0.82;
}

.recordings-content {
  align-self: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.section-kicker.light {
  color: #e2bb74;
}

.recordings p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.soundcloud-frame {
  position: relative;
  min-height: 360px;
  margin: 2rem 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #17120f;
}

.soundcloud-frame iframe {
  display: block;
}

.soundcloud-frame iframe:not([src]) {
  display: none;
}

.embed-consent {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(135deg, #17120f, #211814);
}

.embed-consent h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
}

.embed-consent p {
  margin: 0;
}

.light-button {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

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

.repertoire-grid p {
  min-height: 110px;
  display: flex;
  align-items: end;
  background: var(--paper-soft);
  padding: 1.3rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.contact-panel {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-link {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--gold-deep);
  font-weight: 800;
  text-decoration: none;
}

.contact-panel p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 20, 16, 0.18);
  border-radius: 0;
  background: white;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(199, 157, 80, 0.42);
  border-color: var(--gold);
}

.form-button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0 auto 0 0;
}

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

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer-link-button:hover,
.footer-link-button:focus,
.site-footer a:hover,
.site-footer a:focus {
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: min(680px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1.1rem;
  background: rgba(14, 11, 9, 0.96);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-title {
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.cookie-banner p:not(.cookie-title),
.cookie-modal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.secondary-dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.secondary-light {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper-soft);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(14, 11, 9, 0.55);
}

.cookie-modal-panel {
  position: relative;
  width: min(560px, 100%);
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  background: var(--paper-soft);
  color: var(--ink);
  border: 1px solid var(--line);
}

.cookie-modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.cookie-modal p {
  color: var(--muted);
}

.cookie-choice {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.legal-page {
  background: var(--paper);
}

.legal-content {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.legal-content h1,
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.legal-content h2 {
  margin: 2.2rem 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.legal-content p,
.legal-content li {
  color: #332a23;
}

.legal-content a {
  color: var(--gold-deep);
  font-weight: 700;
}

.legal-updated {
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem;
    background: var(--paper-soft);
    border: 1px solid var(--line);
  }

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

  .hero {
    min-height: 720px;
  }

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

  .hero::after {
    background:
      linear-gradient(90deg, rgba(14, 11, 9, 0.78), rgba(14, 11, 9, 0.18)),
      linear-gradient(0deg, rgba(14, 11, 9, 0.84), rgba(14, 11, 9, 0.05) 54%);
  }

  .intro-strip,
  .section-grid,
  .recordings {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    transform: none;
    margin-top: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .recordings-content {
    padding: 3rem 1rem 4rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .intro-strip {
    gap: 1px;
  }
}
