:root {
  --ink: #050505;
  --night: #0b0d0e;
  --graphite: #161819;
  --panel: #202020;
  --paper: #fff7e8;
  --soft: #d8cfc0;
  --muted: #a79d8f;
  --gold: #f2c55c;
  --red: #e43946;
  --mint: #7bd8c9;
  --line: rgba(255, 247, 232, 0.15);
  --line-strong: rgba(242, 197, 92, 0.38);
  --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;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 88px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0));
}

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

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

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

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

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

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7.8vw, 8.1rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1.16;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero-home {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 138px clamp(20px, 5vw, 88px) 0;
  background: var(--ink);
}

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

.hero-media {
  background: url("assets/triton-montenegro-event.png") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 38%, rgba(5, 5, 5, 0.32) 74%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.5) 72%, #050505 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  padding-bottom: clamp(44px, 8vw, 104px);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-kicker span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(5, 5, 5, 0.36);
  color: rgba(255, 247, 232, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-copy {
  width: min(760px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 247, 232, 0.78);
  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: #14110c;
}

.button-secondary {
  border-color: rgba(255, 247, 232, 0.28);
  background: rgba(255, 247, 232, 0.07);
  color: var(--paper);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1260px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(13, 14, 14, 0.72);
  backdrop-filter: blur(18px);
}

.hero-panel article {
  min-height: 132px;
  padding: clamp(20px, 3vw, 30px);
  border-right: 1px solid var(--line);
}

.hero-panel article:last-child {
  border-right: 0;
}

.hero-panel span,
.activation-grid span,
.mini-metrics span,
.contact-details span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.12rem, 1.8vw, 1.6rem);
  line-height: 1.14;
}

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

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

.intro-section,
.page-section {
  background:
    linear-gradient(180deg, #050505 0%, #0d0e0f 100%);
}

.intro-grid,
.dossier-grid,
.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

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

.intro-copy p,
.dossier-copy p,
.split-copy p,
.image-led-copy p,
.activation-grid p,
.page-hero p,
.policy-content p,
.contact-copy p,
.closing-actions p,
.gallery-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.split-showcase {
  background: #111111;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.media-tile,
.photo-board figure,
.feature-image,
.contact-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-tile-large {
  min-height: clamp(380px, 52vw, 660px);
}

.media-tile img,
.photo-board img,
.feature-image img,
.contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mini-metrics article {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 247, 232, 0.055);
}

.mini-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 900;
}

.activation-section {
  background:
    linear-gradient(135deg, rgba(228, 57, 70, 0.16), transparent 42%),
    #080808;
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 42px;
}

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

.activation-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 247, 232, 0.06);
}

.activation-grid h3 {
  margin-bottom: auto;
}

.image-led-section,
.gallery-section {
  background: #151515;
}

.image-led-grid,
.gallery-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

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

.photo-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 14px;
}

.photo-board figure:first-child {
  grid-row: 1 / 3;
}

.closing-section {
  background:
    linear-gradient(90deg, rgba(123, 216, 201, 0.12), transparent 42%),
    #090909;
}

.closing-actions {
  display: grid;
  gap: 26px;
  justify-items: start;
  padding-top: 10px;
}

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

.page-hero {
  padding: clamp(100px, 12vw, 174px) clamp(20px, 5vw, 88px) clamp(64px, 8vw, 106px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.74) 58%, rgba(5, 5, 5, 0.36) 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.65rem, 6vw, 6.25rem);
}

.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;
}

.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, #080808, #151515);
}

.contact-layout {
  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, 247, 232, 0.07);
  box-shadow: var(--shadow);
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 232, 0.2);
  border-radius: 6px;
  background: rgba(255, 247, 232, 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, 88px);
  border-top: 1px solid var(--line);
  background: #050505;
  color: rgba(255, 247, 232, 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-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.74) 64%, rgba(5, 5, 5, 0.36) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.56) 72%, #050505 100%);
  }

  .hero-panel,
  .intro-grid,
  .dossier-grid,
  .split-grid,
  .image-led-grid,
  .gallery-grid,
  .closing-grid,
  .contact-layout,
  .activation-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel article {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel article:last-child {
    border-bottom: 0;
  }

  .split-copy,
  .image-led-copy,
  .gallery-copy,
  .contact-copy {
    max-width: 780px;
  }

  .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 {
    min-height: auto;
    padding-top: 188px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10.4vw, 3.25rem);
  }

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

  .hero-panel {
    width: calc(100% - 40px);
  }

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

  .mini-metrics,
  .photo-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-board figure:first-child {
    grid-row: auto;
  }

  .photo-board figure {
    min-height: 230px;
  }

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