:root {
  --ink: #171412;
  --muted: #6f6761;
  --paper: #f8f5ef;
  --panel: #fffdf8;
  --line: rgba(23, 20, 18, 0.12);
  --gold: #c99a43;
  --red: #963f36;
  --teal: #24666c;
  --green: #4d6f52;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 20, 18, 0.14);
  font-family: 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);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 245, 239, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 20, 18, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .language-switcher {
  border-color: rgba(23, 20, 18, 0.16);
  background: rgba(23, 20, 18, 0.04);
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--gold);
  color: #17120b;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 86px) 104px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 13, 11, 0.96) 0%, rgba(16, 13, 11, 0.78) 36%, rgba(16, 13, 11, 0.2) 62%, rgba(16, 13, 11, 0.02) 100%),
    linear-gradient(0deg, rgba(16, 13, 11, 0.68) 0%, rgba(16, 13, 11, 0.08) 48%),
    url("assets/onstage-enhanced.jpeg") 38% center / cover;
  transform: scale(1.018);
  filter: blur(0.34px) contrast(1.18) saturate(1.08) brightness(0.96);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 43%, rgba(255, 229, 178, 0.18), rgba(255, 229, 178, 0) 26%),
    repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.07) 0 1px, rgba(255, 255, 255, 0) 1px 7px),
    repeating-linear-gradient(18deg, rgba(0, 0, 0, 0.1) 0 1px, rgba(0, 0, 0, 0) 1px 9px);
  mix-blend-mode: soft-light;
  opacity: 0.42;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8.5vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6vw, 86px);
  right: clamp(20px, 6vw, 86px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 10, 9, 0.36);
  backdrop-filter: blur(12px);
}

.hero-strip span {
  padding: 16px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-strip span:last-child {
  border-right: 0;
}

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

.intro {
  background: var(--panel);
}

.intro-grid,
.section-heading,
.about,
.contact-section,
.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.feature-content h2,
.about h2,
.process h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p,
.feature-content p,
.about p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 34px;
  align-items: end;
}

.text-link {
  justify-self: end;
  color: var(--teal);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.real-proof {
  background: #171412;
  color: var(--white);
}

.real-proof .section-heading h2 {
  color: var(--white);
}

.source-note {
  justify-self: end;
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  text-align: right;
}

.proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 16px;
}

.proof-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0f0d0c;
}

.proof-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08);
}

.proof-card-wide img {
  object-position: 58% center;
}

.proof-card-portrait img {
  object-position: 52% 38%;
  filter: grayscale(1) contrast(1.2) brightness(0.92) saturate(0);
}

.proof-card-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0) 46%);
  mix-blend-mode: soft-light;
}

.proof-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(15, 13, 12, 0.94), rgba(15, 13, 12, 0));
}

.proof-card figcaption span {
  display: block;
  margin-bottom: 6px;
  color: #f2c978;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-card figcaption strong {
  display: block;
  max-width: 520px;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.18;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.impact-row div {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.impact-row strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  color: #f2c978;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
}

.impact-row span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(23, 20, 18, 0.02);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 154, 67, 0.16);
  color: #845d18;
  font-weight: 850;
  font-size: 0.82rem;
}

.service-card h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.12;
}

.service-card p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 6vw, 86px);
  background: #182f32;
  color: var(--white);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.76);
}

.format-list {
  display: grid;
  gap: 12px;
}

.format-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.format-list span {
  display: block;
  margin-bottom: 5px;
  color: #e2ba68;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.format-list strong {
  display: block;
  font-size: 1.15rem;
}

.about {
  align-items: stretch;
}

.about-panel,
.quote-panel {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
}

.about-panel {
  background: var(--panel);
  border: 1px solid var(--line);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(36, 102, 108, 0.1);
  color: var(--teal);
  font-weight: 750;
  font-size: 0.9rem;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--red);
  color: var(--white);
  min-height: 360px;
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

cite {
  margin-top: 26px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}

.process {
  background: #efe8dc;
}

.process > h2 {
  max-width: 820px;
  margin-bottom: 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps div {
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 253, 248, 0.72);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.contact-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 6vw, 86px);
  background: var(--ink);
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-methods a {
  width: fit-content;
  color: #f2c978;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 67, 0.24);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 86px);
  background: #0f0d0c;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
}

@media (max-width: 980px) {
  .intro-grid,
  .section-heading,
  .about,
  .contact-section,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

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

  .proof-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

  .impact-row {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-strip span:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 180px;
    line-height: 1.1;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-switcher button {
    min-width: 30px;
    height: 28px;
    font-size: 0.68rem;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    border-radius: 8px;
    background: rgba(248, 245, 239, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 92svh;
    padding: 92px 20px 94px;
    align-items: end;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(16, 13, 11, 0.92) 0%, rgba(16, 13, 11, 0.68) 52%, rgba(16, 13, 11, 0.03) 100%),
      linear-gradient(180deg, rgba(16, 13, 11, 0.12) 0%, rgba(16, 13, 11, 0.34) 50%, rgba(16, 13, 11, 0.84) 100%),
      url("assets/onstage-enhanced.jpeg") 45% center / cover;
    filter: blur(0.42px) contrast(1.22) saturate(1.1) brightness(0.98);
  }

  .hero-content {
    width: min(420px, 68vw);
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3.9rem);
  }

  .button {
    width: min(360px, 100%);
  }

  .hero-strip {
    left: 20px;
    right: 20px;
    bottom: 16px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-strip span {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 11px 12px;
    font-size: 0.78rem;
  }

  .hero-strip::-webkit-scrollbar {
    display: none;
  }

  .hero-strip span:nth-child(2),
  .hero-strip span:nth-child(3),
  .hero-strip span:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-grid,
  .steps,
  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .source-note {
    justify-self: start;
    text-align: left;
  }

  .proof-card {
    min-height: 320px;
  }

  .service-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
