/* SereneHer — Premium ladies spa aesthetic */
:root {
  --cream: #faf8f5;
  --cream-2: #f3ede8;
  --cream-3: #ebe3dc;
  --ink: #2a2226;
  --ink-soft: #4a4045;
  --muted: #7a6e74;
  --rose: #8b5a6b;
  --rose-deep: #6d4454;
  --rose-light: #c4a4b0;
  --blush: #e8d5d9;
  --gold: #b8956e;
  --gold-light: #d4bc94;
  --gold-pale: #f0e6d6;
  --white: #ffffff;
  --line: rgba(109, 68, 84, 0.12);
  --line-strong: rgba(109, 68, 84, 0.22);
  --shadow-soft: 0 20px 60px rgba(42, 34, 38, 0.06);
  --shadow-glow: 0 8px 32px rgba(139, 90, 107, 0.18);
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --pad-x: clamp(24px, 5vw, 72px);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(232, 213, 217, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(240, 230, 214, 0.5), transparent 50%),
    var(--cream);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-deep);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--rose);
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* —— Top strip —— */
.top-strip {
  background: linear-gradient(90deg, var(--rose-deep), var(--rose));
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 12px var(--pad-x);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.top-strip a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 188, 148, 0.5);
}

.top-strip a:hover {
  color: var(--white);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pad-x);
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 22px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s var(--ease);
  border-radius: 2px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  width: 100%;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.6);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1e9e52, #25d366);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.wa-icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  display: block;
}

.btn .wa-icon {
  margin-right: 2px;
}

.wa-icon--sm {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 6px;
}

.wa-icon--float {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.top-strip a[data-wa-link] {
  display: inline-flex;
  align-items: center;
}

.header-wa {
  display: none;
}

@media (min-width: 900px) {
  .header-wa {
    display: inline-flex;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 0;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 34, 38, 0.88) 0%, rgba(109, 68, 84, 0.55) 45%, rgba(42, 34, 38, 0.75) 100%),
    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920&q=85") center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.eyebrow::before {
  content: "✦";
  color: var(--gold-light);
  font-size: 0.65rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  margin: 24px 0 20px;
  max-width: 14ch;
  font-weight: 500;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 300;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--white);
  font-weight: 500;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 28px;
}

.badge {
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.hero-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-light);
  color: var(--white);
}

/* —— COD band —— */
.cod-band {
  position: relative;
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--cream) 100%);
  padding: clamp(56px, 8vw, 88px) var(--pad-x);
  border-bottom: 1px solid var(--line);
}

.cod-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cod-band h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 500;
  text-align: center;
}

.cod-band > .container > p {
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.0625rem;
  text-align: center;
  max-width: 52ch;
}

.cod-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.cod-row > div {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cod-row > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(42, 34, 38, 0.08);
}

.cod-row strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin-bottom: 10px;
}

.cod-row > div {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* —— Sections —— */
.section {
  padding: clamp(72px, 10vw, 100px) 0;
}

.section-alt {
  background: var(--cream-2);
}

.section-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  font-weight: 500;
  color: var(--ink);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

.section-intro {
  color: var(--muted);
  font-size: 1.0625rem;
  font-weight: 300;
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* —— How it works —— */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.steps-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.steps-row:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.steps-row h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--ink);
}

.steps-row p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

/* —— Service cards —— */
#services .section-head {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.service-grid-wrap {
  padding-top: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card {
  display: flex;
  min-height: 100%;
}

.service-card article {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.service-card:hover article {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(42, 34, 38, 0.1);
  border-color: var(--rose-light);
}

.service-card--popular article,
.service-card--featured article {
  border-color: rgba(184, 149, 110, 0.35);
  box-shadow: 0 16px 48px rgba(109, 68, 84, 0.08);
}

.service-card--featured {
  grid-column: span 2;
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-3), var(--blush));
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cream-3);
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 34, 38, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(42, 34, 38, 0.12);
}

.service-card-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 1;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(42, 34, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 22px;
}

.service-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.service-card-desc {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
}

.service-card-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.service-card-price .label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-card-price .amount {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--rose-deep);
  line-height: 1;
}

.service-card-cod {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.service-card-cod::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--rose-deep);
  font-size: 0.65rem;
  font-weight: 700;
}

.btn-card-book {
  width: 100%;
  padding: 13px 20px;
  font-size: 0.8125rem;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(139, 90, 107, 0.25);
  gap: 8px;
}

.btn-card-book:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: var(--white);
}

/* —— Split video —— */
.split-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-full .video-wrap {
  position: relative;
  min-height: 100%;
}

.split-full .video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(250, 248, 245, 0.15));
  pointer-events: none;
}

.split-full .video-wrap video {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.split-content {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-content h2 {
  margin-top: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.split-content ul {
  padding-left: 0;
  list-style: none;
  margin: 20px 0 0;
}

.split-content li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.split-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.video-wrap {
  background: var(--ink);
}

/* —— Privacy —— */
.privacy-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 900px;
}

.privacy-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.privacy-row strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.privacy-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

/* —— Cities —— */
#cities {
  padding-left: 0;
  padding-right: 0;
}

#cities .section-head {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.cities-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 8px var(--pad-x) 0;
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
  border: none;
}

.city-link {
  flex: 0 1 auto;
  min-width: auto;
  padding: 14px 26px;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}

.city-link:hover {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* —— SEO —— */
.seo-block {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.seo-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  font-weight: 500;
  color: var(--ink);
  margin-top: 2.75rem;
}

.seo-block h2:first-child {
  margin-top: 0;
}

.seo-block h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 2rem;
  font-family: var(--font-sans);
}

.seo-block strong {
  color: var(--ink-soft);
  font-weight: 500;
}

/* —— FAQ —— */
.faq {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq details {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: transparent;
}

.faq summary {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  padding-right: 32px;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.faq a {
  color: var(--rose);
  font-weight: 500;
}

/* —— Booking —— */
.book-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.book-form-side {
  padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 56px);
  background: var(--white);
}

.book-info-side {
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px);
  background: linear-gradient(160deg, var(--cream-2) 0%, var(--blush) 100%);
  border-left: 1px solid var(--line);
}

.book-info-side h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 0;
}

.book-form-side label {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 20px 0 8px;
}

.book-form-side input,
.book-form-side select,
.book-form-side textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.book-form-side input:focus,
.book-form-side select:focus,
.book-form-side textarea:focus {
  outline: none;
  border-color: var(--rose-light);
  box-shadow: 0 0 0 3px rgba(196, 164, 176, 0.25);
  background: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* —— Footer —— */
.site-footer {
  background: linear-gradient(180deg, #1f191c 0%, #2a2226 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(56px, 8vw, 80px) var(--pad-x);
  margin-top: 0;
}

.site-footer a {
  color: var(--gold-light);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.9375rem;
  font-weight: 300;
}

.footer-inner strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

/* —— Floating WA —— */
.floating-wa {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #20b858, #25d366);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  text-decoration: none !important;
  transition: transform 0.3s var(--ease);
}

.floating-wa::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.floating-wa:hover {
  transform: scale(1.06);
}

/* —— City pages —— */
.city-hero {
  padding: clamp(64px, 10vw, 96px) var(--pad-x);
  background: var(--cream-2);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--rose);
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .header-wa {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  .nav {
    gap: 16px;
    font-size: 0.74rem;
  }
}

@media (max-width: 900px) {
  /* Collapse to hamburger menu */
  .nav-toggle {
    display: block;
    order: 3;
  }
  .header-inner .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(42, 34, 38, 0.12);
    padding: 8px var(--pad-x) 16px;
    text-transform: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
  .header-inner .nav.open {
    display: flex;
  }
  .header-inner .nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
  }
  .header-inner .nav a:last-child {
    border-bottom: none;
    color: var(--rose-deep);
    font-weight: 700;
  }
  .header-wa {
    display: none;
  }
  .site-header {
    position: relative;
  }
}

@media (max-width: 1024px) {
  .cod-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .service-card--featured {
    grid-column: span 2;
  }

  .split-full {
    grid-template-columns: 1fr;
  }

  .book-section {
    grid-template-columns: 1fr;
  }

  .book-info-side {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .privacy-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cod-row {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card--featured {
    grid-column: span 1;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}
