:root {
  --cream: #f6efe4;
  --paper: #fffaf3;
  --sand: #dfc7a7;
  --clay: #a85a3a;
  --red: #7c1712;
  --red-dark: #57110e;
  --cta-green: #285b51;
  --cta-green-dark: #1f493f;
  --green: #263c2d;
  --green-soft: #e8ecdf;
  --ink: #251d18;
  --muted: #66574f;
  --line: rgba(37, 29, 24, 0.14);
  --shadow: 0 24px 80px rgba(43, 31, 22, 0.14);
  --shadow-soft: 0 24px 80px rgba(43, 31, 22, 0.14);
  --section-space: 104px;
  --section-space-sm: 78px;
  --container: 1160px;
  --radius-card: 30px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.container.wide {
  width: min(1320px, calc(100% - 32px));
}
.container.narrow {
  width: min(820px, calc(100% - 40px));
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(246, 239, 228, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(246, 239, 228, 0.96);
  box-shadow: 0 10px 40px rgba(37, 29, 24, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
}
.brand img {
  width: 174px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}
.main-nav a {
  position: relative;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.24s ease;
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--cta-green);
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(40, 91, 81, 0.22);
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--cta-green-dark);
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: 0.2s ease;
}
.section {
  padding: var(--section-space) 0;
}
.section-dark {
  background: var(--green);
  color: #fff;
}
.section-green {
  background: var(--green);
  color: #fff;
}
.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(24, 29, 20, 0.82),
      rgba(24, 29, 20, 0.48) 46%,
      rgba(24, 29, 20, 0.14)
    ),
    linear-gradient(
      0deg,
      rgba(24, 29, 20, 0.55),
      rgba(24, 29, 20, 0.08) 48%,
      rgba(24, 29, 20, 0.25)
    );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 105px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--sand);
  margin: 0 0 18px;
}
.eyebrow.dark {
  color: var(--red);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  margin: 0;
}
h1 {
  font-size: clamp(58px, 4.5vw, 118px);
  max-width: 930px;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.028em;
}
h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.012em;
}
.hero-lede {
  font-family: var(--serif);
  font-size: clamp(26px, 3.1vw, 43px);
  line-height: 1.05;
  max-width: 760px;
  margin: 24px 0 0;
}
.hero-sub {
  max-width: 650px;
  font-size: 19px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.22s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--cta-green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(40, 91, 81, 0.28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cta-green-dark);
  transform: translateY(-1px);
}
.btn-primary:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(223, 199, 167, 0.82);
  outline-offset: 3px;
}
.btn-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--green);
}
.btn.full {
  width: 100%;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.55);
  margin: 10px auto 0;
}
.two-col {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: min(7vw, 90px);
  align-items: center;
}
.align-start {
  align-items: start;
}
.section-kicker {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
  color: rgba(124, 23, 18, 0.18);
  letter-spacing: -0.045em;
}
.copy-block p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}
.copy-block h2 + p,
.copy-block h3 + ul {
  margin-top: 24px;
}
.copy-block h3 {
  font-size: 29px;
  margin: 22px 0 8px;
}
.symptoms-panel {
  padding: var(--section-space-sm) 0 20px;
}
.symptoms-title {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
  color: var(--green);
}
.image-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #222;
}
.image-card img {
  width: 100%;
  height: auto;
}
.support-text {
  width: min(1024px, 100%);
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  color: var(--green);
}
.split-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 64px;
  box-shadow: var(--shadow);
}
.doctor {
  background: linear-gradient(180deg, var(--cream), #efe3d2);
}
.doctor-grid {
  grid-template-columns: 0.9fr 1.1fr;
}
.portrait-wrap {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.doctor-title {
  font-weight: 800;
  color: var(--red) !important;
  letter-spacing: 0.02em;
}
.copy-block blockquote {
  margin: 30px 0 0;
  padding: 25px 28px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.12;
  color: var(--green);
}
.section-heading {
  text-align: center;
  width: min(900px, 100%);
  margin: 0 auto 46px;
}
.section-heading p {
  font-size: 18px;
  color: var(--muted);
}
.section-heading.light p,
.section-heading.light h2 {
  color: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  min-height: 270px;
  transition: 0.2s ease;
}
.feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-grid h3 {
  font-size: 28px;
  margin: 18px 0 12px;
}
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--red);
  font-size: 18px;
}
.therapy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.therapy-columns article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 32px;
}
.therapy-columns h3 {
  font-size: 31px;
  color: #fff;
  margin-bottom: 20px;
}
.therapy-columns ul,
.list-card ul,
.clean-list,
.inclusion-grid ul {
  margin: 0;
  padding-left: 20px;
}
.therapy-columns li {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}
.day {
  background: var(--paper);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: item;
}
.timeline-item {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  min-height: 230px;
}
.timeline-item::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  right: 26px;
  top: 22px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: rgba(124, 23, 18, 0.16);
}
.timeline-item span {
  display: block;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 14px;
}
.timeline-item h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
}
.list-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
}
.list-card h2 {
  font-size: 44px;
  margin-bottom: 24px;
}
.list-card li {
  margin: 12px 0;
  color: var(--muted);
}
.list-card.yes {
  border-top: 5px solid var(--green);
}
.list-card.no {
  border-top: 5px solid var(--red);
}
.note {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--green-soft);
  font-weight: 700;
  color: var(--green);
  margin: 24px 0 0;
}
.clean-list li {
  margin: 10px 0;
  color: var(--muted);
}
.benefits-band {
  padding: 82px 0;
  background: linear-gradient(135deg, #efe2cf, #f9f3e9);
  text-align: center;
  border-block: 1px solid var(--line);
}
.benefits-band h2 {
  margin-bottom: 28px;
}
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}
.benefit-grid span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  font-weight: 700;
  color: var(--green);
}
.benefits-question {
  margin: 0 0 26px;
  color: var(--green);
  font-size: 20px;
}
.location-overlay {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green);
}
.location-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(24, 29, 20, 0.86),
      rgba(24, 29, 20, 0.54) 50%,
      rgba(24, 29, 20, 0.18)
    ),
    linear-gradient(0deg, rgba(24, 29, 20, 0.24), rgba(24, 29, 20, 0.1));
}
.location-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 70px;
  color: #fff;
}
.location-copy h2,
.location-copy p {
  color: #fff;
}
.location-copy .eyebrow {
  color: var(--sand);
}
.testimonial {
  padding: 98px 0;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.08;
  margin: 0;
  color: #fff;
}
.quote-author {
  margin: 28px 0 0;
  color: var(--sand);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-card {
  position: sticky;
  top: 110px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.booking-card h3 {
  font-size: 38px;
  margin-bottom: 14px;
}
.booking-card p {
  color: var(--muted);
  margin: 0 0 18px;
}
.booking-card .btn {
  margin-top: 10px;
}
.microcopy {
  font-size: 12px !important;
  margin-top: 18px !important;
}
.pricing {
  background: var(--paper);
}
.validity-note {
  margin-top: 16px !important;
  color: var(--red) !important;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  text-align: center;
}
.price-card.featured {
  background: var(--green);
  color: #fff;
}
.price-card h3 {
  font-size: 38px;
}
.price-card p {
  color: var(--muted);
}
.price-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}
.price-card strong {
  display: block;
  font-size: 22px;
  color: var(--red);
}
.price-card.featured strong {
  color: var(--sand);
}
.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inclusion-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
}
.inclusion-grid h3 {
  font-size: 34px;
  margin-bottom: 16px;
}
.inclusion-grid li {
  margin: 10px 0;
  color: var(--muted);
}
.final-cta {
  padding: 112px 0;
  text-align: center;
  background: linear-gradient(rgba(38, 60, 45, 0.92), rgba(38, 60, 45, 0.92)),
    url("assets/sitaram-postcard-old-goa-retreat.webp") center/cover;
}
.final-cta h2 {
  color: #fff;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin: 25px auto 34px;
  max-width: 720px;
}
.site-footer {
  background: #160f0c;
  color: rgba(255, 255, 255, 0.72);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner img {
  filter: brightness(1.8);
  width: 150px;
  height: auto;
}
.footer-inner a:last-child {
  font-weight: 800;
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.editorial-intro {
  background: linear-gradient(180deg, var(--cream), #fbf5ed);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: min(7vw, 86px);
  align-items: start;
}
.intro-copy h2 {
  max-width: 720px;
}
.intro-copy p:last-child {
  max-width: 660px;
  font-size: 18px;
  margin-top: 28px;
}
.clinical-card {
  background: #fffaf0;
  border: 1px solid rgba(168, 90, 58, 0.18);
  border-radius: 28px;
  padding: 34px 34px 38px;
  box-shadow: 0 22px 70px rgba(43, 31, 22, 0.1);
  position: relative;
}
.clinical-card::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}
.clinical-card h3 {
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.02;
  color: var(--green);
  margin-bottom: 18px;
}
.clinical-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.third-choice-callout {
  margin-top: 54px;
  background: var(--green);
  color: #fff;
  border-radius: 30px;
  padding: 38px clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: center;
}
.third-choice-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}
.third-choice-callout strong {
  font-family: var(--serif);
  font-size: clamp(32px, 2.5vw, 56px);
  line-height: 1.02;
  font-weight: 600;
  color: var(--sand);
}
.intro-closing {
  width: min(860px, 100%);
  margin: 34px auto 0;
  text-align: center;
}
.intro-closing p {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 1.12;
  color: var(--green);
  margin: 0;
}
.retreat-slider {
  margin: 0 auto 42px;
}
.slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--green);
  box-shadow: var(--shadow);
}
.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}
.slider-slide {
  flex: 0 0 100%;
  margin: 0;
  background: #1b231c;
}
.slider-slide img {
  width: 100%;
  height: clamp(320px, 50vw, 610px);
  object-fit: cover;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 250, 243, 0.88);
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  transition: 0.2s ease;
}
.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.03);
}
.slider-prev {
  left: 18px;
}
.slider-next {
  right: 18px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(38, 60, 45, 0.28);
  padding: 0;
  cursor: pointer;
}
.slider-dots button[aria-current="true"] {
  background: var(--red);
  width: 28px;
}
.site-header {
  background: rgba(246, 239, 228, 0.76);
  border-bottom-color: rgba(37, 29, 24, 0.1);
}
.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 12px 34px rgba(37, 29, 24, 0.07);
}
.header-inner {
  padding: 9px 0;
}
.brand img {
  width: 150px;
}
.main-nav {
  gap: 18px;
  font-size: 12px;
}
.nav-cta {
  padding: 9px 14px;
  box-shadow: 0 8px 20px rgba(124, 23, 18, 0.14);
}
.day .section-heading {
  margin-bottom: 34px;
}
.retreat-slider {
  margin-bottom: 34px;
}
.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.timeline-item {
  min-height: 0;
  padding: 28px 28px 30px;
  background: linear-gradient(180deg, #fffaf3, #f4eadc);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 52px rgba(43, 31, 22, 0.09);
}
.timeline-item::before {
  font-size: 38px;
  right: 22px;
  top: 22px;
  color: rgba(124, 23, 18, 0.1);
}
.timeline-item .day-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(124, 23, 18, 0.13);
  color: var(--red);
  margin-bottom: 18px;
}
.timeline-item .day-icon svg,
.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.timeline-item span:not(.day-icon) {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.timeline-item h3 {
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 10px;
}
.timeline-item p {
  font-size: 15px;
  line-height: 1.65;
}
.benefits-band {
  padding: 76px 0;
  background: linear-gradient(180deg, #f9f3e9, #efe2cf);
}
.benefits-band h2 {
  font-size: clamp(36px, 4.4vw, 58px);
  margin-bottom: 26px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.benefit-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.76);
  padding: 16px 17px;
  line-height: 1.35;
  box-shadow: 0 14px 38px rgba(43, 31, 22, 0.07);
}
.benefit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--red);
}
.testimonial {
  padding: 86px 0;
  background: linear-gradient(180deg, var(--green), #1f3326);
}
.testimonial .container {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: 48px 54px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}
.testimonial h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: #fff;
  margin-bottom: 24px;
}
.testimonial blockquote {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.3;
  text-align: left;
}
.testimonial blockquote::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-size: 70px;
  line-height: 0.6;
  color: var(--sand);
  margin-bottom: 4px;
}
.testimonial blockquote p {
  margin: 0 0 18px;
}
.testimonial-finale {
  display: block;
  color: var(--sand);
  font-weight: 700;
}
.quote-author {
  text-align: left;
  margin-top: 24px;
}
.pricing .section-heading {
  margin-bottom: 34px;
}
.validity-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(124, 23, 18, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--red) !important;
}
.pricing-grid {
  gap: 24px;
  margin-bottom: 30px;
}
.price-card {
  position: relative;
  text-align: left;
  padding: 34px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #fffaf3, #f3e8d9);
  box-shadow: 0 18px 52px rgba(43, 31, 22, 0.08);
}
.price-card.featured {
  background: linear-gradient(180deg, var(--green), #1f3326);
}
.price-card h3 {
  font-size: 34px;
  margin-bottom: 14px;
}
.price-card p {
  font-size: 15px;
  margin: 0 0 22px;
}
.price-card strong {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.03;
}
.price-card strong span {
  display: block;
  width: max-content;
  max-width: 100%;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(124, 23, 18, 0.1);
  color: var(--red);
  padding: 7px 10px;
  margin-bottom: 12px;
}
.price-card.featured strong span {
  background: rgba(223, 199, 167, 0.16);
  color: var(--sand);
}
.inclusion-grid article {
  border-radius: var(--radius-card);
  box-shadow: 0 14px 42px rgba(43, 31, 22, 0.06);
}
.inclusion-grid h3 {
  font-size: 30px;
}
.inclusion-grid li {
  line-height: 1.55;
}
.site-footer {
  background: var(--green);
  color: rgba(255, 250, 243, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 0;
}
.footer-inner {
  position: relative;
}
.footer-inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  height: 1px;
  background: rgba(223, 199, 167, 0.22);
}
.footer-inner img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  width: 132px;
}
.footer-inner p {
  margin: 0;
  font-size: 14px;
}
.footer-inner a:last-child {
  color: var(--sand);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav a {
    padding: 13px 14px;
  }
  .nav-cta {
    text-align: center;
  }
  .two-col,
  .split-card,
  .doctor-grid,
  .location-grid,
  .intro-grid,
  .third-choice-callout {
    grid-template-columns: 1fr;
  }
  .split-card {
    padding: 38px;
  }
  .feature-grid,
  .therapy-columns,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: var(--section-space-sm) 0;
  }
  .location-overlay {
    min-height: 620px;
  }
  .location-copy {
    padding: 48px;
    width: min(620px, 100%);
  }
  .booking-card {
    position: static;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .quote-author {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .container.wide {
    width: min(100% - 24px, 1320px);
  }
  .brand img {
    width: 138px;
  }
  .header-inner {
    padding: 10px 0;
  }
  .hero {
    min-height: 720px;
  }
  .hero-overlay {
    background: linear-gradient(
        0deg,
        rgba(24, 29, 20, 0.78),
        rgba(24, 29, 20, 0.36)
      ),
      linear-gradient(90deg, rgba(24, 29, 20, 0.62), rgba(24, 29, 20, 0.2));
  }
  .hero-content {
    padding: 70px 0 90px;
  }
  .hero-actions {
    display: grid;
  }
  .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
  .feature-grid,
  .therapy-columns,
  .timeline,
  .pricing-grid,
  .inclusion-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 40px 0;
  }
  .split-card,
  .list-card,
  .booking-card,
  .clinical-card {
    padding: 28px;
    border-radius: 26px;
  }
  .third-choice-callout {
    padding: 30px 24px;
    border-radius: 26px;
  }
  .symptoms-panel {
    padding: 58px 0 62px;
  }
  .symptoms-title {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .slider-viewport {
    border-radius: 26px;
  }
  .slider-slide img {
    height: 300px;
  }
  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
  .slider-prev {
    left: 10px;
  }
  .slider-next {
    right: 10px;
  }
  .timeline-item {
    padding: 24px;
  }
  .timeline-item h3 {
    font-size: 24px;
  }
  .benefit-grid span {
    padding: 15px 16px;
  }
  .testimonial {
    padding: 64px 0;
  }
  .testimonial .container {
    padding: 30px 24px;
    border-radius: 26px;
  }
  .testimonial blockquote {
    font-size: 22px;
  }
  .testimonial blockquote::before {
    font-size: 56px;
  }
  .location-overlay {
    min-height: auto;
  }
  .location-overlay img {
    position: absolute;
  }
  .location-overlay::after {
    background: linear-gradient(
      0deg,
      rgba(24, 29, 20, 0.9),
      rgba(24, 29, 20, 0.5)
    );
  }
  .location-copy {
    padding: 320px 24px 28px;
  }
  .location-copy h2 {
    font-size: 40px;
  }
  .benefits-question {
    font-size: 18px;
  }
  .price-card,
  .inclusion-grid article {
    padding: 28px;
    border-radius: 26px;
  }
  .price-card h3 {
    font-size: 31px;
  }
  .price-card strong {
    font-size: 30px;
  }
  h1 {
    font-size: 50px;
  }
  .support-text {
    font-size: 28px;
  }
  .copy-block blockquote {
    font-size: 27px;
  }
  .section-kicker {
    font-size: 54px;
  }
  .list-card h2 {
    font-size: 35px;
  }
}
@media (max-width: 430px) {
  h1 {
    font-size: 46px;
  }
  .hero-lede {
    font-size: 28px;
  }
  .slider-slide img {
    height: 270px;
  }
  .slider-btn {
    top: auto;
    bottom: 14px;
    transform: none;
  }
  .slider-btn:hover {
    transform: none;
  }
  .location-copy {
    padding-top: 280px;
  }
  .timeline-item {
    min-height: auto;
  }
}
@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, var(--container));
  }
  .hero {
    min-height: 690px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-sub {
    font-size: 17px;
  }
  .split-card,
  .list-card,
  .booking-card,
  .clinical-card,
  .third-choice-callout {
    padding: 24px;
  }
  .slider-slide img {
    height: 245px;
  }
  .location-copy {
    padding: 250px 20px 24px;
  }
  .location-copy h2 {
    font-size: 36px;
  }
  .footer-inner {
    gap: 16px;
  }
}
.benefit-grid > span {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.76);
  padding: 16px 17px;
  line-height: 1.35;
  box-shadow: 0 14px 38px rgba(43, 31, 22, 0.07);
}
.benefit-grid .benefit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(124, 23, 18, 0.1);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--red);
  padding: 0;
  box-shadow: none;
}
.benefit-grid .benefit-icon svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 640px) {
  .benefit-grid > span {
    padding: 15px 16px;
  }
}
:root {
  --container: 1200px;
  --container-wide: 1320px;
  --container-narrow: 820px;
  --section-space: 96px;
  --section-space-sm: 72px;
  --header-offset: 92px;
  --radius-card: 28px;
  --shadow-soft: 0 18px 58px rgba(43, 31, 22, 0.1);
}
html {
  scroll-padding-top: var(--header-offset);
}
section[id],
main[id] {
  scroll-margin-top: var(--header-offset);
}
.container.wide {
  width: min(var(--container-wide), calc(100% - 32px));
}
.container.narrow {
  width: min(var(--container-narrow), calc(100% - 40px));
}
.site-header {
  z-index: 80;
  background: rgba(246, 239, 228, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: none;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 8px 28px rgba(37, 29, 24, 0.07);
}
.header-inner {
  min-height: 64px;
  padding: 8px 0;
}
.brand img {
  width: 142px;
}
.main-nav {
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.075em;
}
.nav-cta {
  padding: 8px 13px;
}
h2 {
  font-size: clamp(34px, 4.1vw, 62px);
  line-height: 1.02;
}
.section-heading {
  width: min(1024px, 100%);
}
.section-heading p,
.copy-block p {
  line-height: 1.75;
}
.intro-copy h2 {
  font-size: clamp(40px, 3vw, 76px);
  max-width: 680px;
}
.intro-grid {
  gap: min(6vw, 72px);
}
.clinical-card {
  padding: 32px;
  border-radius: var(--radius-card);
}
.third-choice-callout {
  margin-top: 44px;
}
.intro-closing {
  margin-top: 30px;
}
.intro-closing p {
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.2;
}
.therapies {
  background: linear-gradient(180deg, #263c2d, #1e3326);
}
.therapies .container,
.day .container,
.fit .container,
.location .container,
.pricing .container,
.consultation .container {
  width: min(var(--container-wide), calc(100% - 48px));
}
.therapies .section-heading {
  margin-bottom: 36px;
}
.therapy-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.therapy-columns article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-card);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.095),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}
.therapy-icon,
.fit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(223, 199, 167, 0.16);
  border: 1px solid rgba(223, 199, 167, 0.24);
  color: var(--sand);
  margin-bottom: 18px;
}
.therapy-icon svg,
.fit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.therapy-columns h3 {
  font-size: 28px;
  line-height: 1.08;
}
.therapy-columns li {
  line-height: 1.55;
}
.fit {
  background: linear-gradient(180deg, var(--cream), #f2e7d8);
}
.fit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.fit-layout .list-card {
  height: 100%;
  padding: 36px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.fit-layout .list-card h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}
.fit-layout .fit-icon {
  background: var(--green-soft);
  border-color: rgba(38, 60, 45, 0.13);
  color: var(--green);
}
.fit-layout .no .fit-icon {
  background: #f3dfd6;
  color: var(--red);
}
.fit-layout li {
  line-height: 1.58;
}
.fit-layout .note {
  grid-column: 1/-1;
  margin: 0;
  padding: 22px 26px;
  text-align: center;
  border: 1px solid rgba(38, 60, 45, 0.12);
  box-shadow: 0 14px 38px rgba(43, 31, 22, 0.06);
}
.outcomes .split-card {
  width: min(var(--container-wide), calc(100% - 48px));
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  padding: 52px;
  border-radius: var(--radius-card);
}
.outcomes .split-card h2 {
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.06;
}
.outcomes .copy-block h3 {
  font-size: 27px;
}
.outcomes .clean-list li {
  padding-left: 4px;
  line-height: 1.58;
}
.location-overlay {
  min-height: 680px;
  border-radius: 32px;
}
.location-copy {
  width: min(640px, 100%);
  padding: 76px;
}
.location-copy h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.02;
}
.location-copy p {
  font-size: 17px;
  line-height: 1.78;
}
.location-overlay::after {
  background: linear-gradient(
      90deg,
      rgba(24, 29, 20, 0.82),
      rgba(24, 29, 20, 0.48) 48%,
      rgba(24, 29, 20, 0.12)
    ),
    linear-gradient(0deg, rgba(24, 29, 20, 0.18), rgba(24, 29, 20, 0.06));
}
.consultation {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}
.consultation-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.55fr);
  gap: min(6vw, 72px);
}
.consultation .copy-block {
  max-width: 780px;
}
.consultation .copy-block h2 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 16px;
}
.consultation .copy-block h3 {
  font-size: 27px;
  line-height: 1.18;
}
.consultation .clean-list li {
  line-height: 1.6;
  margin: 9px 0;
}
.booking-card {
  top: calc(var(--header-offset) + 18px);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.booking-card h3 {
  font-size: 32px;
  line-height: 1.08;
}
.pricing .container {
  width: min(1240px, calc(100% - 48px));
}
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.price-card {
  padding: 36px;
}
.inclusion-grid {
  gap: 24px;
}
.inclusion-grid article {
  padding: 32px 34px;
}
.testimonial .container {
  width: min(var(--container-wide), calc(100% - 32px));
}
.testimonial blockquote {
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.38;
}
.final-cta h2 {
  font-size: clamp(34px, 4vw, 58px);
}
@media (max-width: 1024px) {
  :root {
    --header-offset: 88px;
  }
  .therapies .container,
  .day .container,
  .fit .container,
  .location .container,
  .pricing .container,
  .consultation .container,
  .outcomes .split-card {
    width: min(100% - 40px, var(--container-wide));
  }
  .therapy-columns,
  .fit-layout {
    grid-template-columns: 1fr 1fr;
  }
  .consultation-grid {
    grid-template-columns: 1fr;
  }
  .booking-card {
    position: static;
  }
  .outcomes .split-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  :root {
    --header-offset: 82px;
    --section-space: 68px;
    --section-space-sm: 58px;
  }
  .therapies .container,
  .day .container,
  .fit .container,
  .location .container,
  .pricing .container,
  .consultation .container,
  .outcomes .split-card {
    width: min(100% - 28px, var(--container-wide));
  }
  .therapy-columns,
  .fit-layout,
  .pricing-grid,
  .inclusion-grid {
    grid-template-columns: 1fr;
  }
  .fit-layout .note {
    grid-column: auto;
  }
  .intro-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }
  .third-choice-callout {
    margin-top: 34px;
  }
  .symptoms-panel {
    padding-bottom: 28px;
  }
  .why {
    padding-top: 28px;
  }
  .outcomes .split-card {
    padding: 30px;
  }
  .location-overlay {
    min-height: auto;
  }
  .location-copy {
    padding: 300px 24px 28px;
  }
  .consultation .copy-block h2 {
    font-size: 38px;
  }
  .booking-card h3 {
    font-size: 30px;
  }
}
@media (max-width: 390px) {
  .location-copy {
    padding-top: 260px;
  }
  .price-card strong {
    font-size: 28px;
  }
  .testimonial .container {
    width: min(100% - 24px, 860px);
    padding: 28px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .btn,
  .feature-grid article {
    transition: none;
  }
}
