﻿/* SAFIR — Moroccan Hammam & Spa — style.css */


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lora:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.cdnfonts.com/css/tt-ramillas');

.amp { font-family: 'Inter', system-ui, sans-serif; font-style: normal; }

/* ─── Variables ─── */
:root {
  --white:     #ffffff;
  --blue:      #001448;
  --gold:      #FCDE6B;
  --gold-lt:   #FDE99A;
  --gold-dk:   #C9A84C;
  --cream:     #F9F5EE;
  --dark:      #0D1520;
  --text:      #1A1A1A;
  --muted:     #717171;
  --border:    #E8E0D4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Inter', system-ui, sans-serif;
  --font-body:    'Lora', Georgia, serif;

  --max-w:       1200px;
  --section-pad: 110px;
  --header-h:    72px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* UI elements keep Inter (Lora is for editorial/body text only) */
.nav-link, .btn-primary, .btn-outline, .btn-ghost-light,
#langBtn, .header-cta, .footer-links a, .footer-col-title,
.footer-copy, .pricing-feature, .pricing-name, .pt-name, .pt-duration,
#float-book {
  font-family: 'Inter', system-ui, sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ─── Layout Utilities ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-pad { padding: var(--section-pad) 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--blue);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
  margin-top: 20px;
}
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 15px 34px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: color 0.22s, border-color 0.22s, transform 0.2s;
}
.btn-outline:hover { color: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-2px); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover { color: var(--gold-lt); border-bottom-color: var(--gold-lt); }

/* ─── Scroll Progress ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ─── Header ─── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 44px;
  gap: 40px;
  transition: background 0.35s, box-shadow 0.35s;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
#header.nav-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 40px; width: auto; object-fit: contain; }
.logo-text-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
}
#header.scrolled .logo-text-fallback { color: var(--blue); }

#main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav-link:hover { color: var(--gold-lt); }
.nav-link:hover::after { transform: scaleX(1); }
#header.scrolled .nav-link { color: var(--blue); }
#header.scrolled .nav-link:hover { color: var(--gold-dk); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
#langBtn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.28);
  transition: all 0.2s;
}
#langBtn:hover { color: var(--white); border-color: rgba(255,255,255,0.7); }
#header.scrolled #langBtn { color: var(--blue); border-color: rgba(11,30,63,0.28); }
#header.scrolled #langBtn:hover { border-color: var(--gold); color: var(--gold-dk); }

.header-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark) !important;
  padding: 11px 24px;
  transition: background 0.22s;
}
.header-cta:hover { background: var(--gold-lt); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s;
}
#header.scrolled .nav-mobile-toggle span { background: var(--blue); }

/* Mobile nav overlay */
#main-nav.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--blue);
  padding: 36px 36px max(40px, env(safe-area-inset-bottom));
  gap: 0;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  align-items: flex-start;
}
#main-nav.mobile-open .nav-link {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  letter-spacing: 0;
}
#main-nav.mobile-open .nav-link::after { display: none; }
#main-nav.mobile-open .nav-link:hover { color: var(--gold-lt); }

/* ─── Hero (Video) ─── */
#hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 1s;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,21,32,0.3) 0%, rgba(13,21,32,0.15) 40%, rgba(13,21,32,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'TT Ramillas', 'Playfair Display', Georgia, serif;
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 30px;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  height: 52vh; min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  padding-bottom: 56px;
  position: relative;
  margin-top: var(--header-h);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,21,32,0.88) 0%, rgba(13,21,32,0.35) 55%, rgba(13,21,32,0.2) 100%);
}
.page-hero .container { position: relative; z-index: 2; color: white; }
.page-hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'TT Ramillas', 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 400;
  line-height: 1.0;
  color: white;
  text-wrap: balance;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }

/* ─── Intro Section ─── */
#intro { padding: var(--section-pad) 0; background: var(--white); }
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.intro-left .section-title { margin-bottom: 24px; }
.intro-accent {
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.intro-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}
.intro-body p + p { margin-top: 18px; }
.intro-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.intro-right { position: relative; }
.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro-img-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 18px 22px;
  line-height: 1.4;
}

/* ─── Ritual Carousel ─── */
#ritual { padding: var(--section-pad) 0 80px; background: var(--white); }
.ritual-header { padding: 0 28px; max-width: var(--max-w); margin: 0 auto 56px; }

.carousel-outer { position: relative; }
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 20px;
  padding-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1200px) / 2 + 28px));
  padding-bottom: 4px;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.carousel-slide {
  flex: 0 0 min(500px, 82vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.carousel-slide:hover { box-shadow: 0 16px 48px rgba(11,30,63,0.09); }

.slide-img-wrap { overflow: hidden; }
.slide-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.carousel-slide:hover .slide-img { transform: scale(1.05); }

.slide-body { padding: 28px 32px 36px; }
.slide-step {
  font-family: var(--font-accent);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.slide-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.2;
}
.slide-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.carousel-dot {
  height: 2px;
  width: 28px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s, width 0.3s;
}
.carousel-dot.active { background: var(--gold); width: 48px; }

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.carousel-arrow {
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s;
  color: var(--blue);
}
.carousel-arrow:hover { background: var(--blue); border-color: var(--blue); color: white; }
.carousel-arrow svg { pointer-events: none; }

/* ─── 5 Senses ─── */
#senses {
  padding: var(--section-pad) 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
#senses::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 4 L56 20 L56 48 L30 64 L4 48 L4 20 Z' fill='none' stroke='rgba(201,168,76,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}
.senses-header { position: relative; z-index: 1; }
.senses-header .section-title { color: var(--white); }
.senses-header .section-lead { color: rgba(255,255,255,0.5); }

.senses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.06);
}
.sense-item {
  padding: 56px 32px 52px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s;
  position: relative;
}
.sense-item:last-child { border-right: none; }
.sense-item:hover { background: rgba(201,168,76,0.07); }
.sense-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 22px;
}
.sense-rule {
  width: 22px; height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.sense-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.sense-desc {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
}

/* ─── Services ─── */
#services { padding: var(--section-pad) 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.service-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,21,32,0.9) 0%, rgba(13,21,32,0.25) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 32px;
  color: white;
}
.service-card-label {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-card-title {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card-from {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.service-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.service-card:hover .service-card-cta { transform: translateY(0); opacity: 1; }

/* ─── Gallery ─── */
#gallery { padding: var(--section-pad) 0 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
  margin-top: 56px;
}
.gallery-item { overflow: hidden; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─── Testimonials ─── */
#testimonials { padding: var(--section-pad) 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11,30,63,0.08);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ─── Quote Banner ─── */
#quote-banner {
  padding: var(--section-pad) 0;
  background: var(--blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#quote-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.45;
  color: rgba(201,168,76,0.18);
  display: block;
  margin-bottom: 16px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.4;
  position: relative; z-index: 1;
}
.quote-attribution {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative; z-index: 1;
}

/* ─── Booking Section ─── */
#booking-section { padding: var(--section-pad) 0; background: var(--white); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.booking-img-wrap { position: relative; }
.booking-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.booking-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 13px;
  padding: 20px 24px;
  line-height: 1.4;
  font-weight: 500;
}
.booking-info .section-title { margin-bottom: 18px; }
.booking-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}
.hours-list { display: flex; flex-direction: column; margin-bottom: 36px; }
.hour-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hour-day { font-weight: 600; color: var(--text); min-width: 120px; }
.hour-time { color: var(--muted); flex: 1; }
.hour-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.booking-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Pricing Cards ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(11,30,63,0.09); }
.pricing-card.featured {
  background: var(--blue);
  border-color: var(--blue);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price sup { font-size: 26px; vertical-align: super; }
.pricing-duration {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-duration { color: rgba(255,255,255,0.45); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.55;
  color: var(--text);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.78); }
.pricing-feature::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 300; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--blue);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-dk); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease-out), padding 0.42s;
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 28px; }

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  margin-top: 60px;
}
.team-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}
.team-card--reverse {
  grid-template-columns: 1fr 360px;
}
.team-card--reverse .team-img {
  grid-column: 2;
  grid-row: 1;
}
.team-card--reverse .team-info {
  grid-column: 1;
  grid-row: 1;
}
.team-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 4px;
}
.team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.team-rule { width: 32px; height: 1px; background: var(--gold); margin-bottom: 18px; }
.team-bio {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-value {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.contact-value a:hover { color: var(--gold-dk); }
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  filter: grayscale(30%);
}

/* ─── Gift Cards ─── */
.giftcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.giftcard-amount {
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.giftcard-amount:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(11,30,63,0.09); }
.giftcard-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--blue);
}
.giftcard-value sup { font-size: 22px; vertical-align: super; }
.giftcard-note { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ─── VIP / Membership ─── */
.vip-card {
  max-width: 640px;
  margin: 60px auto 0;
  background: var(--dark);
  padding: 56px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vip-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 4 L56 20 L56 48 L30 64 L4 48 L4 20 Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}
.vip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.vip-price {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.vip-price sup { font-size: 32px; vertical-align: super; }
.vip-per { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 36px; position: relative; z-index: 1; }
.vip-features {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.vip-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  text-align: left;
}
.vip-feature::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.vip-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
  position: relative; z-index: 1;
}

/* ─── Dark CTA Band ─── */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--blue);
  text-align: center;
}
.cta-band .section-title { color: var(--white); }
.cta-band .section-title em { color: var(--gold); }
.cta-band .section-lead { color: rgba(255,255,255,0.5); margin-left: auto; margin-right: auto; }
.cta-band-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ─── Footer ─── */
footer {
  background: var(--blue);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.footer-logo img {
  height: 80px; width: auto;
  filter: none;
  margin-bottom: 18px;
  display: block;
}
.footer-tagline { font-size: 13px; line-height: 1.75; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
  font-size: 14px;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-address { margin-top: 20px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.3); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ─── Music Button ─── */
#music-btn {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 500;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--blue);
  opacity: 0;
  transform: scale(0.8) translateY(12px);
  transition: opacity 0.4s, transform 0.4s var(--ease-spring), background 0.22s, color 0.22s;
}
#music-btn.visible { opacity: 1; transform: scale(1) translateY(0); }
#music-btn:hover { background: var(--gold); color: white; box-shadow: 0 6px 28px rgba(201,168,76,0.38); }
#music-btn svg { pointer-events: none; }
.music-icon-off { display: none; }
#music-btn.playing .music-icon-on { display: none; }
#music-btn.playing .music-icon-off { display: block; }

/* ─── Floating Book Button ─── */
#float-book {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 24px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.38);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s, background 0.22s;
}
#float-book.show { transform: translateY(0); opacity: 1; }
#float-book:hover { background: var(--gold-lt); }

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  :root { --section-pad: 88px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .senses-grid { grid-template-columns: repeat(3, 1fr); }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .booking-inner { grid-template-columns: 1fr; }
  .booking-img-wrap { max-width: 500px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .giftcard-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 260px 1fr; gap: 40px; }
  .team-card--reverse { grid-template-columns: 1fr 260px; }
  .team-card--reverse .team-img { grid-column: 2; grid-row: 1; }
  .team-card--reverse .team-info { grid-column: 1; grid-row: 1; }
  .senses-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; --header-h: 60px; }
  #header { padding: 0 20px; gap: 16px; }
  #main-nav { display: none; }
  .nav-mobile-toggle { display: flex; }
  #main-nav.mobile-open { display: flex; }

  .hero-title { font-size: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .senses-grid { grid-template-columns: 1fr 1fr; }
  .sense-item:nth-child(5) { grid-column: span 2; }
  #music-btn { bottom: 80px; left: 16px; }
  #float-book { bottom: 16px; right: 16px; }
  .carousel-slide { flex: 0 0 min(380px, 88vw); }
  .slide-img { height: 280px; }
  .team-card,
  .team-card--reverse { grid-template-columns: 1fr; }
  .team-card--reverse .team-img { grid-column: 1; }
  .team-card--reverse .team-info { grid-column: 1; grid-row: 2; }
  .team-img { max-width: 240px; aspect-ratio: 3/4; }
  .vip-card { padding: 44px 32px; }
  .giftcard-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .intro-img-badge { bottom: -10px; right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ─── Newsletter Popup ─── */
#nl-overlay {
  position: fixed; inset: 0;
  background: rgba(11,30,63,0.72);
  backdrop-filter: blur(4px);
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
#nl-overlay.visible { opacity: 1; pointer-events: all; }
#nl-popup {
  background: var(--white);
  width: min(460px, 92vw);
  border-radius: 2px;
  overflow: hidden;
  transform: translateY(24px);
  transition: transform 0.4s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  max-height: 92vh;
  overflow-y: auto;
}
#nl-overlay.visible #nl-popup { transform: translateY(0); }
#nl-popup-img {
  width: 100%; height: clamp(90px, 14vh, 140px);
  object-fit: cover; object-position: center 40%;
  display: block;
}
#nl-popup-body {
  padding: 20px 28px 24px;
}
#nl-popup-body .section-label { display: block; margin-bottom: 10px; }
#nl-popup-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 400;
  color: var(--blue); line-height: 1.2;
  margin-bottom: 10px;
}
#nl-popup-body h3 em { color: var(--gold); font-style: italic; }
#nl-popup-body p {
  font-size: 0.88rem; color: var(--muted);
  margin-bottom: 16px; line-height: 1.55;
}
#nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
#nl-email {
  flex: 1; min-width: 200px;
  padding: 13px 16px;
  border: 1px solid #d8c9a0;
  border-radius: 2px;
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  color: var(--blue);
  outline: none;
}
#nl-email:focus { border-color: var(--gold); }
#nl-submit {
  padding: 13px 22px;
  background: var(--gold); color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
#nl-submit:hover { background: var(--gold-lt); }
#nl-thanks {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--blue);
  text-align: center; padding: 12px 0 0;
}
#nl-thanks em { color: var(--gold); }
#nl-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  font-size: 1.4rem; color: var(--white);
  cursor: pointer; line-height: 1;
  opacity: 0.8; transition: opacity 0.2s;
}
#nl-close:hover { opacity: 1; }
#nl-popup-rel { position: relative; }
#nl-skip {
  display: block; text-align: center;
  margin-top: 14px;
  font-size: 0.78rem; color: var(--muted);
  cursor: pointer; text-decoration: underline;
  background: none; border: none; width: 100%;
}
@media (max-width: 480px) {
  #nl-popup { width: 96vw; }
  #nl-popup-img { height: 110px; }
  #nl-popup-body { padding: 20px 18px 24px; }
  #nl-popup-body h3 { font-size: 1.35rem; margin-bottom: 14px; }
  #nl-submit { font-size: 0.85rem; padding: 13px 10px; }
}
