/*
Theme Name: Miss Laylah
Theme URI: https://misslaylah.com
Author: OpsHelp
Description: Custom one-page theme for Miss Laylah — independent companion. Editable weekly availability, gallery and reviews via the dashboard; contact details and homepage copy via the Customizer. Pink-on-black, sole-trader design.
Version: 1.7.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: misslaylah
*/

/* ===== Tokens ===== */

:root {
  --bg: #0a0508;
  --bg-panel: #130910;
  --bg-card: #1a0d15;
  --line: #3d2230;
  --line-soft: #2a1722;
  --accent: #ff4f8f;          /* hot rose-pink */
  --accent-deep: #c01459;     /* deep magenta */
  --accent-soft: #ffb3d0;     /* blush */
  --rose: #e8a3a8;            /* rose-gold secondary (replaces gold) */
  --rose-soft: #f6d3d2;
  --green: #7fe0b0;
  --text: #f6e9ef;
  --text-dim: #c3a7b5;
  --font-display: "Italiana", Georgia, serif;
  --font-body: "Poppins", "Helvetica Neue", sans-serif;
  --shadow-lift: 0 18px 45px rgba(0, 0, 0, 0.5);
  --radius: 16px;
}

/* ===== Base ===== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* keep anchored sections clear of the sticky header */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* faint film grain for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

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

img { max-width: 100%; display: block; }

::selection { background: var(--accent-deep); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent-deep), #5a0e2e);
  border-radius: 5px;
  border: 2px solid var(--bg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Ornamental divider — a thin sparkle, distinct from Bliss's petal ===== */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0.9rem auto 1.1rem;
  color: var(--rose);
  max-width: 300px;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose));
  opacity: 0.6;
}
.divider::after { background: linear-gradient(90deg, var(--rose), transparent); }
.divider span { font-size: 0.7rem; text-shadow: 0 0 12px rgba(232, 163, 168, 0.7); }
.divider.left { margin-left: 0; justify-content: flex-start; max-width: 210px; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.8rem 1.95rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid {
  background: linear-gradient(135deg, #ff77a9, var(--accent-deep));
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 79, 143, 0.38);
}
.btn-solid:hover { box-shadow: 0 10px 32px rgba(255, 79, 143, 0.55); }

.btn-outline {
  border: 1px solid rgba(255, 79, 143, 0.6);
  color: var(--text);
  background: rgba(255, 79, 143, 0.05);
}
.btn-outline:hover {
  background: rgba(255, 79, 143, 0.14);
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(255, 79, 143, 0.2);
}

/* ===== Header ===== */

.site-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 4vw;
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  background: rgba(10, 5, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background: rgba(10, 5, 8, 0.97);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

.logo { display: flex; align-items: center; gap: 0.7rem; color: var(--accent-soft); }
.logo-mark {
  color: var(--accent);
  display: flex;
  filter: drop-shadow(0 0 7px rgba(255, 79, 143, 0.55));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.04; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
}
.logo-text em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.52em;
  margin-right: -0.52em; /* cancel the trailing letter-space so the line centers true */
  text-transform: uppercase;
  color: var(--rose);
}

/* Location beside the logo (e.g. "Nottingham") */
.site-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.3rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--line);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.site-location svg { color: var(--accent); flex-shrink: 0; }

.main-nav { display: flex; gap: 1.9rem; margin-left: auto; }
.main-nav a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--text); }

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 79, 143, 0.55);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
  background: rgba(255, 79, 143, 0.05);
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.phone-pill:hover {
  background: rgba(255, 79, 143, 0.15);
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(255, 79, 143, 0.25);
}
.phone-pill svg { color: var(--accent); }
.phone-pill-wa svg { color: #25d366; } /* WhatsApp green for instant recognition */

.nav-toggle { display: none; }

/* ===== Site notice (closed banner) ===== */

.site-notice {
  position: relative;
  z-index: 101;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.site-notice-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 4vw;
}
.site-notice-icon { display: flex; flex-shrink: 0; opacity: 0.95; }
.site-notice-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.site-notice-call {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 0.34rem 0.95rem;
  transition: background 0.2s ease;
}
.site-notice-call:hover { background: rgba(255, 255, 255, 0.18); }
.site-notice-call svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .site-notice-inner { flex-wrap: wrap; gap: 0.45rem 0.85rem; }
  .site-notice-call { margin-left: 0; }
}

/* ===== Hero ===== */

.hero {
  display: grid;
  grid-template-columns: auto auto; /* size both to content... */
  justify-content: center;          /* ...and centre the text + photo as a group */
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: 5.5rem 4vw 6.5rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* candle-glow atmosphere */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  z-index: -1;
}
.hero::before {
  width: 540px;
  height: 540px;
  right: -6%;
  top: -15%;
  background: radial-gradient(circle, rgba(255, 79, 143, 0.32), transparent 65%);
  animation: drift 16s ease-in-out infinite alternate;
}
.hero::after {
  width: 400px;
  height: 400px;
  left: -10%;
  bottom: -25%;
  background: radial-gradient(circle, rgba(232, 163, 168, 0.18), transparent 65%);
  animation: drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, 35px) scale(1.12); }
}

/* large decorative line-art curve behind the content */
.hero-art {
  position: absolute;
  right: 38%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  color: var(--accent);
  opacity: 0.09;
  pointer-events: none;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}

.hero-content { max-width: 37rem; }

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.02;
  background: linear-gradient(120deg, #ffffff 25%, var(--accent-soft) 65%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  margin-top: 0.5rem;
  font-weight: 400;
}

.hero-tags {
  margin-top: 1.1rem;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-copy { margin-top: 1.4rem; max-width: 47ch; color: var(--text-dim); font-size: 1.02rem; }

.hero-actions { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

/* asymmetric double-frame around the hero photo */
.hero-frame { position: relative; }
.hero-frame::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 16px;
  right: -16px;
  bottom: 16px;
  border: 1px solid rgba(232, 163, 168, 0.45);
  border-radius: var(--radius);
  pointer-events: none;
  transition: transform 0.4s ease;
}
.hero-frame:hover::before { transform: translate(5px, -5px); }
.hero-frame .hero-photo,
.hero-frame .hero-placeholder {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lift);
}

/* Adapt to any uploaded ratio: never wider than ~half the row, never taller
   than the viewport-bound cap. */
.hero-photo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(46vw, 540px);
  max-height: min(64vh, 620px);
  border-radius: var(--radius);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s;
}
.scroll-cue:hover { color: var(--accent-soft); }
.scroll-cue svg { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ===== Sections ===== */

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 79, 143, 0.28);
}
.section-title.small { font-size: 1.4rem; }

.section-intro { text-align: center; color: var(--text-dim); max-width: 60ch; margin: 0 auto; }

/* ===== Availability (single therapist — a week strip) ===== */

.availability {
  padding: 5.5rem 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.availability::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 400px;
  left: 50%;
  top: -200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 79, 143, 0.13), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.availability-hours {
  margin-top: 0.8rem;
  color: var(--rose-soft);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* status pill */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.status.available {
  color: var(--green);
  background: rgba(127, 224, 176, 0.08);
  border: 1px solid rgba(127, 224, 176, 0.3);
}
.status.available .dot {
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127, 224, 176, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(127, 224, 176, 0); }
}
.status.unavailable {
  color: var(--text-dim);
  background: rgba(195, 167, 181, 0.06);
  border: 1px solid rgba(195, 167, 181, 0.22);
}
.status.unavailable .dot { background: var(--text-dim); }
.status.soon {
  color: var(--rose-soft);
  background: rgba(246, 211, 210, 0.07);
  border: 1px solid rgba(246, 211, 210, 0.28);
}
.status.soon .dot { background: var(--rose-soft); }

/* the week strip: 7 day chips */
.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.7rem;
  width: 100%;
  max-width: 820px;
  margin: 2.4rem 0 1.4rem;
}
.day-chip {
  border-radius: 14px;
  padding: 1rem 0.5rem 1.1rem;
  text-align: center;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.day-chip .dc-day {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.day-chip .dc-date {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1;
}
.day-chip .dc-hours {
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  margin-top: 0.25rem;
  min-height: 1.4em;
}
.day-chip .dc-state {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.7;
}
/* working day */
.day-chip.on {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(165deg, rgba(255, 79, 143, 0.6), rgba(232, 163, 168, 0.4)) border-box;
  box-shadow: 0 8px 26px rgba(255, 79, 143, 0.12);
}
.day-chip.on .dc-hours { color: var(--rose-soft); }
.day-chip.on .dc-state { color: var(--accent-soft); opacity: 1; }
/* today */
.day-chip.today { box-shadow: 0 0 0 1px var(--accent), 0 8px 26px rgba(255, 79, 143, 0.2); }
.day-chip.today .dc-day { color: var(--accent); }
.day-chip.on.today .dc-state { color: var(--green); }

.availability-closed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  max-width: 46ch;
  margin: 2.4rem auto 0.5rem;
  text-align: center;
}
.availability-closed-text {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text);
}

.bio { color: var(--text-dim); font-size: 0.95rem; margin: 1.8rem auto 0; max-width: 58ch; text-align: center; }
.bio p { margin: 0 0 0.6rem; }

/* ===== About (with a dynamic set of photos) ===== */

.about {
  display: grid;
  grid-template-columns: auto auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  justify-content: center;
  padding: 5.5rem 4vw;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
}
.about-media { width: min(46vw, 460px); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
/* A single photo reads as one framed portrait, not a lonely half-grid cell. */
.about-grid.count-1 {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin: 0 auto;
}
.about-photo-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(165deg, rgba(255, 79, 143, 0.5), rgba(232, 163, 168, 0.35) 60%, rgba(61, 34, 48, 0.6)) border-box;
  box-shadow: var(--shadow-lift);
}
.about-grid.count-1 .about-photo-item { aspect-ratio: 4 / 5; }
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-photo-item:hover .about-photo { transform: scale(1.05); }
.about-ph { aspect-ratio: 3 / 4; border-radius: 14px; }

.about-content { max-width: 44ch; }
.about-content .section-title { text-align: left; }
.about-content .divider { margin-left: 0; }
.about-content p { color: var(--text-dim); margin-bottom: 1rem; }

/* Several photos: stack the section — text on top, then a wide multi-column
   photo grid below — so the photos spread sideways instead of towering. */
.about--stacked {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.about--stacked .about-content { order: 1; max-width: 60ch; }
.about--stacked .about-content .section-title,
.about--stacked .about-content .divider {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.about--stacked .about-media { order: 2; width: 100%; max-width: 940px; }
/* Flexbox (not grid) so a partial last row centres instead of hugging the left
   — e.g. 6 photos lay out 4 then a centred 2. */
.about--stacked .about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about--stacked .about-grid .about-photo-item {
  flex: 1 1 200px;
  max-width: 240px;
}

/* ===== Services + Gallery ===== */

.split-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-bottom: 1px solid var(--line-soft);
}

.services {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 4.5rem 3.5vw;
  border-right: 1px solid var(--line-soft);
  background: var(--bg-panel);
}
.services .section-title { text-align: left; font-size: 1.7rem; }
.services p { color: var(--text-dim); max-width: 44ch; }

.services-photo-wrap {
  overflow: hidden;
  border-radius: 12px;
  min-height: 300px;
  box-shadow: var(--shadow-lift);
}
.services-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.service-list { list-style: none; margin: 1.4rem 0 1.8rem; }
.service-list li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.6rem;
  color: var(--text);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
/* sparkle bullet matches the divider ornament */
.service-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--rose);
  font-size: 0.72rem;
  text-shadow: 0 0 10px rgba(232, 163, 168, 0.55);
}
.service-name { flex-shrink: 0; order: 1; }
.service-list li::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-3px);
  order: 2;
}
.service-price {
  order: 3;
  color: var(--rose-soft);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.service-list li:not(:has(.service-price))::after { display: none; }

.gallery {
  padding: 4.5rem 3.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -160px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(255, 79, 143, 0.12), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  width: 100%;
  max-width: 700px;
  margin: 1.8rem 0 2rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--line-soft);
}
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-photo { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.7rem 0.55rem;
  background: linear-gradient(transparent, rgba(10, 5, 8, 0.85));
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--rose-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ===== Reviews ===== */

.reviews {
  padding: 5.5rem 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 360px;
  left: 50%;
  bottom: -180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(232, 163, 168, 0.09), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
  margin-top: 2.6rem;
}

.review-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.7rem;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(165deg, rgba(255, 79, 143, 0.35), rgba(61, 34, 48, 0.6)) border-box;
}
.review-mark {
  position: absolute;
  top: 0.4rem;
  left: 1.1rem;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.32;
  pointer-events: none;
}
.review-card .stars {
  color: var(--rose);
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  text-shadow: 0 0 10px rgba(232, 163, 168, 0.5);
}
.review-text {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text);
}
.review-text p { margin: 0 0 0.5rem; }
.review-card cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.review-grid > :nth-child(2) { transition-delay: 0.12s; }
.review-grid > :nth-child(3) { transition-delay: 0.24s; }

/* ===== Footer ===== */

.site-footer {
  background:
    radial-gradient(ellipse 50% 80% at 50% 110%, rgba(255, 79, 143, 0.16), transparent),
    var(--bg-panel);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  padding: 4rem 4vw 3rem;
}

.footer-logo .logo-text strong { font-size: 1.9rem; }

.contact-block { justify-self: center; }
.contact-list { list-style: none; margin-top: 1.3rem; }
.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.55rem 0;
}
.contact-list li .icon-ring {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 79, 143, 0.4);
  background: rgba(255, 79, 143, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-list li > span, .contact-list li > a { padding-top: 0.3rem; }
.contact-list a:hover { color: var(--accent-soft); }
.contact-list small { color: var(--text-dim); }

.promise-box {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  max-width: 310px;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(165deg, rgba(232, 163, 168, 0.4), rgba(61, 34, 48, 0.6)) border-box;
}
.promise-box h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-soft);
}
.promise-box h3 svg { color: var(--rose); }
.promise-box p { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.65rem; }

.footer-bar {
  border-top: 1px solid var(--line-soft);
  padding: 1.3rem 4vw;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-bar .copyright { margin-top: 0.45rem; letter-spacing: 0.08em; text-transform: none; opacity: 0.75; }

/* ===== Back to top ===== */

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 79, 143, 0.55);
  background: rgba(10, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s, box-shadow 0.25s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover {
  background: rgba(255, 79, 143, 0.18);
  box-shadow: 0 6px 22px rgba(255, 79, 143, 0.3);
}

/* ===== Placeholders (replaced by real photos when uploaded) ===== */

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 79, 143, 0.28), transparent 60%),
    linear-gradient(160deg, #2a1320, #120810);
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--text-dim);
  position: relative;
  overflow: hidden;
}
/* slow sheen sweep so placeholders feel alive, not broken */
.img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 179, 208, 0.06) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: sheen 5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.ph-icon { font-size: 2rem; color: var(--accent); opacity: 0.75; text-shadow: 0 0 18px rgba(255, 79, 143, 0.7); }
/* Line-art icon in a soft ring — a more finished placeholder than a bare label. */
.ph-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(255, 79, 143, 0.3);
  background: rgba(255, 79, 143, 0.06);
  filter: drop-shadow(0 0 14px rgba(255, 79, 143, 0.28));
  margin-bottom: 0.6rem;
}
.ph-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
  padding: 0 0.5rem;
}

.hero-placeholder { width: min(46vw, 480px); aspect-ratio: 4 / 5; border-radius: var(--radius); }
.services-placeholder { border-radius: 12px; min-height: 300px; }
.gallery-placeholder { aspect-ratio: 4 / 3; }

/* ===== Scroll-reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
/* gentle stagger inside grids */
.gallery-grid > :nth-child(3n + 2) { transition-delay: 0.12s; }
.gallery-grid > :nth-child(3n) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after,
  .scroll-cue svg,
  .img-placeholder::after,
  .status.available .dot { animation: none; }
  .btn, .day-chip, .gallery-photo, .hero-frame::before { transition: none; }
}

/* ===== WordPress bits ===== */

/* Sit below the fixed admin bar on desktop. */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 0; }
}

.logo .custom-logo { max-height: 52px; width: auto; }

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 79, 143, 0.35));
  transition: height 0.3s ease;
}
.site-header.scrolled .logo-img { height: 44px; }

.editor-hint {
  border: 1px dashed var(--accent);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  color: var(--accent-soft);
  font-size: 0.85rem;
  text-align: center;
  max-width: 480px;
}

.page-wrap { max-width: 820px; margin: 0 auto; padding: 3.5rem 4vw; min-height: 50vh; }
.page-wrap h1 { font-size: 2.2rem; letter-spacing: 0.12em; color: var(--accent-soft); margin-bottom: 1rem; }
.page-wrap p { margin-bottom: 1rem; color: var(--text-dim); }
.page-wrap a { color: var(--accent-soft); text-decoration: underline; }

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3.5rem 6vw 5rem; gap: 2.5rem; }
  .hero-art { display: none; }
  .hero-frame { max-width: 640px; margin: 0 auto; }
  .hero-photo { width: 100%; max-width: 100%; height: auto; max-height: none; }
  .hero-placeholder { width: 100%; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about-media { width: 100%; max-width: 460px; margin: 0 auto; order: 2; }
  .about-content { order: 1; }
  .about-content .section-title, .about-content .divider { text-align: center; margin-left: auto; }
  .split-row { grid-template-columns: 1fr; }
  .services { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .contact-list li { justify-content: center; text-align: left; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }

  .site-header { flex-wrap: wrap; gap: 1rem; }
  .logo-img { height: 46px; }
  .site-location { padding-left: 0.75rem; margin-left: 0; font-size: 0.68rem; letter-spacing: 0.1em; }
  .phone-pill { margin-left: auto; padding: 0.5rem 1rem; font-size: 0.8rem; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
    order: 4;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line-soft);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 0; }
  .main-nav a::after { display: none; }

  .hero h1 { letter-spacing: 0.09em; }
  .scroll-cue { display: none; }

  .availability { padding: 4rem 6vw; }
  /* week strip wraps to a 2-row, 4-col grid on small screens */
  .week-strip { grid-template-columns: repeat(4, 1fr); max-width: 420px; }
  .day-chip .dc-date { font-size: 1.3rem; }

  .services { grid-template-columns: 1fr; padding: 3.5rem 6vw; }
  .services-placeholder, .services-photo-wrap { min-height: 160px; }
  .gallery { padding: 3.5rem 6vw; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-caption { opacity: 1; transform: none; } /* no hover on touch */

  .reviews { padding: 4rem 6vw; }
  .back-to-top { right: 1rem; bottom: 1rem; width: 42px; height: 42px; }
}

@media (max-width: 460px) {
  .week-strip { grid-template-columns: repeat(2, 1fr); max-width: 260px; }
  .site-location { display: none; } /* keep the cramped phone header clean */
}

/* ===== Skip link ===== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent-deep);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 0 0 8px 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.skip-link:focus { left: 0; }

/* ===== Lightbox ===== */

.lightbox-link { display: block; width: 100%; height: 100%; cursor: zoom-in; }

.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 5, 8, 0.94);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: zoom-out;
}
.lb-overlay.open { opacity: 1; }
.lb-overlay img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lb-caption {
  margin-top: 1rem;
  color: var(--rose-soft);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 79, 143, 0.5);
  background: transparent;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover { background: rgba(255, 79, 143, 0.18); }

/* ===== Mobile call/WhatsApp bar ===== */

.mobile-cta { display: none; }

@media (max-width: 720px) {
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgba(10, 5, 8, 0.97);
    backdrop-filter: blur(10px);
  }
  .mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .mobile-cta-call {
    background: linear-gradient(135deg, #ff77a9, var(--accent-deep));
    color: #fff;
  }
  /* WhatsApp is the primary mobile booking action (green, wider); calling is
     a slim secondary. */
  .mobile-cta-whatsapp {
    flex: 1.9;
    background: linear-gradient(135deg, #25d366, #0e9f53);
    color: #fff;
  }
  .mobile-cta-whatsapp svg { color: #fff; }
  .mobile-cta-call-secondary {
    flex: 1;
    color: var(--text);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-cta-call-secondary svg { color: var(--accent); }
  .back-to-top { bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* ===== WhatsApp brand green for instant recognition ===== */

.btn-wa svg,
.icon-ring-wa svg { color: #25d366; }
.icon-ring-wa { border-color: rgba(37, 211, 102, 0.35); background: rgba(37, 211, 102, 0.07); }
