:root {
  --primary: #630100;
  --primary-dark: #4f0100;
  --secondary: #23212b;
  --ink: #22202a;
  --text: #6f6874;
  --line: #eadede;
  --soft: #fff5f4;
  --rose-soft: #f3e2e1;
  --white: #fff;
  --shadow: 0 18px 48px rgba(50, 37, 44, .14);
  --font-main: "Times New Roman", Times, serif;
  --text-sm: 19px;
  --text-base: 19px;
  --text-heading: 32px;
  --text-hero: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
small, button, input, textarea, select { font-size: 19px; }
p, li, small, input, textarea, select {
  font-size: var(--text-base);
}
a, button, .btn, .case-button, .package-footer {
  font-size: 19px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.wide-container { width: min(1380px, calc(100% - 30px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(15px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .95); box-shadow: 0 5px 25px rgba(0,0,0,.08); }
.nav-shell { height: 86px; width: min(1220px, calc(100% - 30px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 800; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; overflow: visible; flex: 0 0 42px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 2px; transform: translateY(-4px); }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--ink); font-weight: 700; font-size: var(--text-sm); }
.nav-links a:hover, .search-button:hover { color: var(--primary); }
.language-switch { display: inline-flex; align-items: center; gap: 2px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.78); white-space: nowrap; }
.language-switch button { min-width: 34px; height: 30px; border: 0; border-radius: 999px; background: transparent; color: var(--primary-dark); font: inherit; font-size: var(--text-sm); font-weight: 800; cursor: pointer; }
.language-switch button.is-active { background: var(--primary); color: var(--white); }
.search-button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; position: relative; display: grid; place-items: center; }
.search-button span { width: 17px; height: 17px; border: 2px solid currentColor; border-radius: 50%; display: block; position: relative; }
.search-button span::after { content: ""; position: absolute; width: 9px; height: 2px; background: currentColor; right: -7px; bottom: -4px; transform: rotate(45deg); transform-origin: center; border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); }
.quick-search { display: none; position: absolute; inset: 0; height: 86px; background: var(--white); align-items: center; gap: 12px; padding: 0 max(20px, calc((100vw - 1140px) / 2)); }
.quick-search.is-open { display: flex; }
.quick-search input { flex: 1; border: 0; border-bottom: 1px solid var(--line); font-size: var(--text-base); outline: none; padding: 12px 0; }
.quick-search button { border: 0; background: transparent; font-size: var(--text-heading); cursor: pointer; color: var(--primary); }

h1, h2, h3 { margin: 0 0 16px; color: var(--ink); font-family: var(--font-main); line-height: 1.12; letter-spacing: 0; }
h1 { font-size: var(--text-hero); }
h2, h3 { font-size: var(--text-heading); }
p { margin: 0 0 18px; }
.section-title { text-align: center; max-width: 800px; }
.section-title h2 span { color: var(--primary); }
.section-title p { font-size: var(--text-base); }
.separator { width: 78px; height: 3px; margin: 16px auto 24px; background: var(--primary); position: relative; }
.separator:before, .separator:after { content: ""; position: absolute; top: 1px; width: 42px; height: 1px; background: var(--primary); }
.separator:before { right: calc(100% + 10px); }
.separator:after { left: calc(100% + 10px); }
.separator.light, .separator.light:before, .separator.light:after { background: var(--white); }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 13px 27px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary-dark); }
.btn-outline-white { border-color: rgba(255,255,255,.85); color: var(--white); }

.hero {
  min-height: 100vh;
  padding: 116px 0 70px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(99,1,0,.18) 0%, rgba(99,1,0,.09) 35%, rgba(99,1,0,.16) 100%),
    url("../img/index2-mountainscene.jpg") center bottom/cover no-repeat;
  text-align: center;
  animation: hero-zoom-in 8s ease-out forwards;
}
.mountain-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; animation: parallax-fade-in 6s ease-out forwards; }
.mountain-scene::before,
.mountain-scene::after {
  content: none;
}
.cloud { position: absolute; display: block; will-change: transform; filter: blur(.2px); mix-blend-mode: normal; -webkit-mask-image: radial-gradient(ellipse at center, #000 38%, transparent 72%); mask-image: radial-gradient(ellipse at center, #000 38%, transparent 72%); opacity: 0; animation: cloud-fade-in 2s ease-out 0.4s forwards; }
.cloud-one {
  width: min(620px, 48vw);
  left: -10%;
  bottom: 8%;
  opacity: .92;
  animation: cloud-fade-in 2s ease-out 0.5s forwards, cloud-slide-left 26s linear 2s infinite alternate;
}
.cloud-two {
  width: min(680px, 52vw);
  right: -12%;
  bottom: 1%;
  opacity: .88;
  animation: cloud-fade-in 2s ease-out 0.6s forwards, cloud-slide-right 32s linear 2s infinite alternate;
}
.cloud-three {
  width: min(460px, 38vw);
  left: 24%;
  top: 28%;
  opacity: .58;
  animation: cloud-fade-in 2s ease-out 0.7s forwards, cloud-float 38s ease-in-out 2s infinite alternate;
}
.mountain-layer { position: absolute; left: 50%; bottom: 2%; transform: translateX(-50%); width: min(850px, 92vw); opacity: .5; }
@keyframes hero-zoom-in { from { background-size: 110% auto; } to { background-size: 100% auto; } }
@keyframes parallax-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes cloud-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes text-fade-slide-down { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-overlay-fade-up { from { opacity: 0; transform: translateX(-50%) translateY(30px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes cloud-slide-right { from { transform: translate3d(8%, 6px, 0); } to { transform: translate3d(-24%, -10px, 0); } }
@keyframes cloud-float { from { transform: translate3d(-18px, -8px, 0) scale(1); } to { transform: translate3d(52px, 14px, 0) scale(1.05); } }
@keyframes fog-slide-left { from { transform: translate3d(-4%, 8px, 0); } to { transform: translate3d(8%, -4px, 0); } }
@keyframes fog-slide-right { from { transform: translate3d(6%, -2px, 0); } to { transform: translate3d(-8%, 7px, 0); } }
.hero-inner { position: relative; z-index: 1; width: min(1050px, calc(100% - 36px)); max-width: none; }
.hero-kicker { margin-bottom: 18px; color: var(--ink); font-size: var(--text-sm); font-weight: 800; letter-spacing: 8px; text-transform: uppercase; animation: text-fade-slide-down 1s ease-out forwards; }
.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: var(--text-hero);
  animation: text-fade-slide-down 1.2s ease-out forwards;
}
.hero-panel {
  position: relative;
  width: min(100%, 1050px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  background: transparent;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: min(610px, 62vh);
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}
.hero-overlay {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 44px;
  width: min(82%, 820px);
  transform: translateX(-50%);
  padding: 0;
  display: grid;
  justify-items: center;
  background: none;
  backdrop-filter: none;
  border: none;
  animation: hero-overlay-fade-up 1.4s ease-out forwards;
}
.hero-overlay p { max-width: 760px; margin: 0 auto 22px; color: var(--white); font-size: var(--text-base); font-weight: 700; text-shadow: 0 2px 14px rgba(0,0,0,.75); }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.experience { margin-top: -46px; position: relative; z-index: 2; background: var(--white) url("../img/soft-bg.jpg") bottom/100% auto no-repeat; box-shadow: 0 -12px 44px rgba(0,0,0,.08); }
.experience-follow { background: var(--white) url("../img/soft-bg.jpg") bottom/100% auto no-repeat; }
.change-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.change-card { display: grid; gap: 18px; }
.change-card-media {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(99,1,0,.08), rgba(36,33,43,.08)),
    url("../img/index2-mountainscene.jpg") center/cover no-repeat;
}
.change-card:nth-child(1) .change-card-media {
  background:
    linear-gradient(rgba(99,1,0,.08), rgba(36,33,43,.08)),
    url("../img/index2-mountainscene1.jpg") center/cover no-repeat;
}
.change-card:nth-child(2) .change-card-media {
  background:
    linear-gradient(rgba(99,1,0,.08), rgba(36,33,43,.08)),
    url("../img/index2-mountainscene2.jpg") center/cover no-repeat;
}
.change-card:nth-child(3) .change-card-media {
  background:
    linear-gradient(rgba(99,1,0,.08), rgba(36,33,43,.08)),
    url("../img/index2-mountainscene3.jpg") center/cover no-repeat;
}
.change-card:nth-child(4) .change-card-media {
  background:
    linear-gradient(rgba(99,1,0,.08), rgba(36,33,43,.08)),
    url("../img/index2-mountainscene4.jpg") center/cover no-repeat;
}
.change-card-media span { color: rgba(36,33,43,.28); font-size: var(--text-hero); font-weight: 800; }
.change-card-body { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.change-card-body h3 { margin-bottom: 10px; }
.change-card-body p { margin-bottom: 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; margin-top: 42px; }
.benefit-side h3 { font-size: var(--text-heading); }
.benefit-side ol { margin: 22px 0 0; padding-left: 22px; counter-reset: item; list-style: none; }
.benefit-side li { position: relative; margin: 11px 0; color: var(--ink); font-weight: 700; }
.benefit-side li:before { counter-increment: item; content: counter(item, decimal-leading-zero); color: var(--primary); font-weight: 800; margin-right: 10px; }
.align-right { text-align: right; }
.align-right ol { padding-left: 0; padding-right: 22px; }
.center-figure { position: relative; display: grid; place-items: center; }
.support-visual {
  width: min(100%, 360px);
  aspect-ratio: 10 / 11;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 38px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    url("../img/index2-mountainscene.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  text-align: center;
}
.support-visual strong {
  color: var(--primary);
  font-family: var(--font-main);
  font-size: var(--text-heading);
  line-height: 1.08;
}
.support-visual span {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: var(--text-sm);
}
.center-figure span { position: absolute; width: 66px; height: 66px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow); display: grid; place-items: center; bottom: 20px; right: 16%; }
.center-figure span img { width: 30px; }

.split-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.split-image { background: url("../img/index2-news-bg.jpg") center/cover no-repeat; }
.split-copy { display: grid; align-content: center; justify-items: center; text-align: center; padding: 58px 34px; background: var(--primary); color: var(--white); }
.split-copy h2, .split-copy p { color: var(--white); max-width: 620px; }
.split-copy p { font-size: var(--text-base); }

.story-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; align-items: stretch; }
.story-strip article { border: 1px solid var(--line); background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.06); display: flex; flex-direction: column; }
.story-strip img { width: 100%; height: 210px; object-fit: cover; }
.story-strip article > div { padding: 22px; display: flex; flex: 1; flex-direction: column; }
.story-strip h3 { font-size: var(--text-heading); margin-bottom: 8px; }
.story-strip p { margin: 0; }
.case-progress { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 4px; color: var(--ink); }
.case-progress span { color: var(--primary); font-weight: 800; }
.case-progress strong { font-weight: 800; }
.case-progress.completed strong { color: var(--primary-dark); }
.case-button { display: grid; min-height: 50px; place-items: center; margin-top: auto; border-radius: 999px; background: var(--primary); color: var(--white); font-weight: 800; }
.case-button.is-disabled { background: var(--rose-soft); color: rgba(99,1,0,.48); pointer-events: none; }

.packages { background: #fff; }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; align-items: stretch; }
.package-card { min-height: 522px; border: 1px solid var(--line); text-align: center; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,.07); display: flex; flex-direction: column; }
.package-card.highlighted { border-color: var(--primary); box-shadow: var(--shadow); }
.package-head { height: 144px; min-height: 144px; max-height: 144px; padding: 20px 18px; overflow: hidden; background: var(--secondary); color: var(--white); display: grid; grid-template-rows: auto 76px; align-content: center; justify-items: center; }
.highlighted .package-head, .highlighted .package-footer { background: var(--primary); }
.package-head h3 { color: var(--white); text-transform: uppercase; font-size: var(--text-heading); line-height: 1.06; margin: 6px 0 0; min-height: 76px; display: grid; align-items: center; }
.package-head small { text-transform: uppercase; letter-spacing: 1.5px; }
.package-price { height: 122px; padding: 0; color: var(--ink); font-size: var(--text-heading); font-family: var(--font-main); font-weight: 800; display: flex; align-items: center; justify-content: center; line-height: 1; }
.package-price span { font-size: var(--text-base); color: var(--primary); }
.package-copy { min-height: 92px; margin: 0; padding: 0 24px 18px; color: var(--muted); line-height: 1.55; display: grid; place-items: center; }
.package-card ul { flex: 1; padding: 0 24px 24px; margin: 0; list-style: none; display: grid; align-content: start; }
.package-card li { min-height: 46px; padding: 9px 0; border-bottom: 1px solid var(--line); display: grid; place-items: center; }
.package-footer { display: grid; height: 86px; min-height: 86px; place-items: center; padding: 16px 18px; background: var(--secondary); color: var(--white); font-weight: 800; text-transform: uppercase; line-height: 1.35; white-space: pre-line; margin-top: auto; }

.testimonials { padding: 152px 0; color: var(--white); background: linear-gradient(rgba(99,1,0,.88), rgba(79,1,0,.9)), url("../img/index2-testimonial-pattern.jpg") center/auto fixed; }
.inverse h2 span, .inverse p { color: var(--white); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; }
.quote-grid article { text-align: center; max-width: 360px; min-height: 310px; margin: 0 auto; display: grid; justify-items: center; align-content: start; }
.quote-grid img { width: 192px; height: 192px; object-fit: cover; border-radius: 50%; margin: 0 auto 28px; border: 7px solid rgba(255,255,255,.72); box-shadow: var(--shadow); }
.quote-grid strong { display: block; color: var(--white); font-size: 24px; line-height: 1.2; }
.quote-grid span { display: block; margin-top: 10px; color: rgba(255,255,255,.86); font-size: 19px; line-height: 1.45; }

.awesome-services { background: var(--white); }
.verification-layout { display: grid; grid-template-columns: minmax(260px, 320px) 1fr; gap: 32px; align-items: start; }
.verification-intro h2 { margin-bottom: 14px; color: var(--primary); font-size: var(--text-heading); line-height: 1.12; }
.verification-intro p { margin: 0 0 50px; color: var(--text); line-height: 1.55; }
.verification-intro img { width: 100%; aspect-ratio: 375 / 613; object-fit: cover; }
.verification-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 24px; }
.verification-card { min-height: 284px; padding: 30px 26px; border: 1px solid var(--line); background: var(--white); text-align: center; display: grid; justify-items: center; align-content: start; box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.verification-icon { width: 82px; height: 82px; margin-bottom: 20px; border-radius: 50%; background: var(--primary); color: var(--white); display: grid; place-items: center; }
.verification-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.verification-card small { margin-bottom: 8px; color: var(--primary); font-weight: 900; letter-spacing: 2px; }
.verification-card h3 { margin-bottom: 12px; color: var(--ink); font-size: 20px; line-height: 1.2; text-transform: uppercase; }
.verification-card p { margin: 0; color: var(--text); line-height: 1.5; }

.balance-services { background: var(--white); }
.balance-services .section-title p { width: min(720px, 100%); margin-inline: auto; }
.balance-services-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 356px) minmax(0, 1fr); gap: 44px; align-items: center; }
.balance-services-column { display: grid; gap: 34px; }
.balance-services-column article { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; }
.balance-services-column.is-left article { grid-template-columns: 1fr 64px; text-align: right; }
.balance-services-column h3 { margin: 0; color: var(--ink); font-size: 23px; line-height: 1.22; }
.balance-service-icon { width: 64px; height: 64px; display: grid; place-items: center; color: var(--primary); font-size: 54px; line-height: 1; }
.balance-service-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.balance-services-image { display: grid; place-items: center; }
.balance-services-image img { width: min(100%, 356px); aspect-ratio: 500 / 484; object-fit: contain; }
.verified-seal { margin-top: 58px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
.verified-seal-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(99,1,0,.42)); }
.verified-seal-line:last-child { background: linear-gradient(90deg, rgba(99,1,0,.42), transparent); }
.verified-seal-badge { min-height: 76px; padding: 16px 28px; border: 1px solid rgba(99,1,0,.28); background: var(--white); color: var(--primary); box-shadow: 0 16px 38px rgba(99,1,0,.08); display: inline-flex; align-items: center; justify-content: center; gap: 14px; text-align: center; }
.verified-seal-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: var(--white); display: grid; place-items: center; flex: 0 0 42px; }
.verified-seal-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.verified-seal strong { color: var(--primary); font-size: 24px; line-height: 1.2; letter-spacing: .4px; }

.spiritual-guide {
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  min-height: 520px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.spiritual-guide::before {
  content: "";
  position: absolute;
  inset: -7%;
  background: url("../img/yoga-bg6.jpg") center bottom/cover no-repeat;
  animation: spiritual-bg-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}
.spiritual-guide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(99,1,0,.16) 0%, rgba(99,1,0,.08) 42%, rgba(99,1,0,.18) 100%);
}
@keyframes spiritual-bg-drift {
  from { transform: scale(1.02) translate3d(-1.5%, 0, 0); }
  to { transform: scale(1.1) translate3d(1.5%, -1.5%, 0); }
}
.spiritual-guide-grid { position: relative; z-index: 1; display: block; }
.spiritual-guide-copy h2 { margin-bottom: 34px; color: var(--ink); font-size: 42px; line-height: 1.08; }
.program-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 34px; max-width: 920px; }
.program-list article { padding-left: 22px; border-left: 3px solid var(--primary); }
.program-list h3 { margin-bottom: 10px; color: var(--primary); font-size: 26px; line-height: 1.18; }
.program-list p { margin: 0; max-width: 420px; color: var(--text); line-height: 1.55; }

.calm-showcase {
  min-height: 760px;
  padding: 86px 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(79,1,0,.58) 0%, rgba(99,1,0,.46) 48%, rgba(35,33,43,.52) 100%),
    url("../img/calm-slide6.png") center/cover no-repeat;
}
.calm-showcase-grid { display: grid; grid-template-columns: minmax(280px, 600px) minmax(0, 1fr); gap: 70px; align-items: center; }
.calm-showcase-media { display: grid; justify-items: center; }
.calm-showcase-media img { width: min(100%, 600px); max-height: 680px; object-fit: contain; animation: calm-float 7s ease-in-out infinite alternate; }
.calm-showcase-copy { color: var(--white); }
.calm-showcase-copy h2 { max-width: 620px; margin-bottom: 28px; color: var(--white); font-size: clamp(42px, 4.5vw, 68px); line-height: 1.05; font-weight: 800; }
.calm-showcase-copy p { max-width: 640px; color: var(--white); font-size: 20px; line-height: 1.55; font-weight: 700; }
.calm-showcase-actions { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; }
.calm-showcase .btn { min-width: 146px; min-height: 64px; border-radius: 6px; }
.calm-contact { background: var(--white); color: #5f5f5f; }
@keyframes calm-float {
  from { transform: translate3d(-1.5%, 1%, 0) rotate(-1deg); }
  to { transform: translate3d(1.5%, -1%, 0) rotate(1deg); }
}

.reports-showcase {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background: #fffaf9;
}
.reports-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: radial-gradient(80% 80px at 24% 100%, rgba(99,1,0,.09), transparent 70%);
  pointer-events: none;
}
.reports-showcase-grid { display: grid; grid-template-columns: minmax(320px, 520px) minmax(0, 1fr); gap: 72px; align-items: center; }
.reports-showcase-copy { position: relative; z-index: 1; }
.reports-kicker { margin-bottom: 14px; color: var(--primary); font-size: 22px; font-weight: 800; }
.reports-showcase-copy h2 { max-width: 560px; margin-bottom: 20px; color: #5a3835; font-size: clamp(44px, 5vw, 66px); line-height: 1.14; }
.reports-showcase-copy p:not(.reports-kicker) { max-width: 560px; color: var(--text); font-size: 21px; line-height: 1.55; }
.reports-showcase-copy .btn { margin-top: 10px; border-radius: 7px; }
.reports-showcase-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(520px, 660px);
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reports-showcase-slider::-webkit-scrollbar { display: none; }
.reports-showcase-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.reports-showcase-slider article { min-height: 472px; background: #ddd; box-shadow: 0 18px 40px rgba(50,37,44,.12); scroll-snap-align: start; }
.reports-showcase-slider img { width: 100%; height: 100%; min-height: 472px; object-fit: cover; filter: saturate(.8) sepia(.08); }

.help-band { padding: 72px 0; background: var(--primary); color: var(--white); }
.help-grid { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.help-band h2, .help-band p { color: var(--white); }
.help-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer { padding: 72px 0 28px; background: var(--secondary); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer h3 { color: var(--white); font-size: var(--text-heading); }
.footer a { display: block; margin-bottom: 10px; }
.footer a:hover { color: var(--white); }
.footer-brand { color: var(--white); margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; }

@media (max-width: 1100px) {
  .story-strip { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .verification-layout { grid-template-columns: 1fr; }
  .verification-intro { display: grid; grid-template-columns: 1fr minmax(220px, 320px); gap: 28px; align-items: start; }
  .verification-intro p { margin-bottom: 0; }
  .verification-intro img { grid-column: 2; grid-row: 1 / span 2; }
  .balance-services-grid { grid-template-columns: 1fr; }
  .balance-services-image { order: -1; }
  .balance-services-column article, .balance-services-column.is-left article { grid-template-columns: 64px 1fr; text-align: left; }
  .balance-services-column.is-left .balance-service-icon { grid-column: 1; grid-row: 1; }
  .balance-services-column.is-left div { grid-column: 2; }
  .program-list { grid-template-columns: 1fr; }
  .calm-showcase-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .calm-showcase-copy p { margin-inline: auto; }
  .calm-showcase-actions { justify-content: center; }
}
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 15px; right: 15px; top: 86px; padding: 18px; background: var(--white); border-radius: 6px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 8px; }
  .language-switch { align-self: flex-start; margin-top: 8px; }
  .search-button { align-self: flex-start; }
  .benefits-grid, .split-cta, .help-grid { grid-template-columns: 1fr; }
  .change-card-grid { grid-template-columns: 1fr; }
  .align-right { text-align: left; }
  .align-right ol { padding-left: 22px; padding-right: 0; }
  .split-image { min-height: 320px; }
  .quote-grid, .footer-grid { grid-template-columns: 1fr; }
  .reports-showcase-grid { grid-template-columns: 1fr; gap: 42px; }
  .reports-showcase-slider { grid-auto-columns: minmax(320px, 78vw); overflow-x: auto; padding-bottom: 8px; }
}
@media (max-width: 620px) {
  .section-pad, .testimonials { padding: 64px 0; }
  .hero { padding-top: 96px; }
  .hero-kicker { letter-spacing: 3px; font-size: var(--text-sm); }
  .hero h1 { margin-bottom: 18px; font-size: var(--text-heading); }
  .hero-photo { max-height: none; width: 100%; }
  .hero-overlay { position: static; width: 100%; transform: none; margin-top: 16px; padding: 0; background: transparent; }
  .hero-overlay p { color: #2f2b34; text-shadow: none; }
  .hero-overlay p { font-size: var(--text-base); }
  h1, h2 { font-size: var(--text-heading); }
  .hero-actions, .help-actions, .footer-bottom { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .story-strip, .package-grid { grid-template-columns: 1fr; }
  .verification-intro { grid-template-columns: 1fr; }
  .verification-intro img { grid-column: auto; grid-row: auto; }
  .verification-card-grid { grid-template-columns: 1fr; }
  .verification-card { min-height: auto; }
  .balance-services-grid { gap: 28px; }
  .balance-services-column article, .balance-services-column.is-left article { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .balance-services-column.is-left .balance-service-icon, .balance-services-column.is-left div { grid-column: auto; grid-row: auto; }
  .balance-service-icon { width: 54px; height: 54px; font-size: 46px; }
  .verified-seal { grid-template-columns: 1fr; gap: 14px; }
  .verified-seal-line { width: 100%; }
  .verified-seal-badge { width: 100%; padding: 16px 18px; }
  .verified-seal strong { font-size: 20px; }
  .spiritual-guide { padding-block: 64px; }
  .spiritual-guide-copy h2 { font-size: 34px; }
  .program-list h3 { font-size: 24px; }
  .program-list article { padding-left: 18px; }
  .calm-showcase { min-height: auto; padding: 64px 0; }
  .calm-showcase-copy h2 { font-size: 36px; }
  .calm-showcase-copy p { font-size: 19px; }
  .calm-showcase-actions { gap: 12px; }
  .calm-showcase .btn { width: 100%; }
  .reports-showcase { padding: 64px 0 76px; }
  .reports-showcase-copy h2 { font-size: 36px; }
  .reports-showcase-copy p:not(.reports-kicker) { font-size: 19px; }
  .reports-showcase-slider { grid-auto-columns: 82vw; }
  .reports-showcase-slider article, .reports-showcase-slider img { min-height: 320px; }
  .cloud-one { width: 82vw; left: -28%; bottom: 8%; opacity: .58; }
  .cloud-two { width: 90vw; right: -32%; bottom: 0; opacity: .52; }
  .cloud-three { width: 64vw; left: 18%; top: 24%; opacity: .24; }
}
