
:root {
  --bg: #f2efe9;
  --bg-soft: #e7e2d9;
  --paper: #f8f6f1;
  --ink: #151514;
  --muted: #6f6d67;
  --line: rgba(21, 21, 20, 0.14);
  --olive: #777d6d;
  --dark: #181916;
  --dark-soft: #22231f;
  --light: #f5f2eb;
  --radius: 36px;
  --page: min(1400px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: #c9c4b7; color: #111; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--page);
  height: 64px;
  padding: 0 12px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(248, 246, 241, .75);
  border: 1px solid rgba(21,21,20,.08);
  backdrop-filter: blur(24px) saturate(140%);
  border-radius: 18px;
  z-index: 100;
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 20px 50px rgba(24, 23, 20, .12); background: rgba(248, 246, 241, .9); }
.brand { display: inline-flex; gap: 12px; align-items: center; font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.brand-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--light);
  background: var(--ink);
  font-size: 12px;
}
.desktop-nav { display: flex; gap: 30px; font-size: 13px; color: var(--muted); }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--ink); }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--light);
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.section-pad { width: var(--page); margin-inline: auto; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(42px, 6vw, 100px);
  align-items: center;
  padding-top: 132px;
  padding-bottom: 56px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 26px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
}
.hero h1 {
  margin: 0;
  font-size: clamp(72px, 8.4vw, 132px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 600;
}
h1 em, h2 em { font-family: "Playfair Display", Georgia, serif; font-weight: 500; }
.hero h1 em { display: inline-block; margin-left: .38em; color: var(--olive); }
.hero-lead {
  max-width: 660px;
  margin: 48px 0 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.48;
  letter-spacing: -.035em;
  color: #3f3e3a;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button span { font-size: 18px; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--light); box-shadow: 0 18px 40px rgba(21,21,20,.15); }
.button-primary:hover { box-shadow: 0 24px 54px rgba(21,21,20,.22); }
.duration { font-size: 13px; color: var(--muted); }

.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(100%, 520px);
  justify-self: end;
}
.photo-frame {
  position: relative;
  padding: 10px;
  background: rgba(248,246,241,.82);
  border: 1px solid rgba(21,21,20,.12);
  box-shadow: 0 42px 90px rgba(38,37,33,.16);
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: -15px 15px 15px -15px;
  border: 1px solid rgba(119,125,109,.28);
  z-index: -1;
}
.photo-frame img,
.photo-frame video,
.practice-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-photo figcaption {
  margin-top: 22px;
  display: grid;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.hero-photo figcaption strong { color: var(--ink); font-size: 14px; }
.hero-glow {
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -18vw;
  top: 5vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 160, 141, .28), transparent 68%);
  filter: blur(18px);
}

.statement { padding-top: 160px; padding-bottom: 160px; display: grid; grid-template-columns: 100px 1fr; gap: 60px 32px; }
.statement-number { font-size: 13px; color: var(--muted); padding-top: 8px; }
.statement-content h2,
.section-head h2,
.observation-sticky h2,
.benefits-card h2,
.boundaries h2,
.final-cta h2,
.fit-top h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 600;
}
.statement-content h2 em { color: var(--olive); }
.symptoms { grid-column: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.symptoms article { background: var(--bg); padding: 32px 28px; display: grid; grid-template-columns: 36px 1fr; gap: 18px; min-height: 150px; }
.symptoms span { color: var(--olive); font-size: 12px; font-weight: 700; }
.symptoms p { margin: 0; font-size: 17px; line-height: 1.5; letter-spacing: -.02em; }

.dark-section {
  width: 100%;
  background: var(--dark);
  color: var(--light);
  padding: 150px max(24px, calc((100vw - min(1400px, calc(100vw - 48px))) / 2));
}
.eyebrow-light { color: #9fa593; }
.section-head { max-width: 1060px; }
.section-head h2 em { color: #9fa593; }
.format-grid { margin-top: 90px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.format-card { min-height: 340px; padding: 30px; border: 1px solid rgba(245,242,235,.12); border-radius: 24px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.05)); }
.format-icon { margin-bottom: auto; font-size: 42px; color: #a9ae9e; }
.format-card h3 { margin: 0 0 14px; font-size: 22px; letter-spacing: -.035em; }
.format-card p { margin: 0; color: rgba(245,242,235,.62); line-height: 1.55; font-size: 14px; }
.quote { margin-top: 90px; max-width: 950px; }
.quote p { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(30px, 4vw, 56px); line-height: 1.2; color: rgba(245,242,235,.86); }

.practice-interlude {
  padding-top: 150px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: center;
}
.practice-photo {
  margin: 0;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 42px 90px rgba(38,37,33,.12);
}
.practice-message h2 {
  margin: 0;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 600;
}
.practice-message h2 em { color: var(--olive); }
.practice-message > p:last-child {
  max-width: 680px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.observation { padding-top: 160px; padding-bottom: 160px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; align-items: start; }
.observation-sticky { position: sticky; top: 120px; }
.observation-sticky h2 { font-size: clamp(48px, 5.4vw, 78px); }
.observation-sticky > p:last-child { max-width: 520px; margin: 40px 0 0; color: var(--muted); line-height: 1.7; font-size: 16px; }
.observation-list { border-top: 1px solid var(--line); }
.observation-list article { display: grid; grid-template-columns: 56px 180px 1fr; gap: 22px; align-items: baseline; padding: 36px 0; border-bottom: 1px solid var(--line); }
.observation-list span { color: var(--olive); font-size: 12px; font-weight: 700; }
.observation-list h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.observation-list p { margin: 0; line-height: 1.6; color: var(--muted); }

.process { padding-top: 60px; padding-bottom: 160px; }
.process .section-head { max-width: 900px; }
.process .section-head h2 { color: var(--ink); }
.timeline { margin-top: 90px; }
.timeline-item { display: grid; grid-template-columns: 160px 1fr; gap: 48px; padding: 40px 0; border-top: 1px solid var(--line); }
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-number { font-family: "Playfair Display", Georgia, serif; font-size: 54px; color: var(--olive); }
.timeline-item h3 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 42px); letter-spacing: -.04em; }
.timeline-item p { max-width: 720px; margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted); }
.process-meta { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.process-meta span { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; }

.benefits { padding-bottom: 160px; }
.benefits-card { background: var(--paper); border-radius: var(--radius); padding: clamp(36px, 6vw, 88px); display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; box-shadow: 0 50px 100px rgba(42,39,31,.08); }
.benefits-card h2 { font-size: clamp(44px, 5.6vw, 78px); }
.benefits-card h2 em { color: var(--olive); }
.benefits-card ul { list-style: none; margin: 0; padding: 0; align-self: end; }
.benefits-card li { padding: 20px 0 20px 34px; border-bottom: 1px solid var(--line); position: relative; font-size: 16px; line-height: 1.45; }
.benefits-card li::before { content: "•"; position: absolute; left: 4px; color: var(--olive); }
.benefits-note { max-width: 720px; margin: 24px 0 0 auto; color: var(--muted); font-size: 13px; line-height: 1.6; }

.expert { padding-top: 60px; padding-bottom: 160px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.expert-visual { margin: 0; display: grid; gap: 24px; }
.photo-frame-expert { width: min(100%, 520px); }
.expert-visual figcaption { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.expert-copy h2 { margin: 0; font-size: clamp(48px, 6.2vw, 88px); line-height: .98; letter-spacing: -.06em; }
.expert-intro { margin: 24px 0 44px; font-size: 22px; line-height: 1.45; letter-spacing: -.03em; }
.credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.credentials p { margin: 0; }
.expert blockquote { margin: 52px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line); font-family: "Playfair Display", Georgia, serif; font-size: clamp(26px, 3vw, 42px); line-height: 1.28; }

.fit { padding-bottom: 140px; }
.fit-card { background: var(--bg-soft); border-radius: var(--radius); padding: clamp(34px, 6vw, 80px); }
.fit-top { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.fit-top h2 { max-width: 600px; text-align: right; font-size: clamp(48px, 6vw, 84px); }
.fit-steps { margin: 76px 0 46px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fit-steps div { background: rgba(248,246,241,.65); border-radius: 20px; padding: 24px; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; }
.fit-steps span { color: var(--olive); font-size: 12px; font-weight: 700; }
.fit-steps p { margin: 42px 0 0; line-height: 1.55; font-size: 14px; }
.button-large { width: 100%; min-height: 68px; }

.boundaries { padding: 110px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.boundaries h2 { font-size: clamp(42px, 5vw, 72px); }
.boundaries > p { margin: 38px 0 0; color: var(--muted); line-height: 1.75; font-size: 15px; }

.final-cta {
  position: relative;
  width: 100%;
  min-height: 760px;
  padding: 150px max(24px, calc((100vw - min(1400px, calc(100vw - 48px))) / 2));
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--light);
}
.final-cta > div:last-child { position: relative; z-index: 2; max-width: 1060px; }
.final-cta h2 { font-size: clamp(48px, 7vw, 104px); }
.final-cta h2 em { color: #a7ad9b; }
.final-cta p:not(.eyebrow) { max-width: 680px; margin: 36px auto; color: rgba(245,242,235,.64); line-height: 1.7; }
.button-light { background: var(--light); color: var(--ink); min-width: 280px; }
.final-orbit { position: absolute; width: 780px; height: 780px; border: 1px solid rgba(245,242,235,.08); border-radius: 50%; }
.final-orbit::before, .final-orbit::after { content: ""; position: absolute; border: 1px solid rgba(245,242,235,.08); border-radius: 50%; inset: 14%; }
.final-orbit::after { inset: 30%; }

.site-footer { width: var(--page); margin: 0 auto; min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer div { display: flex; flex-direction: column; gap: 5px; }
.site-footer strong { font-size: 14px; }
.site-footer span, .site-footer a { color: var(--muted); font-size: 12px; }
.mobile-sticky { display: none; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 1080px) {
  :root { --page: min(100% - 32px, 960px); }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-photo { width: min(100%, 620px); justify-self: center; }
  .hero h1 em { margin-left: .12em; }
  .practice-interlude { grid-template-columns: .9fr 1.1fr; gap: 54px; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .observation { grid-template-columns: 1fr; gap: 70px; }
  .observation-sticky { position: static; }
  .benefits-card { grid-template-columns: 1fr; gap: 60px; }
  .expert { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .fit-steps { grid-template-columns: repeat(2, 1fr); }
  .boundaries { gap: 50px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 28px); --radius: 24px; }
  body { padding-bottom: 74px; }
  .site-header { top: 10px; height: 56px; border-radius: 15px; padding-left: 12px; }
  .brand-text, .header-cta { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(58px, 19vw, 92px); line-height: .86; }
  .hero h1 em { display: block; margin: .04em 0 0 .18em; }
  .hero-lead { margin-top: 32px; font-size: 19px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .duration { text-align: center; }
  .hero-photo { width: 100%; margin-top: 18px; }
  .photo-frame { padding: 7px; }
  .photo-frame::before { inset: -9px 9px 9px -9px; }
  .hero-photo figcaption { margin-top: 17px; }

  .statement { padding-top: 100px; padding-bottom: 110px; grid-template-columns: 1fr; gap: 26px; }
  .statement-number { display: none; }
  .statement-content h2, .section-head h2, .observation-sticky h2, .benefits-card h2, .boundaries h2, .final-cta h2, .fit-top h2 { font-size: clamp(38px, 12vw, 58px); }
  .symptoms { grid-column: 1; grid-template-columns: 1fr; }
  .symptoms article { min-height: 0; padding: 24px 10px; }

  .dark-section { padding-top: 100px; padding-bottom: 100px; }
  .format-grid { grid-template-columns: 1fr; margin-top: 56px; }
  .format-card { min-height: 260px; }
  .quote { margin-top: 60px; }

  .practice-interlude { padding-top: 100px; padding-bottom: 80px; grid-template-columns: 1fr; gap: 48px; }
  .practice-message h2 { font-size: clamp(38px, 12vw, 58px); }
  .practice-message > p:last-child { margin-top: 30px; font-size: 16px; }

  .observation { padding-top: 80px; padding-bottom: 110px; }
  .observation-list article { grid-template-columns: 36px 1fr; gap: 12px; }
  .observation-list article p { grid-column: 2; }
  .observation-list h3 { font-size: 20px; }

  .process { padding-bottom: 110px; }
  .timeline { margin-top: 58px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; padding: 30px 0; }
  .timeline-number { font-size: 36px; }

  .benefits { padding-bottom: 110px; }
  .benefits-card { padding: 32px 22px; gap: 44px; }
  .benefits-note { margin-top: 18px; }

  .expert { padding-top: 0; padding-bottom: 110px; grid-template-columns: 1fr; gap: 54px; }
  .photo-frame-expert { width: 100%; }
  .credentials { grid-template-columns: 1fr; }

  .fit { padding-bottom: 100px; }
  .fit-card { padding: 32px 20px; }
  .fit-top { display: block; }
  .fit-top h2 { text-align: left; }
  .fit-steps { margin-top: 50px; grid-template-columns: 1fr; }
  .fit-steps div { min-height: 150px; }

  .boundaries { padding: 90px 0; grid-template-columns: 1fr; gap: 0; }
  .final-cta { min-height: 680px; padding-top: 100px; padding-bottom: 100px; }
  .final-orbit { width: 480px; height: 480px; }
  .site-footer { min-height: 130px; }
  .site-footer span { max-width: 190px; }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 110;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(21,21,20,.92);
    color: var(--light);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(0,0,0,.2);
    backdrop-filter: blur(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

  



/* Pricing */
.pricing {
  padding-top: 40px;
  padding-bottom: 170px;
}
.pricing-head {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 34px 72px;
  align-items: end;
  margin-bottom: 78px;
}
.pricing-head .eyebrow { align-self: start; padding-top: 12px; }
.pricing-head h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 90px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 600;
}
.pricing-head h2 span,
.pricing-head h2 em {
  display: block;
}
.pricing-head h2 em {
  margin-top: .06em;
  color: var(--olive);
  line-height: 1.08;
}
.pricing-head > p:last-child {
  grid-column: 2;
  max-width: 760px;
  margin: -12px 0 0;
  color: #595750;
  font-size: 18px;
  line-height: 1.68;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  min-height: 790px;
  padding: clamp(36px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pricing-card-session {
  background: var(--paper);
  box-shadow: 0 38px 90px rgba(42,39,31,.08);
}
.pricing-card-month {
  background: var(--dark);
  color: var(--light);
  border-color: rgba(245,242,235,.12);
  box-shadow: 0 50px 110px rgba(23,23,21,.19);
}
.pricing-card-month::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -240px;
  top: -245px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,169,148,.22), transparent 67%);
  pointer-events: none;
}
.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(245,242,235,.18);
  border-radius: 999px;
  color: rgba(245,242,235,.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-card-head { position: relative; z-index: 1; }
.pricing-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--olive);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pricing-card-month .pricing-kicker { color: #b4baa8; }
.pricing-card h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 600;
}
.pricing-price {
  margin-top: 36px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 600;
  white-space: nowrap;
}
.pricing-price span {
  display: inline-block;
  margin-left: 5px;
  font-size: .42em;
  letter-spacing: -.03em;
  color: var(--olive);
  transform: translateY(-.13em);
}
.pricing-card-month .pricing-price span { color: #b4baa8; }
.pricing-summary {
  max-width: 620px;
  margin: 24px 0 0;
  color: #595750;
  font-size: 17px;
  line-height: 1.62;
}
.pricing-card-month .pricing-summary { color: rgba(245,242,235,.78); }
.pricing-content {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pricing-card-month .pricing-content { border-color: rgba(245,242,235,.15); }
.pricing-label {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-card li {
  position: relative;
  padding: 15px 0 15px 27px;
  border-bottom: 1px solid var(--line);
  color: #5f5c55;
  font-size: 16px;
  line-height: 1.6;
}
.pricing-card-month li {
  border-color: rgba(245,242,235,.11);
  color: rgba(245,242,235,.8);
}
.pricing-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--olive);
}
.pricing-card-month li::before { color: #b4baa8; }
.pricing-card-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-radius: 17px;
  background: rgba(119,125,109,.09);
  color: #4f4d47;
  font-size: 15px;
  line-height: 1.62;
}
.pricing-explanation {
  margin: 28px 0 0;
  color: rgba(245,242,235,.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  line-height: 1.48;
}
.pricing-button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 62px;
  margin-top: auto;
}
.pricing-note {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
  color: #65625b;
  font-size: 14px;
  line-height: 1.65;
}


@media (max-width: 1080px) {
  .pricing-head { grid-template-columns: 1fr; gap: 24px; }
  .pricing-head > p:last-child { grid-column: 1; margin: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: auto; }
}

@media (max-width: 760px) {
  body { padding-bottom: 0; }
  .brand-text { display: inline; font-size: 11px; }
  .header-cta { display: none; }
  .mobile-sticky { display: none; }
}

@media (max-width: 720px) {
  .pricing { padding-top: 24px; padding-bottom: 110px; }
  .pricing-head {
    display: block;
    width: 100%;
    margin-bottom: 42px;
  }
  .pricing-head .eyebrow {
    padding-top: 0;
    margin-bottom: 18px;
  }
  .pricing-head h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(31px, 8.9vw, 38px);
    line-height: 1.04;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .pricing-head h2 span {
    line-height: 1.05;
  }
  .pricing-head h2 em {
    margin-top: .12em;
    line-height: 1.12;
    padding-bottom: .04em;
  }
  .pricing-head > p:last-child {
    width: 100%;
    max-width: none;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }
  .pricing-grid { gap: 14px; }
  .pricing-card { padding: 31px 24px; border-radius: 25px; }
  .pricing-card h3 { font-size: clamp(34px, 10vw, 49px); }
  .pricing-price { font-size: clamp(54px, 16vw, 72px); }
  .pricing-summary { font-size: 16px; }
  .pricing-content { margin-top: 34px; padding-top: 24px; }
  .pricing-card li { padding-top: 13px; padding-bottom: 13px; font-size: 15px; }
  .pricing-badge { position: static; width: fit-content; margin: 0 0 30px; }
  .pricing-explanation { font-size: 20px; }
  .pricing-button { margin-top: 34px; }
}
