:root {
  --ink: #111313;
  --black: #090a0a;
  --coal: #171918;
  --deep: #22251f;
  --olive: #4d5e42;
  --moss: #7d8a69;
  --brass: #c09b59;
  --clay: #a45f3c;
  --bone: #f1ece1;
  --paper: #faf8f1;
  --sky: #9ab1bd;
  --muted: rgba(17, 19, 19, 0.7);
  --line: rgba(17, 19, 19, 0.14);
  --light-line: rgba(255, 255, 255, 0.18);
  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;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 54px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.site-header.solid {
  position: sticky;
  background: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 112px;
  height: 58px;
  padding: 5px;
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand > span:not(.brand-mark) {
  display: none;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 28px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a,
.header-cta {
  opacity: 0.9;
}

.main-nav a[aria-current="page"] {
  color: var(--brass);
}

.header-cta {
  border: 1px solid var(--light-line);
  padding: 11px 17px;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--light-line);
  color: white;
  background: rgba(0, 0, 0, 0.32);
}

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

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 76px;
  color: white;
  overflow: hidden;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.36) 50%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.02) 54%);
}

.hero-content {
  position: relative;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.button.primary {
  color: var(--black);
  background: var(--brass);
}

.button.secondary {
  color: white;
  border-color: var(--light-line);
  background: rgba(0, 0, 0, 0.25);
}

.button.dark {
  color: white;
  background: var(--coal);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 42px;
  width: min(340px, calc(100% - 40px));
  padding: 18px;
  border-left: 4px solid var(--brass);
  color: white;
  background: rgba(9, 10, 10, 0.74);
  backdrop-filter: blur(8px);
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 25px;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: white;
  background: var(--coal);
}

.ticker span {
  padding: 18px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.section,
.apparel-band,
.split-section,
.page-hero,
.final-cta {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.final-cta h2,
.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.section-heading p,
.split-section p,
.final-cta p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 18px;
}

.feature-video,
.media-card,
.story-card {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background: var(--coal);
  overflow: hidden;
}

.feature-video {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(0deg, rgba(9, 10, 10, 0.86), rgba(9, 10, 10, 0.1)),
    radial-gradient(circle at 76% 18%, rgba(154, 177, 189, 0.42), transparent 36%),
    linear-gradient(135deg, var(--olive), var(--black));
}

.play-button {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.play-button::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 25px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--brass);
}

.feature-video h3,
.media-card h3,
.product-card h3,
.story-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.05;
}

.feature-video p,
.feature-video span,
.media-card p,
.story-card p {
  color: rgba(255, 255, 255, 0.72);
}

.media-card {
  background:
    linear-gradient(180deg, rgba(23, 25, 24, 0.94), rgba(23, 25, 24, 0.84)),
    linear-gradient(135deg, var(--olive), var(--sky));
}

.media-card.tan,
.story-card.tan {
  background:
    linear-gradient(180deg, rgba(17, 19, 19, 0.9), rgba(17, 19, 19, 0.72)),
    linear-gradient(135deg, var(--clay), var(--brass));
}

.label {
  width: fit-content;
  margin-bottom: auto;
  padding: 8px 10px;
  color: var(--black);
  background: var(--brass);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.apparel-band {
  color: white;
  background: var(--black);
}

.inverted p {
  color: rgba(255, 255, 255, 0.72);
}

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

.product-card {
  padding: 16px;
  background: #20221f;
  color: white;
}

.product-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.product-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brass);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.product-visual {
  position: relative;
  height: 280px;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--bone);
}

.product-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 54%;
  height: 72%;
  background: var(--olive);
  clip-path: polygon(22% 0, 78% 0, 100% 22%, 86% 100%, 14% 100%, 0 22%);
}

.product-visual::after {
  content: "TOO";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
}

.product-visual.cap::before {
  bottom: 70px;
  width: 62%;
  height: 30%;
  background: var(--coal);
  clip-path: ellipse(50% 44% at 50% 50%);
}

.product-visual.tee::before {
  background: var(--clay);
}

.product-visual.sticker::before {
  bottom: 82px;
  width: 58%;
  height: 42%;
  background: var(--brass);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--bone);
}

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

.notes-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 96px;
  color: white;
  background: var(--coal);
}

.notes-list span {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--brass);
  font-weight: 950;
}

.notes-list strong {
  padding: 0 24px;
  font-size: 24px;
}

.partner-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.partner-grid div {
  min-height: 150px;
  display: grid;
  align-items: end;
  padding: 18px;
  color: white;
  font-weight: 900;
  background:
    linear-gradient(0deg, rgba(9, 10, 10, 0.88), rgba(9, 10, 10, 0.38)),
    linear-gradient(135deg, var(--olive), var(--sky));
}

.partner-grid div:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(9, 10, 10, 0.88), rgba(9, 10, 10, 0.38)),
    linear-gradient(135deg, var(--clay), var(--brass));
}

.partner-grid div:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(9, 10, 10, 0.88), rgba(9, 10, 10, 0.38)),
    linear-gradient(135deg, var(--coal), var(--moss));
}

.page-hero {
  padding-top: 140px;
  background: var(--coal);
  color: white;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.content-panel {
  max-width: 980px;
  padding: clamp(24px, 4vw, 44px);
  background: white;
  border: 1px solid var(--line);
}

.content-panel h2,
.content-panel h3 {
  margin-bottom: 12px;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card {
  padding: 24px;
  color: white;
  background: var(--coal);
}

.contact-card a {
  color: var(--brass);
  font-weight: 900;
}

.form-shell {
  display: grid;
  gap: 12px;
}

.form-shell label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.form-shell input,
.form-shell textarea,
.form-shell select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.form-shell textarea {
  min-height: 150px;
  resize: vertical;
}

.final-cta {
  color: white;
  background: var(--coal);
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: var(--brass);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
  padding: 44px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.site-footer h2,
.site-footer h3 {
  color: white;
  margin-bottom: 12px;
}

.footer-logo {
  width: min(220px, 100%);
  margin-bottom: 16px;
  background: white;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.footer-bottom {
  padding: 18px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.56);
  background: #050606;
  font-size: 13px;
}

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

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 80px 0 auto 0;
    display: none;
    flex-direction: column;
    padding: 24px;
    background: rgba(9, 10, 10, 0.98);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .ticker,
  .media-grid,
  .product-row,
  .product-grid,
  .split-section,
  .partner-grid,
  .story-grid,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .ticker span {
    text-align: left;
    padding-left: 20px;
  }

  .feature-video {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

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

  .brand-mark {
    width: 78px;
    height: 44px;
    padding: 4px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 96svh;
    padding-top: 130px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy,
  .section-heading p,
  .split-section p,
  .page-hero p {
    font-size: 16px;
  }

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

  .product-visual {
    height: 230px;
  }

  .notes-list div {
    grid-template-columns: 58px 1fr;
  }
}
