/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --purple: #43034b;
  --purple-dark: #2d0234;
  --purple-deep: #1a0020;
  --pink: #ebc8eb;
  --pink-deep: #791879c0;
  --pink-mid: #f5daf5;
  --pink-light: #fdf0fd;
  --white: #ffffff;
  --w70: rgba(255,255,255,0.7);
  --w50: rgba(255,255,255,0.5);
  --w10: rgba(255,255,255,0.1);
  --w08: rgba(255,255,255,0.08);
  --p15: rgba(235,200,235,0.15);
  --p30: rgba(235,200,235,0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html, body {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  background: var(--purple);
  color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.page { display: none; }
.page.active { display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(43,3,54,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(235,200,235,0.15);
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: "DM Serif Display", serif;
  font-size: 20px; color: var(--white);
  text-decoration: none; cursor: pointer; white-space: nowrap;
}
.nav-logo span { color: var(--pink); }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  font-size: 16px; color: var(--w50); text-decoration: none;
  font-weight: 500; transition: color 0.2s; cursor: pointer;
  padding: 6px 12px; border-radius: 20px; position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active {
  color: var(--white);
  background: rgba(235,200,235,0.12);
}
/* desktop: dot to the left of the text */
.nav-links a.nav-active::before {
  /* content: ""; position: absolute; left: 4px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px; background: var(--pink); border-radius: 50%; */
}
.nav-book {
  background: var(--pink) !important;
  color: var(--purple) !important;
  padding: 8px 20px !important;
  border-radius: 50px; font-weight: 600 !important; font-size: 16px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-book:hover { background: var(--pink-mid) !important; transform: translateY(-1px); }
.nav-book.nav-active { background: var(--pink-mid) !important; }
.nav-book.nav-active::before { display: none; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(43,3,54,0.97);
    padding: 12px 24px 16px; gap: 0;
    border-bottom: 1px solid var(--p30);
  }
  /* mobile: flat text links, no bubble */
  .nav-links.open a {
    font-size: 16px; padding: 11px 4px;
    background: none !important; border-radius: 0;
    border-bottom: 1px solid rgba(235,200,235,0.08);
    color: var(--w50);
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-links.open a:hover { color: var(--white); }
  .nav-links.open a.nav-active {
    color: var(--white); font-weight: 600;
    background: none !important;
  }
  /* mobile dot: left of text inline */
  .nav-links.open a.nav-active::before {
    left: -10px; top: 50%; transform: translateY(-50%);
  }
  /* mobile book link: bright pink text, bold, no bubble */
  .nav-links.open .nav-book {
    background: none !important;
    color: var(--pink) !important;
    font-weight: 700 !important;
    padding: 11px 4px !important;
    border-radius: 0 !important;
    border-bottom: none !important;
  }
  .nav-links.open .nav-book::before { display: none; }
  .nav-hamburger { display: flex; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED LAYOUT HELPERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec {
  position: relative;
  padding: 96px 48px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .sec { padding: 72px 24px; }
}
.inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 2;
}
.lbl { display: none; }

.hdg {
  font-family: "DM Serif Display", serif;
  font-size: clamp(30px, 4.5vw, 48px);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sub {
  font-size: 17px;
  text-align: center;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 52px;
}
/* .hi = emphasized word in body text */
.hi { color: var(--purple); font-weight: 700; font-style: normal; }
.spk, .rib, .blb { position: absolute; pointer-events: none; z-index: 1; }

/* Section palettes */
.dk  { background: var(--purple); }
.dk2 { background: #3a0243; }
.lt-pink  { background: var(--pink-light); }
.lt-white { background: var(--white); }

.dk .hdg, .dk2 .hdg { color: var(--white); }
.dk .sub, .dk2 .sub { color: var(--w70); }
.lt-pink .hdg  { color: var(--purple-dark); }
.lt-pink .sub  { color: #4a2050; }
.lt-white .hdg { color: var(--purple-dark); }
.lt-white .sub { color: #555; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero { min-height: 100vh; display: flex; flex-direction: column; padding: 0; padding-top: 64px; }
.hero-top {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 48px 60px; text-align: center;
  overflow: hidden; position: relative;
}
.desktop-break {
  display: inline;
}
@media (max-width: 600px) {
  .desktop-break {
    display: none;
  }
}
@media (max-width: 600px) { .hero-top { padding: 72px 24px 52px; } }
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(235,200,235,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 65% at 85% 75%, rgba(235,200,235,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 50% 50%, rgba(60,5,72,0.65) 0%, transparent 80%);
}
.swirl {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(235,200,235,0.18); z-index: 1;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: spin 28s linear infinite;
}
.swirl.s2 { animation-direction: reverse; animation-duration: 20s; border-color: rgba(235,200,235,0.1); }
.swirl.s3 { animation-duration: 38s; border-color: rgba(235,200,235,0.09); }
@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
.hero-content {
  position: relative; z-index: 3; max-width: 760px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero-pill {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink); background: rgba(235,200,235,0.12);
  border: 1px solid rgba(235,200,235,0.3); padding: 7px 20px; border-radius: 50px;
}
.hero-h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.1; color: var(--white);
}
.hero-h1 em { font-style: italic; color: var(--pink); }
.hero-body {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.8; color: var(--w70); max-width: 580px;
}
@media (max-width: 600px) { .hero-top { padding: 72px 50px 50px; } }
.hero-body {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.8; color: var(--w70); max-width: 580px;
}
.btn-primary {
  display: inline-block; background: var(--pink); color: var(--purple);
  font-family: "DM Sans", sans-serif; font-weight: 600; font-size: 16px;
  padding: 16px 40px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--pink-mid); transform: translateY(-2px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHAT WE WORK ON (familiar)
   pink-light bg · near-black body · purple em
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.check-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 48px; margin: 0 auto;
}
@media (max-width: 560px) { .check-list { grid-template-columns: 1fr; } }
.check-item { display: flex; align-items: flex-start; gap: 14px; padding: 4px 0; }
.check-item svg { flex-shrink: 0; margin-top: 3px; }
.check-item p { font-size: 18px; line-height: 1.65; }
#familiar .check-item p { color: #1a1a1a; }
#familiar .check-item p .hi { color: var(--purple); font-style: normal; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — white bg
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-split {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
}

.about-eyebrow {
  /* display: inline-block;
  font-size: 20px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px; margin-left: 20px; */
}

/* ── Desktop: tall rectangle ── */
.about-photo-rect {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--p15), rgba(235,200,235,0.12));
  display: flex; align-items: center; justify-content: center;
}
.about-photo-rect img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 50%; display: block;
}
.about-photo-rect::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 20px; border: 2px solid var(--purple);
  /* var(--p30); z-index: 2; pointer-events: none; */
  
}
.about-photo-nameplate {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 36px 22px 20px;
  background: linear-gradient(to top, rgba(27,0,34,0.88) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 2px;
}
.about-photo-pname {
  font-family: "DM Serif Display", serif; font-size: 22px; color: var(--white); line-height: 1.15;
}
.about-photo-ptitle {
  font-size: 14px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink);
}

/* ── Mobile: circle, face-centered ── */
.about-photo-circle {
  display: none;
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--p30);
  margin: 0 auto;
  background: var(--purple);
}
.about-photo-circle img {
  width: 100%;
  height: 130%;      /* taller crop so we have room to position */
  object-fit: cover;
  object-position: center 50%;  /* shift toward top to show face */
  display: block;
}

@media (max-width: 860px) {
  .about-photo-rect   { display: none; }
  .about-photo-circle { display: block; }
}

.about-photo-rect-ph {
  font-family: "DM Serif Display", serif; font-size: 16px;
  color: var(--w50); text-align: center; padding: 24px; letter-spacing: 0.04em;
}
.about-text-col { display: flex; flex-direction: column; gap: 18px; }
.about-text-col .hdg { text-align: left; font-size: clamp(24px, 3.5vw, 36px); color: var(--purple);}
#about .body-p { font-size: 18px; line-height: 1.85; color: #333; }
.about-name  { font-family: "DM Serif Display", serif; font-size: 18px; color: var(--purple-dark); padding-top: 24px; }
.about-title { font-size: 16px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9a4aa0; margin-top: 2px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   APPROACH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.approach-principles {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
}
@media (max-width: 600px) { .approach-principles { grid-template-columns: 1fr; gap: 28px; } }
.principle { padding-left: 18px; border-left: 3px solid var(--pink); }
.p-title { font-family: "DM Serif Display", serif; font-size: 20px; color: var(--purple-dark); margin-bottom: 10px; }
.p-body { font-size: 18px; line-height: 1.78; color: #4a2050; }
.p-body em { color: var(--purple); font-style: normal; font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS (The Process)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.steps { display: flex; flex-direction: column; max-width: 740px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; left: 29px; top: 58px; bottom: -1px;
  width: 2px; background: #791879c0;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--p15); border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-family: "DM Serif Display", serif; font-size: 22px;
  color: var(--pink-deep); flex-shrink: 0;
}
.step-r { padding-bottom: 44px; }
.step:last-child .step-r { padding-bottom: 0; }
.step-tag {
  font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: 6px;
}
.step-title { font-family: "DM Serif Display", serif; font-size: 22px; color: var(--purple-dark); margin-bottom: 10px; }
.step-body { font-size: 18px; line-height: 1.75; color: var(--purple-deep); margin-bottom: 14px; }
.res-callout {
  margin-top: 44px;
  background: var(--pink-mid); border: 1px solid var(--p30);
  border-radius: 14px; padding: 28px 32px;
  max-width: 740px; margin-left: auto; margin-right: auto;
}
.res-callout-title { font-family: "DM Serif Display", serif; font-size: 20px; color: var(--purple); margin-bottom: 10px; }
.res-callout-body { font-size: 18px; line-height: 1.75; color: var(--purple-deep); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testi-carousel { position: relative; max-width: 740px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform 0.5s ease; }
.testi-slide { min-width: 100%; }
.testi-card {
  background: var(--white); border-radius: 18px; padding: 32px 36px 28px;
  border-top: 3px solid var(--pink);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 2px 24px rgba(67,3,75,0.07);
}
@media (max-width: 600px) { .testi-card { padding: 22px; } }
.testi-qm { font-family: "DM Serif Display", serif; font-size: 44px; color: var(--pink); opacity: 0.6; line-height: 1; margin-bottom: -8px; }
.testi-txt { font-size: 18px; line-height: 1.8; color: #3a1042; }
.testi-footer {
  display: flex; align-items: center; gap: 14px; padding-top: 6px;
  border-top: 1px solid rgba(67,3,75,0.08);
}
.testi-av-ph {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--pink);
  background: var(--pink-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: "DM Serif Display", serif; font-size: 16px; color: var(--purple);
}
.testi-auth { font-size: 14px; font-weight: 600; color: var(--purple-dark); }
.testi-meta { font-size: 12px; color: #9a4aa0; margin-top: 1px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(235,200,235,0.3); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active { background: var(--pink); transform: scale(1.2); }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.testi-btn {
  background: none; border: 1.5px solid rgba(235,200,235,0.35); color: var(--pink);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.testi-btn:hover { border-color: var(--pink); background: var(--p15); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING — open layout (no card box)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-open-header {
  display: flex; align-items: baseline; gap: 24px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.pricing-open-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--purple-dark); line-height: 1.2; margin: 0;
}
.pricing-open-price-row { display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.pricing-open-price {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 4vw, 36px); line-height: 1; color: var(--purple);
}
.pricing-open-unit { font-size: 18px; color: #7a3080; font-weight: 500; }
.pricing-open-intro {
  font-size: 18px; line-height: 1.75; color: #4a2050; margin-bottom: 28px;
}
.pricing-features-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #9a4aa0; margin-bottom: 16px;
}
.pricing-features-list {
  list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px;
}
.pricing-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 17px; line-height: 1.6; color: #3a1a40;
}
.pricing-feature-item svg { flex-shrink: 0; margin-top: 2px; }

.btn-primary-dark {
  display: inline-block; background: var(--purple); color: var(--white);
  font-weight: 600; font-size: 18px; padding: 16px 40px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary-dark:hover { background: var(--purple-dark); transform: translateY(-2px); }

.pricing-accessibility {
  border-top: 1px solid rgba(67,3,75,0.12); padding-top: 40px;
  margin-bottom: 32px;
}
.pricing-contact-divider {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 640px) { .pricing-contact-divider { grid-template-columns: 1fr; gap: 32px; } }
.pc-left h3 { font-family: "DM Serif Display", serif; font-size: 22px; color: var(--purple-dark); margin-bottom: 12px; }
.pc-left p { font-size: 17px; line-height: 1.75; color: #555; }
.pc-links { display: flex; flex-direction: column; gap: 10px; }
.pc-link {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  color: var(--purple-dark); padding: 12px 18px; border: 1px solid var(--pink);
  border-radius: 12px; background: var(--white); transition: background 0.2s, transform 0.2s;
  font-size: 16px; font-weight: 500;
}
.pc-link:hover { background: var(--pink-light); transform: translateY(-1px); }
.pc-link svg { flex-shrink: 0; }
.pc-link-sub {
  font-size: 11px; color: #9a4aa0; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--w08); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: "DM Sans", sans-serif; font-size: 16px; font-weight: 500;
  text-align: left; padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.05); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--pink); display: flex; align-items: center; justify-content: center;
  color: var(--pink); font-size: 19px; line-height: 1; transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15.5px; line-height: 1.78; color: var(--w70); padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHOTO LAYOUTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.photo-full {
  position: relative; width: 100%; height: 70vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.photo-full-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.photo-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(67,3,75,0.22), rgba(67,3,75,0.245));
}
.photo-full-content { position: relative; z-index: 2; text-align: center; padding: 0 48px; max-width: 680px; }
.photo-full-tagline {
  font-family: "DM Serif Display", serif; font-size: clamp(24px,4vw,42px);
  color: var(--white); line-height: 1.25; text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
.photo-full-tagline em { font-style: italic; color: var(--pink); }

.photo-text-split { width: 100%; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
@media (max-width: 700px) { .photo-text-split { grid-template-columns: 1fr; } }
.photo-text-split.flip { direction: rtl; }
.photo-text-split.flip > * { direction: ltr; }
.pts-photo { position: relative; overflow: hidden; min-height: 380px; background-size: cover; background-position: center; }
.pts-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(67,3,75,0.22), rgba(235,200,235,0.1)); }
.pts-text { display: flex; flex-direction: column; justify-content: center; padding: 72px 56px; gap: 18px; }
@media (max-width: 700px) { .pts-text { padding: 52px 32px; } }
.pts-label { display: block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-weight: 600; color: var(--pink); margin-bottom: 4px; }
.pts-heading { font-family: "DM Serif Display", serif; font-size: clamp(24px,3.5vw,38px); color: var(--white); line-height: 1.2; }
.pts-heading em { font-style: italic; color: var(--pink); }
.pts-body { font-size: 18px; line-height: 1.8; color: var(--w70); }

.photo-strip {
  width: 100%; height: 420px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.photo-strip-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.photo-strip-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(67,3,75,0.22), rgba(67,3,75,0.245)); }
.photo-strip-quote {
  position: relative; z-index: 2;
  font-family: "DM Serif Display", serif; font-size: clamp(18px,2.8vw,36px);
  color: var(--white); text-align: center; padding: 0 48px; max-width: 700px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.photo-strip-quote em { font-style: italic; color: var(--pink); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOOKING PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page-booking { padding-top: 64px; min-height: 100vh; background: var(--pink-light); }

.booking-top {
  background: var(--pink-light);
  padding: 72px 48px 0px;
  text-align: center;
}
.booking-top-inner { max-width: 560px; margin: 0 auto; }
.booking-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #9a4aa0; margin-bottom: 16px;
}
.booking-h {
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--purple-dark); line-height: 1.1; margin-bottom: 16px;
}
.booking-sub {
  font-size: 17px; color: #5a2060; line-height: 1.75; margin-bottom: 0; max-width: 800px;
  margin-left: auto; margin-right: auto;
  text-align: left;
}
@media (max-width: 600px) {
  .booking-top { padding: 52px 24px 40px; }
}

/* purple embed area */
.booking-embed-section {
  background: var(--pink-light);
  padding: 56px 48px 72px;
}
.booking-embed-card {
  max-width: 840px; margin: 0 auto;
  background: var(--purple);
  border: 1px solid var(--pink);
  border-radius: 18px;
  overflow: hidden;
}
.booking-embed-card-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink-mid); padding: 20px 28px 0;
}
.booking-embed-wrap { padding: 12px 28px 28px; }
@media (max-width: 600px) {
  .booking-embed-section { padding: 36px 16px 52px; }
  .booking-embed-wrap { padding: 12px 16px 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  text-align: center; padding: 28px 48px;
  font-size: 14px; color: var(--w50);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--purple-deep);
}
footer a { color: var(--pink); text-decoration: none; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer-ig {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pink); text-decoration: none; font-size: 15px; transition: opacity 0.2s;
}
.footer-ig:hover { opacity: 0.75; }