/* ============================================
   HAIR STORIES SALON & ACADEMY
   Brand palette: Main Green #6D8060 | Sage #9BAD93 | Deep #38442F
   Gold #A38B5D (on light) / #CBB78E (on dark) | Stone #C7C6B1 / #D4D5C3
   Type: Kudry (display) + Futura PT (body / UI)
   ============================================ */

/* ---- SELF-HOSTED BRAND FONTS ---- */
@font-face {
  font-family: 'Futura PT';
  src: url('../assets/Font/futura-pt.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kudry';
  src: url('../assets/Font/kudry-sans-headline.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --sage: #9BAD93;       /* light sage */
  --forest: #6D8060;     /* main brand green */
  --deep: #38442F;       /* deep green for dark, text-bearing surfaces (AA contrast) */
  --deep-2: #2C3626;     /* deepest green */
  --gold: #A38B5D;       /* champagne gold - use on LIGHT backgrounds */
  --gold-light: #CBB78E; /* brighter champagne - use on DARK/green backgrounds */
  --cream: #EEF0E6;      /* soft stone-tinted off-white */
  --cream-dark: #C7C6B1; /* stone border */
  --sand: #BCAA86;
  --mist: #9BAD93;
  --white: #F7F8F3;
  --text: #2F342A;
  --text-muted: #6B7060;
  --nav-h: 76px;
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Futura PT', sans-serif;
  font-size: 1.125rem;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Kudry', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  font-family: 'Futura PT', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--deep); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-family: 'Futura PT', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(240,237,228,0.55);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--cream); background: rgba(240,237,228,0.08); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-family: 'Futura PT', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-family: 'Futura PT', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-call:hover { background: var(--forest); color: var(--cream); }

/* ============================================
   NAV
   ============================================ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-wrap.scrolled {
  background: rgba(64, 84, 50, 0.7);
  backdrop-filter: blur(22px) saturate(190%);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
  border-bottom: 1px solid rgba(203,183,142,0.22);
  box-shadow: 0 10px 34px -14px rgba(18,26,14,0.5),
              inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 42px;
  background: url('../assets/logo-emblem.svg') center / contain no-repeat;
  /* hide the fallback "HS" text now that the real emblem is shown */
  font-size: 0;
  color: transparent;
  flex-shrink: 0;
}
.logo-mark.sm { width: 34px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cream);
}
.logo-sub {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(240,237,228,0.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,237,228,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-book {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  color: var(--deep);
  font-family: 'Futura PT', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-book:hover { background: var(--white); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-right: -10px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(.6,.04,.3,1), opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--deep);
  padding: 24px 40px 32px;
  border-top: 1px solid rgba(163,139,93,0.2);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  font-family: 'Futura PT', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(240,237,228,0.8);
  border-bottom: 1px solid rgba(240,237,228,0.08);
  transition: color var(--transition);
}
.nav-mobile ul li a:hover { color: var(--gold); }
.btn-book-mobile {
  display: block;
  text-align: center;
  margin-top: 20px;
  background: var(--cream);
  color: var(--deep) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--deep-2) 0%, var(--deep) 48%, var(--forest) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: url('../assets/pattern.svg');
  background-size: 230px auto;
  background-repeat: repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Kudry', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: 'Futura PT', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,237,228,0.86);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-number {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.meta-label {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(240,237,228,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,228,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(203,183,142,0.75), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 2px solid var(--cream-dark);
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px;
  color: var(--sage);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.service-card:hover .service-icon { color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Kudry', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-from {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.services-cta {
  text-align: center;
  margin-top: 28px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-title { text-align: left; margin-bottom: 20px; }
.why-body {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.why-icon svg { width: 15px; height: 15px; display: block; }
.why-list strong {
  display: block;
  font-family: 'Futura PT', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.why-list span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.why-visual { position: relative; }
.why-img-wrap { position: relative; }
.why-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--sage);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-inner {
  text-align: center;
  color: rgba(240,237,228,0.5);
}
.hs-monogram {
  font-family: 'Kudry', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(163,139,93,0.35);
  line-height: 1;
  margin-bottom: 12px;
}
.placeholder-inner p {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px; height: 90px;
  background: var(--forest);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.badge-num {
  font-family: 'Kudry', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.badge-text {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: rgba(240,237,228,0.74);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ============================================
   PRIVILEGES
   ============================================ */
.privileges { background: var(--deep); }
.privileges .section-eyebrow { color: var(--gold-light); }
.privileges .section-title { color: var(--cream); }
.privileges .section-desc { color: rgba(240,237,228,0.74); }
.privileges-terms {
  margin: 40px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(240,237,228,0.5);
}
.privileges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(163,139,93,0.14);
  border: 1px solid rgba(163,139,93,0.14);
}
.privilege-card {
  background: rgba(28,34,24,0.55);
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.privilege-card:hover {
  background: rgba(28,34,24,0.8);
}
.privilege-icon {
  color: var(--gold-light);
  margin-bottom: 18px;
  display: block;
}
.privilege-icon svg { width: 32px; height: 32px; margin: 0 auto; }
.privilege-card h3 {
  font-family: 'Kudry', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.privilege-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(240,237,228,0.82);
  margin-bottom: 12px;
}
.privilege-note {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================
   GALLERY TEASER
   ============================================ */
.gallery-teaser { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
  margin-bottom: 40px;
}
.gallery-item { overflow: hidden; border-radius: 2px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-masonry-item img, .gallery-masonry-item video { width: 100%; display: block; border-radius: 2px; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-placeholder::after { opacity: 0.3; }
.gallery-placeholder span {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  z-index: 1;
  position: relative;
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: 'Futura PT', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.btn-insta:hover { color: var(--forest); }

/* ============================================
   BOOKING BANNER
   ============================================ */
.booking-banner {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.booking-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: url('../assets/pattern.svg') 0 0 / 230px auto repeat;
}
.booking-content {
  position: relative;
  text-align: center;
}
.booking-content h2 {
  font-family: 'Kudry', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
}
.booking-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.booking-content .btn-primary { margin: 0 8px 12px; }
.booking-content .btn-call { margin: 0 8px 12px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(163,139,93,0.15);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240,237,228,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Kudry', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(240,237,228,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(240,237,228,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,237,228,0.62);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-col h4 {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(240,237,228,0.64);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col address {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(240,237,228,0.64);
  margin-bottom: 16px;
}
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-hours span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.footer-hours strong {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240,237,228,0.82);
}
.footer-phone {
  font-size: 0.9rem;
  color: rgba(240,237,228,0.74);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(240,237,228,0.42);
  letter-spacing: 0.04em;
}
.footer-map {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color var(--transition), gap var(--transition);
}
.footer-map:hover { color: var(--cream); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  background: var(--deep);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 100%);
  opacity: 0.5;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Kudry', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(240,237,228,0.78);
  line-height: 1.7;
  max-width: 480px;
}

/* Service search + quick filters */
.service-filter-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(247,248,243,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 18px 0;
}
.service-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.service-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 11px 18px;
  flex: 1 1 280px;
  max-width: 380px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(163,139,93,0.12);
}
.service-search svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.service-search input {
  border: none; background: none; outline: none; width: 100%;
  font-family: 'Futura PT', sans-serif; font-size: 0.9rem; color: var(--text);
}
.service-search input::placeholder { color: var(--text-muted); }
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 9px 16px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}
.chip:hover { color: var(--forest); border-color: var(--forest); transform: translateY(-1px); }
.chip.is-active { color: var(--cream); background: var(--forest); border-color: var(--forest); }
.service-noresults { margin-top: 16px; font-size: 0.92rem; color: var(--text-muted); font-style: italic; }

/* Service Tables */
.service-section { padding: 80px 0; border-bottom: 1px solid var(--cream-dark); }
.service-section:last-child { border-bottom: none; }
.service-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.service-category-title {
  font-family: 'Kudry', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1;
}
.service-table {
  width: 100%;
  border-collapse: collapse;
}
.service-table thead tr {
  border-bottom: 1px solid var(--cream-dark);
}
.service-table th {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 14px;
  text-align: left;
}
.service-table th:not(:first-child) { text-align: right; }
.service-table td {
  padding: 18px 0;
  border-bottom: 1px solid rgba(226,221,207,0.5);
  vertical-align: top;
}
.service-table tr:last-child td { border-bottom: none; }
.service-table td:not(:first-child) {
  text-align: right;
  font-family: 'Futura PT', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  padding-left: 20px;
}
.service-name {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.service-name-popular {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popular-tag {
  background: var(--gold);
  color: var(--deep);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
}
.na-text {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 300;
}
.consult-text {
  font-size: 0.78rem;
  color: var(--sage);
  font-style: italic;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-full {
  padding: 80px 0;
}
.gallery-masonry {
  columns: 3;
  column-gap: 4px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
}
.gallery-masonry-item .gallery-placeholder {
  height: 280px;
  width: 100%;
  background: var(--cream-dark);
}
.gallery-masonry-item:nth-child(3n+1) .gallery-placeholder { height: 360px; }
.gallery-masonry-item:nth-child(5n) .gallery-placeholder { height: 220px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual .why-img-placeholder { aspect-ratio: 3/4; }
.about-content .section-title { text-align: left; }
.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-content p strong { color: var(--forest); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.stat-num {
  font-family: 'Kudry', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 19px; height: 19px; }
.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--forest); }
.contact-map {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
}
.map-embed {
  width: 100%;
  height: 400px;
  border: none;
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.8rem;
  font-family: 'Futura PT', sans-serif;
  letter-spacing: 0.08em;
  transition: background var(--transition);
}
.map-link:hover { background: var(--deep); }

/* ============================================
   ANIMATIONS - subtle, premium
   ============================================ */
/* Scroll reveal (classes added by JS only when motion is allowed) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1),
              transform 0.8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* Hero entrance on load */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
  }
  .hero-eyebrow  { animation-delay: 0.15s; }
  .hero-headline { animation-delay: 0.28s; }
  .hero-sub      { animation-delay: 0.44s; }
  .hero-ctas     { animation-delay: 0.58s; }
  .hero-meta     { animation-delay: 0.72s; }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
  .hero-headline em { display: inline-block; }
}

/* Premium hover motion */
.service-card { transition: background var(--transition), transform 0.4s cubic-bezier(.22,.61,.36,1), box-shadow 0.4s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px -28px rgba(44,54,38,0.55); }
.service-card .service-icon { transition: color var(--transition), transform 0.4s cubic-bezier(.22,.61,.36,1); }
.service-card:hover .service-icon { transform: translateY(-2px) scale(1.08) rotate(-5deg); }
.privilege-card:hover { transform: translateY(-4px); }
.gallery-item .gallery-placeholder { transition: transform 0.7s cubic-bezier(.22,.61,.36,1), background var(--transition); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.logo-mark { transition: transform 0.4s cubic-bezier(.22,.61,.36,1); }
.nav-logo:hover .logo-mark { transform: scale(1.06) rotate(-2deg); }
.btn-primary, .btn-book, .btn-outline { transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition); }
.btn-outline:hover, .btn-call:hover { transform: translateY(-1px); }
.footer-social a { transition: border-color var(--transition), color var(--transition), transform var(--transition); }
.footer-social a:hover { transform: translateY(-2px); }
.stat-num { transition: color var(--transition); }

/* Table rows, tags, map + contact micro-interactions */
.service-table tbody tr { transition: background 0.25s ease; }
.service-table tbody tr:hover { background: rgba(163,139,93,0.06); }
.popular-tag { transition: transform var(--transition); }
.service-name-popular:hover .popular-tag { transform: translateY(-1px); }
.contact-item-icon { transition: transform var(--transition), background var(--transition), color var(--transition); }
.contact-item:hover .contact-item-icon { transform: translateY(-2px); background: var(--gold-light); color: var(--deep); }
.map-link span:last-child { transition: transform var(--transition); }
.map-link:hover span:last-child { transform: translate(2px, -2px); }
.footer-phone, .footer-col ul li a { display: inline-block; transition: color var(--transition), transform var(--transition); }
.footer-col ul li a:hover { transform: translateX(3px); }
.why-list li { transition: transform var(--transition); }
.why-list li:hover { transform: translateX(3px); }
.why-list li:hover .why-icon { color: var(--forest); }

/* Gentle float on the studio badge */
@media (prefers-reduced-motion: no-preference) {
  .why-badge { animation: floatY 5s ease-in-out infinite; }
  @keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
}

/* Shine sweep across primary buttons on hover */
.btn-book, .btn-primary, .btn-outline { position: relative; overflow: hidden; }
.btn-book::after, .btn-primary::after, .btn-outline::after {
  content: ''; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
}
@media (prefers-reduced-motion: no-preference) {
  .btn-book:hover::after, .btn-primary:hover::after, .btn-outline:hover::after { animation: shine 0.75s ease; }
  @keyframes shine { from { left: -130%; } to { left: 160%; } }

  /* Book Now: gentle gold glow to draw the eye */
  .btn-book { animation: bookGlow 3.2s ease-in-out infinite; }
  @keyframes bookGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(203,183,142,0); }
    50%      { box-shadow: 0 8px 24px -8px rgba(203,183,142,0.7); }
  }
}
.btn-book:hover { transform: translateY(-2px) scale(1.03); }

/* Section titles draw a small gold underline as they reveal */
.section-header .section-title { position: relative; }
.section-header .section-title::after {
  content: ''; position: absolute; left: 50%; bottom: -8px;
  width: 0; height: 2px; background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.7s cubic-bezier(.22,.61,.36,1) 0.15s;
}
.privileges .section-header .section-title::after { background: var(--gold-light); }
.section-header.in .section-title::after { width: 46px; }

/* Popular tag subtle shimmer */
@media (prefers-reduced-motion: no-preference) {
  .popular-tag { animation: tagGlow 2.6s ease-in-out infinite; }
  @keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(163,139,93,0); }
    50%      { box-shadow: 0 0 12px 0 rgba(163,139,93,0.5); }
  }
}

/* Eyebrow letters settle in with the header */
.section-header .section-eyebrow { transition: letter-spacing 0.6s ease, color var(--transition); }
.section-header.in .section-eyebrow { letter-spacing: 0.26em; }

/* Floating WhatsApp gentle pulse */
@media (prefers-reduced-motion: no-preference) {
  .wa-float { animation: waPulse 2.8s ease-in-out infinite; }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.40); }
    50%      { box-shadow: 0 6px 30px rgba(37,211,102,0.70); }
  }
}

/* ============================================
   SERVICE CARD BOOKING ACTIONS
   ============================================ */
.service-card { display: flex; flex-direction: column; cursor: default; }
.service-card .service-from { margin-bottom: 0; }
.service-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.svc-view, .svc-book {
  flex: 1;
  text-align: center;
  font-family: 'Futura PT', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 8px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.svc-view { color: var(--forest); border: 1px solid var(--cream-dark); }
.svc-view:hover { border-color: var(--forest); }
.svc-book { color: var(--cream); background: var(--forest); border: 1px solid var(--forest); }
.svc-book:hover { background: var(--deep); border-color: var(--deep); }

.services-preview .service-card { cursor: pointer; }

/* ============================================
   SERVICE DETAIL MODAL
   ============================================ */
.svc-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.svc-modal[hidden] { display: none; }
.svc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,34,24,0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.svc-modal-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px -30px rgba(18,26,14,0.6);
}
.svc-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--text-muted);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.svc-modal-close:hover { background: var(--cream); color: var(--deep); }
.svc-modal-eyebrow {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.svc-modal-title {
  font-family: 'Kudry', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 22px;
}
.svc-modal-table { width: 100%; border-collapse: collapse; }
.svc-modal-table th {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.svc-modal-table th:not(:first-child),
.svc-modal-table td:not(:first-child) {
  text-align: right;
  white-space: nowrap;
  padding-left: 14px;
}
.svc-modal-table td {
  font-size: 0.95rem;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(199,198,177,0.5);
}
.svc-modal-table tbody tr:last-child td { border-bottom: none; }
.svc-modal-table td:first-child { color: var(--deep); }
.svc-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.svc-modal-actions .btn-primary,
.svc-modal-actions .btn-outline {
  flex: 1;
  justify-content: center;
  text-align: center;
}

/* ============================================
   WHY-US PROOF PANEL (no photo)
   ============================================ */
.why-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest) 0%, var(--deep) 100%);
  border: 1px solid rgba(203,183,142,0.35);
  border-radius: 6px;
  padding: 56px 40px;
  text-align: center;
}
.why-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/pattern.svg') center / 220px auto repeat;
  opacity: 0.06;
}
.why-panel > * { position: relative; }
.why-panel-emblem {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.why-panel-emblem img {
  width: 72px;
  height: auto;
}
.why-panel-quote {
  font-family: 'Kudry', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.5;
  max-width: 340px;
  margin: 0 auto 34px;
}
.why-panel-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 36px;
}
.why-panel-stats > div { display: flex; flex-direction: column; gap: 5px; }
.wp-num {
  font-family: 'Kudry', serif;
  font-size: 1.65rem;
  color: var(--gold-light);
  line-height: 1;
}
.wp-label {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,228,0.7);
}
.why-panel-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Futura PT', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.why-panel-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================
   INSTAGRAM OFFERS STRIP
   ============================================ */
.insta-offers { background: var(--white); padding: 44px 0; }
.insta-offers-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 840px;
  margin: 0 auto;
  padding: 22px 30px;
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(163,139,93,0.09), rgba(163,139,93,0));
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.insta-offers-inner:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -20px rgba(56,68,47,0.55);
}
.insta-offers-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
}
.insta-offers-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.insta-offers-text strong {
  font-family: 'Kudry', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--deep);
}
.insta-offers-text span { font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }
.insta-offers-text em { color: var(--gold); font-style: normal; font-weight: 600; }
.insta-offers-cta {
  flex-shrink: 0;
  font-family: 'Futura PT', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.marquee {
  background: var(--deep-2);
  border-top: 1px solid rgba(203,183,142,0.25);
  border-bottom: 1px solid rgba(203,183,142,0.25);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span {
  font-family: 'Kudry', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0.9;
}
.marquee-track i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gold-light);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 36px 30px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 22px;
  font-family: 'Kudry', serif;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  transition: opacity var(--transition), transform var(--transition);
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -28px rgba(56,68,47,0.45);
}
.testi-card:hover::before { opacity: 0.6; transform: rotate(-6deg); }
.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
}
.testi-card blockquote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.testi-card figcaption {
  font-family: 'Futura PT', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--deep);
}
.testi-card figcaption span {
  display: block;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.testi-cta { text-align: center; margin-top: 44px; }

/* ============================================
   BOOKING STEPS
   ============================================ */
.steps { background: var(--cream); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding-left: 0;
  counter-reset: step;
  max-width: 980px;
  margin: 0 auto;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: 'Kudry', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 18px;
  background: var(--white);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}
.step h3 {
  font-family: 'Kudry', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 260px;
  margin: 0 auto;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 29px;
  left: calc(50% + 46px);
  width: calc(100% - 92px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 90%);
  opacity: 0.5;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: 'Kudry', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--deep);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--forest); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--forest);
  transition: background var(--transition);
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { background: var(--forest); border-color: var(--forest); transform: rotate(135deg); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--cream); }
.faq-a { overflow: hidden; }
.faq-a p {
  padding: 0 40px 24px 4px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-a a { color: var(--forest); font-weight: 600; }
.faq-item[open] .faq-a p { animation: faqReveal 0.35s ease both; }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STICKY MOBILE BOOKING BAR
   ============================================ */
.mobile-book-bar { display: none; }

/* ============================================
   PREMIUM MICRO-INTERACTIONS
   ============================================ */
/* Gold shine sweep on primary CTAs */
.btn-primary, .svc-book, .why-panel-cta, .mbb-book {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .svc-book::after, .why-panel-cta::after, .mbb-book::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
}
.btn-primary:hover::after, .svc-book:hover::after, .why-panel-cta:hover::after {
  animation: ctaShine 0.7s ease;
}
@keyframes ctaShine { to { left: 130%; } }

/* Service cards: lift + icon spring */
.services-preview .service-card:hover,
.values-grid .service-card:hover { transform: translateY(-5px); }
.service-card:hover .service-icon { transform: scale(1.12) rotate(-5deg); }
.service-icon { transition: color var(--transition), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Privilege cards: lift */
.privilege-card:hover { transform: translateY(-4px); }
.privilege-card:hover .privilege-icon { transform: scale(1.1); }
.privilege-icon { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Hero: slow breathing gold glow */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 65%; height: 90%;
  background: radial-gradient(circle, rgba(203,183,142,0.16) 0%, transparent 65%);
  animation: heroGlow 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: scale(1) translate(0, 0); }
  50%      { opacity: 1;   transform: scale(1.12) translate(-4%, 4%); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .privileges-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav-links, .btn-book { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .hero-content { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .hero-scroll { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .why-badge { right: 0; }
  .privileges-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    align-items: start;
    text-align: left;
    padding: 24px 22px;
  }
  .values-grid .service-icon { grid-column: 1; grid-row: 1 / span 2; margin-bottom: 0; }
  .insta-offers-inner { flex-direction: column; text-align: center; gap: 16px; }
  .svc-modal { padding: 14px; }
  .svc-modal-card { padding: 34px 22px 24px; max-height: 82vh; }
  .svc-modal-actions { flex-direction: column; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:last-child { grid-column: auto; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; max-width: 380px; }
  .step:not(:last-child)::after { display: none; }
  .marquee-track span { font-size: 0.92rem; }

  /* Sticky booking bar takes over from the floating bubble */
  .mobile-book-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1500;
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 1px;
    background: var(--cream-dark);
    border-top: 1px solid var(--cream-dark);
    box-shadow: 0 -8px 28px -12px rgba(18,26,14,0.35);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mbb-call, .mbb-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    font-family: 'Futura PT', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .mbb-call { background: var(--white); color: var(--deep); }
  .mbb-book { background: var(--forest); color: var(--cream); }
  body { padding-bottom: 57px; }
  .wa-float { display: none; }
  .svc-modal { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .booking-banner { padding: 60px 0; }
  .gallery-masonry { columns: 2; }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
    padding: 24px 0;
  }
  .about-stats > div { padding: 0 8px; }
  .about-stats > div:not(:first-child) { border-left: 1px solid var(--cream-dark); }
  .about-stats .stat-num { font-size: 1.8rem; }
  .about-stats .stat-label { font-size: 0.6rem; letter-spacing: 0.08em; }
  .service-filter { flex-direction: column; align-items: stretch; }
  .service-search { flex: 0 0 auto; max-width: none; width: 100%; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { justify-content: center; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-meta-item { align-items: flex-start; text-align: left; }
  .hero-divider { display: none; }
  .privileges-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-masonry { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
