:root {
  --ink: #101417;
  --muted: #5c666d;
  --mist: #eef4f3;
  --tile: #f8faf8;
  --teal: #0b6b67;
  --cyan: #69d0c5;
  --gold: #e2a94f;
  --clay: #bb6041;
  --line: rgba(16, 20, 23, 0.12);
  --shadow: 0 24px 70px rgba(16, 20, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(16, 20, 23, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(16, 20, 23, 0.04) 1px, transparent 1px),
    var(--tile);
  background-size: 72px 72px;
}

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

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

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

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  border-radius: 50%;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 750;
}

.header-call {
  padding: 12px 18px;
  color: var(--ink);
  background: white;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 44%, rgba(105, 208, 197, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(5, 13, 16, 0.92), rgba(5, 13, 16, 0.52) 48%, rgba(5, 13, 16, 0.3)),
    linear-gradient(0deg, rgba(5, 13, 16, 0.72), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 96vh;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 72px;
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.button.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats {
  margin-top: 44px;
}

.hero-stats span {
  min-width: 170px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
}

section,
footer {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-band,
.services,
.work,
.process {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro p:last-child {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 14px;
  padding-top: 0;
}

figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-strip figure:nth-child(2) {
  transform: translateY(38px);
}

figure img {
  height: 100%;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: white;
  background: rgba(5, 13, 16, 0.72);
  border-radius: 999px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

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

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

.service-grid article,
.work-grid article,
.timeline li {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(16, 20, 23, 0.06);
}

.service-number {
  display: block;
  margin-bottom: 48px;
  color: var(--clay);
  font-weight: 950;
}

.showreel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  color: white;
  background: #071112;
}

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

.video-grid {
  display: grid;
  gap: 14px;
}

.video-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #153836, #182326);
}

.video-card video {
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  opacity: 0.72;
}

.video-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  font-weight: 900;
}

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

.work-feature {
  display: grid;
  grid-column: span 3;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.work-feature > img {
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.before-after figure {
  min-height: 430px;
  box-shadow: none;
}

.before-after img {
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--teal);
  font-weight: 950;
}

.quote {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.95), rgba(7, 17, 18, 0.76)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.quote p {
  color: rgba(255, 255, 255, 0.74);
}

form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(20px);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font: inherit;
}

option {
  color: var(--ink);
  background: white;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: var(--ink);
}

footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

  nav {
    display: none;
  }

  .intro,
  .showreel,
  .quote,
  .work-feature {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .work-grid,
  .timeline,
  .media-strip {
    grid-template-columns: 1fr 1fr;
  }

  .work-feature {
    grid-column: span 2;
  }

  .media-strip figure:nth-child(2) {
    transform: none;
  }
}

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

  .brand span:last-child,
  .header-call {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .service-grid,
  .work-grid,
  .timeline,
  .media-strip {
    grid-template-columns: 1fr;
  }

  .work-feature {
    grid-column: auto;
  }

  figure {
    min-height: 300px;
  }

  .work-feature > img,
  .before-after figure {
    height: 300px;
    min-height: 300px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

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