:root {
  --ink: #f6f1e7;
  --paper: #0d0d10;
  --muted: #b8afa3;
  --line: rgba(246, 241, 231, 0.15);
  --red: #ff4c38;
  --teal: #33d3c2;
  --gold: #ffd447;
  --violet: #8c5cff;
  --white: #18181d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 76, 56, 0.18), transparent 28%),
    linear-gradient(315deg, rgba(51, 211, 194, 0.14), transparent 26%),
    var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(13, 13, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #101014;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: rgba(246, 241, 231, 0.78);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.header-action,
.primary-action {
  color: #111114;
  background: var(--gold);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(246, 241, 231, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 82px);
  padding: clamp(36px, 6vw, 80px) clamp(18px, 4vw, 54px) 42px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.hero-showcase {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 560px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 231, 0.15);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.showcase-card.large {
  grid-row: 1 / span 2;
}

.showcase-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.showcase-card:hover img {
  transform: scale(1.035);
}

.showcase-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #101014;
  background: rgba(255, 212, 71, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.ticker {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px clamp(18px, 4vw, 54px);
  border-block: 1px solid var(--line);
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: #101014;
  background: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.intro-section,
.work-section,
.services-section,
.video-section,
.contact-section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 4vw, 54px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.intro-section h2,
.section-heading h2,
.video-copy h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro-section > p,
.video-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-note {
  max-width: 680px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.work-card img {
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.work-card-copy {
  padding: 18px;
}

.work-card-copy p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card-copy h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.1;
}

.work-card-copy span,
.service-list p,
footer {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.services-section {
  background: #f6f1e7;
  color: #101014;
}

.services-section .eyebrow {
  color: var(--red);
}

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

.service-list article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.service-list span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--red);
  font-weight: 800;
}

.service-list h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-list p {
  color: #625d55;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.video-preview {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #050507;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  color: #101014;
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.contact-section {
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact-section h2 {
  max-width: 850px;
  margin-inline: auto;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.contact-row a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .intro-section,
  .video-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 420px;
  }

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

  .service-list {
    grid-template-columns: 1fr;
  }
}

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

  .header-action {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .showcase-card,
  .showcase-card.large {
    grid-row: auto;
    min-height: 230px;
  }

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

  .section-heading {
    display: block;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-bottom: 8px;
  }
}
