:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --panel: #151519;
  --ink: #f8f4ec;
  --muted: #bbb6ad;
  --line: rgba(255, 255, 255, 0.14);
  --red: #f0443e;
  --gold: #f3b951;
  --cyan: #56c7d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 13, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #f8f4ec;
  color: #0b0b0d;
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: rgba(248, 244, 236, 0.78);
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.image-panel {
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1800&q=80");
  filter: saturate(0.86) contrast(1.1);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.98), rgba(11, 11, 13, 0.68) 44%, rgba(11, 11, 13, 0.28)),
    linear-gradient(0deg, var(--bg), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: 150px clamp(20px, 6vw, 80px) 86px;
}

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

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

h1 {
  margin-bottom: 8px;
  font-size: clamp(58px, 12vw, 150px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.05;
}

.hero-line {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 800;
}

.hero-copy {
  max-width: 690px;
  color: rgba(248, 244, 236, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.section,
.contact {
  padding: clamp(72px, 11vw, 140px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.intro p:last-child,
.contact p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

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

.work-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: var(--panel);
  background-position: center;
  background-size: cover;
  position: relative;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 13, 0.95), rgba(11, 11, 13, 0.2));
}

.work-card > * {
  position: relative;
}

.work-card span {
  color: var(--gold);
  font-weight: 900;
}

.work-card p,
.service-list small,
.steps p,
.footer {
  color: var(--muted);
}

.card-athletes {
  background-image: url("https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1000&q=80");
}

.card-brands {
  background-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1000&q=80");
}

.card-business {
  background-image: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1000&q=80");
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.image-panel {
  min-height: 620px;
  background-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1200&q=80");
}

.service-list ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.service-list span,
.steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.process {
  border-top: 1px solid var(--line);
}

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

.steps div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #111115;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background: #f8f4ec;
  color: #0b0b0d;
}

.contact .eyebrow {
  color: #b12b27;
}

.contact p {
  color: #4e4941;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #36322d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8bfb0;
  background: #fff;
  color: #0b0b0d;
  font: inherit;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 230px;
  }

  .intro,
  .split,
  .contact,
  .work-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 170px;
  }

  .work-card {
    min-height: 320px;
  }

  .image-panel {
    min-height: 420px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .nav {
    gap: 10px 14px;
    font-size: 13px;
  }

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