:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #5f625d;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --line: #ded9cd;
  --accent: #8f2f21;
  --accent-dark: #622018;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.98), rgba(236, 232, 221, 0.95)),
    radial-gradient(circle at 82% 8%, rgba(143, 47, 33, 0.12), transparent 30%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.86rem;
}

.site-header {
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.site-header a {
  font-weight: 700;
  text-decoration: none;
}

main {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 86px) clamp(22px, 5vw, 72px) 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-family:
    ui-serif,
    Georgia,
    Cambria,
    "Times New Roman",
    Times,
    serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 520;
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: #302d29;
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  line-height: 1.6;
}

.hero-actions {
  min-height: 78px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 28px 80px rgba(53, 47, 39, 0.18);
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 8vw, 108px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.details article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.68);
}

.part-image {
  float: right;
  width: min(42%, 160px);
  height: auto;
  margin: 0 0 14px 18px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 6px;
  background: #242520;
}

.details h2 {
  margin-bottom: 16px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

footer {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .part-image {
    width: min(34%, 180px);
  }
}

@media (max-width: 620px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  main {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .part-image {
    float: none;
    display: block;
    width: min(100%, 260px);
    margin: 0 0 18px;
  }
}
