:root {
  /* Brand palette: client requested Hot Pink, Blue and Champagne Gold */
  --rose:       #ff2f92;
  --coral:      #009fca;
  --blue:       #009fca;
  --violet:     #7c3aed;
  --gold:       #d8b56d;
  --champagne:  #f4dfb6;

  /* Hero pearl controls — change only these values to adjust the balls. */
  --hero-ball-gold:       #c99a45;
  --hero-ball-gold-light: #f3d58c;
  --hero-ball-gold-deep:  #9b6a20;
  --hero-ball-gold-shadow: rgba(155,106,32,.18);
  --ink:        #251727;
  --muted:      #6f5d72;
  --cream:      #fff8f0;
  --dark-cream: #fff8f0;
  --white:      #fff;
  --shadow:      0 26px 80px rgba(55,27,65,.11);
  --luxury-shadow: 0 18px 60px rgba(113,75,30,.12);

  /* Extended brand extras */
  --blush:      #ffe4f2;
  --sand:       #f5e6d3;
  --sage:       #8fae8b;
  --lavender:   #c4b5fd;
  --peach:      #ffd6b3;
  --teal:       #5e9ea0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Lato, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 35%, #fff3f5 100%);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px clamp(18px, 5vw, 70px);
  background: rgba(255, 250, 247, .86);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(70,30,70,.05);
  border-bottom: 1px solid rgba(216,181,109,.22);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700;
  display: flex; gap: 8px; align-items: center;
}

.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 32% 28%, #fff8ea 0 12%, var(--champagne) 18% 48%, var(--gold) 100%);
  color: white;
}

.site-nav {
  display: flex; gap: 22px; align-items: center;
}

.site-nav a {
  font-weight: 800; font-size: .9rem;
  color: #4d3b4f;
}

.site-nav a.active { color: var(--rose); }

.nav-cta, .btn.primary {
  background: linear-gradient(135deg, #fff1ce, var(--champagne) 48%, var(--gold));
  color: var(--ink) !important; border: 1px solid rgba(216,181,109,.45);
  box-shadow: 0 14px 38px rgba(216,181,109,.22);
}

.nav-cta { padding: 10px 18px; border-radius: 999px; }

.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 78vh;
  display: grid; place-items: center;
  position: relative; overflow: hidden; isolation: isolate;
  padding: 90px clamp(20px, 6vw, 90px);
  background: linear-gradient(115deg, rgba(43,13,55,.76), rgba(232,93,143,.42)), var(--hero) center/cover;
}

.hero-inner { min-height: 52vh; }

.hero:after {
  content: "";
  position: absolute; inset: auto -10% -100px -10%;
  height: 210px;
  background: var(--dark-cream);
  border-radius: 50% 50% 0 0;
  z-index: 1; pointer-events: none;
}

/* Ocean + bouncy ball treatment */
.hero-home,
.hero-retreats,
.hero-about,
.hero-contact {
  background: linear-gradient(160deg, rgba(26,10,40,.68), rgba(0,159,202,.16), rgba(244,223,182,.16)), var(--hero) center/cover;
}

/* Luxury floating balls: warm golden pearls.
   Change the three --hero-ball-gold variables in :root to refine their colour later. */
.hero-balls::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 62%, color-mix(in srgb, var(--hero-ball-gold-light) 22%, transparent) 0%, transparent 16%),
    radial-gradient(circle at 78% 58%, color-mix(in srgb, var(--hero-ball-gold) 18%, transparent) 0%, transparent 18%),
    radial-gradient(circle at 42% 42%, rgba(255,255,255,.10) 0%, transparent 15%);
  animation: orbGlow 18s ease-in-out infinite alternate;
  pointer-events: none; z-index: 1;
  filter: none;
  opacity: .50;
}

.hero-floating-balls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-ball {
  position: absolute;
  display: block;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.88) 0 7%, rgba(255,246,220,.80) 8% 24%, var(--hero-ball-gold-light) 34%, var(--hero-ball-gold) 55%, var(--hero-ball-gold-deep) 68%, rgba(155,106,32,0) 82%);
  box-shadow:
    0 20px 56px var(--hero-ball-gold-shadow),
    inset -12px -16px 26px rgba(155,106,32,.20),
    inset 7px 7px 16px rgba(255,255,255,.22);
  border: 1px solid rgba(255,242,202,.42);
  opacity: .46;
  mix-blend-mode: normal;
  will-change: transform;
}

.hero-ball.ball-1 {
  width: clamp(72px, 10vw, 145px);
  height: clamp(72px, 10vw, 145px);
  top: 12%;
  left: clamp(18px, 7vw, 98px);
  animation: heroBallBounceA 6s ease-in-out infinite alternate;
}

.hero-ball.ball-2 {
  width: clamp(52px, 7vw, 108px);
  height: clamp(52px, 7vw, 108px);
  right: clamp(24px, 8vw, 120px);
  top: 26%;
  opacity: .50;
  animation: heroBallBounceB 8s ease-in-out infinite alternate;
}

.hero-ball.ball-3 {
  width: clamp(34px, 5vw, 74px);
  height: clamp(34px, 5vw, 74px);
  left: 53%;
  bottom: 20%;
  opacity: .50;
  animation: heroBallBounceC 10s ease-in-out infinite alternate;
}

@keyframes orbGlow {
  0%   { transform: scale(1) translateY(0); opacity: .40; }
  100% { transform: scale(1.035) translateY(-8px); opacity: .54; }
}

@keyframes heroBallBounceA {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(14px, 18px, 0) scale(1.035); }
}

@keyframes heroBallBounceB {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-16px, 14px, 0) scale(1.045); }
}

@keyframes heroBallBounceC {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(10px, -14px, 0) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-balls::before,
  .hero-ball { animation: none; }
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 900px; text-align: center; color: white;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: .92; margin: 12px 0;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  max-width: 760px; margin: 0 auto 28px;
  white-space: pre-line;
}

.eyebrow {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 8px;
}

.hero-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
  margin-top: 30px;
}

/* ── HERO ORBS (home page bouncing balls) ─────── */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  width: clamp(90px, 14vw, 180px); height: clamp(90px, 14vw, 180px);
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-ball-gold-light) 24%, transparent) 0%, transparent 72%);
  top: -4%; left: -4%; opacity: .65;
  animation: float1 18s ease-in-out infinite alternate;
}

.orb-two {
  width: clamp(62px, 10vw, 130px); height: clamp(62px, 10vw, 130px);
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-ball-gold) 20%, transparent) 0%, transparent 72%);
  bottom: 8%; right: 6%; opacity: .6;
  animation: float2 20s ease-in-out infinite alternate;
}

@keyframes float1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(16px, 20px) scale(1.04); }
}

@keyframes float2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-14px, -18px) scale(1.045); }
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 36px;
  border-radius: 999px; font-weight: 700;
  font-size: .95rem; letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(216,181,109,.24); }
.btn:active { transform: translateY(0); }

.primary {
  background: linear-gradient(135deg, #fff1ce, var(--champagne) 48%, var(--gold));
  color: var(--ink);
}

.ghost {
  background: transparent; color: var(--rose);
  border: 2px solid var(--rose);
}

.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.55);
}

.button-row {
  display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center;
  margin-top: 36px;
}

.button-row.small { margin-top: 24px; }

/* ── CONTENT SECTIONS ──────────────────────────── */
.content-section {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 6vw, 90px);
}

.section-alt { background: rgba(252,228,236,.25); }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.text-only { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }

.section-alt .section-grid { direction: rtl; }
.section-alt .section-grid > * { direction: ltr; }

.copy-card {}

.copy-card h2,
.section-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1; margin: 8px 0 20px;
  color: var(--ink);
}

.section-image {
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--luxury-shadow);
  border: 1px solid rgba(216,181,109,.26);
}

.section-image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 340px;
}

/* ── RICH TEXT ────────────────────────────────── */
.rich-text {
  font-size: clamp(.98rem, 1.6vw, 1.12rem);
  color: var(--muted); line-height: 1.8;
  white-space: pre-line;
}

/* Luxury emphasis: calmer than hot pink, better for CMS bold text */
.rich-text strong, strong {
  color: #8a5f1d;
  font-weight: 800;
}

/* Italic testimonials */
.rich-text em, em {
  font-style: italic;
  color: var(--muted);
}

.rich-text a {
  color: var(--rose);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}


/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: linear-gradient(135deg, var(--ink), #3d2045);
  color: rgba(255,255,255,.8);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 6vw, 90px);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: white; margin-bottom: 8px;
}

.site-footer p { font-size: .88rem; opacity: .55; margin-bottom: 6px; }
.site-footer strong { color: var(--coral); font-weight: 700; }

.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.footer-links a { color: rgba(255,255,255,.7); font-weight: 700; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--coral); }

.floating-cta {
  position: fixed; bottom: 28px; right: 28px;
  background: linear-gradient(135deg, #fff1ce, var(--champagne) 48%, var(--gold));
  color: var(--ink) !important; font-weight: 800; font-size: .88rem;
  padding: 14px 28px; border-radius: 999px;
  box-shadow: 0 12px 34px rgba(216,181,109,.26);
  border: 1px solid rgba(216,181,109,.45);
  z-index: 40; letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s;
}
.floating-cta:hover { transform: translateY(-4px); box-shadow: 0 18px 46px rgba(216,181,109,.32); }

/* ── CONTACT PAGE ──────────────────────────────── */
.contact-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(60px, 10vw, 100px) clamp(20px, 6vw, 40px);
}

/* Contact page hero: warm teal + rose overlay */
.hero-contact {
  background: linear-gradient(150deg, rgba(26,10,40,.70), rgba(94,158,160,.18), rgba(244,223,182,.16)), var(--hero) center/cover;
}

.contact-pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 60px;
}

.pathway-card {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 34px rgba(55,27,65,.06);
  border: 1px solid rgba(216,181,109,.24);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}

.pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(216,181,109,.16);
  border-color: rgba(216,181,109,.58);
}

.pathway-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
}

.pathway-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
}

.pathway-card p {
  font-size: .92rem; color: var(--muted); line-height: 1.6;
}

.contact-form-card {
  background: white;
  border-radius: 28px;
  box-shadow: var(--luxury-shadow);
  border: 1px solid rgba(216,181,109,.22);
  overflow: hidden;
}

.form-panel {
  padding: 52px 48px;
  background: white;
}

.form-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink); margin-bottom: 6px;
}

.form-panel .sub {
  color: var(--muted); font-size: .95rem;
  margin-bottom: 36px;
}

.contact-form { display: grid; gap: 22px; }

.contact-form label {
  display: flex; flex-direction: column;
  font-size: .82rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #f0e6ec;
  border-radius: 14px;
  font-family: Lato, Arial, sans-serif;
  font-size: 1rem; color: var(--ink);
  background: #faf8fc;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(232,93,143,.12);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { width: 100%; text-align: center; font-size: 1rem; }

.success-msg {
  background: linear-gradient(135deg, #fce4ec, #fff7ef);
  color: var(--rose); font-weight: 700;
  padding: 16px 20px; border-radius: 14px;
  text-align: center; margin-top: 16px;
}

.contact-note {
  margin-top: 24px;
  text-align: center;
  font-size: .85rem; color: var(--muted);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  .section-grid { grid-template-columns: 1fr; }
  .section-alt .section-grid { direction: ltr; }
  .section-image img { min-height: 260px; }

  .site-nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }

  .contact-pathways { grid-template-columns: 1fr; }
  .form-panel { padding: 36px 24px; }
  .site-footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 540px) {
  .form-panel { padding: 28px 18px; }
}.content-section.alt{background:rgba(255,228,242,.28)}
.rich-text h3,.rich-text h4{font-family:'Cormorant Garamond',serif;color:var(--ink);line-height:1.2;margin:18px 0 8px}.rich-text ul,.rich-text ol{padding-left:22px;margin:10px 0}.rich-text li{margin:4px 0}.rich-text hr{border:0;border-top:1px solid rgba(216,181,109,.45);margin:22px 0}

/* Form security UI */
.turnstile-wrap{min-height:65px;display:flex;align-items:center}.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.error-msg{background:#fff0f0;color:#9b1b1b;font-weight:700;padding:16px 20px;border-radius:14px;text-align:center;margin:0 0 18px}
