:root {
  color-scheme: light;
  --ink: #171412;
  --muted: #6f6760;
  --paper: #f7f7f3;
  --soft: #e6ebe6;
  --line: rgba(23, 20, 18, 0.14);
  --wine: #7b2029;
  --gold: #b78a42;
  --green: #17372f;
  --white: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

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

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.anchor {
  position: absolute;
  top: 0;
}

section[id] {
  scroll-margin-top: 72px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(nav.is-open) {
  background: rgba(23, 20, 18, 0.94);
  box-shadow: 0 1px 0 rgba(255, 250, 243, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Forum, Georgia, serif;
  font-size: 28px;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255, 250, 243, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(23, 20, 18, 0.26);
}

.menu-toggle__line {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(207, 159, 72, 0.24), transparent 32%),
    linear-gradient(120deg, #0b0b09 0%, #11140f 58%, #172319 100%);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/hero-formal.jpg?v=1");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.64) 42%, rgba(8, 8, 7, 0.1)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.78), rgba(8, 8, 7, 0.04) 52%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  margin: 0 clamp(20px, 7vw, 108px) 16vh;
  color: var(--white);
}

.eyebrow,
.section__label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Forum, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(68px, 10vw, 142px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.98;
}

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

.lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 250, 243, 0.88);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.3;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 243, 0.36);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
}

.button--primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #171412;
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 250, 243, 0.08);
  backdrop-filter: blur(12px);
}

.button--ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button {
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button--primary:hover {
  background: #c99a4c;
  border-color: #c99a4c;
}

.hero__facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 250, 243, 0.22);
  color: rgba(255, 250, 243, 0.86);
}

.hero__facts span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 250, 243, 0.18);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(20px, 6vw, 88px);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
}

.intro__copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.statement {
  padding: clamp(60px, 9vw, 120px) clamp(20px, 6vw, 88px);
  background: var(--green);
  color: var(--white);
}

.statement__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.statement p {
  margin: 0;
  font-family: Forum, Georgia, serif;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 1.05;
}

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

.proof__item {
  min-height: 210px;
  padding: 28px;
  background: var(--paper);
}

.proof__item strong {
  display: block;
  margin-bottom: 22px;
  font-size: 22px;
}

.proof__item span {
  color: var(--muted);
  line-height: 1.6;
}

.section__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 7vw, 88px);
  margin-bottom: 44px;
}

.section__heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.formats__grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.formats__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.formats__grid .formats__image {
  padding: 0;
}

.formats__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formats__content {
  padding: 24px;
}

.formats__grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 800;
}

.formats__grid p,
.services__list p,
.prices p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.repertoire {
  background: var(--soft);
}

.repertoire__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 8vw, 100px);
  align-items: start;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 2.5vw, 30px);
}

.services__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 8vw, 100px);
}

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

.services__list article {
  padding: 24px;
  background: var(--white);
}

.services__list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.services__list p {
  margin-bottom: 0;
}

.prices {
  background: var(--green);
  color: var(--white);
}

.prices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 250, 243, 0.24);
  border: 1px solid rgba(255, 250, 243, 0.24);
}

.prices__grid article {
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 250, 243, 0.08);
}

.prices__grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prices__grid strong {
  display: block;
  margin-bottom: 22px;
  font-family: Forum, Georgia, serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.98;
}

.prices p {
  color: rgba(255, 250, 243, 0.74);
}

.prices__note {
  max-width: 760px;
  margin: 28px 0 0;
}

.prices__note a {
  color: var(--gold);
  font-weight: 800;
}

.media__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: end;
  margin-bottom: 42px;
}

.media__heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.media__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.video-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.video-card--wide {
  grid-column: 1 / -1;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #090909;
  object-fit: contain;
}

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

.video-card__caption {
  display: grid;
  gap: 8px;
  padding: 22px 24px 25px;
}

.video-card__caption span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card__caption strong {
  font-size: 22px;
}

.faq {
  background: var(--soft);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

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

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.25;
}

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

.faq__list summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--accent);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq__list details[open] summary::after {
  transform: rotate(45deg);
}

.faq__list p {
  max-width: 720px;
  margin: -5px 48px 25px 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  padding-bottom: clamp(40px, 7vw, 80px);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  grid-template-areas: "copy actions";
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  padding: clamp(34px, 6vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.contact__inner > div:first-child {
  grid-area: copy;
}

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

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  max-width: 650px;
  color: rgba(255, 250, 243, 0.72);
}

@media (max-width: 900px) {
  .site-header {
    padding-block: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
    background: rgba(23, 20, 18, 0.97);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
  }

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

  .site-header nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 250, 243, 0.12);
  }

  .hero {
    min-height: 92svh;
  }

  .hero__image {
    background-size: cover;
    background-position: center;
  }

  .hero__content {
    margin-bottom: 12vh;
  }

  .hero__facts,
  .intro__grid,
  .proof__grid,
  .section__heading,
  .formats__grid,
  .repertoire__panel,
  .services__grid,
  .prices__grid,
  .media__heading,
  .faq__layout,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__inner {
    grid-template-areas:
      "copy"
      "actions";
  }

  .hero__facts span {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 243, 0.18);
  }
}

@media (max-width: 560px) {
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.76), rgba(8, 8, 7, 0.22)),
      linear-gradient(0deg, rgba(8, 8, 7, 0.84), rgba(8, 8, 7, 0.1) 58%);
  }

  .hero__image {
    background-size: auto 82%;
    background-position: center top 70px;
  }

  .hero__content {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  h1 {
    font-size: 64px;
  }

  .button {
    width: 100%;
  }

  .section,
  .statement {
    padding-inline: 16px;
  }

  .contact__inner {
    padding: 28px 18px;
  }

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

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

  .video-card--wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
