

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html:focus-within {
  scroll-behavior: smooth;
}


*:focus-visible {
  outline: 2px solid rgba(68, 170, 140, 0.8);
  outline-offset: 2px;
}

:root {
  --font-sans-rounded: 'Quicksand', 'Nunito', 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Marcellus', 'Quicksand', 'Times New Roman', Times, serif;
  --font-script: 'Marcellus', serif;
  --ink-dark: #007ea3;
  --ink-mid: #0d5f7b;
  --text-shadow-soft: 0 4px 18px rgba(6, 63, 75, 0.22);
  --text-shadow-hero: 0 10px 35px rgba(5, 55, 67, 0.35);
}

body {
  font-family: var(--font-sans-rounded);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink-dark);
  font-style: normal;
  overflow-x: hidden;
  max-width: 100%;
}

.text-brand-ink { color: var(--ink-dark) !important; }
.text-brand-deep { color: #0A3A45 !important; }
.text-brand-soft {
  color: #047f9c !important;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.45);
}
.text-brand-pink { color: #C32BA9 !important; }

h1, h2, h3, h4, h5, h6,
.brand-h3,
.hero-h1,
.section-title,
.paper h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(6, 52, 64, 0.95);
  text-shadow: var(--text-shadow-soft);
}

.hero-tagline {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
}


.text-black,
.text-slate-900,
.text-slate-800 {
  color: var(--ink-dark) !important;
}

.text-slate-700,
.text-slate-600,
.text-slate-500 {
  color: var(--ink-mid) !important;
}


@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.02); }
}

.slow-zoom {
  animation: slow-zoom 14s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce){
  .slow-zoom { animation: none; }
}


.rot-img {
  transform-origin: center center;
  will-change: transform, opacity;
  transition: opacity 2s ease-in-out;
}
@keyframes hero-pan-in {
  0% { transform: scale(1) translate3d(-0.5%, -0.5%, 0); }
  100% { transform: scale(1.12) translate3d(2.5%, 2.5%, 0); }
}
@keyframes hero-pan-out {
  0% { transform: scale(1.18) translate3d(4%, 4%, 0); }
  100% { transform: scale(1.02) translate3d(-1.5%, -1.5%, 0); }
}
.pan-zoom-in { animation: hero-pan-in 6.8s ease-out forwards; }
.pan-zoom-out { animation: hero-pan-out 6.8s ease-in-out forwards; }
@media (prefers-reduced-motion: reduce){
  .pan-zoom-in,
  .pan-zoom-out {
    animation: none;
    transform: none !important;
  }
}

.hero-tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-tagline-reveal 1.4s ease-out forwards;
  animation-delay: 0.4s;
  text-shadow: none;
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbfd 55%, #fff8fb 100%);
  padding: clamp(1.5rem, 3vw, 3rem) 0 clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  margin-top: calc(var(--header-offset, 0px) * -2.2);
}
.hero-shell {
  width: min(120rem, 100%);
  margin: 0 auto;
}
@media (max-width: 1280px){
  .hero-shell {
    width: min(100%, 92vw);
  }
}
.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 2.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 166, 200, 0.12);
  box-shadow: 0 35px 60px -40px rgba(3, 24, 38, 0.45);
  backdrop-filter: blur(6px);
}
.hero-content {
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(195, 43, 169, 0.22);
  background: rgba(195, 43, 169, 0.08);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #BD0E97;
}
.hero-heading {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.6vw, 4.5rem);
  line-height: 1.1;
  color: #028cab;
  text-shadow: var(--text-shadow-hero);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.hero-heading span {
  display: block;
}
.hero-subheading {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: rgba(5, 46, 56, 0.9);
  text-shadow: 0 3px 18px rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}
.hero-ornament-inline {
  margin-top: 1.8rem;
  align-items: flex-start;
}
.hero-ornament-below {
  margin-top: 1rem;
  justify-content: center;
  width: min(760px, 100%);
  display: flex;
  align-items: center;
}
@media (max-width: 640px){
  .hero-window,
  .hero-ornament-below {
    width: 100%;
  }
  .hero-card {
    padding: 1.5rem;
  }
  .hero-heading {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero-subheading {
    font-size: 1rem;
  }
  .hero-section {
    margin-top: calc(var(--header-offset, 0px) * -1.1);
  }
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #00A6C8, #C32BA9);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 20px 30px -20px rgba(195, 43, 169, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 35px -20px rgba(0, 166, 200, 0.55);
}
.hero-note {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 58, 69, 0.65);
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-window {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 2.5rem;
  border: 1px solid rgba(0, 166, 200, 0.2);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 35px 70px -35px rgba(3, 24, 38, 0.45);
}
@media (max-width: 1024px){
  .hero-card {
    grid-template-columns: 1fr;
  }
  .hero-window {
    width: min(420px, 100%);
  }
}

.hero-overlay-gradient {
  background: linear-gradient(180deg, rgba(3, 27, 36, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(10, 58, 69, 0.55) 100%);
}
.hero-bottom-fade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35), transparent);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-divider {
  width: 160px;
  height: 4px;
  margin: -1.5rem auto 2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #00A6C8, #C32BA9);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.4);
}

.hero-ornament .ornament::before,
.hero-ornament .ornament::after {
  background: linear-gradient(90deg, rgba(195, 43, 169, 0.2), rgba(195, 43, 169, 0.9), rgba(195, 43, 169, 0.2));
  height: 3px;
  width: 90px;
}

.page-intro {
  --intro-bg: linear-gradient(135deg, #fffdfa 0%, #f6fbff 55%, #fdefff 100%);
  --intro-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent 55%);
  --intro-left-color: rgba(0, 166, 200, 0.28);
  --intro-right-color: rgba(195, 43, 169, 0.32);
  --intro-grid-opacity: 0.22;
  --intro-grid-skew: -3deg;
  --intro-grid-left: 5%;
  --intro-grid-right: 5%;
  --intro-grid-top: 12%;
  --intro-grid-bottom: 10%;
  --intro-left-top: -25%;
  --intro-left-left: -12%;
  --intro-right-bottom: -20%;
  --intro-right-right: -15%;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-offset, 0px);
  padding: clamp(3.5rem, 7.5vw, 6rem) 0 clamp(4.5rem, 9vw, 6.5rem);
  background: var(--intro-bg);
}
.page-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--intro-overlay);
  pointer-events: none;
  z-index: 0;
}
.page-intro-glow {
  position: absolute;
  filter: blur(38px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}
.page-intro-glow--left {
  width: clamp(260px, 32vw, 380px);
  height: clamp(260px, 32vw, 380px);
  top: var(--intro-left-top, -25%);
  left: var(--intro-left-left, -12%);
  background: radial-gradient(circle, var(--intro-left-color), transparent 70%);
}
.page-intro-glow--right {
  width: clamp(240px, 30vw, 360px);
  height: clamp(240px, 30vw, 360px);
  bottom: var(--intro-right-bottom, -20%);
  right: var(--intro-right-right, -15%);
  background: radial-gradient(circle, var(--intro-right-color), transparent 70%);
}
.page-intro-grid {
  position: absolute;
  top: var(--intro-grid-top, 12%);
  left: var(--intro-grid-left, 5%);
  right: var(--intro-grid-right, 5%);
  bottom: var(--intro-grid-bottom, 10%);
  opacity: var(--intro-grid-opacity, 0.22);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(10, 58, 69, 0.12),
    rgba(10, 58, 69, 0.12) 1px,
    transparent 1px,
    transparent 24px
  );
  transform: skewY(var(--intro-grid-skew, -3deg));
  pointer-events: none;
  z-index: 0;
}
.page-intro-head,
.page-intro-body {
  position: relative;
  z-index: 1;
}
.page-intro-inner {
  width: min(100%, var(--intro-max-width, 72rem));
  margin-left: auto;
  margin-right: auto;
}
.intro-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.intro-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 166, 200, 0.15);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0A3A45;
}
@media (max-width: 640px){
  .intro-chip {
    font-size: 0.72rem;
    padding: 0.35rem 0.95rem;
    letter-spacing: 0.18em;
  }
}
.intro-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.intro-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10, 58, 69, 0.7);
  margin-bottom: 0.25rem;
}
.intro-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A3A45;
}

.policy-highlight {
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(0, 166, 200, 0.08), rgba(195, 43, 169, 0.08));
  border: 1px solid rgba(0, 166, 200, 0.15);
  text-align: center;
  box-shadow: 0 25px 45px -35px rgba(3, 24, 38, 0.35);
}
.policy-highlight-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A3A45;
}
.policy-highlight-copy {
  margin-top: 0.6rem;
  color: rgba(10, 58, 69, 0.85);
  line-height: 1.7;
}
.policy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(195, 43, 169, 0.35);
  background: #fff;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C32BA9;
}

.policy-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
@media (max-width: 1024px){
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .policy-grid {
    grid-template-columns: 1fr;
  }
}
.policy-card {
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background: #fff;
  border: 1px solid rgba(10, 58, 69, 0.08);
  box-shadow: 0 25px 60px -35px rgba(3, 24, 38, 0.35);
}
.policy-card--full {
  grid-column: 1 / -1;
}
.policy-badge {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 166, 200, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0A6F82;
}
.policy-card h3 {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #0A3A45;
}
.policy-card p {
  margin-top: 0.85rem;
  color: rgba(10, 58, 69, 0.85);
  line-height: 1.7;
}
.policy-note {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 0.85rem;
  border-left: 3px solid #C32BA9;
  background: rgba(195, 43, 169, 0.06);
  font-weight: 600;
  color: #8b0f73;
}
.policy-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: rgba(10, 58, 69, 0.9);
  line-height: 1.65;
}
.policy-terms {
  margin-top: 0.75rem;
  text-align: center;
}
.policy-terms p {
  margin: 0.4rem 0;
  color: rgba(10, 58, 69, 0.95);
}

.footer-main a {
  word-break: break-word;
}
@media (max-width: 640px){
  .footer-main {
    gap: 2.5rem;
  }
  .footer-main > div:first-child {
    width: 100%;
  }
  .footer-main .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  footer .logo-heading,
  footer .logo-heading + .brand-rule {
    text-align: center;
  }
}


.wa-widget {
  position: fixed;
  right: clamp(0.75rem, 3vw, 1.4rem);
  bottom: clamp(0.75rem, 3vw, 1.4rem);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
  pointer-events: none;
}
@media (max-width: 640px){
  .wa-widget {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
.wa-panel {
  width: min(320px, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1rem);
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(0,166,200,0.1);
  box-shadow: 0 25px 45px -28px rgba(3,24,38,0.55);
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wa-widget.is-open .wa-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 480px){
  .wa-widget {
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .wa-panel {
    width: calc(100vw - 1rem);
  }
}
.wa-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  background: linear-gradient(120deg, #25d366, #00a884);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.wa-panel-close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}
.wa-panel-body {
  padding: 1rem 1.15rem 1.4rem;
  color: rgba(10,58,69,0.85);
  font-size: 0.95rem;
}
.wa-panel-preview {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0,166,200,0.15);
  color: rgba(10,58,69,0.55);
  font-size: 0.9rem;
}
.wa-panel-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.wa-floating-btn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #25d366, #0ead60);
  box-shadow: 0 20px 35px -20px rgba(0,0,0,0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-floating-btn svg {
  width: 30px;
  height: 30px;
}
.wa-floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 35px -18px rgba(0,0,0,0.45);
}
@media (max-width: 768px){
  .page-intro {
    padding-bottom: clamp(4rem, 18vw, 6rem);
  }
}

.page-intro--story {
  --intro-bg: linear-gradient(135deg, #fffdfa 0%, #f6fbff 55%, #fdefff 100%);
  --intro-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent 55%);
  --intro-left-color: rgba(0, 166, 200, 0.28);
  --intro-right-color: rgba(195, 43, 169, 0.32);
}
.page-intro--colon {
  --intro-bg: linear-gradient(135deg, #f4fbfd 0%, #eff9fb 45%, #e5f5f8 100%);
  --intro-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent 60%);
  --intro-left-color: rgba(0, 166, 200, 0.32);
  --intro-right-color: rgba(7, 111, 130, 0.25);
  --intro-grid-opacity: 0.18;
  --intro-grid-skew: -2deg;
}
.page-intro--colon .page-intro-head h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.5rem);
  text-wrap: balance;
}
.page-intro--colon .page-intro-head p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px){
  .page-intro--colon .page-intro-head h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .page-intro--colon .page-intro-head p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.page-intro--treatments {
  --intro-bg: linear-gradient(135deg, #fffaf4 0%, #fff0f6 45%, #f6faff 100%);
  --intro-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), transparent 60%);
  --intro-left-color: rgba(195, 43, 169, 0.28);
  --intro-right-color: rgba(255, 184, 122, 0.3);
  --intro-grid-opacity: 0.2;
  --intro-grid-skew: -4deg;
}
.page-intro--faq {
  --intro-bg: linear-gradient(135deg, #f6fbff 0%, #eef4ff 40%, #fef7ff 100%);
  --intro-overlay: none;
  --intro-left-color: rgba(0, 166, 200, 0.26);
  --intro-right-color: rgba(162, 120, 255, 0.32);
  --intro-grid-opacity: 0.2;
  --intro-grid-skew: -1deg;
}
.page-intro--policy {
  --intro-bg: linear-gradient(135deg, #fffaf6 0%, #f8fbff 45%, #fef3ff 100%);
  --intro-overlay: none;
  --intro-left-color: rgba(0, 166, 200, 0.24);
  --intro-right-color: rgba(255, 173, 120, 0.28);
  --intro-grid-opacity: 0.15;
  --intro-grid-skew: -5deg;
  --intro-left-left: -18%;
  --intro-right-right: -20%;
}

@keyframes hero-tagline-reveal {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); }
  50% { opacity: 1; transform: translateY(0) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}


#site-header,
#site-header header {
  background: transparent;
}

.header-glass {
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body#home #home-hero {
  margin-top: var(--header-offset, 0px);
}

body:not(#home) main > :first-child:not(.page-intro) {
  position: relative;
  margin-top: calc(var(--header-offset, 0px) * -0.4);
  padding-top: calc(var(--header-offset, 0px) * 0.25);
}

body:not(#home) main > .page-intro {
  margin-top: var(--header-offset, 0px);
  padding-top: clamp(3.5rem, 7.5vw, 6rem);
}

body:not(#home) main > .story-hero {
  margin-top: var(--header-offset, 0px);
  padding-top: clamp(4rem, 8vw, 6.5rem);
}

.header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1.25rem;
  font-size: clamp(0.95rem, 0.85vw, 1.15rem);
  line-height: 1.25;
  font-weight: 700;
  font-family: var(--font-sans-rounded);
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  color: #fff;
  background: #00A6C8;
  border: 1px solid rgba(0, 166, 200, 0.7);
  border-radius: 0.4rem;
  box-shadow: 0 16px 30px -24px rgba(3, 24, 38, 0.55);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.header-pill:hover,
.header-pill:focus-visible {
  color: #fff;
  background: #C32BA9;
  border-color: #C32BA9;
  box-shadow: 0 20px 34px -26px rgba(3, 24, 38, 0.6);
}



.nav-active {
  color: #fff !important;
  background: #C32BA9;
  border-color: #C32BA9;
  box-shadow: 0 24px 40px -28px rgba(3, 24, 38, 0.6);
}


.copy p {
  margin: 0.85rem 0;
  line-height: 1.75;
  color: rgba(6, 45, 56, 0.92);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
}
.copy p.lead {
  font-size: 1.125rem;
  color: rgba(6, 45, 56, 0.95);
  text-shadow: 0 3px 16px rgba(255, 255, 255, 0.6);
}
.copy p.lead::first-letter { float: left; font-size: 2.5rem; line-height: 1; padding-right: 8px; font-weight: 700; color: #00A6C8; }


.faq {
  background: linear-gradient(180deg, #fefcf8, #f8f3ed) padding-box,
              linear-gradient(130deg, rgba(0,166,200,0.32), rgba(195,43,169,0.28), rgba(255,184,122,0.22)) border-box;
  border: 3px solid transparent;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 25px 55px -35px rgba(3,24,38,0.45);
}
.faq + .faq { margin-top: 1rem; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--ink-dark);
  text-shadow: 0 3px 14px rgba(255, 255, 255, 0.65);
  position: relative;
  padding-right: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: url('assets/logoMini.png');
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #C32BA9;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}
.faq[open] summary::after {
  content: '-';
  color: #00A6C8;
  transform: rotate(90deg);
}
.faq p {
  margin-top: 0.5rem;
  color: #0A3A45;
}



#about .copy p { color: #f8fafc; font-size: 1rem; line-height: 1.7; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
#about .copy p.lead { color: #ffffff; font-size: 1.05rem; }

#about .copy p.lead::first-letter { float: none; font-size: inherit; padding-right: 0; font-weight: inherit; color: inherit; }


.paper {
  background: linear-gradient(180deg, #fefcf8, #f7f2ec);
  border-radius: 1.1rem;
  box-shadow: 0 25px 55px -35px rgba(3,24,38,0.4);
  border: 3px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image:
    linear-gradient(180deg, #fefcf8, #f7f2ec),
    linear-gradient(130deg, rgba(0,166,200,0.32), rgba(195,43,169,0.28), rgba(255,184,122,0.22));
}
.two-col { column-count: 1; column-gap: 3rem; }
@media (min-width: 1024px){ .two-col { column-count: 2; column-width: 38rem; } }
.float-portrait { width: 220px; margin: 0 auto 1rem; }
@media (min-width: 1024px){
  .float-portrait { float: left; margin: 0 1.25rem 1rem 0; shape-outside: inset(0 round 1rem); }
}
.copy { hyphens: auto; }
.card-centered {
  text-align: center;
}
.logo-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #00A6C8;
  text-transform: none;
  letter-spacing: 0.01em;
}
.logo-bullet img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
}

.logo-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #00A6C8;
}
.logo-heading img {
  width: 20px;
  height: 20px;
}
.price-list,
.price-list li {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.price-list li::marker {
  content: '';
}
.logo-marker {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
.logo-marker img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.35));
}

.card-band {
  background: linear-gradient(135deg, rgba(0,166,200,0.95), rgba(9,58,69,0.92));
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: 0 30px 80px -35px rgba(0,0,0,0.35);
}
.card-band .paper {
  background: rgba(255,255,255,0.92);
}
.shadow-soft {
  box-shadow: 0 25px 55px -35px rgba(3,24,38,0.45);
}

.btn-luxe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #013042;
  background: linear-gradient(120deg, #ffffff, #f4f2ff);
  border: 2px solid rgba(255,255,255,0.65);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn-luxe:hover,
.btn-luxe:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 25px 45px -18px rgba(0,0,0,0.5);
  color: #BD0E97;
}
.btn-luxe span.heart {
  color: #BD0E97;
}


.small-copy p { font-size: 1rem; line-height: 1.7; }
.small-copy p.lead { font-size: 1.05rem; }
.small-copy p.lead::first-letter { float: none; font-size: inherit; padding-right: 0; font-weight: inherit; color: inherit; }


@media (min-width: 1024px){ .two-col-wide { column-width: 42rem; } }
.ornament { display: inline-flex; align-items: center; gap: .75rem; }
.ornament::before, .ornament::after { content: ''; display: block; height: 1px; width: 60px; background: rgba(3,149,186,0.6); }
.copy .pull { font-size: 1.125rem; color: #0f172a; background: rgba(255,255,255,0.6); border-left: 4px solid #C32BA9; padding: .75rem 1rem; border-radius: .5rem; }
.image-band { position: relative; height: 50svh; min-height: 360px; overflow: hidden; }
.image-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.35)); pointer-events: none; }
.image-band.image-band--clear {
  height: clamp(260px, 38vw, 520px);
  min-height: 0;
  background: linear-gradient(180deg, #f9feff, #e8f4f8);
  overflow: hidden;
}
.image-band.image-band--clear::after { display: none; }
.image-band.image-band--clear img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}


.panel-brand {
  background: linear-gradient(180deg, #ffffff, #fbf8f4) padding-box,
              linear-gradient(135deg, rgba(0,166,200,0.18), rgba(195,43,169,0.15)) border-box;
  border: 2px solid transparent;
  border-radius: 1.1rem;
  box-shadow: 0 18px 45px -30px rgba(0,0,0,0.35);
  padding-right: 2.5rem; 
}
.brand-h3 {
  color: #0a3a45;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-shadow: var(--text-shadow-soft);
}
.brand-rule { width: 90px; height: 3px; background: linear-gradient(90deg,#00A6C8,#C32BA9); margin: .75rem auto 0; border-radius: 999px; }
.bullet-large ul { list-style: disc inside; }
.bullet-large li { font-size: 1.125rem; line-height: 1.8; margin: .35rem 0; }
.bullet-large li::marker { color: #C32BA9; }
.img-tilt { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); transition: transform .5s ease, box-shadow .5s ease; }
.img-tilt:hover { transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02); box-shadow: 0 20px 40px -20px rgba(0,0,0,.35); }


#colon .colon-flow {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px){
  #colon .colon-flow { gap: 3rem; }
}
.colon-feature {
  display: grid;
  gap: 1.25rem;
  align-items: flex-start;
}
.colon-feature.colon-single { grid-template-columns: 1fr; }
@media (min-width: 768px){
  .colon-feature { gap: 1.5rem; }
}
@media (max-width: 768px){
  #colon .colon-feature {
    grid-template-columns: 1fr;
  }
  #colon .colon-card {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  #colon .colon-card h2,
  #colon .colon-card h3 {
    font-size: 1.35rem;
  }
  #colon .colon-card p {
    font-size: 0.95rem;
  }
  #colon .colon-photos {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media (min-width: 1024px){
  .colon-feature {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  }
  .colon-feature.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  }
  .colon-feature.reverse .colon-card { order: 2; }
  .colon-feature.reverse .colon-photos { order: 1; }
  .colon-feature.colon-single { grid-template-columns: 1fr; }
}
@media (min-width: 1280px){
  .colon-feature {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.05fr);
  }
  .colon-feature.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.7fr);
  }
}
.colon-card { height: 100%; }
.colon-card {
  padding: clamp(2rem, 4vw, 3.25rem);
  padding-inline-start: clamp(2.1rem, 4.5vw, 3.5rem);
  padding-inline-end: clamp(2.1rem, 4.5vw, 3.5rem);
}
.colon-feature:not(.colon-single) .colon-card {
  padding-inline-start: clamp(2.6rem, 5vw, 4rem);
  padding-inline-end: clamp(2.4rem, 4.5vw, 3.75rem);
}
.colon-photos {
  display: grid;
  gap: 0.85rem;
  align-self: flex-start;
}
@media (min-width: 640px){
  .colon-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.colon-toggle {
  width: 100%;
  display: block;
}
.colon-toggle summary {
  display: none;
}
.colon-toggle summary::-webkit-details-marker {
  display: none;
}
.colon-toggle-body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px){
  .colon-toggle summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.85rem 0;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 1.05rem;
    color: #0A3A45;
    cursor: pointer;
    border-bottom: 1px solid rgba(10, 58, 69, 0.1);
    text-align: left;
  }
  .colon-toggle summary span:first-child {
    flex: 1;
  }
  .colon-toggle-body {
    padding-top: 0.65rem;
  }
  .colon-toggle:not([open]) .colon-toggle-body {
    display: none;
  }
  .colon-toggle-indicator {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(195, 43, 169, 0.3);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .colon-toggle-indicator::before,
  .colon-toggle-indicator::after {
    content: '';
    position: absolute;
    background: #C32BA9;
    border-radius: 999px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .colon-toggle-indicator::before {
    width: 10px;
    height: 2px;
  }
  .colon-toggle-indicator::after {
    width: 2px;
    height: 10px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .colon-toggle[open] .colon-toggle-indicator::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.2);
  }
  .colon-toggle-body > .brand-h3:first-child {
    display: none;
  }
}
@media (min-width: 1024px){
  .colon-photos { gap: 1rem; }
}
.colon-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7f2ec);
}
.colon-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 1.15rem; }
.colon-photos-stacked {
  grid-template-columns: 1fr;
}
@media (min-width: 640px){
  .colon-photos-stacked {
    grid-template-columns: 1fr;
  }
}
.colon-photos-stacked .colon-photo > div {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: clamp(210px, 34vw, 400px);
}
.colon-card-with-accent {
  position: relative;
  padding-top: 0;
}
.colon-card-with-accent.accent-left { padding-left: 0; }
.colon-card-with-accent.accent-right { padding-right: 0; }
.card-accent-img {
  position: relative;
  float: right;
  width: clamp(210px, 36vw, 320px);
  margin: 0.35rem 0.35rem 1.25rem 1.35rem;
  padding: 0.45rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0,166,200,0.12), rgba(195,43,169,0.12));
}
.card-accent-img.accent-left {
  float: left;
  margin: 0.35rem 1.35rem 1.25rem 0.35rem;
}
@media (max-width: 768px){
  .colon-card-with-accent {
    padding: clamp(1.5rem, 5vw, 2.25rem);
  }
  .card-accent-img,
  .card-accent-img.accent-left {
    float: none;
    width: 100%;
    margin: 0 0 1rem 0;
    max-width: 480px;
  }
  .card-accent-img {
    margin-left: auto;
    margin-right: auto;
  }
}
.price-card {
  text-align: center;
}
.price-card .colonic-price-list {
  margin: 0 auto;
}
.price-card .colonic-price-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.price-card .colonic-price-icon {
  margin-top: 0;
}
.price-card .colonic-price-title,
.price-card .colonic-price-detail,
.price-card .colonic-price-footnote,
.price-card .booking-note,
.price-card .course-note {
  text-align: center;
}
.price-card {
  position: relative;
}
.price-card > :not(.card-accent-img) {
  position: relative;
  z-index: 2;
}
.price-card .card-accent-img {
  position: absolute;
  float: none;
  left: clamp(-1rem, -3vw, -0.25rem);
  top: clamp(0.5rem, 2vw, 1.5rem);
  transform: translateX(-10%);
  width: clamp(190px, 28vw, 280px);
  padding: 0.35rem;
  background: linear-gradient(135deg, rgba(0,166,200,0.12), rgba(195,43,169,0.12));
  z-index: 1;
  margin: 0;
}
@media (max-width: 767px){
  .price-card .card-accent-img {
    position: static;
    transform: none;
    margin: 0 auto 1rem;
    width: clamp(190px, 80vw, 300px);
  }
}


#colon .copy p { font-size: 1rem; color: var(--ink-dark); }
#colon .copy p.lead { font-size: 1.1rem; color: var(--ink-dark); }
#prices-intro p,
#prices-sections p,
#prices-loyalty p {
  color: var(--ink-dark);
}

.colon-shell {
  max-width: min(1700px, 96vw);
}
@media (min-width: 1536px){
  .colon-shell { max-width: min(1900px, 94vw); }
}
.colonic-course-info {
  margin-top: 1.5rem;
}
.colonic-course-info p {
  margin: 0.85rem 0;
  line-height: 1.75;
  color: var(--ink-dark) !important;
  font-weight: 400 !important;
}
.course-note {
  all: unset;
  display: block;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-dark);
  font-weight: 400;
  margin: 0.85rem 0 0;
  text-decoration: none;
}
.subtitle-pink { color: #C32BA9 !important; }
.subtitle-pink .colonic-prices-subtitle { color: #C32BA9 !important; text-decoration: underline; }
.subtitle-pink a { color: inherit; text-decoration: inherit; }
.rictat-links {
  text-align: center;
  margin-top: 0.5rem;
}
.rictat-links ul {
  list-style: none;
  padding: 0;
  margin: 0.25rem auto 0;
  display: grid;
  gap: 0.45rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}
.rictat-links li { display: flex; }
.rictat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0,166,200,0.12), rgba(195,43,169,0.1));
  color: #0a3a45;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px -18px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  width: 100%;
  justify-content: center;
  min-height: 56px;
  white-space: normal;
  text-wrap: balance;
}
.rictat-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -18px rgba(0,0,0,0.45);
  background: linear-gradient(120deg, rgba(0,166,200,0.16), rgba(195,43,169,0.14));
}
.rictat-icon { color: #C32BA9; }
@media (max-width: 640px) {
  .rictat-link { white-space: normal; }
}
.rictat-panel {
  margin-top: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #fefcf8, #f7f2ec);
  border: 2px solid rgba(0,166,200,0.15);
  box-shadow: 0 16px 40px -28px rgba(3,24,38,0.35);
}
.rictat-panel-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.rictat-logo-img {
  width: 180px;
  height: auto;
}
.rictat-title {
  font-weight: 700;
  color: #0A3A45;
  letter-spacing: 0.02em;
}
.rictat-sub {
  color: #00A6C8;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}
.rictat-panel.alt {
  padding: 1.4rem 1.6rem 1.6rem;
  text-align: left;
}
.rictat-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.rictat-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  border-radius: 0.9rem;
  background: linear-gradient(120deg, rgba(0,166,200,0.12), rgba(195,43,169,0.1));
  box-shadow: 0 12px 30px -20px rgba(0,0,0,0.35);
}
.rictat-link-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.rictat-tile {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.9rem;
  background: linear-gradient(120deg, rgba(0,166,200,0.12), rgba(195,43,169,0.1));
  color: #0a3a45;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 12px 28px -22px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  height: 100%;
  text-align: left;
}
.rictat-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -22px rgba(0,0,0,0.45);
  background: linear-gradient(120deg, rgba(0,166,200,0.16), rgba(195,43,169,0.14));
}
.rictat-tile .rictat-icon {
  font-size: 1.6rem;
}


.h-blue { color: #00A6C8; }
.h-navy { color: #0a3a45; }
.h-pink { color: #C32BA9; }
.price-item-main { color: #C32BA9; font-weight: 700; font-size: 1.25rem; }


.two-col h3, .copy h3, .brand-h3 { column-span: all; break-inside: avoid; max-width: 100%; }
.brand-h3 { overflow-wrap: break-word; word-break: normal; hyphens: auto; }


.colon-expect-title { font-size: 1.1rem; line-height: 1.25; text-wrap: balance; }
@media (min-width: 1024px){
  .colon-expect-title {
    display: block;
    max-width: 100%;
    font-size: clamp(1.05rem, 0.5vw + 0.8rem, 1.25rem);
    line-height: 1.25;
    
    white-space: normal;
  }
}


.image-band.parallax { background-attachment: fixed; background-size: cover; background-position: center; }


.panel-brand .copy p { color: var(--ink-dark); }
.panel-brand .copy p:last-child { color: #0A3A45; font-weight: 600; }
.panel-brand .copy .colonic-course-info p {
  color: var(--ink-dark);
  font-weight: 400;
  line-height: 1.75;
}
.panel-brand .colonic-price-footnote {
  color: #C32BA9 !important;
}
.misconceptions-title {
  color: #C32BA9 !important;
  text-shadow: 0 6px 28px rgba(3, 19, 27, 0.35);
  text-align: center;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  letter-spacing: 0.015em;
  text-transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.misconceptions-title .please-read {
  font-size: 0.8em;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #C32BA9;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.4);
}
.misconception-label {
  font-weight: 700;
  color: #C32BA9;
  letter-spacing: 0.02em;
  text-transform: none;
}

.colon-expect-card .brand-h3,
.colon-expect-card .colon-expect-copy p {
  color: #0084a4;
  text-shadow: 0 5px 25px rgba(5, 56, 68, 0.25);
}
.colon-expect-copy p {
  color: #00A6C8;
}
.colon-expect-card .colon-expect-copy p.h-pink {
  color: #C32BA9 !important;
}
.colon-expect-card .colon-benefits {
  margin-top: 1.5rem;
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.75rem;
}
.colon-expect-card .colon-benefits li {
  color: #00A6C8;
  line-height: 1.5;
}
.colon-expect-card .colon-benefits .colon-benefit-label {
  color: #0A3A45;
  font-weight: 600;
}
.colon-expect-card .colon-expect-copy .colon-misconceptions {
  color: #C32BA9 !important;
  text-align: center;
  text-decoration: underline;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.25rem;
  display: block;
}
.colon-expect-card .colon-misconceptions-note {
  color: #00A6C8;
  text-align: center;
  line-height: 1.6;
  margin-top: 1rem;
}
.colon-expect-card .colon-misconceptions-note .colon-note-strong {
  font-weight: 700;
  text-decoration: underline;
}
.colon-expect-card .colon-suffer-callout {
  text-align: center;
  color: #00A6C8;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}
.colon-expect-card .colon-suffer-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}
.colon-expect-card .colon-suffer-list li {
  text-align: center;
  color: #C32BA9;
  font-weight: 600;
}
.colon-expect-card .colon-cta {
  text-align: center;
  color: #0A3A45;
  margin-top: 1.5rem;
}
.colon-expect-card .colon-cta-lead {
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.colon-expect-card .colon-cta-heading {
  color: #0A3A45;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.colon-expect-card .colon-cta-note {
  font-weight: 700;
  margin-top: 0.65rem;
  color: #0A3A45 !important;
}
.colon-expect-card .colon-cta-note-alert {
  color: #C32BA9 !important;
}
.colonic-prices-subtitle-wrap {
  text-align: center;
  margin-top: 1rem;
}
.colonic-prices-subtitle {
  display: inline-block;
  color: #0A3A45;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
}
.colonic-prices-label {
  text-align: left;
  color: #00A6C8;
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.colonic-price-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 1.25rem;
}
.colonic-price-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.colonic-price-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.colonic-price-title {
  font-weight: 700;
  color: #0A3A45;
}
.colonic-price-detail {
  color: #00A6C8;
  font-weight: 600;
  margin-top: 0.2rem;
}
.colonic-price-footnote {
  text-align: center;
  color: #C32BA9;
  font-weight: 600;
  margin-top: 0.75rem;
}


.glance-accent { position: relative; }
.glance-accent::before, .glance-accent::after {
    content: '';
    position: absolute; inset: 10% 0; pointer-events: none; z-index: -1;
    background: linear-gradient(90deg, transparent 8%, rgba(0,166,200,.9) 8%, rgba(0,166,200,.9) 12%, transparent 12%, transparent 88%, rgba(0,166,200,.9) 88%, rgba(0,166,200,.9) 92%, transparent 92%);
    border-radius: .75rem;
  }
.glance-photo {
  background: radial-gradient(circle at center, rgba(255,255,255,.6), rgba(255,255,255,0));
  width: 100%;
  aspect-ratio: 704 / 970;
}
.glance-photo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.intro-card {
  text-align: center;
}
.intro-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #0A3A45;
  margin-top: 1.5rem;
}
.intro-divider {
  width: 90px;
  height: 3px;
  margin: 1.5rem auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #00A6C8, #C32BA9);
}
.intro-points {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  max-width: 26rem;
  display: grid;
  gap: 0.5rem;
}
.intro-points li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
  color: #0A3A45;
}
.intro-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #00A6C8, #C32BA9);
  box-shadow: 0 4px 12px -6px rgba(0,0,0,0.45);
}
.colonic-photo-wrap {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.colonic-photo-inner {
  width: min(280px, 80%);
  aspect-ratio: 1 / 1;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 55px -35px rgba(3,24,38,0.45);
}
.colonic-photo-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatment-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.treatment-benefits li {
  background: rgba(255,255,255,0.75);
  border-left: 4px solid #00A6C8;
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: #0A3A45;
  box-shadow: 0 12px 30px -22px rgba(3,24,38,0.5);
}
.treatment-benefits li strong {
  color: #BD0E97;
  font-weight: 600;
}
.treatment-price-card {
  background: linear-gradient(180deg, #ffffff, #f7f6f1);
  border-radius: 1.25rem;
  border: 2px solid rgba(0,166,200,0.15);
  padding: 2rem 2.25rem;
  box-shadow: 0 20px 50px -35px rgba(3,24,38,0.55);
}
.treatment-price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #0A3A45;
}
.price-stack {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-stack li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(3,24,38,0.1);
}
.price-stack li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.price-title {
  display: block;
  font-weight: 600;
  color: #0A3A45;
}
.price-meta {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
}
.price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #BD0E97;
}
.treatment-note {
  background: rgba(255,255,255,0.85);
  border-radius: 1.25rem;
  border: 1px solid rgba(195,43,169,0.2);
  padding: 1.75rem 2rem;
  box-shadow: 0 25px 55px -35px rgba(3,24,38,0.45);
}
.treatment-note h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #0A3A45;
}
.booking-fee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(120deg, rgba(189,14,151,0.95), rgba(0,166,200,0.85));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  box-shadow: 0 12px 28px -16px rgba(189,14,151,0.55);
}
.treatment-panel {
  background: rgba(255,255,255,0.95);
  border-radius: 1.25rem;
  border: 1px solid rgba(0,166,200,0.25);
  box-shadow: 0 35px 80px -45px rgba(3,24,38,0.55);
  overflow: hidden;
}
.treatment-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  text-shadow: 0 3px 18px rgba(255, 255, 255, 0.6);
}
.treatment-panel summary::-webkit-details-marker { display: none; }
.treatment-panel summary h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  color: #093c4a;
  text-shadow: 0 5px 20px rgba(5, 56, 68, 0.25);
}
.treatment-panel summary p {
  margin: 0.35rem 0 0;
  color: #475569;
  max-width: 45ch;
}
.panel-tag {
  background: rgba(0,166,200,0.1);
  color: #008CA8;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 2px solid rgba(0,166,200,0.2);
  font-size: 0.9rem;
}
.treatment-panel[open] summary {
  border-bottom: 1px solid rgba(3,24,38,0.08);
  background: rgba(0,166,200,0.05);
}
.panel-body {
  padding: 1.75rem;
  color: #0A3A45;
}
.panel-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.panel-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #b0128d;
  text-shadow: 0 4px 18px rgba(6, 52, 64, 0.2);
}
.treatment-price-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.treatment-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed rgba(3,24,38,0.15);
}
.treatment-price-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.treatment-price-list span:first-child {
  font-weight: 600;
  color: #0A3A45;
}
.treatment-price-list span:last-child {
  font-weight: 700;
  color: #BD0E97;
}
.expect-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.expect-main {
  background: linear-gradient(180deg, #ffffff, #f7f2ec);
  border-radius: 1.25rem;
  border: 1px solid rgba(0,166,200,0.2);
  box-shadow: 0 25px 55px -35px rgba(3,24,38,0.45);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.expect-gallery {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 640px){
  .expect-gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
.expect-gallery figure {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 25px 55px -35px rgba(3,24,38,0.45);
  aspect-ratio: 3 / 2;
  margin: 0;
}
.expect-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.expect-accordions {
  display: grid;
  gap: 0.85rem;
}
.expect-accordion {
  border-radius: 1.25rem;
  border: 1px solid rgba(0,166,200,0.2);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 25px 55px -38px rgba(3,24,38,0.45);
}
.expect-accordion summary {
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: #0A3A45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.expect-accordion summary::after {
  content: '+';
  font-size: 1.25rem;
  color: #C32BA9;
  transition: transform .2s ease;
}
.expect-accordion[open] summary::after {
  transform: rotate(45deg);
}
.expect-accordion > *:not(summary) {
  padding: 0 1.3rem 1.3rem;
}
.colon-price-shell {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.colon-price-highlight {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 1024px){
  .colon-price-highlight {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
  }
  .colon-price-highlight.reverse {
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  }
}
.hero-card {
  position: relative;
  overflow: hidden;
}
.colon-price-image {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 28px 65px -40px rgba(3,24,38,0.5);
  width: 100%;
  justify-self: center;
}
.colon-price-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.colon-price-grid {
  display: grid;
  gap: 1.25rem;
}
@media (max-width: 768px){
  .colon-price-shell,
  .colon-price-shell > *,
  .colon-price-grid,
  .colon-price-grid > * {
    width: 100%;
  }
  .colon-price-grid {
    grid-template-columns: 1fr;
  }
  .colonic-price-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px){
  .rictat-link-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
.stack {
  min-height: 100%;
}
.course-stack {
  background: rgba(244,251,253,0.95);
}
.colon-price-footnotes {
  display: grid;
  gap: 0.6rem;
  text-align: center;
}
.colon-price-resources > * + * {
  margin-top: 1rem;
}


.room-carousel-section {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244,251,253,0.96) 45%, rgba(255,246,251,0.92) 100%);
  overflow: hidden;
}
.room-carousel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(0,166,200,0.16), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(195,43,169,0.16), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}
.room-carousel-section .max-w-6xl {
  position: relative;
  z-index: 1;
}
.room-carousel-shell {
  position: relative;
  padding: clamp(1.25rem, 2.8vw, 2.25rem);
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,166,200,0.2);
  box-shadow: 0 28px 60px -40px rgba(3,24,38,0.45);
  backdrop-filter: blur(6px);
}
.room-carousel-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  min-height: clamp(16rem, 42vw, 30rem);
  background: linear-gradient(135deg, rgba(0,166,200,0.15), rgba(195,43,169,0.15));
}
.room-carousel-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.6);
  pointer-events: none;
}
.room-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.4rem, 1.2vw, 1rem);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.room-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.room-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.room-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,166,200,0.25);
  color: #0A3A45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -20px rgba(3,24,38,0.6);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.room-carousel-btn:hover {
  background: #C32BA9;
  border-color: #C32BA9;
  color: #fff;
  transform: translateY(-50%) scale(1.03);
}
.room-carousel-btn--prev {
  left: 0.75rem;
}
.room-carousel-btn--next {
  right: 0.75rem;
}
.room-carousel-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.room-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.room-carousel-dots button {
  width: 0.85rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(0,166,200,0.25);
  border: none;
  transition: width 0.2s ease, background 0.2s ease;
}
.room-carousel-dots button.is-active {
  width: 1.5rem;
  background: linear-gradient(90deg, #00A6C8, #C32BA9);
}
.room-carousel-counter {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A3A45;
  font-weight: 600;
}
@media (max-width: 640px){
  .room-carousel-frame {
    min-height: clamp(14rem, 70vw, 22rem);
  }
  .room-carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .room-carousel-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

