/* ============================================
   HOME PAGE — hero, sections, CTA, prose
   ============================================ */

.section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.section--masseuses,
.section--services,
.section--faq,
.section--cta { background: transparent; }

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gold-light);
  margin: 0;
  line-height: 1.2;
}

.section__more {
  color: var(--gold);
  text-decoration: none;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section__more:hover { color: var(--gold-light); }

/* ---- Hero (home) ---- */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  padding-block: var(--sp-8);
}

.hero__inner { position: relative; z-index: 1; }

/* ---- Global animated wine orbs (all pages) ---- */
.site-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}

.site-orbs span:nth-child(1) {
  width: 560px;
  height: 560px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(160,30,100,0.32), rgba(90,10,60,0.10) 65%, transparent);
  animation: orb-drift-a 14s var(--ease) infinite alternate,
             orb-pulse 9s ease-in-out infinite;
}

.site-orbs span:nth-child(2) {
  width: 440px;
  height: 440px;
  top: 35%;
  right: -6%;
  background: radial-gradient(circle at 60% 40%, rgba(120,20,80,0.28), rgba(70,10,50,0.08) 65%, transparent);
  animation: orb-drift-b 18s var(--ease) infinite alternate,
             orb-pulse 12s ease-in-out 2s infinite;
}

.site-orbs span:nth-child(3) {
  width: 380px;
  height: 380px;
  bottom: 5%;
  left: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(140,25,90,0.26), rgba(80,10,55,0.07) 65%, transparent);
  animation: orb-drift-c 11s var(--ease) infinite alternate,
             orb-pulse 7s ease-in-out 1s infinite;
}

.site-orbs span:nth-child(4) {
  width: 320px;
  height: 320px;
  top: 55%;
  left: 48%;
  background: radial-gradient(circle at 40% 60%, rgba(100,15,70,0.23), transparent 65%);
  animation: orb-drift-a 16s var(--ease) 3s infinite alternate,
             orb-pulse 10s ease-in-out 4s infinite;
}

.site-orbs span:nth-child(5) {
  width: 260px;
  height: 260px;
  top: 12%;
  right: 22%;
  background: radial-gradient(circle at 50% 40%, rgba(170,40,110,0.20), transparent 65%);
  animation: orb-drift-b 13s var(--ease) 5s infinite alternate,
             orb-pulse 8s ease-in-out 2.5s infinite;
}

.site-orbs span:nth-child(6) {
  width: 240px;
  height: 240px;
  bottom: 22%;
  right: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(110,18,75,0.24), transparent 65%);
  animation: orb-drift-c 15s var(--ease) 6s infinite alternate,
             orb-pulse 11s ease-in-out 1.5s infinite;
}

@keyframes orb-drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 50px) scale(0.95); }
  100% { transform: translate(60px, 20px) scale(1.08); }
}

@keyframes orb-drift-b {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-50px, 30px) scale(1.06); }
  70%  { transform: translate(30px, -40px) scale(0.94); }
  100% { transform: translate(-25px, 55px) scale(1.04); }
}

@keyframes orb-drift-c {
  0%   { transform: translate(0, 0) scale(0.95); }
  35%  { transform: translate(35px, 45px) scale(1.07); }
  70%  { transform: translate(-45px, -25px) scale(1.02); }
  100% { transform: translate(20px, -50px) scale(0.97); }
}

@keyframes orb-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .site-orbs span { animation: none; }
}

/* ---- Remove old hero__orbs block (now handled by .site-orbs) ---- */
.hero__orbs { display: none; }

.hero__inner {
  max-width: 760px;
  text-align: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 var(--sp-5);
  color: var(--text);
}

.hero__title-accent {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero__lead {
  font-size: var(--text-md);
  line-height: var(--leading-body);
  color: var(--text-muted);
  margin: 0 auto var(--sp-7);
  max-width: 56ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-6);
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.hero__bullets li::before {
  content: '★ ';
  color: var(--gold);
  margin-right: 0.4em;
}

/* ---- Massage grid ---- */
.massage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}

/* ---- CTA card ---- */
.cta-card {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 720px;
  margin: 0 auto;
}

.cta-card h2 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 var(--sp-3);
}

.cta-card p {
  color: var(--text-muted);
  margin: 0 0 var(--sp-5);
}

/* ---- Page hero (sub-pages) ---- */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: transparent;
}

.page-hero--sm { padding-block: clamp(2rem, 5vw, 3rem); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  margin: 0 0 var(--sp-2);
}

.page-hero__sub {
  color: var(--text-muted);
  font-size: var(--text-md);
  margin: 0;
}

/* ---- Article-narrow (about, contact, FAQ, privacy) ---- */
.article-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding-block: var(--sp-6) clamp(3rem, 6vw, 5rem);
}

.article-prose {
  color: var(--text);
  line-height: var(--leading-body);
  font-size: var(--text-base);
}

.article-prose h2 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: var(--text-xl);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
}

.article-prose p { margin: 0 0 var(--sp-4); }

.article-prose ul {
  margin: 0 0 var(--sp-5);
  padding-left: var(--sp-5);
}

.article-prose li { margin-bottom: var(--sp-2); }

.article-prose a { color: var(--gold); text-decoration: underline; }

.article-cta { text-align: center; margin-top: var(--sp-7); }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: var(--sp-5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-card h2 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: var(--text-lg);
  margin: 0 0 var(--sp-3);
}

.contact-card p { color: var(--text); margin: 0 0 var(--sp-2); }
.contact-card .muted { color: var(--text-faint); font-size: var(--text-sm); }

/* Embedded Google Maps (contact + CMS contacts) */
.contact-map-section {
  margin-top: var(--sp-8);
  width: 100%;
}

.contacts-page .contact-map-section {
  margin-top: var(--sp-10);
}

.contact-map-section__title {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: var(--text-lg);
  margin: 0 0 var(--sp-4);
}

.contact-map {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 16 / 9;
  min-height: 14rem;
  isolation: isolate;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 48rem) {
  .contact-map {
    min-height: 18rem;
  }
}

@media (min-width: 64rem) {
  .contact-map {
    min-height: 22rem;
  }
}

.contact-map__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Extras list ---- */
.extras-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.extras-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color 0.2s;
}

.extras-list__item:hover { border-color: var(--gold-deep); }

.extras-list__name { color: var(--text); }
.extras-list__price {
  color: var(--gold-light);
  font-weight: var(--weight-semibold, 600);
  white-space: nowrap;
}
