.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(17, 17, 17, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: .98rem;
  font-weight: 800;
}

.brand small {
  margin-top: 2px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--white);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: var(--gold);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--white);
  color: var(--black);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #f4f4f4;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 72px;
  background: var(--black);
  color: var(--white);
}

.hero::after,
.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(120px, 18vh, 160px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), var(--paper));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/hero-bg.jpg") center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.05);
  transform-origin: center;
  filter: saturate(.9) brightness(.72);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .66) 52%, rgba(17, 17, 17, .25)),
    linear-gradient(180deg, rgba(17, 17, 17, .18), rgba(17, 17, 17, .86));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 44px;
  align-items: end;
}

.hero-copy {
  max-width: 840px;
  min-width: 0;
}

.hero-marker {
  margin-bottom: 18px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, .86);
}

.eyebrow,
.panel-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}

.hero .eyebrow,
.dark-section .eyebrow,
.dark-final .eyebrow,
.panel-kicker {
  color: rgba(255, 255, 255, .72);
}

h1 {
  margin-top: 16px;
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 7.1rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.word-reveal {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  gap: 0 .24em;
}

.word-reveal span {
  display: inline-block;
  word-break: keep-all;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  will-change: transform, opacity;
  animation: word-rise .48s var(--ease-premium) forwards;
  animation-delay: calc(var(--word-index) * 56ms);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead {
  margin-top: 20px;
  max-width: 62ch;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.005em;
  text-wrap: pretty;
  color: rgba(255, 255, 255, .86);
}

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

.btn {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition:
    transform .3s var(--ease-premium),
    background .3s var(--ease-premium),
    border-color .3s var(--ease-premium),
    box-shadow .3s var(--ease-premium);
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(216, 25, 32, .28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s var(--ease-premium);
}

.btn-primary:hover {
  background: #b9141a;
  box-shadow: 0 24px 46px rgba(216, 25, 32, .34);
}

.btn-primary:hover::after {
  transform: scaleX(1);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.btn-secondary.light {
  border-color: var(--line);
  color: var(--black);
  background: transparent;
}

.signal-panel {
  position: relative;
  margin-top: 72px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(17, 17, 17, .46);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  min-width: 0;
}

.signal-panel::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0));
}

.signal-panel dl {
  margin: 18px 0 0;
}

.signal-panel div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.signal-panel dt {
  font-weight: 800;
  color: var(--white);
}

.signal-panel dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
}

.section {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section-head {
  max-width: 760px;
  min-width: 0;
}

.section-head h2,
.legend-copy h2 {
  margin-top: 12px;
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  min-width: 0;
}

.text-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
