:root {
  --cream: #f6efe6;
  --cream-2: #fbf7f0;
  --cream-3: #e5d9c8;
  --dark: #1b1510;
  --muted: #645a52;
  --accent: #bd7558;
  --accent-hover: #a45f46;
  --border: #27231d21;
  --soft-white: #fbf7f0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.siteNav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 239, 230, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  height: 66px;
  margin: 0 auto;
  padding: 0 40px;
}

.brand {
  color: var(--dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navLinks a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.navLinks a.active,
.navLinks a:hover {
  color: var(--dark);
}

.navLinks .navCta {
  border-radius: 2px;
  background: var(--accent);
  color: var(--soft-white);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.navLinks .navCta:hover {
  background: var(--accent-hover);
  color: var(--soft-white);
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 800px;
  margin: 0 auto;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 72vh;
  padding: 92px 40px 84px;
  background: var(--cream);
}

.subHero {
  padding: 86px 40px 76px;
  background: var(--cream);
}

.subHero.centered {
  text-align: center;
}

.subHero.centered .lede,
.lede.center {
  margin-right: auto;
  margin-left: auto;
}

.lede.small {
  max-width: 760px;
  margin-top: 34px;
  margin-bottom: 34px;
  font-size: 17px;
}

.eyebrow {
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  animation: fadeIn 0.6s ease both;
}

h1,
h2,
h3 {
  color: var(--dark);
  font-family: "Cormorant Garamond", serif;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  animation: fadeUp 0.8s ease both;
}

.lede {
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
  animation: fadeUp 0.9s 0.1s ease both;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp 1s 0.2s ease both;
}

.button {
  display: inline-block;
  border-radius: 2px;
  max-width: 100%;
  padding: 17px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

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

.button.primary:hover {
  background: var(--accent-hover);
}

.button.secondary {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dark);
}

.button.secondary:hover {
  background: var(--cream-2);
}

.introSection {
  background: var(--cream-2);
  padding: 76px 40px;
}

.introSection h2 {
  margin-bottom: 24px;
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.22;
}

.introSection h2 em {
  font-style: italic;
}

.introSection p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.introSection p + p {
  margin-top: 20px;
}

.thoughtBox {
  max-width: 720px;
  margin: 46px auto 0;
  padding: 34px 38px;
  border-left: 3px solid var(--accent);
  background: var(--cream-2);
  text-align: left;
}

.thoughtBox p {
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 500;
}

.thoughtBox ul,
.dashList,
.iconList {
  list-style: none;
}

.thoughtBox li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.splitStatement {
  padding: 68px 40px;
  background: var(--cream-2);
}

.splitTwo {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 60px;
}

.splitTwo.aligned {
  align-items: center;
  grid-template-columns: 1.6fr 0.9fr;
}

.splitTwo p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.sectionMark {
  color: var(--accent) !important;
  font-size: 36px !important;
  line-height: 1;
}

.splitStatement h2,
.creamPanel h2,
.darkBand h2,
.detailsSection h2,
.faqSection h2,
.finalCta h2 {
  margin-bottom: 22px;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.14;
}

.listSection {
  padding: 64px 40px;
  background: var(--cream);
}

.listSection p {
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.dashList li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
}

.dashList li::before {
  content: "—";
  color: var(--accent);
}

.creamPanel {
  padding: 76px 40px;
  background: var(--cream-2);
}

.bulletGrid,
.takeawayGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-top: 34px;
}

.bulletGrid p,
.miniList p {
  display: flex;
  gap: 12px;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

.bulletGrid span,
.miniList span {
  color: var(--accent);
}

.pullQuote {
  max-width: 760px;
  margin: 42px auto 0;
  color: var(--dark);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
  text-align: center;
}

.offersSection {
  background: var(--cream);
  padding: 76px 40px;
}

.sectionHeading {
  margin-bottom: 42px;
  text-align: center;
}

.sectionHeading .eyebrow {
  margin-bottom: 16px;
}

.sectionHeading h2 {
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}

.offerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.offerCard {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  padding: 40px 36px;
}

.offerCard.light {
  border: 1px solid var(--border);
}

.offerCard.dark {
  background: var(--dark);
}

.kicker {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offerCard.dark .kicker {
  color: rgba(251, 247, 240, 0.55);
}

.offerCard h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
}

.offerCard.dark h3 {
  color: var(--soft-white);
}

.rule {
  width: 36px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--accent);
}

.offerCard.dark .rule {
  background: rgba(251, 247, 240, 0.3);
}

.offerCard > p:not(.kicker) {
  flex: 1;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.offerCard.dark > p:not(.kicker) {
  color: rgba(251, 247, 240, 0.65);
}

.button.darkOutline {
  border: 1px solid rgba(251, 247, 240, 0.4);
  background: transparent;
  color: var(--soft-white);
}

.button.darkOutline:hover {
  background: rgba(251, 247, 240, 0.08);
}

.numberGrid,
.programGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.numberGrid p,
.programGrid article,
.takeawayGrid p {
  border: 1px solid var(--border);
  background: rgba(251, 247, 240, 0.52);
  padding: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.numberGrid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.programGrid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
}

.programGrid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.centerNote {
  max-width: 740px;
  margin: 46px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}

.darkBand {
  padding: 76px 40px;
  background: var(--dark);
}

.darkBand h2,
.darkBand p {
  color: var(--soft-white);
}

.darkBand p {
  color: rgba(251, 247, 240, 0.7);
  font-size: 17px;
  line-height: 1.85;
}

.darkBand p + p {
  margin-top: 18px;
}

.darkBand strong {
  color: var(--soft-white);
}

.letterRow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.letterRow span {
  border: 1px solid rgba(251, 247, 240, 0.18);
  color: rgba(251, 247, 240, 0.82);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1;
  padding: 24px 10px;
  text-align: center;
}

.detailsSection,
.faqSection,
.finalCta,
.contrastLists {
  padding: 76px 40px;
  background: var(--cream);
}

.detailsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 38px;
}

.detailsGrid p {
  border: 1px solid var(--border);
  background: var(--cream-2);
  padding: 24px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
}

.detailsGrid span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inlineLink {
  color: var(--accent);
  font-weight: 500;
}

.miniList {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.weeksCard {
  display: grid;
  min-height: 280px;
  place-items: center;
  background: var(--dark);
  color: var(--soft-white);
}

.weeksCard strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(96px, 12vw, 150px);
  font-weight: 300;
  line-height: 0.8;
}

.weeksCard span {
  display: block;
  color: rgba(251, 247, 240, 0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

details {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

details:last-child {
  border-bottom: 1px solid var(--border);
}

summary {
  cursor: pointer;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
}

details p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.finalCta {
  background: var(--cream-2);
  text-align: center;
}

.finalCta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.finalCta p + p {
  margin-top: 10px;
}

.finalCta .button {
  margin-top: 36px;
}

.twoCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.twoCards h2 {
  margin-bottom: 24px;
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 500;
}

.twoCards h2 em {
  font-style: italic;
}

.offerCard.dark h2,
.offerCard.dark li {
  color: var(--soft-white);
}

.iconList {
  display: grid;
  gap: 16px;
}

.iconList li {
  display: grid;
  grid-template-columns: 28px 1fr;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.iconList.cross li::before {
  content: "×";
  color: var(--accent);
}

.iconList.sparkle li::before {
  content: "✦";
  color: var(--accent);
}

.centeredText {
  text-align: center;
}

.centeredText .button {
  margin-top: 32px;
}

.aboutSection {
  background: var(--cream-2);
  padding: 76px 40px;
}

.aboutWrap {
  display: flex;
  align-items: flex-start;
  gap: 72px;
  max-width: 1060px;
  margin: 0 auto;
}

.headshotCard {
  display: block;
  flex: 0 0 auto;
  width: 268px;
  height: 328px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-3);
  color: rgba(27, 21, 16, 0.28);
}

.headshotCard img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.aboutCopy {
  flex: 1;
}

.aboutCopy .eyebrow {
  margin-bottom: 20px;
}

.aboutCopy h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}

.founder {
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.aboutCopy > p:not(.eyebrow):not(.founder) {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.credentialGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.credentialGrid div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.credentialGrid span {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 14px;
}

.credentialGrid p {
  color: var(--dark);
  font-size: 14px;
  line-height: 1.5;
}

.footer {
  background: var(--dark);
  padding: 48px 40px;
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer p {
  color: rgba(251, 247, 240, 0.35);
  font-size: 12px;
}

.footerBrand {
  margin-bottom: 6px;
  color: rgba(251, 247, 240, 0.65) !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px !important;
  font-weight: 500;
}

@media (max-width: 860px) {
  .navInner {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 18px 24px;
  }

  .navLinks {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .navLinks a {
    font-size: 12px;
  }

  .navLinks .navCta {
    padding: 9px 14px;
    font-size: 11px;
  }

  .hero,
  .introSection,
  .offersSection,
  .aboutSection,
  .subHero,
  .splitStatement,
  .listSection,
  .creamPanel,
  .darkBand,
  .detailsSection,
  .faqSection,
  .finalCta,
  .contrastLists {
    padding-left: 24px;
    padding-right: 24px;
  }

  .offerGrid,
  .credentialGrid,
  .bulletGrid,
  .numberGrid,
  .takeawayGrid,
  .programGrid,
  .detailsGrid,
  .twoCards,
  .splitTwo {
    grid-template-columns: 1fr;
  }

  .aboutWrap {
    flex-direction: column;
    gap: 42px;
  }

  .headshotCard {
    width: 100%;
    max-width: 320px;
    height: 400px;
  }
}

@media (max-width: 520px) {
  .navInner {
    gap: 14px;
    padding: 16px 20px;
  }

  .brand {
    font-size: 18px;
    line-height: 1.15;
  }

  .navLinks {
    width: 100%;
    align-items: stretch;
    gap: 8px;
  }

  .navLinks a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
  }

  .navLinks .navCta {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .subHero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .introSection,
  .offersSection,
  .aboutSection,
  .creamPanel,
  .darkBand,
  .detailsSection,
  .faqSection,
  .finalCta,
  .contrastLists {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .splitStatement,
  .listSection {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .lede,
  .introSection p,
  .listSection p,
  .centerNote,
  .finalCta p,
  .darkBand p {
    font-size: 16px;
    line-height: 1.68;
  }

  .thoughtBox {
    margin-top: 32px;
    padding: 26px 24px;
  }

  .sectionHeading {
    margin-bottom: 32px;
  }

  .heroActions,
  .button {
    width: 100%;
  }

  .button {
    padding: 15px 18px;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.07em;
  }

  .offerCard {
    padding: 30px 24px;
  }

  .offerCard h3 {
    font-size: 23px;
  }

  .offerCard > p:not(.kicker) {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.65;
  }

  .numberGrid p,
  .programGrid article,
  .takeawayGrid p,
  .detailsGrid p {
    padding: 20px;
  }

  .letterRow {
    gap: 6px;
  }

  .letterRow span {
    padding: 18px 6px;
  }

  .headshotCard {
    max-width: none;
    height: 420px;
  }

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