:root {
  --ink: #111111;
  --coal: #171717;
  --soft-black: #070707;
  --ivory: #f6f1e9;
  --muted: #c8beb0;
  --line: rgba(246, 241, 233, 0.16);
  --line-dark: rgba(17, 17, 17, 0.12);
  --gold: #d8ad58;
  --amber: #f0c86b;
  --clay: #9f7862;
  --bluegray: #6b7784;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-menu-locked {
  overflow: hidden;
  touch-action: none;
}

section {
  scroll-margin-top: 86px;
}

body::selection {
  background: var(--gold);
  color: var(--soft-black);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  background: rgba(7, 7, 7, 0.52);
  border-bottom: 0;
  color: var(--ivory);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(150px, 220px) minmax(420px, 1fr) auto;
  left: 0;
  min-height: 74px;
  padding: 14px clamp(20px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: inset 0 -1px 0 rgba(246, 241, 233, 0);
  transition: background 220ms ease, color 180ms ease, box-shadow 220ms ease;
  z-index: 20;
}

.site-header.is-dark {
  background: rgba(7, 7, 7, 0.46);
  color: var(--ivory);
  backdrop-filter: blur(24px) saturate(135%);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease, transform 260ms ease;
}

.brand:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.brand span {
  font-size: 16px;
  font-weight: 700;
}

.brand small {
  font-size: 9px;
  margin-top: 5px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  justify-content: center;
  transition: transform 260ms ease;
}

.nav-panel {
  align-items: center;
  display: flex;
  gap: clamp(26px, 3.6vw, 52px);
  justify-content: center;
  transition: gap 260ms ease, transform 260ms ease;
  will-change: transform;
}

.main-nav a,
.header-cta,
.menu-toggle {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.72;
  padding: 10px 0;
  position: relative;
  transition: color 180ms ease, opacity 180ms ease, padding 260ms ease, transform 260ms ease;
}

.main-nav a::after {
  background: var(--gold);
  bottom: 4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.header-cta {
  border: 1px solid currentColor;
  font: inherit;
  min-height: 36px;
}

.header-cta {
  align-items: center;
  background: transparent;
  border-color: rgba(246, 241, 233, 0.86);
  color: var(--ivory);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 16px;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-link:hover,
.contact-form button:hover {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 12px 34px rgba(216, 173, 88, 0.26);
  transform: translateY(-2px);
}

.header-cta:hover {
  background: rgba(246, 241, 233, 0.08);
  border-color: var(--amber);
  box-shadow: 0 10px 28px rgba(216, 173, 88, 0.14);
  color: var(--amber);
  transform: translateY(-2px);
}

.header-cta:active,
.primary-link:active,
.secondary-link:active,
.contact-form button:active,
.menu-toggle:active {
  transform: translateY(0);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(246, 241, 233, 0.28);
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  justify-self: end;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 44px;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
  width: 18px;
}

.menu-toggle:hover {
  background: rgba(216, 173, 88, 0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  width: 4px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  background: var(--soft-black) url("assets/hero-camera-poster.jpg") center right / cover no-repeat;
  color: var(--ivory);
  min-height: 92vh;
  overflow: hidden;
  padding: 170px clamp(22px, 7vw, 86px) 86px;
  position: relative;
}

.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center right;
  position: absolute;
  width: 100%;
}

.hero-media {
  background:
    linear-gradient(rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.18)),
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.72) 34%, rgba(7, 7, 7, 0.12) 68%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.22), rgba(7, 7, 7, 0.74));
  inset: 0;
  position: absolute;
}

.hero::after {
  display: none;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
  position: relative;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--ivory);
}

.section-kicker::after {
  background: currentColor;
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.34;
  position: absolute;
  transform: scaleY(0.5);
  transform-origin: left center;
  width: 100%;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.9;
  margin-bottom: 22px;
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.02;
  margin-bottom: 24px;
}

h3 {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-lead {
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-copy,
.intro-copy,
.section-heading p,
.band-content p,
.quote-panel p,
.trade-section p,
.contact-copy p {
  color: rgba(246, 241, 233, 0.74);
  font-size: clamp(15px, 1.35vw, 18px);
  max-width: 720px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-link {
  background: var(--gold);
  color: var(--soft-black);
}

.secondary-link {
  border: 1px solid rgba(246, 241, 233, 0.36);
}

.secondary-link:hover {
  background: rgba(246, 241, 233, 0.1);
  border-color: var(--gold);
  color: var(--amber);
  transform: translateY(-2px);
}

.metrics-strip {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(12, 12, 12, 0.98) 58%, rgba(7, 7, 7, 1) 100%);
  color: var(--ivory);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  position: relative;
}

.metrics-strip::after {
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.88));
  bottom: 0;
  content: "";
  height: 58px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.metrics-strip article {
  border-right: 0;
  min-height: 164px;
  padding: 30px clamp(18px, 3vw, 44px);
  position: relative;
  z-index: 1;
}

.metrics-strip span,
.services-grid span,
.cinema-row span,
.feature-list span {
  color: var(--gold);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}

.metrics-strip strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.metrics-strip p,
.services-grid p,
.why-grid p,
.cinema-row p,
.testimonials blockquote,
.form-note {
  color: rgba(246, 241, 233, 0.68);
  font-size: 14px;
  margin: 0;
}

.testimonials blockquote {
  font-style: italic;
}

.metrics-strip p {
  color: rgba(246, 241, 233, 0.62);
}

.metric-desktop-break {
  display: none;
}

@media (min-width: 901px) {
  .metrics-strip {
    column-gap: clamp(28px, 4vw, 58px);
    grid-template-columns: repeat(4, 1fr);
    padding-inline: clamp(22px, 7vw, 86px);
  }

  .metrics-strip article {
    padding-inline: 0;
  }

  .metrics-strip p {
    font-size: 12.2px;
    line-height: 1.5;
  }

  .desktop-break {
    display: block;
  }

  .metric-desktop-break {
    display: block;
  }
}

.intro-section,
.services-section,
.approach-section,
.why-section,
.text-section,
.testimonials-section,
.trade-section,
.contact-section {
  background-color: var(--soft-black);
  color: var(--ivory);
  overflow: hidden;
  padding: clamp(48px, 6vw, 82px) clamp(22px, 7vw, 86px);
  position: relative;
}

.intro-section::before,
.services-section::before,
.approach-section::before,
.why-section::before,
.testimonials-section::before,
.trade-section::before,
.contact-section::before {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0.94)),
    url("assets/section-projector.jpg") center / cover no-repeat;
  content: "";
  inset: 0;
  opacity: 0.28;
  position: absolute;
}

.intro-section > *,
.services-section > *,
.approach-section > *,
.why-section > *,
.text-section > *,
.testimonials-section > *,
.trade-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

.intro-section {
  padding-bottom: 0;
}

.intro-grid {
  border-top: 0;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.95fr 1.05fr;
  margin: 0 auto;
  max-width: var(--max);
  padding-top: 42px;
}

.intro-copy p {
  color: rgba(246, 241, 233, 0.72);
}

.help-panel,
.section-subhead,
.text-grid {
  margin: 0 auto;
  max-width: var(--max);
}

.help-panel {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.04) 0%, rgba(7, 7, 7, 0.1) 68%, rgba(7, 7, 7, 0.98) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.76) 44%, rgba(7, 7, 7, 0.22) 100%),
    url("assets/studio-section.jpg") center right / cover no-repeat;
  border: 0;
  border-radius: 0;
  color: var(--ivory);
  margin: 42px calc(50% - 50vw) 0;
  max-width: none;
  min-height: 600px;
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px) 0;
  position: relative;
  width: 100vw;
}

.help-content {
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
  max-width: 620px;
  position: relative;
  width: min(620px, calc(100vw - 44px));
  z-index: 1;
}

.help-panel h3,
.section-subhead h3,
.rich-copy h3 {
  margin-bottom: 20px;
}

.help-panel h3 {
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.04em;
}

.feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  align-items: center;
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(216, 173, 88, 0.24);
  border-radius: 999px;
  color: rgba(246, 241, 233, 0.78);
  display: flex;
  font-size: 16px;
  min-height: 58px;
  padding: 14px 22px 14px 58px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.feature-list li::before {
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 24px;
  position: absolute;
  top: calc(50% - 6px);
  transition: background 180ms ease, transform 180ms ease;
  width: 12px;
}

.feature-list li:hover {
  background: rgba(7, 7, 7, 0.88);
  border-color: rgba(216, 173, 88, 0.48);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
  color: var(--ivory);
  transform: translateY(-4px);
}

.feature-list li:hover::before {
  background: var(--gold);
  transform: scale(1.1);
}

.compact-list {
  grid-template-columns: 1fr;
}

.compact-list li {
  color: rgba(246, 241, 233, 0.72);
}

.supply-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.supply-list li {
  align-items: center;
  background: rgba(7, 7, 7, 0.3);
  border: 1px solid rgba(216, 173, 88, 0.24);
  border-radius: 999px;
  color: rgba(246, 241, 233, 0.72);
  display: flex;
  min-height: 54px;
  padding: 13px 20px 13px 52px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.supply-list li::before {
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 22px;
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
}

.supply-list li:hover {
  background: rgba(246, 241, 233, 0.08);
  border-color: rgba(216, 173, 88, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  color: var(--ivory);
  transform: translateY(-4px);
}

.supply-list li:hover::before {
  background: var(--gold);
}

.cinema-row {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 72px auto 0;
  max-width: var(--max);
}

.cinema-row article,
.services-grid article,
.why-grid article,
.testimonials figure {
  background: rgba(246, 241, 233, 0.055);
  border: 1px solid rgba(246, 241, 233, 0.12);
  border-radius: 18px;
  padding: 28px;
}

.services-grid article,
.why-grid article {
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.services-grid article:hover,
.why-grid article:hover {
  background: rgba(246, 241, 233, 0.13);
  border-color: rgba(216, 173, 88, 0.62);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(216, 173, 88, 0.1);
  transform: translateY(-6px);
}

.services-section,
.testimonials-section {
  background: #090909;
}

.services-section::before {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.92)),
    url("assets/services-bg.jpg") center / cover no-repeat;
  opacity: 0.42;
}

.approach-section {
  background: #080808;
}

.approach-section .section-heading {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.95fr 1fr;
  margin: 0 auto 54px;
  max-width: var(--max);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p {
  align-self: end;
  color: rgba(246, 241, 233, 0.68);
}

.section-subhead h3,
.services-grid h3,
.why-grid h3,
.rich-copy h3 {
  color: var(--ivory);
}

.services-grid,
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max);
}

.services-grid article {
  flex: 0 1 calc((100% - 28px) / 3);
}

.dark-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.68), rgba(7, 7, 7, 0.9)),
    url("assets/goal-bg.jpg") center / cover fixed,
    linear-gradient(135deg, #090909, #171717 52%, #101820);
  color: var(--ivory);
  display: flex;
  justify-content: center;
  min-height: 380px;
  padding: clamp(56px, 7vw, 96px) clamp(22px, 7vw, 86px);
  text-align: center;
}

.band-content {
  margin: 0 auto;
  max-width: 860px;
}

.compact {
  align-items: end;
  grid-template-columns: 1fr auto;
}

.why-grid {
  max-width: 1320px;
}

.why-grid article {
  flex: 0 1 calc((100% - 42px) / 4);
}

.why-section::before {
  background:
    linear-gradient(105deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.9)),
    url("assets/supplies-section.jpg") center / cover no-repeat;
  opacity: 0.72;
}

.testimonials-section {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1.2fr;
}

.quote-panel,
.testimonials {
  max-width: var(--max);
}

.quote-panel p {
  color: rgba(246, 241, 233, 0.68);
}

.testimonials {
  display: grid;
  gap: 14px;
}

.testimonials figure {
  margin: 0;
}

.testimonials figcaption {
  color: var(--ivory);
  display: grid;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 18px;
  text-transform: uppercase;
}

.testimonials figcaption small {
  color: rgba(246, 241, 233, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.trade-section {
  align-items: start;
  background: #080808;
  border-bottom: 0;
  border-top: 0;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1.2fr;
}

.trade-feature {
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.34) 0%, rgba(7, 7, 7, 0.58) 34%, rgba(7, 7, 7, 0.9) 64%, rgba(7, 7, 7, 0.98) 100%),
    url("assets/supply-projector-clean.jpg") left center / cover no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 0;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  min-height: 620px;
  padding: 0;
}

.trade-feature::before {
  display: none;
}

.trade-feature .rich-copy {
  align-self: center;
  grid-column: 2;
  padding: clamp(42px, 6vw, 82px);
}

.trade-section p {
  color: rgba(246, 241, 233, 0.68);
}

.rich-copy p {
  color: rgba(246, 241, 233, 0.68);
  font-size: clamp(15px, 1.35vw, 18px);
  max-width: 760px;
}

.supply-final {
  background: transparent;
}

.text-section {
  background: transparent;
  color: var(--ivory);
}

.shared-partners-section {
  background:
    linear-gradient(105deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.88)),
    url("assets/partners-bg.jpg") center / cover no-repeat;
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}

.shared-partners-section .text-section,
.shared-partners-section .supply-final {
  border: 0;
}

.shared-partners-section .supply-final::before {
  display: none;
}

.testimonials-section::before {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.76), rgba(7, 7, 7, 0.9)),
    url("assets/lounge-bg.jpg") center / cover no-repeat;
  opacity: 0.38;
}

.contact-section {
  background: var(--soft-black);
}

.contact-section::before {
  display: none;
}

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

.text-grid article {
  border-top: 0;
  padding-top: 0;
}

.text-grid p {
  color: rgba(246, 241, 233, 0.72);
  font-size: clamp(15px, 1.35vw, 18px);
}

.quote-panel .subtitle {
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.45;
}

.contact-section {
  background: var(--soft-black);
  color: var(--ivory);
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
textarea {
  background: rgba(246, 241, 233, 0.04);
  border: 1px solid rgba(246, 241, 233, 0.24);
  border-radius: 18px;
  color: var(--ivory);
  font: inherit;
  min-height: 52px;
  padding: 14px 16px;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(216, 173, 88, 0.18);
}

.contact-form button {
  background: var(--gold);
  border: 0;
  color: var(--soft-black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

:is(a, button, input, textarea):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.form-note {
  color: var(--muted);
  min-height: 22px;
}

.site-footer {
  align-items: center;
  background: var(--soft-black);
  border-top: 0;
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(22px, 7vw, 86px);
}

.site-footer p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.scroll-top {
  align-items: center;
  background: rgba(20, 24, 23, 0.24);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(216, 173, 88, 0.54);
  bottom: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(246, 241, 233, 0.12);
  color: rgba(246, 241, 233, 0.72);
  cursor: pointer;
  display: flex;
  height: 46px;
  border-radius: 999px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(12px);
  transition: background 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: 46px;
  z-index: 30;
}

.scroll-top span {
  height: 12px;
  position: relative;
  width: 12px;
}

.scroll-top span::before,
.scroll-top span::after {
  content: "";
  position: absolute;
}

.scroll-top span::before {
  display: none;
}

.scroll-top span::after {
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -32%) rotate(45deg);
  width: 10px;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(216, 173, 88, 0.16);
  border-color: var(--amber);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36), 0 0 22px rgba(216, 173, 88, 0.18);
  color: var(--ivory);
  transform: translateY(-4px);
}

@media (min-width: 961px) {
  .site-header.is-scrolled {
    background: rgba(7, 7, 7, 0.64);
    box-shadow: inset 0 -1px 0 rgba(246, 241, 233, 0.06), 0 18px 48px rgba(0, 0, 0, 0.18);
  }

  .site-header.is-scrolled .brand {
    transform: none;
  }

  .site-header.is-scrolled .main-nav {
    transform: none;
  }

  .site-header.is-scrolled .nav-panel {
    gap: clamp(16px, 2.4vw, 34px);
    transform: scale(0.98);
  }

  .site-header.is-scrolled .main-nav a {
    transform: none;
  }

  .site-header.is-scrolled .main-nav a:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 18px;
  }

  .nav-panel {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 960px) {
  * {
    scrollbar-width: none;
  }

  *::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
  }

  html,
  body {
    -ms-overflow-style: none;
  }

  .site-header {
    align-content: start;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 22px;
    position: fixed;
  }

  .site-header.is-menu-open {
    background: rgba(7, 7, 7, 0.82);
    backdrop-filter: blur(22px);
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
  }

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

  .main-nav {
    align-self: start;
    grid-column: 1 / -1;
    justify-content: center;
    order: 3;
    text-align: center;
  }

  .nav-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 0;
    justify-content: stretch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 18px;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease, transform 180ms ease;
    width: 100%;
  }

  .site-header.is-menu-open .nav-panel {
    height: calc(100dvh - 104px);
    max-height: calc(100dvh - 104px);
    opacity: 1;
    padding: clamp(18px, 5vh, 48px) 0 24px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    border-bottom: 1px solid rgba(246, 241, 233, 0.12);
    color: var(--ivory);
    display: flex;
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.12em;
    min-height: 74px;
    opacity: 1;
    padding: 24px 0;
    text-align: center;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    color: var(--amber);
    transform: scale(1.02);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 850px;
    padding-top: 150px;
  }

  .hero-video {
    display: none;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.62) 52%, rgba(7, 7, 7, 0.9) 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.74), rgba(7, 7, 7, 0.18));
  }

  .metrics-strip,
  .intro-grid,
  .section-heading,
  .text-grid,
  .testimonials-section,
  .trade-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .text-grid article {
    border-top: 0;
    padding-top: 0;
  }

  .trade-feature {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.78) 0%, rgba(7, 7, 7, 0.9) 42%, rgba(7, 7, 7, 0.99) 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.7) 0%, rgba(7, 7, 7, 0.52) 48%, rgba(7, 7, 7, 0.88) 100%),
      url("assets/supply-projector-clean.jpg") center top / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .trade-feature .rich-copy {
    grid-column: 1;
    padding: 48px 32px 64px;
  }

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

  .cinema-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .services-grid article,
  .why-grid article {
    flex-basis: calc((100% - 14px) / 2);
  }

  .dark-band {
    background-attachment: scroll;
    min-height: 340px;
  }

  .approach-section {
    padding-bottom: 14px;
  }

  .why-section {
    padding-top: 30px;
  }

  .why-section .section-heading {
    margin-bottom: 28px;
  }

  .shared-partners-section {
    margin-top: -24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 72px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 136px 20px 64px;
  }

  .help-panel {
    border-radius: 0;
    margin: 34px calc(50% - 50vw) 0;
    min-height: 540px;
    padding: 34px 0;
  }

  .help-content {
    margin-left: 20px;
    width: calc(100vw - 40px);
  }

  .feature-list li,
  .supply-list li {
    border-radius: 18px;
    padding-right: 18px;
  }

  .trade-feature .rich-copy {
    padding: 40px 20px 56px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .metrics-strip,
  .cinema-row,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .services-grid article,
  .why-grid article {
    flex-basis: 100%;
  }

  .metrics-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-strip article:last-child {
    border-bottom: 0;
  }

  .intro-section,
  .services-section,
  .approach-section,
  .why-section,
  .text-section,
  .testimonials-section,
  .trade-section:not(.trade-feature),
  .contact-section {
    padding: 44px 20px;
  }

  .intro-grid {
    border-top: 0;
    padding-top: 0;
  }

  .intro-section {
    padding-bottom: 0;
  }

  .shared-partners-section {
    margin-top: -30px;
  }

  .approach-section {
    padding-bottom: 14px;
  }

  .why-section {
    padding-top: 28px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .site-footer .brand {
    align-items: center;
  }

  .site-footer p {
    display: none;
  }

  .scroll-top {
    bottom: 16px;
    height: 42px;
    right: 16px;
    width: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}
