/* ============================================
   LOVE FREQUENCIES COLLECTIVE — Main Stylesheet
   ============================================ */

/* ── Custom Properties ── */
:root {
  /* Base tones */
  --cream:        #FFF9F4;
  --soft-white:   #FFFDF9;
  --baby-pink:    #FFD6E0;
  --peach:        #FFBFA3;
  --lavender:     #EDD9FF;

  /* Brand gradient: magenta → coral → orange → golden yellow */
  --brand-magenta: #E91E8C;
  --hot-pink:      #E91E8C;
  --deep-hot-pink: #C2185B;
  --brand-coral:   #FF5252;
  --orange:        #FF6B1A;
  --brand-yellow:  #F5C518;

  /* Text & surface */
  --deep-rose:    #8B1A4A;
  --text-dark:    #2C1A12;
  --text-mid:     #6B4038;
  --text-light:   #9B7060;
  --border-light: rgba(233,30,140,0.15);
  --shadow-soft:  0 4px 24px rgba(233,30,140,0.1);
  --shadow-med:   0 8px 40px rgba(233,30,140,0.18);

  /* Brand gradient shorthand */
  --brand-grad: linear-gradient(135deg, #E91E8C 0%, #FF5252 35%, #FF6B1A 65%, #F5C518 100%);

  --r-sm: 12px;
  --r-md: 24px;
  --r-lg: 40px;
  --r-full: 9999px;
  --font-brand:   'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;
  --ease: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img   { max-width:100%; display:block; }
a     { color:inherit; text-decoration:none; }
h1,h2,h3,h4 { font-family: var(--font-body); font-weight:900; line-height:1.25; }

/* ── Container ── */
.container { max-width:1100px; margin:0 auto; padding:0 24px; }

/* ── Rainbow stripe ── */
.rainbow-stripe {
  height: 5px;
  background: linear-gradient(90deg,
    #FF6B6B 0%, #FF8C42 14%, #FFD700 28%,
    #4CAF50 42%, #29B6F6 56%, #7B1FA2 70%,
    #E91E63 84%, #FF6B6B 100%);
}

/* ════════════════════════════
   NAVIGATION
   ════════════════════════════ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,249,244,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--baby-pink);
  color: var(--deep-rose);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--hot-pink);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ════════════════════════════
   BUTTONS
   ════════════════════════════ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: var(--r-full);
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233,30,140,0.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(233,30,140,0.55); }
.btn-outline {
  background: transparent;
  color: var(--hot-pink);
  border: 2px solid var(--hot-pink);
}
.btn-outline:hover { background: var(--baby-pink); transform: translateY(-2px); }

/* ════════════════════════════
   HERO
   ════════════════════════════ */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--cream) 0%, var(--baby-pink) 55%, var(--peach) 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.38;
  pointer-events: none;
}
.hb1 { width:380px; height:380px; background: radial-gradient(circle, var(--peach), var(--orange));     top:-100px; right:-70px;  animation: bdrift 13s ease-in-out infinite; }
.hb2 { width:280px; height:280px; background: radial-gradient(circle, var(--lavender), var(--hot-pink)); bottom:-70px; left:-50px; animation: bdrift 16s ease-in-out infinite reverse; }
.hb3 { width:180px; height:180px; background: radial-gradient(circle, var(--baby-pink), var(--peach));   top:35%; left:4%;       animation: bdrift 10s ease-in-out infinite; animation-delay:-4s; }
@keyframes bdrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(18px,-28px) scale(1.06); }
  66%      { transform: translate(-14px,18px) scale(0.96); }
}

/* ── Split hero layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 28px rgba(233,30,140,0.2));
}
.hero-right {
  text-align: left;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--brand-grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--deep-rose);
  text-shadow: 3px 3px 0 var(--peach);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-mid);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.75;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(4px);
  border: 2px solid var(--baby-pink);
  color: var(--deep-rose);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: var(--r-full);
}

/* CTA row — now lives inside hero-right column */
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

/* Mobile: stack vertically */
@media (max-width: 700px) {
  .hero { padding: 56px 24px 48px; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-right { text-align: center; }
  .hero-tags { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-logo-img { max-width: 280px; margin: 0 auto; }
}

/* ════════════════════════════
   WAVE DIVIDERS
   ════════════════════════════ */
.wave { display:block; width:100%; overflow:hidden; line-height:0; }
.wave svg { display:block; width:100%; }

/* ════════════════════════════
   SECTION SHARED
   ════════════════════════════ */
.section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--deep-rose);
  text-shadow: 2px 2px 0 var(--peach);
  margin-bottom: 14px;
}
.section-body {
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.8;
}

/* ════════════════════════════
   WELCOME SECTION
   ════════════════════════════ */
.welcome { background: var(--soft-white); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.welcome-text p { color: var(--text-mid); font-size:1.02rem; margin-bottom:14px; }
.welcome-text p:last-of-type { margin-bottom:0; }
.welcome-text .btn { margin-top:32px; }
.incl-tags { display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 28px; }
.incl-tag {
  background: linear-gradient(135deg, var(--baby-pink), var(--lavender));
  color: var(--deep-rose);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: var(--r-full);
}

/* Stacked photo placeholders */
.photo-stack { position:relative; height:380px; }
.ph {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
}
.ph-inner {
  width:100%; height:100%;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:8px; text-align:center; padding:18px;
  font-weight:700; font-size:0.8rem; color:var(--text-mid);
}
.ph-icon { font-size:1.8rem; }
.ph1 { width:230px; height:290px; top:0; left:0;   background:linear-gradient(135deg,var(--baby-pink),var(--peach));   transform:rotate(-3deg); z-index:1; }
.ph2 { width:210px; height:265px; top:35px; right:0; background:linear-gradient(135deg,var(--lavender),var(--baby-pink)); transform:rotate(2.5deg); z-index:2; }
.ph3 { width:175px; height:215px; bottom:0; left:50%; transform:translateX(-50%) rotate(-1.5deg); background:linear-gradient(135deg,var(--peach),var(--lavender)); z-index:3; }

/* ════════════════════════════
   GALLERY
   ════════════════════════════ */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.g-item {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
}
.g-item:hover { transform:translateY(-4px); box-shadow:var(--shadow-med); }
/* Row 1 — two equal halves */
.gc1 { grid-column: span 3; aspect-ratio: 3/2; }
.gc2 { grid-column: span 3; aspect-ratio: 3/2; }
/* Row 2 — three equal thirds */
.gc3 { grid-column: span 2; aspect-ratio: 4/3; }
.gc4 { grid-column: span 2; aspect-ratio: 4/3; }
.gc5 { grid-column: span 2; aspect-ratio: 4/3; }
.g-inner {
  width:100%; height:100%;
  display:flex; flex-direction:column;
  overflow:hidden;
  align-items:center; justify-content:center;
  gap:8px; text-align:center; padding:20px;
  font-weight:700; font-size:0.82rem; color:var(--text-mid);
}
.g-icon { font-size:2rem; }
.g-photo {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block;
}

/* ════════════════════════════
   SERVICES
   ════════════════════════════ */
.services-section { background: linear-gradient(180deg, var(--soft-white) 0%, var(--baby-pink) 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.svc-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: all var(--ease);
  text-align: center;
}
.svc-card:hover { border-color:var(--baby-pink); transform:translateY(-4px); box-shadow:var(--shadow-med); }
.svc-icon { font-size:2.4rem; margin-bottom:14px; }
.svc-heart-icon { height:54px; width:auto; display:block; margin:0 auto 18px; filter:drop-shadow(0 3px 10px rgba(233,30,140,0.22)); }
.svc-card h3 { font-size:1.15rem; color:var(--deep-rose); margin-bottom:10px; }
.svc-card p  { font-size:0.93rem; color:var(--text-light); margin-bottom:18px; line-height:1.7; }
.svc-prices { display:flex; flex-direction:column; gap:6px; }
.price-row {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 7px 12px;
  font-size: 0.83rem;
  font-weight: 900;
  color: var(--hot-pink);
}
.coming-card {
  background: linear-gradient(135deg, var(--hot-pink), var(--orange));
  border-radius: var(--r-md);
  padding: 38px 34px;
  text-align: center;
  color: #fff;
  margin-top: 36px;
  box-shadow: 0 6px 30px rgba(232,82,122,0.35);
}
.coming-card h3 {
  font-family: var(--font-brand);
  font-size: 1.7rem;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.12);
}
.coming-card p { font-size:0.98rem; opacity:0.9; }

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul a { color:rgba(255,255,255,0.65); font-size:0.88rem; transition:color var(--ease); }
.footer-col ul a:hover { color:var(--baby-pink); }
.footer-contact p { font-size:0.88rem; color:rgba(255,255,255,0.65); margin-bottom:7px; }
.footer-contact a { color:var(--peach); transition:color var(--ease); }
.footer-contact a:hover { color:var(--baby-pink); }

.footer-bottom { padding-top:28px; display:flex; flex-direction:column; gap:14px; }
.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.footer-disclaimer a { color:var(--peach); font-weight:700; }
.footer-disclosure {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-copy { font-size:0.76rem; color:rgba(255,255,255,0.3); }

/* ════════════════════════════
   SHELL PAGES
   ════════════════════════════ */
/* ════════════════════════════
   ORANGE DECORATIVE MOTIF
   ════════════════════════════ */
.orange-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.18;
}
@media (prefers-reduced-motion: no-preference) {
  .orange-deco { animation: orange-drift ease-in-out infinite; }
  @keyframes orange-drift {
    0%,100% { transform: rotate(0deg) scale(1); }
    40%      { transform: rotate(8deg) scale(1.04); }
    70%      { transform: rotate(-5deg) scale(0.97); }
  }
}

.page-hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(155deg, var(--cream) 0%, var(--baby-pink) 100%);
  position: relative;
  overflow: hidden;
}
.page-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.32;
  pointer-events: none;
}
.construction {
  padding: 80px 24px;
  text-align: center;
}
.construction-card {
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-med);
  border: 2px solid var(--baby-pink);
}
.construction-card .big-emoji { font-size:3.5rem; margin-bottom:18px; }
.construction-card h2 {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  color: var(--deep-rose);
  text-shadow: 2px 2px 0 var(--peach);
  margin-bottom: 10px;
}
.construction-card p { color:var(--text-mid); font-size:1rem; line-height:1.7; }

/* ════════════════════════════
   NAV BOOK NOW BUTTON
   ════════════════════════════ */
.nav-book {
  background: var(--brand-grad) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  box-shadow: 0 3px 12px rgba(233,30,140,0.35);
  transition: transform var(--ease), box-shadow var(--ease) !important;
}
.nav-book:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(233,30,140,0.55) !important;
  background: linear-gradient(135deg, var(--deep-hot-pink), var(--orange)) !important;
  color: #fff !important;
}

/* ════════════════════════════
   BOOK NOW CTA BAND
   ════════════════════════════ */
.book-cta {
  background: linear-gradient(135deg, var(--baby-pink) 0%, var(--peach) 100%);
  border-radius: var(--r-lg);
  padding: 52px 40px;
  text-align: center;
  margin: 60px 0 0;
  border: 2px solid rgba(232,82,122,0.15);
  box-shadow: var(--shadow-soft);
}
.book-cta h3 {
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--deep-rose);
  text-shadow: 2px 2px 0 rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.book-cta p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════
   FAQ ACCORDION (details/summary)
   ════════════════════════════ */
.faq-section { background: var(--soft-white); }
.faq-list {
  margin-top: 48px;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

details.faq-item {
  border-radius: var(--r-md);
  border: none;
  border-left: 5px solid var(--hot-pink);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--ease), transform var(--ease);
  overflow: hidden;
}
details.faq-item:hover {
  box-shadow: var(--shadow-med);
  transform: translateY(-3px);
}
details.faq-item[open] {
  box-shadow: var(--shadow-med);
  transform: translateY(-3px);
}

/* 5-colour rotating bubble palette — vivid left accent + tinted shadow */
details.faq-item:nth-of-type(5n+1) { background: #FFF0F5; border-left-color: #E8527A; box-shadow: 0 4px 28px rgba(232,82,122,0.15); }
details.faq-item:nth-of-type(5n+2) { background: #FFF4EE; border-left-color: #FF8C42; box-shadow: 0 4px 28px rgba(255,140,66,0.15); }
details.faq-item:nth-of-type(5n+3) { background: #F5F0FF; border-left-color: #A87DE0; box-shadow: 0 4px 28px rgba(168,125,224,0.15); }
details.faq-item:nth-of-type(5n+4) { background: #FEFBEE; border-left-color: #ECAA00; box-shadow: 0 4px 28px rgba(236,170,0,0.15); }
details.faq-item:nth-of-type(5n+5) { background: #FFF0F9; border-left-color: #C93A8C; box-shadow: 0 4px 28px rgba(201,58,140,0.15); }

summary.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px 22px 28px;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--deep-rose);
  font-family: var(--font-body);
  list-style: none;
  transition: color var(--ease);
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question:hover { color: var(--hot-pink); }

/* CSS-only chevron — no emoji needed */
summary.faq-question::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--hot-pink);
  border-bottom: 2.5px solid var(--hot-pink);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: auto;
}
details.faq-item[open] summary.faq-question::after {
  transform: rotate(225deg);
}

.faq-answer {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.82;
  border-top: 1px solid rgba(232,82,122,0.12);
  margin: 0 24px 0 28px;
  padding: 18px 0 26px;
}

/* ════════════════════════════
   BOOKING PAGE
   ════════════════════════════ */
.booking-section { background: var(--soft-white); padding: 80px 0; }
.booking-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 60px 48px;
  box-shadow: var(--shadow-med);
  border: 2px solid var(--baby-pink);
  text-align: center;
}
.booking-card .big-emoji { font-size: 3rem; margin-bottom: 18px; }
.booking-card h2 {
  font-family: var(--font-brand);
  font-size: 2rem;
  color: var(--deep-rose);
  text-shadow: 2px 2px 0 var(--peach);
  margin-bottom: 14px;
}
.booking-card p { color: var(--text-mid); font-size:1rem; line-height:1.75; margin-bottom: 14px; }
.booking-placeholder {
  background: var(--cream);
  border: 2px dashed var(--baby-pink);
  border-radius: var(--r-md);
  padding: 40px 24px;
  margin: 28px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}
.booking-contact { margin-top: 28px; }
.booking-contact p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 8px; }
.booking-contact a { color: var(--hot-pink); font-weight: 900; }

/* ════════════════════════════
   ACCESSIBILITY WIDGET
   ════════════════════════════ */
#a11y-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-body);
}
#a11y-trigger {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--orange));
  border: 3px solid #fff;
  box-shadow: 0 4px 18px rgba(232,82,122,0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  transition: transform var(--ease), box-shadow var(--ease);
  margin-left: auto;
}
#a11y-trigger:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(232,82,122,0.6); }
#a11y-trigger:focus-visible { outline: 3px solid #FFD700; outline-offset: 3px; }

#a11y-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 230px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  border: 2px solid var(--baby-pink);
  overflow: hidden;
}
#a11y-panel[hidden] { display: none; }
.a11y-heading {
  background: linear-gradient(135deg, var(--baby-pink), var(--peach));
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-rose);
}
.a11y-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--ease);
  text-align: left;
}
.a11y-opt:last-child { border-bottom: none; }
.a11y-opt:hover { background: var(--cream); }
.a11y-opt:focus-visible { outline: 3px solid var(--hot-pink); outline-offset: -3px; }
.a11y-opt-icon {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  color: var(--hot-pink);
  border: 2px solid var(--border-light);
}
.a11y-opt-label { flex: 1; }
.a11y-toggle-pill {
  width: 36px; height: 20px;
  border-radius: 10px;
  background: #ddd;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s;
}
.a11y-toggle-pill::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.a11y-opt[aria-pressed="true"] .a11y-toggle-pill {
  background: var(--hot-pink);
}
.a11y-opt[aria-pressed="true"] .a11y-toggle-pill::after {
  transform: translateX(16px);
}
.a11y-opt[aria-pressed="true"] .a11y-opt-icon {
  background: var(--baby-pink);
  border-color: var(--hot-pink);
}

/* ── Large Text Mode ── */
body.a11y-large-text { font-size: 115%; }

/* ── Reduce Motion Mode ── */
body.a11y-no-motion *,
body.a11y-no-motion *::before,
body.a11y-no-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

/* ── High Contrast Mode ── */
body.a11y-high-contrast {
  --cream:        #0f0f0f;
  --soft-white:   #1a1a1a;
  --baby-pink:    #2a2a2a;
  --peach:        #333333;
  --lavender:     #2a2a2a;
  --hot-pink:     #FFD700;
  --deep-hot-pink:#FFC400;
  --orange:       #FFD700;
  --deep-rose:    #FFD700;
  --text-dark:    #ffffff;
  --text-mid:     #e8e8e8;
  --text-light:   #cccccc;
  --border-light: rgba(255,215,0,0.25);
  --shadow-soft:  0 4px 20px rgba(0,0,0,0.6);
  --shadow-med:   0 8px 36px rgba(0,0,0,0.7);
  background: #0f0f0f;
  color: #ffffff;
}
body.a11y-high-contrast .nav-wrap {
  background: rgba(5,5,5,0.98) !important;
  border-bottom-color: rgba(255,215,0,0.3);
}
body.a11y-high-contrast .svc-card,
body.a11y-high-contrast .construction-card,
body.a11y-high-contrast .booking-card,
body.a11y-high-contrast #a11y-panel {
  background: #1a1a1a;
  border-color: #FFD700;
  color: #fff;
}
body.a11y-high-contrast .svc-card p,
body.a11y-high-contrast .construction-card p,
body.a11y-high-contrast .booking-card p,
body.a11y-high-contrast .a11y-opt { color: #e8e8e8; }
body.a11y-high-contrast .a11y-opt { background: #1a1a1a; border-color: rgba(255,215,0,0.2); }
body.a11y-high-contrast .a11y-opt:hover { background: #2a2a2a; }
body.a11y-high-contrast .price-row { background: #2a2a2a; }
body.a11y-high-contrast .tag { background: rgba(255,215,0,0.15); border-color: #FFD700; color: #FFD700; }
body.a11y-high-contrast .incl-tag { background: #333; color: #FFD700; }
body.a11y-high-contrast .btn-outline { border-color: #FFD700; color: #FFD700; }
body.a11y-high-contrast .btn-outline:hover { background: rgba(255,215,0,0.15); }
body.a11y-high-contrast .faq-question { color: #FFD700; }
body.a11y-high-contrast .nav-links a { color: #e8e8e8; }
body.a11y-high-contrast .nav-links a:hover,
body.a11y-high-contrast .nav-links a.active { background: #2a2a2a; color: #FFD700; }

/* ════════════════════════════
   ABOUT / BIO PAGE
   ════════════════════════════ */
.bio-section { background: var(--soft-white); }

.bio-content {
  max-width: 820px;
  margin: 0 auto;
}

/* Headshot + intro two-column layout */
.bio-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.bio-headshot {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--baby-pink), var(--lavender));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 24px;
  border: 3px dashed var(--border-light);
  overflow: hidden;
}
.bio-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--r-lg) - 3px);
}
.bio-headshot-icon {
  font-size: 3rem;
  opacity: 0.4;
}
@media (max-width: 700px) {
  .bio-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bio-headshot {
    max-width: 240px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }
}

.bio-para {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5em;
}

.bio-emphasis {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--deep-rose);
}

.bio-specialties {
  background: var(--cream);
  border-left: 5px solid var(--hot-pink);
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin: 40px 0;
  box-shadow: var(--shadow-soft);
}

.bio-closing {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--deep-rose);
  margin: 0 0 48px;
}

.bio-creds {
  background: linear-gradient(135deg, #FFF0F5 0%, #F5F0FF 100%);
  border-radius: var(--r-md);
  padding: 32px 36px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 64px;
}

.bio-creds-name {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--deep-rose);
  margin: 12px 0 16px;
}

.bio-creds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-creds-list li {
  color: var(--text-mid);
  font-size: 0.98rem;
  padding-left: 20px;
  position: relative;
}

.bio-creds-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--hot-pink);
  font-size: 0.7rem;
  top: 4px;
}

/* ════════════════════════════
   RESOURCES PAGE
   ════════════════════════════ */
.resources-section { background: var(--soft-white); }

.resources-content {
  max-width: 760px;
  margin: 0 auto;
}

.resources-disclaimer {
  background: #FFFBEE;
  border-left: 4px solid #ECAA00;
  border-radius: var(--r-sm);
  padding: 16px 20px;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 56px;
}

.res-block {
  margin-bottom: 56px;
}

/* Section headings on the resources page are full h2-level — override the global tiny badge style */
.resources-content .section-label {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  color: var(--hot-pink);
  margin-bottom: 6px;
}

.res-block-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-mid);
  margin: 4px 0 22px;
  line-height: 1.5;
}

.res-block-intro {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 6px 0 22px;
}

.res-block-intro a {
  color: var(--hot-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Crisis cards */
.crisis-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.crisis-card {
  background: #FFF5F7;
  border-left: 5px solid var(--hot-pink);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  box-shadow: 0 2px 16px rgba(232,82,122,0.1);
}

.crisis-name {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--deep-rose);
  margin-bottom: 5px;
}

.crisis-contact {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--hot-pink);
  text-decoration: none;
}

.crisis-contact:hover { text-decoration: underline; }

.crisis-contact-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.crisis-contact-sep {
  color: var(--text-light);
  font-size: 0.85rem;
}

.crisis-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 6px;
}

/* Resource link cards */
.resource-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.resource-link {
  display: block;
  background: white;
  border-radius: var(--r-sm);
  border: 2px solid var(--border-light);
  padding: 16px 20px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
}

.resource-link:hover {
  border-color: rgba(232,82,122,0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.resource-link-name {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--deep-rose);
  margin-bottom: 4px;
}

.resource-link-url {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--hot-pink);
  margin-left: 6px;
}

.resource-link-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Book categories */
.book-categories {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}

.book-category-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--deep-rose);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}

.book-list li {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.book-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--hot-pink);
  font-size: 0.65rem;
  top: 5px;
}

.book-link {
  color: var(--deep-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.book-link:hover { color: var(--hot-pink); }

/* Kerstyn's note */
.kerstyn-note {
  background: linear-gradient(135deg, #FFF0F5 0%, #F5F0FF 100%);
  border-radius: var(--r-md);
  padding: 32px 36px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 64px;
}

.kerstyn-note-text {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.kerstyn-note-sig {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  color: var(--hot-pink);
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .welcome-grid { grid-template-columns: 1fr; gap:40px; }
  .photo-stack { height:280px; }
  .ph1 { width:185px; height:230px; }
  .ph2 { width:165px; height:205px; }
  .ph3 { width:145px; height:175px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gc1 { grid-column: span 2; aspect-ratio: 3/2; }
  .gc2 { grid-column: span 2; aspect-ratio: 3/2; }
  .gc3 { grid-column: span 2; aspect-ratio: 4/3; }
  .gc4 { grid-column: span 2; aspect-ratio: 4/3; }
  .gc5 { grid-column: span 4; aspect-ratio: 16/6; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap:32px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gc1,.gc2,.gc3,.gc4,.gc5 { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-cta { flex-direction:column; align-items:center; }
}
