:root {
  --ink: #070707;
  --charcoal: #111010;
  --panel: #181414;
  --paper: #fff8ee;
  --muted: #bdb2a7;
  --gold: #f6c84c;
  --red: #e51c3e;
  --teal: #54d3c2;
  --line: rgba(255, 248, 238, 0.16);
  --line-strong: rgba(246, 200, 76, 0.35);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 92px);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0));
}

.site-header.solid {
  position: sticky;
  background: rgba(7, 7, 7, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: clamp(128px, 12vw, 198px);
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.46));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 30px);
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 100svh;
  padding: 132px clamp(20px, 5vw, 92px) 0;
  background:
    linear-gradient(135deg, rgba(229, 28, 62, 0.18), transparent 32%),
    linear-gradient(180deg, #0d0b0b 0%, #151010 58%, #070707 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 200, 76, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(246, 200, 76, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.64), transparent 78%);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  min-height: calc(100svh - 132px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
  padding-bottom: 92px;
}

.hero-copy-block {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(3.3rem, 7.2vw, 7.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(2.1rem, 4.8vw, 5.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.18;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 248, 238, 0.76);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: #15100a;
}

.button-secondary {
  border-color: rgba(255, 248, 238, 0.28);
  background: rgba(255, 248, 238, 0.06);
  color: var(--paper);
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 62vw, 760px);
}

.hero-frame,
.gallery-stack figure,
.feature-image,
.contact-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-frame img,
.gallery-stack img,
.feature-image img,
.contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-main {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(86%, 720px);
  aspect-ratio: 0.84;
}

.hero-frame-side {
  position: absolute;
  top: 0;
  left: 0;
  width: min(46%, 330px);
  aspect-ratio: 0.78;
  border-color: var(--line-strong);
}

.event-card {
  position: absolute;
  left: clamp(16px, 6vw, 82px);
  bottom: clamp(24px, 6vw, 74px);
  width: min(340px, 72%);
  padding: 22px;
  border: 1px solid rgba(84, 211, 194, 0.4);
  border-radius: 6px;
  background: rgba(10, 15, 14, 0.88);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.event-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.2;
}

.signal-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1480px, calc(100% - clamp(40px, 10vw, 184px)));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255, 248, 238, 0.05);
  backdrop-filter: blur(18px);
}

.signal-strip article {
  min-height: 150px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.signal-strip article:last-child {
  border-right: 0;
}

.signal-strip span,
.proof-grid span,
.journey-list span,
.contact-details span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 900;
}

.signal-strip p,
.proof-grid p,
.journey-list p,
.dossier-copy p,
.gallery-copy p,
.page-hero p,
.policy-content p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(74px, 9vw, 132px) clamp(20px, 5vw, 92px);
}

.section-inner {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.dossier-section,
.page-section {
  background:
    linear-gradient(90deg, rgba(84, 211, 194, 0.08), transparent 38%),
    #0a0a0a;
}

.dossier-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
}

.dossier-copy {
  display: grid;
  gap: 22px;
  padding-top: 8px;
}

.dossier-copy p {
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.journey-section {
  background: #151010;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.journey-list {
  display: grid;
  gap: 18px;
}

.journey-list article {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(260px, 0.75fr) minmax(280px, 0.95fr);
  gap: clamp(18px, 4vw, 64px);
  align-items: start;
  padding: clamp(22px, 3.4vw, 38px) 0;
  border-top: 1px solid var(--line);
}

.journey-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-list h3 {
  margin-bottom: 0;
}

.gallery-section {
  background:
    linear-gradient(180deg, #090909 0%, #171111 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.gallery-copy {
  max-width: 560px;
}

.gallery-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 16px;
}

.gallery-stack figure {
  min-height: 220px;
}

.wide-photo {
  grid-row: 1 / 3;
}

.proof-section {
  background:
    linear-gradient(135deg, rgba(229, 28, 62, 0.15), transparent 40%),
    #080707;
}

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

.proof-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 248, 238, 0.055);
}

.page-main {
  min-height: 70svh;
}

.page-hero {
  padding: clamp(98px, 12vw, 172px) clamp(20px, 5vw, 92px) clamp(64px, 8vw, 106px);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.74) 58%, rgba(7, 7, 7, 0.38) 100%),
    url("assets/brand-photo-2.png") center / cover;
}

.page-hero h1,
.page-hero p {
  width: min(980px, 100%);
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 6.35rem);
}

.compact-gallery .gallery-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.feature-image {
  aspect-ratio: 16 / 10;
}

.policy-content {
  display: grid;
  gap: 0;
}

.policy-content article {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(300px, 1fr);
  gap: clamp(20px, 5vw, 80px);
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
}

.policy-content article:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 3rem);
}

.contact-section {
  background:
    linear-gradient(180deg, #0a0a0a, #171111);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 108px);
  align-items: start;
}

.contact-copy {
  max-width: 590px;
}

.contact-image {
  height: clamp(220px, 28vw, 360px);
  margin-top: 30px;
}

.contact-details {
  display: grid;
  gap: 4px;
  margin-top: 28px;
}

.contact-details a {
  color: var(--paper);
  font-size: 1.06rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255, 248, 238, 0.07);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 238, 0.8);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 6px;
  background: rgba(255, 248, 238, 0.94);
  color: #15100a;
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 92px);
  border-top: 1px solid var(--line);
  background: #050505;
  color: rgba(255, 248, 238, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1040px) {
  .site-header {
    position: absolute;
  }

  .site-header.solid {
    position: sticky;
  }

  .hero-stage,
  .dossier-grid,
  .gallery-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-copy-block {
    max-width: 900px;
  }

  .hero-visual {
    min-height: clamp(480px, 78vw, 720px);
  }

  .signal-strip,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

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

  .journey-list article,
  .policy-content article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.72rem;
  }

  .hero-home {
    padding-top: 188px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-frame-main {
    width: 92%;
  }

  .hero-frame-side {
    width: 48%;
  }

  .event-card {
    left: 0;
    width: 82%;
  }

  .signal-strip {
    width: calc(100% - 40px);
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .gallery-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .wide-photo {
    grid-row: auto;
  }

  .gallery-stack figure {
    min-height: 230px;
  }

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