:root {
  --paper: #f4efe7;
  --paper-soft: #fbf8f2;
  --stone: #d8cfc2;
  --warm-grey: #81776c;
  --ink: #171615;
  --ink-soft: #302b27;
  --red: #8d2527;
  --teal: #173f3d;
  --line: rgba(23, 22, 21, 0.14);
  --shadow: 0 24px 70px rgba(35, 27, 20, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(244, 239, 231, 0.2);
  background: rgba(23, 22, 21, 0.88);
  color: var(--paper-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  color: var(--stone);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(251, 248, 242, 0.82);
  font-size: 0.88rem;
}

.main-nav a {
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--paper-soft);
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-soft);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 22, 21, 0.88) 0%, rgba(23, 22, 21, 0.46) 34%, rgba(23, 22, 21, 0.04) 68%),
    linear-gradient(0deg, rgba(23, 22, 21, 0.48) 0%, rgba(23, 22, 21, 0) 36%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 40px));
  padding: clamp(82px, 14vh, 136px) 0 0 clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8b1a5;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  font-size: clamp(4.2rem, 8.5vw, 7.4rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 500px;
  margin-top: 18px;
  color: rgba(251, 248, 242, 0.86);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.hero-meta {
  max-width: 520px;
  margin-top: 16px;
  color: rgba(251, 248, 242, 0.68);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 700;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.button-secondary {
  color: var(--paper-soft);
}

.section {
  padding: clamp(72px, 11vw, 140px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 76px);
}

.section-heading.narrow {
  display: block;
  max-width: 840px;
}

.section-heading.narrow p:last-child {
  max-width: 690px;
  margin-top: 18px;
}

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

.intro-grid article,
.offer-grid article {
  min-height: 310px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper-soft);
}

.intro-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 2rem;
}

.intro-grid h3,
.offer-grid h3 {
  margin-bottom: 16px;
}

.instruments {
  background: #ebe4d9;
}

.instrument-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.instrument-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  min-height: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.instrument-card.large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.instrument-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.instrument-card.large img {
  height: 560px;
  padding: 12px;
  background: #f8f4ee;
  object-fit: contain;
  object-position: center;
}

.instrument-card div {
  padding: clamp(10px, 2vw, 22px);
}

.instrument-card p + p {
  margin-top: 14px;
}

.instrument-card.text-only {
  display: flex;
  align-items: flex-end;
  background: var(--teal);
  color: var(--paper-soft);
}

.instrument-card.text-only p {
  color: rgba(251, 248, 242, 0.78);
}

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

.offer-grid article {
  min-height: 280px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--ink);
  color: var(--paper-soft);
}

.feature p,
.feature li {
  color: rgba(251, 248, 242, 0.78);
}

.feature .subtitle {
  margin: 14px 0 24px;
  color: #d7b6a9;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.15;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding-left: 18px;
  border-left: 2px solid var(--red);
}

.feature-media video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #0f0f0f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.references {
  background: var(--paper-soft);
}

.reference-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 0.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin: 0 0 clamp(28px, 5vw, 56px);
}

.reference-feature img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: var(--shadow);
}

.reference-feature figcaption {
  margin: 0;
  padding-bottom: 8px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.16;
}

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

.reference-list span {
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.contact-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.contact-panel .button {
  margin-top: 26px;
}

.contact-panel small {
  display: block;
  margin-top: 16px;
  color: var(--warm-grey);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.site-footer p {
  color: var(--warm-grey);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-page {
  min-height: 100svh;
  background: var(--paper-soft);
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 12vw, 130px) 0;
}

.legal-main h1 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-main h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
}

.legal-main a {
  color: var(--red);
  font-weight: 700;
}

.placeholder {
  margin: 26px 0;
  padding: 20px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}

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

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section-heading,
  .feature,
  .contact,
  .reference-feature {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .offer-grid,
  .reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .site-header {
    position: static;
    padding: 16px 20px;
  }

  .main-nav {
    gap: 10px 16px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    position: relative;
    height: 430px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(23, 22, 21, 0.2) 0%, rgba(23, 22, 21, 0) 46%),
      linear-gradient(90deg, rgba(23, 22, 21, 0.16), rgba(23, 22, 21, 0.02));
  }

  .hero-media img {
    object-position: 54% top;
  }

  .hero-copy {
    width: 100%;
    padding: 30px 20px 52px;
    background: var(--ink);
  }

  h1 {
    font-size: clamp(4rem, 21vw, 6.5rem);
  }

  .intro-grid,
  .offer-grid,
  .reference-list {
    grid-template-columns: 1fr;
  }

  .instrument-card,
  .instrument-card.large {
    grid-template-columns: 1fr;
  }

  .instrument-card.large img,
  .instrument-card img {
    height: 340px;
    min-height: 0;
  }

  .instrument-card.large img {
    height: 430px;
  }

  .feature-media video {
    aspect-ratio: 3 / 4;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
