:root {
  --forest: #22382a;
  --forest-2: #182a20;
  --cream: #ece9df;
  --cream-2: #f5f2ea;
  --sage: #a8ba9a;
  --sage-dark: #6f846f;
  --ink: #152018;
  --black: #0b0d0c;
  --charcoal: #171b18;
  --gold: #b69a62;
  --white: #f8f7f3;
  --muted: #a8afa8;
  --line: rgba(255,255,255,.12);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
    border-radius: 20px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(168,186,154,.18), transparent 28%),
    linear-gradient(135deg, #07100b 0%, #0d1812 48%, #17291e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5,10,7,.88) 0%, rgba(5,10,7,.55) 43%, rgba(5,10,7,.06) 74%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  min-height: 730px;
  padding-top: 40px;
}

.hero__copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
}

.eyebrow--dark {
  color: var(--sage-dark);
}

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

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.9rem, 7vw, 7.2rem);
  line-height: .94;
  letter-spacing: -.035em;
}

h1 span {
  display: block;
  color: var(--sage);
  font-style: italic;
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(248,247,243,.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 700;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--cream);
  color: var(--ink);
}

.btn--ghost {
  border: 1px solid rgba(255,255,255,.26);
  color: var(--white);
}

.hero__note {
  margin: 18px 0 0;
  color: rgba(248,247,243,.58);
  font-size: .86rem;
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero__photo {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 68%,
    rgba(0,0,0,.92) 16%,
    rgba(0,0,0,.62) 16%,
    rgba(0,0,0,.18) 86%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 68%,
    rgba(0,0,0,.92) 16%,
    rgba(0,0,0,.62) 16%,
    rgba(0,0,0,.18) 86%,
    transparent 100%
  );

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero__photo-placeholder {
  position: absolute;
  inset: 10px 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 34px;
  border-radius: 36px 36px 10px 36px;
  background:
    linear-gradient(to top, rgba(9,17,12,.78), rgba(9,17,12,.08) 58%),
    linear-gradient(145deg, rgba(168,186,154,.26), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
}

.hero__photo-placeholder span {
  max-width: 290px;
  padding: 12px 16px;
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 12px;
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255,255,255,.56);
  text-align: center;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: min(320px, 72%);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(11,13,12,.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: .92rem;
}

.floating-card span {
  color: rgba(248,247,243,.62);
  font-size: .78rem;
  line-height: 1.45;
}

.floating-card--top {
  top: 40px;
  right: -24px;
}

.floating-card--bottom {
  left: -34px;
  bottom: 42px;
}

.proofbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(12,16,13,.92);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}

.proofbar div {
  padding: 24px 26px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.proofbar div:last-child {
  border-right: 0;
}

.proofbar strong,
.proofbar span {
  display: block;
}

.proofbar strong {
  margin-bottom: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sage);
}

.proofbar span {
  font-size: .76rem;
  line-height: 1.35;
  color: rgba(248,247,243,.54);
}

.section {
  padding: 112px 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: var(--forest-2);
  color: var(--white);
}

.section--sage {
  background: var(--sage);
  color: var(--ink);
}

.section--black {
  background: var(--black);
  color: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.podcast-copy h2,
.about-copy h2,
.contact-grid h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.intro__text {
  padding-top: 26px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #536157;
}

.intro__text p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: rgba(248,247,243,.64);
  line-height: 1.7;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 10%, rgba(168,186,154,.11), transparent 28%),
    rgba(255,255,255,.025);
}

.offer-card__number {
  display: inline-block;
  margin-bottom: 80px;
  color: var(--sage);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
}

.offer-card h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.offer-card p {
  color: rgba(248,247,243,.65);
  line-height: 1.65;
}

.offer-card ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.09);
}

.offer-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 15px;
  font-size: .86rem;
  color: rgba(248,247,243,.7);
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.format-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.format-strip div {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.format-strip div:last-child {
  border-right: 0;
}

.format-strip span,
.format-strip strong {
  display: block;
}

.format-strip span {
  margin-bottom: 6px;
  color: rgba(248,247,243,.45);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.format-strip strong {
  color: var(--cream);
  font-size: .93rem;
}

.podcast-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.podcast-visual {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-visual__frame {
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.12), transparent 30%),
    var(--forest);
  box-shadow: 0 35px 70px rgba(39,57,43,.22);
  color: var(--cream);
  transform: rotate(-2deg);
}

.wave {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 130px;
  margin-bottom: 28px;
}

.wave span {
  width: 6px;
  border-radius: 999px;
  background: var(--cream);
  opacity: .9;
}

.wave span:nth-child(1),
.wave span:nth-child(15) { height: 28px; }
.wave span:nth-child(2),
.wave span:nth-child(14) { height: 44px; }
.wave span:nth-child(3),
.wave span:nth-child(13) { height: 72px; }
.wave span:nth-child(4),
.wave span:nth-child(12) { height: 96px; }
.wave span:nth-child(5),
.wave span:nth-child(11) { height: 58px; }
.wave span:nth-child(6),
.wave span:nth-child(10) { height: 110px; }
.wave span:nth-child(7),
.wave span:nth-child(9) { height: 82px; }
.wave span:nth-child(8) { height: 126px; }

.podcast-visual__frame p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.25;
  text-align: center;
}

.podcast-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(21,32,24,.7);
  line-height: 1.72;
}

.topic-list {
  margin: 36px 0 28px;
  border-top: 1px solid rgba(21,32,24,.22);
}

.topic-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(21,32,24,.18);
}

.topic-list span {
  padding-top: 3px;
  font-size: .74rem;
  font-weight: 700;
  color: rgba(21,32,24,.48);
}

.topic-list p {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-copy > p:not(.eyebrow) {
  color: #58665d;
  line-height: 1.72;
}

.quote {
  margin-top: 34px;
  padding-left: 22px;
  border-left: 2px solid var(--sage-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.35;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 250px 220px;
  gap: 14px;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(34,56,42,.95), rgba(34,56,42,.72)),
    var(--forest);
  color: rgba(255,255,255,.42);
  font-size: .8rem;
  border: 1px dashed rgba(34,56,42,.25);
}

.photo-placeholder--large {
  grid-row: 1 / span 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: center;
}

.contact-grid h2 {
  max-width: 730px;
}

.contact-lead {
  max-width: 620px;
  color: rgba(248,247,243,.6);
  line-height: 1.7;
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.contact-card__label {
  margin-bottom: 20px;
  color: var(--sage);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-line {
  display: block;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.contact-line span,
.contact-line strong {
  display: block;
}

.contact-line span {
  margin-bottom: 4px;
  color: rgba(248,247,243,.38);
  font-size: .75rem;
}

.contact-line strong {
  color: var(--cream);
  font-size: 1rem;
}

.contact-card__hint {
  margin: 18px 0 0;
  color: rgba(248,247,243,.32);
  font-size: .72rem;
  line-height: 1.45;
}

footer {
  background: #070908;
  color: rgba(248,247,243,.4);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid strong,
.footer-grid span {
  display: block;
}

.footer-grid strong {
  margin-bottom: 4px;
  color: rgba(248,247,243,.78);
}

.footer-grid span,
.footer-grid p {
  font-size: .76rem;
}

.footer-grid p {
  margin: 0;
}

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

  .hero__grid,
  .intro__grid,
  .podcast-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding: 110px 0 60px;
  }

  .hero__visual {
    min-height: 520px;
  }

  .proofbar {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }

  .proofbar div:nth-child(2) {
    border-right: 0;
  }

  .proofbar div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

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

  .offer-card {
    min-height: auto;
  }

  .offer-card__number {
    margin-bottom: 44px;
  }

  .format-strip {
    grid-template-columns: 1fr;
  }

  .format-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .format-strip div:last-child {
    border-bottom: 0;
  }

  .about-photos {
    min-height: 520px;
  }
}

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

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .intro h2,
  .section-heading h2,
  .podcast-copy h2,
  .about-copy h2,
  .contact-grid h2 {
    font-size: clamp(2.35rem, 11vw, 2.6rem);
  }

  .hero__visual {
    min-height: 460px;
  }

  .floating-card--top {
    right: 0;
  }

  .floating-card--bottom {
    left: 0;
  }

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

  .proofbar div {
    padding: 18px;
  }

  .podcast-grid,
  .intro__grid,
  .about-grid,
  .contact-grid {
    gap: 48px;
  }

  .about-photos {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 180px 180px;
  }

  .photo-placeholder--large {
    grid-row: auto;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 26px 0;
  }
}
