@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap");
:root {
  --ink: #13211f;
  --paper: #f4f0e8;
  --gold: #bd9251;
  --muted: #68716c;
  --line: #d7d1c5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px / 1.6 "DM Sans",
    sans-serif;
}
a {
  color: inherit;
}
.site-header {
  height: 82px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.brand strong {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.brand-mark,
.poster-ring {
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 17px;
}
.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}
.site-header nav a {
  text-decoration: none;
}
.social-link {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.hero {
  min-height: 610px;
  padding: clamp(70px, 10vw, 150px) clamp(20px, 12vw, 180px) 60px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "♪";
  position: absolute;
  right: 8%;
  top: 7%;
  font:
    clamp(220px, 35vw, 520px) / 1 "Playfair Display",
    serif;
  color: #ffffff08;
  transform: rotate(12deg);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 18px;
}
.hero h1 {
  font:
    600 clamp(58px, 10vw, 132px) / 0.92 "Playfair Display",
    serif;
  letter-spacing: -0.05em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.hero h1 em {
  color: var(--gold);
  font-weight: 600;
}
.intro {
  font-size: 18px;
  color: #c9d0c9;
  margin: 34px 0;
}
.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.hero-note {
  position: absolute;
  bottom: 42px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: #aeb8af;
}
.line {
  height: 1px;
  width: 48px;
  background: var(--gold);
}
.video-section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 12vw, 180px);
}
.section-heading {
  max-width: 580px;
}
.section-heading h2,
.about h2 {
  font:
    600 clamp(38px, 6vw, 72px) / 1.02 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
}
.reel-card {
  margin-top: 54px;
  min-height: 420px;
  background: #1c2c29;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--paper);
  overflow: hidden;
}
.reel-poster {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  background: linear-gradient(135deg, #263c35, #13211f);
  text-align: center;
}
.reel-poster p {
  font-size: 13px;
  line-height: 1.5;
}
.poster-ring {
  width: 90px;
  height: 90px;
  font-size: 34px;
}
.reel-action {
  align-self: center;
  padding: clamp(28px, 6vw, 80px);
  font-size: 20px;
}
.reel-action button {
  margin-top: 18px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--paper);
  padding: 14px 18px;
  font:
    500 13px "DM Sans",
    sans-serif;
  cursor: pointer;
}
.reel-action button span {
  color: var(--gold);
  margin-left: 12px;
}
.reel-card iframe {
  width: 100%;
  height: 560px;
  border: 0;
  grid-column: 1 / -1;
}
.source {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.about {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 12vw, 180px);
  background: #e8e3d8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about h2 {
  max-width: 500px;
}
.about > p:last-child {
  max-width: 430px;
  color: var(--muted);
  align-self: end;
}
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 54px clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 40px;
  align-items: end;
}
/* biome-ignore lint/style/noDescendingSpecificity: footer copy intentionally shares the site-wide paragraph baseline. */
footer p {
  margin: 0 0 8px;
  color: #abb5ac;
  font-size: 12px;
}
footer .footer-title {
  color: var(--paper);
  font:
    italic 28px "Playfair Display",
    serif;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}
footer small {
  color: #829087;
  font-size: 11px;
}
@media (max-width: 700px) {
  .site-header {
    height: auto;
    padding: 18px 20px;
    flex-wrap: wrap;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .social-link {
    margin-left: auto;
  }
  .hero {
    min-height: 560px;
    padding: 90px 20px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .reel-card {
    grid-template-columns: 1fr;
    min-height: 480px;
  }
  .reel-poster {
    min-height: 270px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
