@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 7.5rem; }
body { font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif; }
html { scroll-padding-top: 6rem; }

/* ── Scroll-reveal animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(45,212,191,.4); }
  70%  { box-shadow: 0 0 0 12px rgba(45,212,191,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
}
@keyframes beam {
  0%   { opacity: 0; transform: scaleX(0); transform-origin: left; }
  50%  { opacity: 1; transform: scaleX(1); transform-origin: left; }
  100% { opacity: 0; transform: scaleX(1); transform-origin: right; }
}

/* Reveal classes — added by IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.from-left  { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.scale      { transform: scale(.95); }
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1); }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.15s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.25s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.35s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.45s; }

/* Floating hero images */
.hero-img-main  { animation: float 6s ease-in-out infinite; }
.hero-img-top   { animation: float 5s ease-in-out infinite .8s; }
.hero-img-bot   { animation: float 7s ease-in-out infinite 1.4s; }

/* Shimmer underline on headings */
.shimmer-line {
  background: linear-gradient(90deg, #2dd4bf, #99f6e4, #2dd4bf);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* Pulse on WhatsApp FAB */
.fab-wa { animation: pulse-ring 2.5s ease-out infinite; }

/* Beam divider */
.beam-line::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  animation: beam 3s ease-in-out infinite;
}

/* Card hover lift */
.card-hover {
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s cubic-bezier(.22,1,.36,1);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13,96,96,.14) !important;
}

.nav-link {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  color: #0b4f4a;
  text-decoration: none;
  transition: color .15s;
}
.nav-link:hover { color: #009588; }

.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #0b4f4a;
  text-decoration: none;
  transition: background .15s, color .15s;
  border-radius: .375rem;
}
.mobile-nav-link:hover { background: #fff; color: #00776e; }

/* Hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

/* Overview grid */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .overview-sticky { position: sticky; top: 7rem; align-self: flex-start; display: flex; flex-direction: column; gap: 1.25rem; }
}

/* Treatment grid */
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .treatment-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .order1 { order: 1; }
  .order2 { order: 2; }
}
.treatment-text { display: flex; flex-direction: column; gap: 1.75rem; }
.treatment-img { position: relative; }

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border-radius: 9999px;
  border: 1px solid #96f7e4;
  background: #fff;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  color: #005f5a;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.tag-num { font-size: 10px; font-weight: 700; color: #2dd4bf; }

/* CTA button */
.cta-btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  background: #0b4f4a;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15,118,110,.25);
  transition: transform .15s, background .15s;
}
.cta-btn:hover { transform: translateY(-2px); background: #00776e; }

/* FAQ */
.faq-item {
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(240,253,250,.1);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  transition: box-shadow .15s;
}
.faq-item:hover { box-shadow: 0 4px 6px rgba(0,0,0,.1); }
.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-q { font-size: .875rem; font-weight: 600; color: #0b4f4a; }
@media (min-width: 640px) { .faq-q { font-size: 1rem; } }
.faq-icon {
  display: flex;
  height: 1.75rem;
  width: 1.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #00776e;
  transition: transform .3s;
}
.faq-body {
  display: grid;
  transition: grid-template-rows .3s ease-in-out;
}

/* Consultation grid */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .consult-grid { grid-template-columns: 2fr 3fr; gap: 3.5rem; }
}

/* Form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

input:focus, textarea:focus {
  border-color: #009588 !important;
  box-shadow: 0 0 0 2px rgba(0,186,167,.1);
}

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }

.footer-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(0,95,90,.7);
  text-decoration: none;
  transition: color .15s;
}
.footer-link:hover { color: #00776e; }
.footer-line {
  display: inline-block;
  height: 1px;
  width: 1rem;
  background: #96f7e4;
  transition: width .15s, background .15s;
}
.footer-link:hover .footer-line { width: 1.5rem; background: #009588; }

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(0,95,90,.7);
  text-decoration: none;
  transition: color .15s;
}
.footer-contact-link:hover { color: #00776e; }
.footer-icon-wrap {
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: .375rem;
  background: #f0fdfa;
  border: 1px solid #cbfbf1;
  color: #00776e;
  transition: background .15s, color .15s;
}
.footer-contact-link:hover .footer-icon-wrap { background: #00776e; color: #fff; }

/* Hover lift for floating buttons */
.fixed a, .fixed button { transition: transform .15s; }
.fixed a:hover, .fixed button:hover { transform: translateY(-2px); }

/* Premium light clinic direction */
:root {
  --ink: #24252d;
  --ink-soft: #6f6b72;
  --paper: #fbfaf7;
  --paper-warm: #f3eee7;
  --champagne: #c7a77a;
  --champagne-soft: #eadcc8;
  --sage: #7d958b;
  --rose: #bd8f87;
  --shadow: rgba(36, 37, 45, .12);
}

html { background: var(--paper); }
body {
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: '';
  background:
    radial-gradient(circle at 10% 12%, rgba(234, 220, 200, .42), transparent 28rem),
    radial-gradient(circle at 88% 42%, rgba(125, 149, 139, .13), transparent 32rem),
    linear-gradient(135deg, #fbfaf7 0%, #f8f3ec 52%, #fbfaf7 100%);
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--champagne), var(--rose));
  box-shadow: 0 0 16px rgba(199, 167, 122, .5);
  transition: width .12s ease-out;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .45;
}

#main-nav {
  border: 1px solid transparent;
  background: rgba(251, 250, 247, .65);
  box-shadow: 0 10px 35px transparent;
  backdrop-filter: blur(16px);
}
#main-nav.is-scrolled {
  border-color: rgba(199, 167, 122, .26);
  background: rgba(251, 250, 247, .9) !important;
  box-shadow: 0 12px 36px var(--shadow) !important;
  transform: translateY(3px);
}
.nav-link::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  content: '';
  background: var(--champagne);
  transition: width .3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Inline legacy teal values are kept in the markup but rendered through the new palette. */
[style*="color:#0b4f4a"], [style*="color: #0b4f4a"] { color: var(--ink) !important; }
[style*="color:#005f5a"], [style*="color: #005f5a"], [style*="color:#00776e"], [style*="color: #00776e"], [style*="color:#009588"], [style*="color: #009588"] { color: var(--ink-soft) !important; }
[style*="background:#0b4f4a"], [style*="background: #0b4f4a"], [style*="background:#005f5a"], [style*="background: #005f5a"] { background: var(--ink) !important; }
[style*="background:#fff"], [style*="background: #fff"] { background: rgba(255, 255, 255, .72) !important; }
[style*="background:#f0fdfa"], [style*="background: #f0fdfa"], [style*="background:rgba(240,253,250"] { background: var(--paper-warm) !important; }
[style*="border:1px solid #cbfbf1"], [style*="border: 1px solid #cbfbf1"] { border-color: rgba(199, 167, 122, .28) !important; }
[style*="color:#2dd4bf"], [style*="color: #2dd4bf"], [style*="color:#5eead4"], [style*="color: #5eead4"] { color: var(--champagne) !important; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; }
.hero-grid h1, .hero-grid h2, section h2 { font-size: clamp(2.25rem, 5vw, 4.5rem) !important; }
.hero-grid h1, .hero-grid h2 { line-height: .98 !important; }
.hero-grid p, section p { color: var(--ink-soft) !important; }
.shimmer-line {
  background: linear-gradient(90deg, var(--sage), var(--champagne), var(--rose), var(--sage)) !important;
  background-size: 240% auto;
}
.hero-img-main, .hero-img-top, .hero-img-bot { filter: none; }
.hero-img-main, .hero-img-top, .hero-img-bot { transition: filter .8s ease, opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.hero-img-main.hero-focus, .hero-img-top.hero-focus, .hero-img-bot.hero-focus { filter: saturate(.95) contrast(1.02); transform: translateY(-5px) scale(1.025); z-index: 2; }
.hero-img-main img, .hero-img-top img, .hero-img-bot img { transition: transform .8s cubic-bezier(.22,1,.36,1), filter .8s ease; }
.hero-img-main:hover img, .hero-img-top:hover img, .hero-img-bot:hover img { transform: scale(1.045); }
.cta-btn { background: var(--ink) !important; box-shadow: 0 12px 30px rgba(36, 37, 45, .2) !important; }
.cta-btn:hover { background: var(--sage) !important; }
.tag { border-color: rgba(199, 167, 122, .4); background: rgba(255,255,255,.7); color: var(--ink) !important; }
.tag-num { color: var(--champagne) !important; }
.card-hover:hover { box-shadow: 0 22px 55px rgba(36, 37, 45, .16) !important; }
.treatment-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.treatment-benefits span { display: flex; flex-direction: column; gap: .2rem; border-left: 1px solid rgba(199, 167, 122, .42); padding: .15rem 0 .15rem .75rem; color: var(--ink); font-size: .78rem; font-weight: 700; }
.treatment-benefits b { color: var(--champagne); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.05rem; }
.treatment-benefits em { color: var(--ink-soft); font-size: .72rem; font-style: normal; font-weight: 500; line-height: 1.45; }

@media (max-width: 639px) {
  header { padding: .65rem .75rem 0 !important; }
  #main-nav { padding: .55rem .75rem !important; }
  #overview { padding: 5.25rem .9rem 0 !important; }
  .hero-grid { gap: 2.25rem; }
  .hero-grid > div:first-child { height: 350px !important; }
  .hero-img-main { height: 280px !important; width: 68% !important; }
  .hero-img-top, .hero-img-bot { width: 34% !important; height: 145px !important; }
  .hero-img-top { top: 1rem !important; }
  .hero-grid h2 { font-size: clamp(2.8rem, 13vw, 4rem) !important; }
  .hero-grid p { font-size: .9rem !important; line-height: 1.75 !important; }
  .hero-grid a { width: 100% !important; justify-content: center; }
  .fixed a, .fixed button { min-height: 2.75rem; }
  .treatment-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 1023px) {
  .fab-label { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  #ambient-canvas { display: none; }
}

/* Scroll-world treatment journey */
.scroll-journey {
  position: relative;
  min-height: 260vh;
  overflow: clip;
  background: linear-gradient(180deg, #f7f2eb 0%, #fbfaf7 48%, #f1ebe3 100%);
}
.scroll-journey::before,
.scroll-journey::after {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(199, 167, 122, .2);
  border-radius: 50%;
  content: '';
}
.scroll-journey::before { top: 18%; left: -14rem; }
.scroll-journey::after { right: -14rem; bottom: 16%; }
.journey-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 9rem);
  width: min(100% - 2rem, 72rem);
  min-height: 240vh;
  margin: 0 auto;
}
.journey-stage {
  position: sticky;
  top: 13vh;
  align-self: start;
  height: 74vh;
  margin-top: 13vh;
  perspective: 1200px;
}
.journey-stage::before {
  position: absolute;
  z-index: 0;
  inset: 12% 7% 7%;
  border-radius: 45% 55% 42% 58%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.9), rgba(234,220,200,.36) 50%, transparent 70%);
  content: '';
  filter: blur(3px);
  transform: rotate(-8deg);
}
.journey-scene {
  position: absolute;
  z-index: 1;
  inset: 12% 5% 10%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 2rem;
  background: #e8ded1;
  box-shadow: 0 30px 70px rgba(64, 54, 49, .16), 0 3px 0 rgba(255,255,255,.7) inset;
  opacity: 0;
  transform: translateY(20px) scale(.94) rotate(-2deg);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
}
.journey-scene.is-active { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
.journey-scene img { width: 100%; height: 100%; object-fit: cover; }
.journey-scene::after { display: none; }
.journey-scene span { position: absolute; right: 1.5rem; bottom: 1.25rem; z-index: 1; color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.journey-orbit { position: absolute; z-index: 2; border: 1px solid rgba(189,143,135,.48); border-radius: 50%; pointer-events: none; }
.orbit-one { inset: 3% -5% 15% 12%; transform: rotate(24deg); }
.orbit-two { inset: 19% 10% 0 -11%; border-color: rgba(125,149,139,.45); transform: rotate(-36deg); }
.journey-route { position: absolute; top: 50%; right: -1.25rem; z-index: 3; display: flex; flex-direction: column; gap: .65rem; transform: translateY(-50%); }
.journey-route i { display: block; width: .45rem; height: .45rem; border: 1px solid var(--champagne); border-radius: 50%; background: var(--paper); transition: transform .35s ease, background .35s ease; }
.journey-route i.is-active { background: var(--champagne); box-shadow: 0 0 0 5px rgba(199,167,122,.16); transform: scale(1.35); }
.journey-copy { display: flex; flex-direction: column; padding: 22vh 0 18vh; }
.journey-intro { min-height: 62vh; padding-top: 4rem; }
.journey-intro.reveal { opacity: 1; transform: none; }
.eyebrow { display: block; margin-bottom: 1rem; color: var(--sage); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.journey-intro h2 { max-width: 27rem; color: var(--ink); font-size: clamp(3rem, 6vw, 5.8rem); line-height: .92; }
.journey-intro h2 em { color: var(--rose); font-style: normal; }
.journey-intro p { max-width: 24rem; margin-top: 1.5rem; color: var(--ink-soft) !important; font-size: .95rem; line-height: 1.8; }
.journey-step { position: relative; display: flex; min-height: 68vh; flex-direction: column; justify-content: center; padding: 4rem 0 4rem 3.25rem; opacity: .3; transform: translateY(2rem); transition: opacity .8s ease, transform .8s ease; }
.journey-step.is-active { opacity: 1; transform: translateY(0); }
.journey-number { position: absolute; top: 4rem; left: 0; color: var(--champagne); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; }
.journey-step h3 { max-width: 25rem; color: var(--ink); font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .94; }
.journey-step p { max-width: 23rem; margin-top: 1.5rem; color: var(--ink-soft) !important; font-size: .95rem; line-height: 1.8; }
.journey-line { display: block; width: 4rem; height: 1px; margin-top: 2rem; background: linear-gradient(90deg, var(--champagne), transparent); }
.journey-cta { display: inline-flex; width: fit-content; align-items: center; gap: .75rem; margin-top: 2rem; border-bottom: 1px solid var(--champagne); padding-bottom: .55rem; color: var(--ink); font-size: .82rem; font-weight: 700; text-decoration: none; }
.journey-cta span { color: var(--rose); font-size: 1.2rem; transition: transform .3s ease; }
.journey-cta:hover span { transform: translate(3px, -3px); }

/* A lighter care timeline keeps the page expressive without another dark panel. */
.ritual-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) max(1rem, calc((100% - 72rem) / 2));
  background: #fbfaf7;
}
.ritual-section::before {
  position: absolute;
  top: 0;
  right: 12%;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(199, 167, 122, .24);
  border-radius: 50%;
  content: '';
}
.ritual-heading { position: relative; max-width: 38rem; }
.ritual-heading h2 { color: var(--ink); font-size: clamp(3rem, 6vw, 5.8rem); line-height: .92; }
.ritual-heading h2 em { color: var(--rose); font-style: normal; }
.ritual-heading p { max-width: 28rem; margin-top: 1.5rem; color: var(--ink-soft) !important; font-size: .95rem; line-height: 1.8; }
.ritual-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 6rem; border-top: 1px solid rgba(199,167,122,.4); }
.ritual-track::before { position: absolute; top: -1px; left: 0; width: 33.333%; height: 2px; content: ''; background: linear-gradient(90deg, var(--rose), var(--champagne)); transition: left .7s cubic-bezier(.22,1,.36,1); }
.ritual-card { position: relative; min-height: 18rem; padding: 2.2rem 2rem 2rem 0; border-right: 1px solid rgba(199,167,122,.24); transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .45s ease; }
.ritual-card + .ritual-card { padding-left: 2rem; }
.ritual-card:last-child { border-right: 0; }
.ritual-card:hover { transform: translateY(-8px); }
.ritual-index { display: block; color: var(--champagne); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; }
.ritual-icon { display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; margin: 2.5rem 0 1.3rem; border: 1px solid rgba(189,143,135,.42); border-radius: 50%; color: var(--rose); font-size: 1.2rem; transition: background .35s ease, color .35s ease, transform .35s ease; }
.ritual-card:hover .ritual-icon { background: var(--rose); color: #fff; transform: rotate(12deg); }
.ritual-card h3 { color: var(--ink); font-size: 2.3rem; }
.ritual-card p { max-width: 16rem; margin-top: .7rem; color: var(--ink-soft) !important; font-size: .86rem; line-height: 1.75; }

/* Replace the inherited dark teal surfaces with warm, low-glare neutrals. */
:root {
  --ink: #6b5a50;
  --ink-soft: #8a7b71;
  --champagne: #c7a77a;
  --sage: #80998f;
  --rose: #c28f88;
  --shadow: rgba(107, 90, 80, .13);
}
[style*="background:#0b4f4a"], [style*="background: #0b4f4a"],
[style*="background:#005f5a"], [style*="background: #005f5a"] { background: #aa9282 !important; }
.light-surface {
  background: #f5eee6 !important;
  border: 1px solid rgba(199, 167, 122, .3);
  box-shadow: 0 18px 48px rgba(107, 90, 80, .1) !important;
}
.light-surface p,
.light-surface h3,
.light-surface a,
.light-surface div p { color: var(--ink) !important; }
.light-surface > p,
.light-surface > div > p { color: var(--ink-soft) !important; }
.light-surface .contact-card,
.contact-card p,
.contact-card h3,
.contact-card a { color: var(--ink) !important; }
.contact-card > div:first-of-type,
.contact-card > div:nth-of-type(2) { background: rgba(194, 143, 136, .12) !important; }
.contact-card span[style*="background:#005f5a"],
.contact-card a[style*="background:#005f5a"] {
  background: rgba(194, 143, 136, .16) !important;
  border-color: rgba(194, 143, 136, .35) !important;
  color: var(--rose) !important;
}
.contact-card [style*="color:#2dd4bf"],
.contact-card [style*="color: #2dd4bf"],
.contact-card [style*="color:#5eead4"],
.contact-card [style*="color: #5eead4"] { color: var(--rose) !important; }
.book-btn-desktop,
#submit-btn,
button[style*="background:#005f5a"] { background: var(--rose) !important; box-shadow: 0 12px 26px rgba(194, 143, 136, .22) !important; }
.book-btn-desktop:hover,
#submit-btn:hover,
button[style*="background:#005f5a"]:hover { background: #b77d76 !important; }
.footer-link,
.footer-contact-link,
footer p,
footer h4 { color: var(--ink-soft) !important; }
footer h4 { color: var(--ink) !important; }
footer .footer-line { background: var(--champagne) !important; }
footer .footer-link:hover,
footer .footer-contact-link:hover { color: var(--rose) !important; }
footer .footer-icon-wrap,
footer a[style*="background:#f0fdfa"] {
  background: #f5eee6 !important;
  border-color: rgba(199, 167, 122, .3) !important;
  color: var(--rose) !important;
}
footer a[style*="background:#f0fdfa"]:hover,
footer .footer-contact-link:hover .footer-icon-wrap { background: rgba(194, 143, 136, .16) !important; color: var(--rose) !important; }
footer [style*="color:#0b4f4a"],
footer [style*="color: #0b4f4a"],
footer [style*="color:#00776e"],
footer [style*="color: #00776e"] { color: var(--ink) !important; }
.cta-btn { background: #aa9282 !important; box-shadow: 0 12px 30px rgba(107,90,80,.16) !important; }
.cta-btn:hover { background: var(--rose) !important; }

@media (max-width: 800px) {
  .ritual-section { padding-right: .9rem; padding-left: .9rem; }
  .ritual-track { grid-template-columns: 1fr; gap: 0; margin-top: 4rem; }
  .ritual-track::before { width: 2px; height: 33.333%; }
  .ritual-card, .ritual-card + .ritual-card { min-height: auto; padding: 2rem 0; border-right: 0; border-bottom: 1px solid rgba(199,167,122,.24); }
  .ritual-card:last-child { border-bottom: 0; }
  .ritual-icon { margin-top: 1.5rem; }
}

@media (max-width: 800px) {
  .scroll-journey { min-height: auto; }
  .journey-shell { display: block; min-height: auto; width: min(100% - 1.8rem, 42rem); }
  .journey-stage { position: relative; top: auto; height: 54vh; margin-top: 4rem; }
  .journey-copy { padding: 8vh 0 4rem; }
  .journey-copy { padding-right: 3.5rem; }
  .journey-intro { min-height: 46vh; padding-top: 2rem; }
  .journey-step { min-height: 52vh; padding-left: 2.5rem; }
  .journey-number { top: 4rem; }
  .journey-route { right: -.65rem; }
}

@media (max-width: 800px) {
  .scroll-journey .journey-stage { position: relative !important; top: auto !important; }
  .floating-actions { right: .75rem !important; bottom: .75rem !important; }
}
