:root {
  --navy: #06243a;
  --navy-deep: #031c2f;
  --navy-soft: #0b3958;
  --cream: #fbf7f0;
  --sand: #f3e7d7;
  --orange: #cb6535;
  --ink-muted: #405264;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy-deep);
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

.hero {
  position: relative;
  min-height: clamp(620px, 56.55vw, 905px);
  overflow: hidden;
  background-image: url("/assets/hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 67%;
  background: linear-gradient(90deg, #fffaf4 0%, #fdf7ef 76%, rgba(253, 247, 239, 0.92) 100%);
}

.hero-brand {
  position: absolute;
  top: 4.5%;
  left: 4.5%;
  z-index: 2;
  width: 50%;
  margin: 0;
  font-size: clamp(0.72rem, 1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

.hero-copy {
  position: absolute;
  top: 32.5%;
  left: 4.5%;
  z-index: 1;
  width: 50%;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.hero-copy p {
  margin: 1.2rem 0 2rem;
  font-size: clamp(0.88rem, 1.35vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-actions button {
  min-height: 48px;
  padding: 0.7rem 1.55rem;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-size: clamp(0.66rem, 0.76vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 1;
}

.press-strip {
  display: grid;
  grid-template-columns: 0.78fr repeat(4, 1fr);
  min-height: 84px;
  align-items: center;
  background: #f3e7d7;
  color: var(--navy);
}

.press-strip > * {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.5rem 1rem;
  border-left: 1px solid rgba(6, 36, 58, 0.14);
  text-align: center;
}

.press-strip p {
  border-left: 0;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.logo {
  line-height: 1;
}

.logo-cnn {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
}

.logo-forbes {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.logo-huffpost {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.logo-wh {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.book-praise {
  margin: 0;
  padding: 2.8rem 1rem 3rem;
  background: var(--cream);
  text-align: center;
}

.book-praise blockquote {
  width: 92vw;
  max-width: 1500px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  font-weight: 500;
  line-height: 1.08;
}

.book-praise figcaption {
  margin-top: 0.85rem;
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  overflow: hidden;
  padding: 6.8rem max(7vw, 2rem) 7.5rem;
  background: #f6ecde;
}

.about-rings {
  position: absolute;
  bottom: -300px;
  left: -240px;
  width: 700px;
  height: 700px;
  border: 2px solid rgba(6, 36, 58, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 250, 242, 0.8),
    0 0 0 102px rgba(230, 206, 179, 0.3);
}

.portrait-wrap {
  position: relative;
  z-index: 1;
  justify-self: end;
}

.portrait-ring {
  width: clamp(300px, 31vw, 505px);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 12px;
  border: 1.5px solid rgba(203, 101, 53, 0.72);
  border-radius: 50%;
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 72%;
}

.portrait-dot {
  position: absolute;
  right: -9px;
  bottom: 42px;
  width: 78px;
  height: 78px;
  border: 14px solid var(--cream);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 1px rgba(6, 36, 58, 0.12);
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding-left: clamp(1.6rem, 3vw, 3.2rem);
  border-left: 3px solid var(--orange);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.about h2,
.media h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.about h2 {
  font-size: clamp(4rem, 5.5vw, 6rem);
}

.about-lede {
  margin: 1rem 0 1.65rem;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1.05;
}

.about-copy > p:not(.eyebrow):not(.about-lede):not(.about-signoff) {
  max-width: 560px;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(0.86rem, 1vw, 1.03rem);
  line-height: 1.78;
}

.about-signoff {
  margin: 1.7rem 0 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
}

.media {
  position: relative;
  overflow: hidden;
  padding: 7.6rem max(7.5vw, 2rem) 6rem;
  color: var(--cream);
  background: var(--navy-deep);
}

.media::after {
  position: absolute;
  bottom: -340px;
  left: -5%;
  width: 110%;
  height: 430px;
  border-radius: 50% 50% 0 0;
  background: var(--navy-soft);
  content: "";
}

.media-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 4rem;
  max-width: 1380px;
  margin: 0 auto 3.5rem;
}

.media h2 {
  font-size: clamp(4.4rem, 6.1vw, 7.2rem);
}

.media h2 em {
  color: var(--orange);
  font-weight: 400;
}

.media-intro {
  max-width: 520px;
  margin: 0 0 0.75rem;
  color: #aeb9c3;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.6;
}

.reel {
  position: relative;
  display: block;
  max-width: 1380px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.reel-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.reel-trigger::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 28, 47, 0.45));
  content: "";
}

.reel-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(64px, 6vw, 92px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.reel-trigger:hover .play,
.reel-trigger:focus-visible .play {
  background: #df7240;
  transform: translate(-50%, -50%) scale(1.06);
}

.reel-trigger:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -5px;
}

.reel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-title,
.watch-label {
  position: absolute;
  bottom: 1.5rem;
  z-index: 2;
}

.reel-title {
  left: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2.2rem);
}

.watch-label {
  right: 2rem;
  color: #d9bda9;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.appearance-grid {
  display: grid;
  max-width: 1380px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.65rem;
  margin: 0 auto;
}

.appearance-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #062945;
}

.appearance-card img {
  width: 100%;
  aspect-ratio: 1.49 / 1;
  object-fit: cover;
}

.appearance-card p {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.media-signoff {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 2.5rem auto 4rem;
  color: #d2bba9;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: italic;
  text-align: center;
}

.media footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1380px;
  margin: 0 auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(251, 247, 240, 0.55);
  border-radius: 50%;
  color: var(--cream);
  opacity: 0.9;
  pointer-events: none;
}

.social-link svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.social-link .social-fill {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 850px) {
  .hero {
    min-height: 760px;
    background-position: 63% center;
  }

  .hero-mask {
    top: 8%;
    left: 5%;
    width: 90%;
    height: 49%;
    border-radius: 2px;
    background: rgba(255, 250, 244, 0.94);
  }

  .hero-brand {
    top: 2.2rem;
    left: 9%;
    width: 82%;
    font-size: 0.75rem;
  }

  .hero-copy {
    top: 18%;
    left: 9%;
    width: 82%;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .hero-copy p {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions button {
    width: min(280px, 90%);
  }

  .press-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }

  .press-strip > * {
    border: 0;
  }

  .press-strip p {
    grid-column: 1 / -1;
  }

  .book-praise br {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 5rem 1.5rem 6rem;
  }

  .portrait-wrap {
    justify-self: center;
  }

  .portrait-ring {
    width: min(82vw, 430px);
  }

  .about-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .about-lede br {
    display: none;
  }

  .media {
    padding: 5.5rem 1.25rem 5rem;
  }

  .media-heading-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .media h2 {
    font-size: clamp(3.6rem, 14vw, 5.25rem);
  }

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

  .reel-title {
    bottom: 0.85rem;
    left: 1rem;
  }

  .watch-label {
    display: none;
  }

  .media footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
