:root {
  --ink: #332d2a;
  --muted: #695f59;
  --paper: #f5f3ef;
  --panel: #413934;
  --line: #d8d0c8;
  --accent: #7d8f00;
  --white: #ffffff;
  --max: 1060px;
  --body: Sora, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.42;
}

a {
  color: inherit;
  font-weight: 600;
  text-underline-offset: 0.2em;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 640px;
}

.hero {
  min-height: 565px;
  background: #f8f7f3;
  overflow: hidden;
}

.hero--compact {
  min-height: 430px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  align-items: end;
  gap: clamp(28px, 6vw, 80px);
  min-height: inherit;
  padding-top: 42px;
}

.hero__portrait {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  min-height: 410px;
}

.hero__portrait img {
  display: block;
  width: min(100%, 500px);
  max-height: 535px;
  object-fit: contain;
  object-position: bottom left;
}

.hero__copy {
  align-self: center;
  padding: 42px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 14px;
  color: #403936;
  font-family: var(--body);
  font-size: clamp(4.1rem, 9.6vw, 8.2rem);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: 0;
}

.role {
  margin-bottom: 0;
  font-size: clamp(0.84rem, 1.6vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
}

.role--small {
  color: var(--muted);
  font-size: clamp(0.72rem, 1.2vw, 0.86rem);
  font-weight: 500;
  line-height: 1.2;
}

.hero__statement {
  max-width: 490px;
  margin: 48px 0 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.04;
}

.video-section {
  background: var(--panel);
  color: var(--white);
  padding: 56px 0 64px;
}

.video-section__inner {
  display: grid;
  justify-items: center;
}

.video-section h2 {
  margin-bottom: 32px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
}

.video-frame {
  width: min(100%, 620px);
  border: 6px solid #e6e1dc;
  background: #111;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.video-scene {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(#a7d6f1 0 68%, #c7d99a 68% 100%);
}

.cloud,
.cloud::before,
.cloud::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.cloud {
  width: 86px;
  height: 26px;
}

.cloud::before,
.cloud::after {
  content: "";
}

.cloud::before {
  width: 38px;
  height: 38px;
  left: 17px;
  bottom: 8px;
}

.cloud::after {
  width: 28px;
  height: 28px;
  right: 10px;
  bottom: 4px;
}

.cloud--one {
  left: 5%;
  top: 20%;
}

.cloud--two {
  right: 39%;
  top: 22%;
  transform: scale(1.45);
}

.hill {
  position: absolute;
  inset-inline: -10%;
  bottom: 0;
  height: 38%;
  border-radius: 50% 50% 0 0;
}

.hill--back {
  background: #a4b86a;
  transform: translateY(22%) rotate(1deg);
}

.hill--front {
  background: var(--accent);
  transform: translate(-5%, 39%) rotate(4deg);
}

.video-controls {
  display: grid;
  grid-template-columns: 34px 1fr 34px 34px;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 8px;
  background: #f8f5f0;
  color: #1b1714;
}

.icon-button {
  width: 30px;
  height: 28px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.progress {
  height: 4px;
  background: #5e5a56;
}

.progress span {
  display: block;
  width: 32%;
  height: 100%;
  background: #c93b37;
  transition: width 0.35s ease;
}

.video-frame.is-playing .progress span {
  width: 62%;
}

.intro-section {
  padding: 42px 0 58px;
  background: #f8f7f3;
  font-size: 1.03rem;
  font-weight: 600;
}

.intro-section p {
  margin-bottom: 28px;
}

.feature-section {
  border-top: 52px solid var(--panel);
  padding: 54px 0 88px;
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(230px, 0.95fr);
  gap: clamp(28px, 4vw, 42px);
  align-items: center;
}

.stage-photo {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 32, 70, 0.24), rgba(1, 8, 20, 0.92)),
    linear-gradient(120deg, #065bb7, #0aa0df 45%, #0b1633);
}

.stage-lights {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 12%, rgba(255, 255, 255, 0.26) 13% 15%, transparent 16% 100%),
    linear-gradient(76deg, transparent 0 62%, rgba(255, 255, 255, 0.22) 63% 65%, transparent 66% 100%);
}

.stage-screen {
  position: absolute;
  left: 11%;
  bottom: 27%;
  width: 55%;
  padding: 48px 28px;
  background: rgba(255, 255, 255, 0.9);
  color: #cf3c81;
  font-size: clamp(1.4rem, 3vw, 2.7rem);
  font-weight: 900;
}

.stage-crowd {
  position: absolute;
  inset-inline: 0;
  bottom: -12px;
  height: 26%;
  background:
    radial-gradient(circle at 8% 60%, #03060b 0 16px, transparent 17px),
    radial-gradient(circle at 18% 45%, #03060b 0 18px, transparent 19px),
    radial-gradient(circle at 30% 65%, #03060b 0 16px, transparent 17px),
    radial-gradient(circle at 42% 48%, #03060b 0 18px, transparent 19px),
    radial-gradient(circle at 56% 62%, #03060b 0 16px, transparent 17px),
    radial-gradient(circle at 70% 46%, #03060b 0 18px, transparent 19px),
    radial-gradient(circle at 84% 60%, #03060b 0 17px, transparent 18px),
    linear-gradient(#071224, #010205);
}

.feature-copy h2,
.contact-card h2,
.book-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 600;
  line-height: 0.88;
}

.feature-copy p,
.contact-card p,
.book-copy p {
  color: var(--muted);
  font-size: 0.88rem;
}

.connection-section {
  padding: 86px 0 104px;
}

.connection-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 0.85fr) minmax(220px, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.contact-card,
.book-copy {
  text-align: center;
}

.book-copy {
  text-align: left;
}

.book-copy h2 em {
  font-size: 0.82em;
  font-weight: 400;
}

.book-cover {
  justify-self: center;
  display: grid;
  place-items: center;
  width: min(100%, 230px);
  aspect-ratio: 0.72;
  background: linear-gradient(90deg, #ededec, #ffffff 45%, #e2e1df);
  border: 1px solid var(--line);
  box-shadow: 18px 18px 34px rgba(53, 47, 42, 0.16);
  transform: perspective(900px) rotateY(-7deg);
}

.book-cover span {
  color: #59534e;
  font-family: var(--body);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0;
}

.transcript-section {
  padding: 0 0 74px;
}

.transcript h2 {
  margin-bottom: 34px;
  font-size: 1rem;
  font-style: italic;
}

.transcript p {
  margin-bottom: 26px;
  font-size: 0.95rem;
}

.site-footer {
  padding: 44px 0;
  background: var(--panel);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.coming-soon {
  display: grid;
  min-height: 45vh;
  place-items: center;
  background: var(--panel);
  color: var(--white);
}

.coming-soon p {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: lowercase;
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
  }

  .hero__grid,
  .feature-grid,
  .connection-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 0;
    padding-top: 28px;
  }

  .hero__portrait {
    order: 2;
    justify-content: center;
    min-height: 280px;
    margin-top: -34px;
  }

  .hero__portrait img {
    width: min(82vw, 360px);
    max-height: 390px;
  }

  .hero__copy {
    position: relative;
    z-index: 2;
    padding: 28px 0 12px;
  }

  .hero__statement {
    margin-top: 28px;
  }

  .feature-section {
    border-top-width: 34px;
  }

  .stage-photo {
    min-height: 285px;
  }

  .feature-copy,
  .book-copy,
  .contact-card {
    text-align: left;
  }

  .connection-section {
    padding: 58px 0 74px;
  }

  .book-cover {
    order: -1;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(3.6rem, 15vw, 5.2rem);
  }

  .video-section {
    padding: 42px 0 48px;
  }

  .video-controls {
    grid-template-columns: 28px 1fr 28px 28px;
    gap: 4px;
    padding-inline: 4px;
  }

  .icon-button {
    width: 26px;
  }

  .intro-section,
  .transcript p {
    font-size: 0.94rem;
  }
}
