:root {
  --ink: #14211d;
  --ink-soft: #42534e;
  --paper: #fbf8f2;
  --cream: #f2eadb;
  --mist: #dbeee7;
  --teal: #1f8f88;
  --teal-dark: #0d5d5b;
  --coral: #c76d52;
  --gold: #c69b52;
  --plum: #4b2840;
  --white: #ffffff;
  --line: rgba(20, 33, 29, 0.13);
  --shadow: 0 24px 70px rgba(30, 47, 42, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(31, 143, 136, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(199, 109, 82, 0.13), transparent 26rem),
    var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.optin-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding-block: 0.7rem;
  background: rgba(251, 248, 242, 0.92);
  box-shadow: 0 10px 30px rgba(20, 33, 29, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .logo-ruchi,
.site-header.scrolled .logo-koval {
  transform: none;
}

.site-header.scrolled .logo-butterfly {
  transform-box: fill-box;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(13rem, 19vw, 18rem);
  height: auto;
  overflow: visible;
}

.logo-ruchi {
  font-family: "Inter", Arial, sans-serif;
  font-size: 218px;
  font-weight: 500;
  color: #66b448;
  fill: #66b448;
  letter-spacing: 0;
}

.logo-koval {
  font-family: "Inter", Arial, sans-serif;
  font-size: 224px;
  font-weight: 500;
  fill: #89a9f1;
  letter-spacing: 0;
}

.logo-tagline {
  font-family: "Inter", Arial, sans-serif;
  font-size: 34px;
  font-weight: 500;
  fill: #66b448;
  letter-spacing: 0;
}

.logo-butterfly {
  fill: none;
  stroke: #89a9f1;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: butterflyDrift 5.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 0.72rem 1rem;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
}

.brand-rail {
  position: fixed;
  right: 1rem;
  top: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(13, 93, 91, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(-50%);
  pointer-events: none;
}

.brand-rail i {
  position: relative;
  width: 1px;
  height: 8rem;
  background: rgba(13, 93, 91, 0.18);
}

.brand-rail i::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.7rem;
  background: linear-gradient(var(--teal), #89a9f1);
  opacity: 0.42;
  transform: translateY(var(--rail-progress, 0%));
  transition: transform 0.12s linear;
}

.rail-butterfly {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3.1rem;
  height: 2.7rem;
  fill: none;
  stroke: #89a9f1;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 12px rgba(137, 169, 241, 0.24));
  transform: translate(-50%, var(--butterfly-progress, 0%)) rotate(var(--butterfly-tilt, -5deg));
  transition: transform 0.12s linear;
}

.brand-rail:hover .rail-butterfly {
  animation: butterflyWing 1.8s ease-in-out infinite;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: stretch;
  padding: 7.25rem clamp(1rem, 4vw, 3rem) 2.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% 32%;
  height: 44%;
  background: linear-gradient(90deg, rgba(31, 143, 136, 0.18), rgba(199, 109, 82, 0.15));
  transform: rotate(-4deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
  padding: 5rem 0 5rem clamp(0rem, 4vw, 3rem);
}

.hero-media {
  position: absolute;
  inset: 6.1rem 0 0 auto;
  width: min(45vw, 650px);
  overflow: hidden;
  border-radius: 0 0 0 8px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(251, 248, 242, 0.2) 46%, rgba(251, 248, 242, 0) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3.5rem, 8vw, 7.7rem);
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.65rem);
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 33, 29, 0.16);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.42);
}

.hero-proof span {
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: 1320px;
  margin: -1rem auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.strip-item {
  min-height: 9rem;
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(20, 33, 29, 0.07);
}

.strip-item strong {
  display: block;
  color: var(--plum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 3.7rem);
  line-height: 1;
}

.strip-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.18;
}

.section-pad {
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 2.5rem 0;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 690px;
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.intro,
.speaking,
.stories {
  max-width: var(--max);
  margin-inline: auto;
}

.intro-grid,
.topic-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intro-card,
.topic-card,
.testimonial-card,
.book-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(20, 33, 29, 0.06);
}

.testimonial-card.large {
  grid-column: span 3;
}

.intro-card {
  padding: 1.5rem;
}

.intro-card p,
.topic-card p,
.testimonial-card p,
.book-card p,
.story-copy p,
.books-copy p,
.invite-panel p {
  color: var(--ink-soft);
}

.story-band {
  background:
    linear-gradient(135deg, rgba(13, 93, 91, 0.95), rgba(31, 143, 136, 0.78)),
    var(--teal-dark);
  color: var(--white);
}

.story-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.story-band .eyebrow,
.story-band p,
.story-band a {
  color: rgba(255, 255, 255, 0.86);
}

.story-copy h2 {
  color: var(--white);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.pathway-list {
  display: grid;
  gap: 1rem;
}

.pathway-list div {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.pathway-list span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--cream);
  font-weight: 900;
}

.pathway-list p {
  margin-bottom: 0;
}

.topic-card {
  min-height: 22rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.topic-card > p:first-child {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topic-card span {
  margin: 0.5rem 0 1.5rem;
  color: var(--teal-dark);
  font-weight: 800;
}

.topic-card p:last-child {
  margin-top: auto;
}

.speaker-proof {
  display: grid;
  place-items: center;
  margin: 2rem auto 0;
  max-width: 780px;
  padding: 2rem;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.speaker-proof blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
}

.speaker-proof span {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.books {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.books-copy {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.book-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.book-card {
  padding: 1rem;
}

.book-cover {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
  padding: 1.2rem;
  color: var(--ink);
  border: 1px solid rgba(20, 33, 29, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.36);
}

.book-cover span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-cover strong {
  max-width: 11rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  line-height: 0.95;
}

.book-cover em,
.book-cover small {
  position: relative;
  z-index: 1;
  max-width: 14rem;
  margin-top: 0.8rem;
  color: rgba(20, 33, 29, 0.74);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.book-cover.construction {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(248, 248, 245, 0.95) 58%),
    linear-gradient(160deg, transparent 48%, rgba(20, 33, 29, 0.08) 49%),
    linear-gradient(135deg, #9bdad4, #e9f6f2);
}

.book-cover.construction::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto;
  height: 7.2rem;
  background: rgba(31, 143, 136, 0.34);
  filter: blur(0.2px);
  transform: rotate(-3deg);
}

.book-cover.construction::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1.9rem;
  width: 2.4rem;
  height: 4.8rem;
  background: linear-gradient(#f5cc36 0 34%, #2b577a 34% 100%);
  border-radius: 1rem 1rem 0.4rem 0.4rem;
  transform: skewX(-8deg);
}

.book-cover.construction > span,
.book-cover.construction > strong,
.book-cover.construction > em {
  position: relative;
  z-index: 1;
}

.book-cover.construction strong {
  color: #23343a;
  font-size: 2.55rem;
  text-transform: lowercase;
}

.book-cover.construction .cover-title-small {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: lowercase;
}

.book-steps {
  position: absolute;
  left: 0.85rem;
  right: 3.3rem;
  bottom: 1.15rem;
  display: flex;
  align-items: end;
  gap: 0.18rem;
  height: 4.8rem;
}

.book-steps b {
  display: grid;
  place-items: center;
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0.25rem 0.1rem;
  background: #52608a;
  color: var(--white);
  font-size: 0.42rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: skewY(-8deg);
}

.book-cover.prayers {
  background:
    radial-gradient(circle at 20% 25%, rgba(75, 40, 64, 0.45), transparent 22%),
    linear-gradient(135deg, #6bc5b8, #edf7f2);
  color: var(--white);
  text-align: center;
  align-items: center;
  box-shadow: inset 0 0 0 26px rgba(255, 255, 255, 0.14), inset 0 0 0 27px rgba(255, 255, 255, 0.88);
}

.book-cover.prayers strong {
  color: var(--white);
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-cover.prayers small {
  margin: 0.35rem 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.book-cover.prayers em {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-cover.purpose {
  background:
    linear-gradient(90deg, rgba(31, 143, 136, 0.22) 1px, transparent 1px),
    #f8f8f5;
  background-size: 36px 36px;
  justify-content: space-between;
  min-height: 22rem;
}

.book-cover.purpose::before {
  content: "soul purpose";
  position: absolute;
  inset: 31% 1.4rem auto;
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(20, 33, 29, 0.78);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 0.78;
  text-transform: lowercase;
}

.book-cover.purpose::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 31%;
  width: 1.3rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #8ed5e7;
  transform: rotate(32deg);
}

.book-cover.purpose strong {
  position: relative;
  z-index: 1;
  color: transparent;
  font-size: 0;
}

.book-cover.soon {
  background:
    linear-gradient(135deg, rgba(198, 155, 82, 0.3), rgba(75, 40, 64, 0.12)),
    #fffaf0;
}

.portrait-soon {
  min-height: 22rem;
  padding: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.portrait-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 33, 29, 0.02), rgba(20, 33, 29, 0.85) 58%, rgba(75, 40, 64, 0.72));
}

.portrait-soon img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center top;
}

.portrait-soon div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
}

.portrait-soon span,
.portrait-soon strong,
.portrait-soon em {
  color: var(--white);
}

.portrait-soon strong {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
}

.portrait-soon em {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.35rem;
}

.testimonial-card.large {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--mist);
}

.testimonial-card.large p {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.invite {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(20, 33, 29, 0.91), rgba(75, 40, 64, 0.82)),
    var(--ink);
}

/* Calm & Clarity Letter */
.letter-invitation {
  max-width: var(--max);
  margin-inline: auto;
  padding-top: 0;
}

.letter-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(20rem, 0.88fr) minmax(24rem, 1.12fr);
  grid-template-rows: auto auto;
  gap: 1.5rem clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(198, 155, 82, 0.24), transparent 20rem),
    linear-gradient(135deg, #14211d, #183b35 72%, #0d5d5b);
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 34px 90px rgba(20, 33, 29, 0.22);
}

.letter-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -7rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(255, 255, 255, 0.025), 0 0 0 7rem rgba(255, 255, 255, 0.018);
}

.letter-panel .eyebrow {
  color: #e0c38f;
}

.letter-panel h2 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.letter-intro {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.letter-intro > p:not(.eyebrow):not(.optin-trust) {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.optin-trust,
.optin-authority {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.optin-trust {
  color: rgba(255, 255, 255, 0.88);
}

.optin-trust span {
  color: #e0c38f;
}

.letter-guide-preview {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
  display: block;
  width: min(100%, 28rem);
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 3px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.4);
  transform: rotate(-0.6deg);
}

.letter-guide-preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.optin-form-inline {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.optin-form {
  min-width: 0;
}

.optin-fields,
.optin-form-popup {
  display: grid;
  gap: 0.85rem;
}

.optin-form label {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.optin-form-inline label {
  color: rgba(255, 255, 255, 0.7);
}

.optin-form input {
  width: 100%;
  min-height: 3.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.optin-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.optin-form input:focus {
  border-color: #e0c38f;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(224, 195, 143, 0.14);
}

.optin-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid #e0c38f;
  border-radius: var(--radius);
  background: #e0c38f;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.optin-button span {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.optin-button:hover {
  transform: translateY(-2px);
  background: #ecd4a8;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.optin-button:hover span {
  transform: translateX(3px);
}

.optin-button:focus-visible,
.optin-close:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.optin-button:disabled {
  cursor: default;
  opacity: 0.78;
  transform: none;
}

.optin-privacy,
.optin-status {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
}

.optin-form-inline .optin-privacy,
.optin-form-inline .optin-status {
  color: rgba(255, 255, 255, 0.57);
}

.optin-status:empty {
  display: none;
}

.optin-status:not(:empty) {
  font-weight: 700;
}

.optin-modal[hidden] {
  display: none;
}

.optin-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.optin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 15, 0.72);
  backdrop-filter: blur(8px);
  animation: optinFade 0.35s ease both;
}

.optin-dialog {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(17rem, 0.92fr) minmax(25rem, 1.08fr);
  width: min(100%, 980px);
  height: min(720px, calc(100vh - 4rem));
  max-height: calc(100vh - 4rem);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  animation: optinRise 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.optin-close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(20, 33, 29, 0.14);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.9);
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.optin-portrait {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
}

.optin-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 33, 29, 0.94));
}

.optin-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-proof {
  position: absolute;
  z-index: 2;
  inset: auto 1.6rem 1.7rem;
  color: var(--white);
}

.portrait-proof span {
  display: block;
  margin-bottom: 0.45rem;
  color: #e0c38f;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portrait-proof strong {
  display: block;
  max-width: 18rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.optin-dialog-content {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.optin-dialog-content h2 {
  font-size: clamp(2.35rem, 3.6vw, 3.35rem);
  line-height: 1.02;
}

.optin-dialog-content > p:not(.eyebrow):not(.optin-authority) {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
}

.optin-authority {
  padding: 0.85rem 0;
  color: var(--teal-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.optin-form-popup {
  margin-top: 1.25rem;
}

.optin-form-popup label {
  color: var(--ink-soft);
}

.optin-form-popup input {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.optin-form-popup input::placeholder {
  color: rgba(20, 33, 29, 0.42);
}

.optin-form-popup input:focus {
  border-color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 93, 91, 0.1);
}

.optin-form-popup .optin-privacy,
.optin-form-popup .optin-status {
  color: #66736f;
  text-align: center;
}

.optin-download {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--teal-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.optin-download:not([hidden]) {
  display: flex;
}

.optin-download:hover {
  background: var(--ink);
}

.optin-form-inline .optin-download {
  color: var(--ink);
  background: var(--white);
}

.optin-form-inline .optin-download:hover {
  background: var(--cream);
}

@keyframes optinFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes optinRise {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.invite-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: var(--white);
  color: var(--ink);
}

.inquiry-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes butterflyDrift {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-5px) rotate(3deg);
  }
}

@keyframes butterflyWing {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.06;
  }
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: -1;
    width: min(100%, 34rem);
    height: 29rem;
    margin-left: auto;
    border-radius: var(--radius);
  }

  .hero-media::after {
    background: linear-gradient(0deg, var(--paper), rgba(251, 248, 242, 0) 45%);
  }

  .hero-content {
    padding: 2rem 0 3rem;
  }

  .authority-strip,
  .intro-grid,
  .topic-grid,
  .books,
  .testimonial-grid,
  .story-inner,
  .invite-panel {
    grid-template-columns: 1fr 1fr;
  }

  .story-inner,
  .books,
  .invite-panel,
  .letter-panel {
    grid-template-columns: 1fr;
  }

  .letter-panel {
    gap: 2rem;
  }

  .letter-intro,
  .letter-guide-preview,
  .optin-form-inline {
    grid-column: 1;
    grid-row: auto;
  }

  .letter-guide-preview {
    grid-row: 1;
  }

  .letter-intro {
    grid-row: 2;
  }

  .optin-form-inline {
    grid-row: 3;
  }

  .optin-dialog {
    grid-template-columns: minmax(15rem, 0.75fr) minmax(22rem, 1.25fr);
  }

  .books-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(251, 248, 242, 0.94);
    backdrop-filter: blur(18px);
  }

  .brand-logo {
    width: clamp(10rem, 42vw, 13.5rem);
  }

  .brand-rail {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 0.28rem;
    width: 2.6rem;
    height: 2.6rem;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 5.8rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

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

  .hero {
    padding-inline: 1rem;
  }

  .hero-media {
    width: 100%;
    height: 24rem;
  }

  .hero-actions,
  .hero-proof {
    flex-direction: column;
  }

  .button,
  .hero-proof span {
    width: 100%;
  }

  .authority-strip,
  .intro-grid,
  .topic-grid,
  .book-shelf,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .portrait-soon {
    grid-template-columns: 1fr;
  }

  .portrait-soon::after {
    background: linear-gradient(0deg, rgba(20, 33, 29, 0.92), rgba(20, 33, 29, 0.2));
  }

  .portrait-soon div {
    position: absolute;
    inset: auto 0 0;
  }

  .testimonial-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .letter-invitation {
    padding-inline: 1rem;
  }

  .letter-panel {
    padding: 2rem 1.25rem;
  }

  .letter-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .letter-guide-preview img {
    width: 100%;
  }

  .optin-modal {
    align-items: end;
    padding: 0;
  }

  .optin-dialog {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    max-height: 94vh;
    border-radius: 16px 16px 0 0;
  }

  .optin-portrait {
    min-height: 13rem;
    height: 13rem;
    max-height: 25vh;
  }

  .optin-portrait img {
    height: 100%;
    object-position: center 20%;
  }

  .optin-portrait::after {
    background: linear-gradient(90deg, transparent 15%, rgba(20, 33, 29, 0.86));
  }

  .portrait-proof {
    inset: auto 3.6rem 1rem 45%;
  }

  .portrait-proof strong {
    font-size: 1.2rem;
  }

  .optin-dialog-content {
    display: block;
    padding: 1.5rem 1.25rem 1.4rem;
  }

  .optin-dialog-content h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .optin-dialog-content > p:not(.eyebrow):not(.optin-authority) {
    font-size: 0.92rem;
  }

  .optin-authority {
    margin-top: 1rem;
    font-size: 0.8rem;
  }

  .optin-form-popup {
    margin-top: 1rem;
  }
}

/* Premium Page Styles */
.cinematic-hero {
  border-bottom: 1px solid var(--line);
}

.premium-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 143, 136, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(30, 47, 42, 0.12);
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.topic-category, .testimonial-category {
  max-width: var(--max);
  margin-inline: auto;
}

.counter {
  font-variant-numeric: tabular-nums;
}

/* Private coaching page */
.site-nav [aria-current="page"] {
  color: var(--teal-dark);
}

.coaching-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
  gap: clamp(2rem, 6vw, 6rem);
  min-height: 90vh;
  padding: clamp(9rem, 14vw, 12rem) clamp(1rem, 6vw, 6rem) clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 8% 22%, rgba(31, 143, 136, 0.15), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(198, 155, 82, 0.12), transparent 24rem),
    var(--paper);
}

.coaching-hero-copy {
  align-self: center;
  max-width: 760px;
}

.coaching-hero h1 {
  font-size: clamp(4rem, 7.8vw, 7.5rem);
}

.coaching-lead {
  max-width: 660px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.coaching-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.coaching-proof span {
  padding: 0.62rem 0.8rem;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.coaching-hero-image {
  position: relative;
  align-self: stretch;
  min-height: 34rem;
  overflow: hidden;
  border-radius: 160px 8px 8px 8px;
  box-shadow: 0 32px 90px rgba(20, 33, 29, 0.18);
}

.coaching-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(20, 33, 29, 0.88));
}

.coaching-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.coaching-image-note {
  position: absolute;
  z-index: 1;
  inset: auto 1.75rem 1.75rem;
  color: var(--white);
}

.coaching-image-note strong,
.coaching-image-note span {
  display: block;
}

.coaching-image-note strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.coaching-image-note span {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.coaching-fit,
.coaching-path {
  max-width: var(--max);
  margin-inline: auto;
}

.coaching-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.coaching-fit-card {
  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(20, 33, 29, 0.06);
}

.coaching-fit-card > span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 2.8rem;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.coaching-fit-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.coaching-fit-card p {
  color: var(--ink-soft);
}

.coaching-program {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 155, 82, 0.18), transparent 25rem),
    linear-gradient(135deg, var(--ink), #163c35);
}

.coaching-program-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.coaching-program .eyebrow {
  color: #e0c38f;
}

.coaching-program h2 {
  color: var(--white);
}

.coaching-program-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.coaching-program blockquote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.18;
}

.coaching-program cite {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
}

.coaching-inclusions {
  display: grid;
  gap: 1rem;
}

.coaching-inclusions article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.coaching-inclusions article > span {
  color: #e0c38f;
  font-size: 0.78rem;
  font-weight: 900;
}

.coaching-inclusions h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.coaching-inclusions p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.coaching-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.coaching-path-grid > div {
  min-height: 17rem;
  padding: 1.5rem;
  background: var(--paper);
}

.coaching-path-grid span {
  display: block;
  margin-bottom: 4rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coaching-path-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.coaching-path-grid p {
  color: var(--ink-soft);
}

.booking-section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
  background: var(--mist);
}

.booking-intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.booking-intro > p:not(.eyebrow):not(.booking-note) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.booking-note {
  display: inline-block;
  margin: 0.8rem 0 0;
  padding: 0.55rem 0.8rem;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.calendly-shell {
  overflow: hidden;
  max-width: 1080px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 760px;
}

.calendly-fallback {
  margin: 1.25rem auto 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.86rem;
}

.calendly-fallback a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Site footer */
.site-footer {
  display: block;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.65fr) minmax(17rem, 0.9fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.footer-name {
  display: inline-flex;
  flex-direction: column;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.72;
}

.footer-name span:last-child {
  margin-left: 2.4rem;
  color: #9db8f5;
}

.footer-brand-block > p {
  max-width: 29rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.footer-social a {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: var(--white);
  border-color: #e0c38f;
  transform: translateY(-2px);
}

.footer-social-icon {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-icon.icon-solid,
.footer-social-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-label {
  margin: 0 0 1rem;
  color: #e0c38f !important;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links nav {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-booking h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.footer-button {
  margin-top: 1.5rem;
  border-color: #e0c38f;
  background: #e0c38f;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1040px) {
  .coaching-hero,
  .coaching-program-inner {
    grid-template-columns: 1fr;
  }

  .coaching-hero {
    padding-top: 10rem;
  }

  .coaching-hero-image {
    width: min(100%, 42rem);
    min-height: 36rem;
  }

  .coaching-path-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-booking {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .coaching-hero {
    padding: 8.5rem 1rem 4rem;
  }

  .coaching-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .coaching-hero-image {
    min-height: 28rem;
    border-radius: 90px 8px 8px 8px;
  }

  .coaching-proof {
    display: grid;
  }

  .coaching-fit-grid,
  .coaching-path-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .coaching-fit-card {
    min-height: auto;
  }

  .coaching-fit-card > span,
  .coaching-path-grid span {
    margin-bottom: 1.5rem;
  }

  .coaching-path-grid > div {
    min-height: auto;
  }

  .calendly-inline-widget {
    height: 700px;
  }

  .footer-booking {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Mobile-only polish. Desktop layout remains unchanged. */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 6.25rem;
  }

  body {
    overflow-x: hidden;
  }

  .site-header,
  .site-header.scrolled {
    min-height: 4.5rem;
    padding: 0.35rem 1rem;
  }

  .brand-logo {
    width: 7.25rem !important;
    max-width: 7.25rem;
  }

  .nav-toggle {
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
  }

  .site-nav {
    inset: 4.35rem 0.75rem auto;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
  }

  #after-the-fight,
  #program,
  #book,
  #inquiry {
    scroll-margin-top: 6.25rem;
  }

  .letter-invitation {
    padding: 3rem 0.75rem;
  }

  .letter-panel {
    gap: 1.5rem;
    padding: 1.25rem;
    color: var(--white);
    background:
      radial-gradient(circle at 90% 10%, rgba(198, 155, 82, 0.2), transparent 16rem),
      linear-gradient(145deg, #14211d, #123f39);
    border-radius: 12px;
  }

  .letter-guide-preview {
    width: min(100%, 18rem);
  }

  .letter-intro {
    width: 100%;
  }

  .letter-panel h2 {
    max-width: 18ch;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 1;
  }

  .letter-intro > p:not(.eyebrow):not(.optin-trust) {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .optin-trust {
    margin-top: 1.1rem;
    font-size: 0.88rem;
  }

  .optin-form-inline,
  .optin-fields,
  .optin-form-inline label,
  .optin-form-inline input,
  .optin-form-inline .optin-button {
    width: 100%;
  }

  .optin-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .optin-form-inline label {
    display: grid;
    gap: 0.4rem;
  }

  .optin-form-inline input {
    min-width: 0;
    min-height: 3.45rem;
  }

  .optin-form-inline .optin-button {
    min-height: 3.55rem;
  }

  .optin-form-inline .optin-privacy {
    margin-top: 0.8rem;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .optin-modal {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .optin-dialog {
    display: flex;
    flex-direction: column;
    height: 94vh;
    height: 94dvh;
    max-height: 94vh;
    max-height: 94dvh;
    overflow: hidden;
  }

  .optin-portrait {
    flex: 0 0 9.5rem;
    width: 100%;
    min-height: 9.5rem;
    height: 9.5rem;
  }

  .optin-dialog-content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .optin-form-popup {
    padding-bottom: 0.5rem;
  }

  .coaching-hero {
    padding: 10.75rem 1rem 4rem;
  }

  .coaching-hero-copy,
  .coaching-program-copy,
  .booking-intro {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .coaching-hero h1 {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(3.1rem, 14vw, 4.4rem);
    line-height: 0.98;
  }

  .coaching-lead {
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .coaching-proof {
    gap: 0.6rem;
  }

  .coaching-proof span {
    width: 100%;
    text-align: center;
  }

  .coaching-program-inner {
    gap: 2.5rem;
    padding: 4.5rem 1.25rem;
  }

  .coaching-program-copy h2 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
    line-height: 1;
  }

  .coaching-program-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.7;
  }

  .coaching-program blockquote {
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 1.45rem;
  }

  .coaching-inclusions article {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1.4rem 1rem;
    text-align: center;
  }

  .coaching-inclusions h3 {
    font-size: 1.2rem;
  }

  .booking-section {
    padding: 4.5rem 1.25rem;
  }

  .booking-intro h2 {
    margin-inline: auto;
    font-size: clamp(2.7rem, 12vw, 3.6rem);
    line-height: 1;
  }

  .booking-intro > p:not(.eyebrow):not(.booking-note) {
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.65;
  }

  .booking-note {
    border-radius: 8px;
    line-height: 1.45;
  }

  .calendly-shell {
    width: 100%;
    border-radius: 10px;
  }

  .calendly-fallback {
    max-width: 22rem;
    line-height: 1.55;
  }

  .site-footer {
    padding: 0;
    color: var(--white);
    background: var(--ink);
  }

  .footer-grid {
    gap: 2.25rem;
    padding: 3.5rem 1.25rem 2.5rem;
    text-align: center;
  }

  .footer-brand-block > p {
    max-width: 21rem;
    margin: 1.4rem auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
  }

  .footer-name {
    align-items: center;
    font-size: 2.8rem;
    line-height: 0.78;
  }

  .footer-name span:last-child {
    margin-left: 1.8rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 1.4rem;
  }

  .footer-social a {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .footer-social-icon {
    display: block;
    width: 1.1rem;
    height: 1.1rem;
  }

  .footer-social-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .footer-links {
    display: none;
  }

  .footer-booking {
    max-width: 24rem;
    margin-inline: auto;
    text-align: center;
  }

  .footer-booking h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: 2.35rem;
    line-height: 1;
  }

  .footer-button {
    width: 100%;
    margin-top: 1.25rem;
  }

  .footer-bottom {
    align-items: center;
    padding: 1.4rem 1.25rem 2rem;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
    line-height: 1.5;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 1rem;
    bottom: 1.5rem;
    right: 1.5rem;
    border-radius: 50%;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* Podcast Section */
.podcast-section {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.podcast-container {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .podcast-container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.podcast-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.phone-frame {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 30px;
  position: relative;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.phone-frame video {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.podcast-info {
  background: var(--white);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.podcast-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.podcast-desc {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.podcast-listen {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-bottom: 2.5rem;
}

.listen-eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--teal-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.listen-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.listen-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-color: var(--teal);
}

.listen-btn img {
  display: block;
}


/* Podcast Hero Section (New Design) */
.podcast-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  overflow: hidden;
  padding: 4rem 0;
}

.podcast-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--cream);
  z-index: 0;
}

.podcast-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #ffe3d8;
  z-index: 0;
}

.podcast-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 900px) {
  .podcast-hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.podcast-hero-media { width: 100%; max-width: 450px; flex: none; z-index: 3; margin: 0 auto -2rem auto; }

@media (min-width: 900px) {
  .podcast-hero-media {
    margin: 0 -2rem 0 0;
    transform: translateY(2rem);
  }
}

.phone-mockup {
  position: relative;
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.4), 0 20px 40px rgba(0,0,0,0.3);
  width: 100%;
  border: 2px solid #555;
}

.phone-mockup video {
  display: block;
  width: 100%;
  border-radius: 30px;
  background: #000;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #111;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 2;
}

.podcast-hero-info {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 4rem 3rem 5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  z-index: 2;
}

@media (max-width: 899px) {
  .podcast-hero-info {
    padding: 4rem 2rem 2rem;
  }
}

.podcast-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.podcast-hero-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.podcast-hero-listen {
  margin-top: 1rem;
}

.podcast-hero-listen .listen-eyebrow {
  font-style: italic;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 440px;
  margin: 0 auto;
}

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

.listen-grid-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #111;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s ease;
  justify-content: flex-start;
}

.listen-grid-btn:hover {
  border-color: #bbb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.listen-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #1a1a1a;
}

.listen-grid-btn[href*="spotify"] .listen-logo {
  fill: #1DB954;
}

.listen-grid-btn[href*="apple"] .listen-logo {
  color: #a333c8;
}

.listen-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.listen-small {
  font-size: 0.6rem;
  color: #666;
}

.listen-bold {
  font-size: 0.85rem;
  font-weight: 700;
}
.podcast-hero-view-all {
    margin-top: 2rem;
}


.video-mockup {
  position: relative;
  background: #111;
  border-radius: 20px;
  padding: 8px;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.4), 0 20px 40px rgba(0,0,0,0.3);
  width: 100%;
  border: 2px solid #333;
}

.video-mockup video {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.listen-group {
  margin-bottom: 1.5rem;
}





.podcast-hero-listen .listen-eyebrow {
  color: #1F8F88; /* Matches the teal color from the image */
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.podcast-hero-view-all .button {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.podcast-hero-view-all .button:hover {
  background: #1a1a1a;
  color: #fff;
}


.podcast-listen .listen-eyebrow {
  color: #1F8F88;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}


