:root {
  --black: #000;
  --nav: #171717;
  --text: #f6f6f6;
  --muted: #8c8c8c;
  --dim: #4a4a4a;
  --line: rgba(255, 255, 255, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--black);
  font-family: "Noto Sans", "Noto Sans Placeholder", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px 12px 20px;
  background: var(--nav);
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.08);
}

.brand {
  flex: 0 0 auto;
  font-family: "Big Shoulders Inline", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.desktop-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  line-height: 2;
  text-align: center;
}

.desktop-links span {
  color: var(--dim);
}

.desktop-links a,
.press-kit-button,
.instagram-icon-button,
.footer a {
  transition: color 180ms ease;
}

.desktop-links a:hover,
.footer a:hover {
  color: #fff;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-icon-button {
  width: 38px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.instagram-icon-button svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.instagram-icon-button:hover {
  color: #d8d8d8;
}

.press-kit-button {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.press-kit-button:hover {
  border-color: #dcdcdc;
  background: #dcdcdc;
  color: #000;
}

.media-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  overflow: hidden;
}

.grid-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.tile {
  position: relative;
  width: 100%;
  height: 648px;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.tile img,
.tile video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.tile video {
  cursor: auto;
}

.tile:nth-child(2) img[src*="bonnie"] {
  object-position: 26.2% 36.6%;
}

.tile img[src*="leather"] {
  object-position: 43.9% 34%;
}

.tile img[src*="profile"] {
  object-position: 29.4% 41.5%;
}

.tile img[src*="white"] {
  object-position: 99.1% 29.2%;
}

.epk {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 96px 24px 78px;
  border-top: 1px solid var(--line);
}

.intro {
  max-width: 930px;
  margin: 0 auto 64px;
  text-align: center;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

h1,
h2 {
  margin: 0;
  font-family: "Big Shoulders Inline", sans-serif;
  font-weight: 600;
  color: #fff;
}

h1 {
  font-size: clamp(56px, 11vw, 142px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
}

.lead {
  max-width: 860px;
  margin: 30px auto 0;
  color: #d8d8d8;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
}

.actions a:hover {
  background: #1a1a1a;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact-grid article {
  min-height: 158px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
}

.fact-grid p,
.split p,
.list,
.rider-content {
  margin: 0;
  color: #d7d7d7;
  font-size: 16px;
  line-height: 1.65;
}

.split,
.rider {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 64px;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.list {
  padding-left: 18px;
}

.list li + li {
  margin-top: 10px;
}

.engagement,
.videos,
.partners {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

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

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 10px;
}

.kpi-grid article {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.kpi-grid span {
  display: block;
  margin-bottom: 14px;
  font-family: "Big Shoulders Inline", sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.9;
  color: #fff;
}

.kpi-grid p,
.featured-posts p {
  margin: 0;
  color: #d7d7d7;
  font-size: 16px;
  line-height: 1.55;
}

.featured-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.featured-posts article {
  min-width: 0;
  background: #050505;
  border: 1px solid var(--line);
}

.post-media {
  display: block;
  margin: 0;
}

.featured-posts img,
.featured-posts video {
  width: 100%;
  aspect-ratio: 0.8;
  display: block;
  background: #000;
  object-fit: cover;
}

.featured-posts div {
  padding: 18px;
}

.featured-posts span {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 14px;
}

.featured-posts .post-metrics {
  margin-top: 12px;
  color: #fff;
  font-size: 15px;
}

.featured-posts a {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.partner-grid a {
  display: block;
  background: #000;
}

.partner-grid img {
  width: 100%;
  aspect-ratio: 2220 / 1452;
  display: block;
  padding: 0;
  background: #000;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 180ms ease, opacity 180ms ease;
}

.partner-grid a:hover img {
  filter: grayscale(0);
  opacity: 0.92;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
}

.crowd-video-grid {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  width: 100%;
  gap: 14px;
}

.crowd-video-grid iframe {
  width: 394px;
  height: 700px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
}

.setup-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.setup-list p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: #080808;
}

.setup-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.final-cta {
  padding: 72px 0 82px;
  text-align: center;
}

.final-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.final-cta a:hover {
  background: #d9d9d9;
  color: #000;
  transform: translateY(-2px);
}

.footer {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

@media (max-width: 1199.98px) {
  .topbar {
    min-height: 64px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 20px;
  }

  .desktop-links {
    display: none;
  }

  .instagram-icon-button {
    display: inline-flex;
  }

  .press-kit-button {
    min-height: 36px;
    padding: 0 14px;
  }

  .media-grid {
    display: flex;
    flex-direction: column;
    max-width: 390px;
  }

  .grid-column {
    display: contents;
  }

  .tile {
    aspect-ratio: 0.601852;
    height: auto;
  }

  .grid-column:nth-child(2) .tile:first-child {
    order: 2;
  }

  .grid-column:nth-child(3) .tile:first-child {
    order: 3;
  }

  .grid-column:nth-child(1) .tile:nth-child(2) {
    order: 4;
  }

  .grid-column:nth-child(2) .tile:nth-child(2) {
    order: 5;
  }

  .grid-column:nth-child(3) .tile:nth-child(2) {
    order: 6;
  }

  .epk {
    padding: 72px 20px 58px;
  }

  .intro {
    text-align: left;
  }

  .actions {
    justify-content: flex-start;
  }

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

  .split,
  .rider {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 58px 0;
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

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

  .video-grid {
    grid-template-columns: 1fr;
  }

  .crowd-video-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    margin: 0 auto;
  }

  .crowd-video-grid iframe {
    width: 394px;
    height: 700px;
  }

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

}

@media (max-width: 620px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-posts {
    grid-template-columns: 1fr;
  }

  .crowd-video-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    margin: 0 auto;
  }

  .crowd-video-grid iframe {
    width: 309px;
    height: 550px;
  }

  .actions a {
    width: 100%;
  }

  .final-cta {
    padding: 56px 0 64px;
  }

  .final-cta a {
    width: 100%;
    max-width: 320px;
  }
}
