:root {
  --ink: #17324a;
  --muted: #5c7182;
  --paper: #fffdf9;
  --sand: #f3eadb;
  --sea: #0d6b77;
  --coral: #d76a4d;
  --line: rgba(23, 50, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

.hero {
  position: relative;
  min-height: min(84vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 33, 46, 0.08), rgba(9, 33, 46, 0.66)),
    linear-gradient(90deg, rgba(9, 33, 46, 0.26), transparent 65%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 42px;
  color: #fff;
}

.hero-copy p,
.eyebrow {
  margin: 0 0 10px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.hero-copy span {
  display: block;
  max-width: 620px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.section-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.intro,
.crew {
  padding: 76px 0;
}

.section-copy {
  max-width: 640px;
}

.section-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

.section-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.eyebrow {
  color: var(--coral);
}

.triptych {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}

.triptych img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-band {
  background: var(--sand);
  padding: 64px 0;
}

.split,
.video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 42px;
  align-items: center;
}

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

.couples-strip img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.video-band {
  padding: 64px 0;
  background: #e7f1ef;
}

.video-layout video {
  aspect-ratio: 16 / 9;
  background: #000;
}

.closing {
  position: relative;
  min-height: min(74vh, 760px);
  display: grid;
  align-items: end;
}

.closing img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 33, 46, 0.08), rgba(9, 33, 46, 0.7));
}

.closing-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 44px;
  color: #fff;
}

.closing-copy p {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.closing-copy strong {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

@media (max-width: 820px) {
  .hero {
    min-height: 72vh;
  }

  .hero-copy,
  .closing-copy,
  .section-shell {
    width: min(calc(100% - 32px), 1120px);
  }

  .intro,
  .crew {
    padding: 52px 0;
  }

  .story-band,
  .video-band {
    padding: 48px 0;
  }

  .triptych,
  .gallery,
  .split,
  .video-layout {
    grid-template-columns: 1fr;
  }

  .couples-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery {
    gap: 12px;
  }

  .closing {
    min-height: 62vh;
  }
}
