:root {
  --ivory: #f6f2ea;
  --paper: #fbf9f5;
  --ink: #111111;
  --warm-gray: #6e6a63;
  --hairline: #ded8cf;
  --accent: #c8a85a;
  --shadow: rgba(17, 17, 17, 0.08);
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
}

.container {
  width: min(var(--container), calc(100% - 4rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: color-mix(in srgb, var(--ivory) 84%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.18em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-links a {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid var(--hairline);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.6) 0%,
    rgba(17, 17, 17, 0.25) 45%,
    rgba(17, 17, 17, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #f6f1e8;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6.4rem);
  max-width: 10.8ch;
}

.hero-sub {
  max-width: 34rem;
  color: rgba(246, 241, 232, 0.88);
  margin: 1.2rem 0 2rem;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border: 1px solid color-mix(in srgb, var(--hairline) 74%, #ffffff);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: inherit;
  background: transparent;
  transition: background-color 0.7s ease, color 0.7s ease, border-color 0.7s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-solid {
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  border-color: color-mix(in srgb, var(--accent) 65%, #ffffff);
}

.btn-solid:hover {
  background: color-mix(in srgb, var(--accent) 52%, transparent);
}

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--hairline);
}

.section h2 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.statement p,
.filmmaker p,
.final-cta p {
  max-width: 58ch;
  color: var(--warm-gray);
  font-size: 1.06rem;
}

.collage {
  background: var(--paper);
}

.collage-wrap {
  position: relative;
  min-height: 690px;
}

.tile {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 18px 36px var(--shadow);
  border: 1px solid var(--hairline);
}

.tile-large {
  left: 6%;
  top: 0;
  width: 47%;
  height: 670px;
}

.tile-one {
  right: 7%;
  top: 74px;
  width: 34%;
  height: 270px;
}

.tile-two {
  right: 2%;
  top: 360px;
  width: 41%;
  height: 300px;
}

.showreel .video-frame {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--hairline);
  overflow: hidden;
  background: #000;
}

.showreel iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.caption {
  margin: 0.9rem 0 1.6rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--warm-gray);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  margin: 2.2rem 0;
}

.experience-grid article {
  background: var(--paper);
  padding: 2rem;
}

h3 {
  font-size: 1.95rem;
  margin-bottom: 0.7rem;
}

.experience-grid p,
.steps p,
.testimonials blockquote {
  color: var(--warm-gray);
}

.philosophy ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 1.5rem;
}

.philosophy li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--hairline);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}

.filmmaker {
  background: var(--paper);
}

.filmmaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.filmmaker-grid img {
  width: 100%;
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 36px var(--shadow);
}

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

.testimonials blockquote {
  margin: 0;
  padding: 1.8rem;
  border: 1px solid var(--hairline);
  background: var(--paper);
  font-size: 1.05rem;
}

.testimonials cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  margin-top: 2rem;
}

.steps article {
  background: var(--paper);
  padding: 1.8rem 1.3rem;
}

.final-cta {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--paper) 85%, var(--ivory)),
    var(--ivory)
  );
}

.site-footer {
  padding: 3.4rem 0 4rem;
}

.closing-line {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  z-index: 60;
  background-image: radial-gradient(#000 0.35px, transparent 0.35px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .container {
    width: min(var(--container), calc(100% - 3rem));
  }

  .nav-links {
    display: none;
  }

  .collage-wrap {
    min-height: 560px;
  }

  .tile-large {
    height: 520px;
  }

  .tile-one {
    top: 64px;
    height: 210px;
  }

  .tile-two {
    top: 292px;
    height: 230px;
  }

  .filmmaker-grid,
  .testimonials-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .hero-content {
    padding-top: 5.5rem;
  }

  .section {
    padding: 3.6rem 0;
  }

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

  .collage-wrap {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .tile {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
}
