:root {
  --ink: #172a2f;
  --ink-deep: #0e1c20;
  --paper: #f2eee4;
  --paper-light: #faf8f2;
  --gold: #d8aa55;
  --gold-soft: #ecd7ab;
  --sage: #8aa39a;
  --text: #243438;
  --muted: #637074;
  --line: rgba(23, 42, 47, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper-light);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(1.5rem, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 28, 32, 0.9);
  box-shadow: 0 0.5rem 2rem rgba(5, 15, 18, 0.18);
  color: var(--paper-light);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: 12rem max(1.5rem, calc((100vw - var(--max-width)) / 2)) 6.5rem;
  background: var(--ink-deep);
  color: var(--paper-light);
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 28, 32, 0.93) 0%, rgba(14, 28, 32, 0.74) 52%, rgba(14, 28, 32, 0.45) 100%),
    linear-gradient(0deg, rgba(14, 28, 32, 0.58) 0%, rgba(14, 28, 32, 0.12) 70%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 58rem;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #7a622f;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.5rem;
  font-size: clamp(4.25rem, 10vw, 9rem);
  letter-spacing: -0.055em;
  line-height: 0.78;
}

.hero-copy {
  max-width: 46rem;
  margin-bottom: 2.25rem;
  color: rgba(250, 248, 242, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--gold);
  color: var(--ink-deep);
}

.button-primary:hover {
  background: #e7bd6e;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--paper-light);
}

.button-secondary:hover {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
}

.button-dark {
  width: fit-content;
  background: var(--ink);
  color: var(--paper-light);
}

.button-dark:hover {
  background: #29444b;
}

.section {
  width: min(calc(100% - 3rem), var(--max-width));
  display: grid;
  grid-template-columns: 4rem minmax(16rem, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-kicker {
  color: #8a7d66;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.section-heading h2,
.watch-intro h2,
.next-title-wrap h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.about-copy {
  padding-top: 2.2rem;
}

.about-artwork {
  width: min(100%, 24rem);
  margin: 3rem 0 0;
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: 0 1.5rem 4rem rgba(23, 42, 47, 0.14);
}

.about-artwork img {
  width: 100%;
  height: auto;
  display: block;
}

.about-copy p,
.next-copy > p {
  max-width: 42rem;
  color: #48585c;
}

.about-copy .lead,
.next-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.4;
}

.section-watch {
  padding: clamp(6rem, 10vw, 9rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: var(--paper-light);
}

.watch-intro {
  margin-bottom: 4rem;
}

.watch-intro .eyebrow {
  margin-bottom: 1.5rem;
}

.watch-intro h2 {
  color: var(--paper-light);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.video-card {
  min-width: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(216, 170, 85, 0.12), transparent 45%),
    #0a1518;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.video-frame::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--gold);
  content: "▶";
  transform: translate(-50%, -50%);
}

.video-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0;
}

.video-card h3 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1;
}

.video-number {
  margin-bottom: 0.35rem;
  color: var(--sage);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.text-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-underline-offset: 0.35rem;
}

.video-help {
  margin: 3rem 0 0;
  color: rgba(250, 248, 242, 0.55);
  font-size: 0.74rem;
}

.section-next {
  grid-template-columns: minmax(18rem, 0.95fr) minmax(22rem, 1.05fr);
  border-bottom: 1px solid var(--line);
}

.next-title-wrap h2 {
  margin-bottom: 1rem;
}

.next-label {
  color: #73664f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-copy {
  padding-top: 2.2rem;
}

.contact {
  width: min(calc(100% - 3rem), var(--max-width));
  display: grid;
  grid-template-columns: minmax(20rem, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.contact h2 {
  font-size: clamp(3rem, 6vw, 5.75rem);
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.contact-action p {
  max-width: 31rem;
  color: #546266;
}

.site-footer {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--ink-deep);
  color: rgba(250, 248, 242, 0.65);
  font-size: 0.7rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 5.5rem;
  }

  .hero {
    min-height: 720px;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 3rem;
    padding-top: 10rem;
  }

  .section,
  .section-next,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    display: none;
  }

  .about-copy,
  .next-copy {
    padding-top: 0;
  }

}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 4rem;
  }

  .site-header {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand > span:last-child {
    max-width: 8rem;
  }

  .site-nav {
    gap: 1.2rem;
    font-size: 0.74rem;
  }

  .site-nav a:nth-child(1),
  .site-nav a:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: 690px;
    padding-right: 1rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .section,
  .contact {
    width: calc(100% - 2rem);
  }

  .section-heading h2,
  .watch-intro h2,
  .next-title-wrap h2,
  .contact h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .section-watch {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .site-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
