/* ==========================================================================
   Brows & Lashes by Lia — Production landing
   Light mode, default density "espacioso", default fonts (Cormorant + Outfit)
   Pixel-matched from the V1 "Boudoir" design.
   ========================================================================== */

:root {
  --bg: #fdf6f4;
  --bg-soft: #f9ebeb;
  --ink: #3a242a;
  --ink-soft: rgba(58, 36, 42, 0.7);
  --rose-100: #fce5e7;
  --rose-200: #f9d3d8;
  --rose-300: #f4b9c3;
  --rose-500: #c66e7a;
  --rose-700: #c66e7a;
  --font: 'Outfit', system-ui, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Allura', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { font-family: var(--font); color: var(--ink); }
img, video, iframe { display: block; max-width: 100%; }

/* ===== Reveal animations on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal][data-revealed="true"] { opacity: 1; transform: translateY(0); }
[data-stagger="0"] { transition-delay: 0s; }
[data-stagger="1"] { transition-delay: .08s; }
[data-stagger="2"] { transition-delay: .16s; }
[data-stagger="3"] { transition-delay: .24s; }
[data-stagger="4"] { transition-delay: .32s; }
[data-stagger="5"] { transition-delay: .40s; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(198,110,122,0.45); }
  100% { box-shadow: 0 0 0 14px rgba(198,110,122,0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.container { max-width: 1240px; margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--rose-700); color: #fff8f4; }
.btn-ghost   { background: transparent; color: var(--rose-700); border-color: var(--rose-700); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 36px;
  background: rgba(252, 242, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 120, 130, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font);
}
.nav-brand { display: flex; align-items: center; gap: 12px; line-height: 1; text-decoration: none; }
.nav-brand-mark { width: 44px; height: 44px; display: block; flex-shrink: 0; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-script { font-family: var(--script); font-size: 26px; color: var(--rose-700); }
.nav-brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-700);
  opacity: 0.7;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--rose-700);
  transition: width .3s, left .3s;
}
.nav-links a.active { color: var(--rose-700); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 10px 18px;
}

/* ===== Language switcher ===== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(180, 120, 130, 0.3);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--font);
}
.lang-switcher button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px 12px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.lang-switcher button:hover { color: var(--rose-700); }
.lang-switcher button.active {
  background: var(--rose-700);
  color: #fff8f4;
}
.nav-lang { margin-left: 4px; }

.mobile-lang {
  margin-top: 12px;
  border-color: rgba(253, 246, 244, 0.3);
  background: rgba(253, 246, 244, 0.08);
}
.mobile-lang button { color: rgba(253, 246, 244, 0.75); }
.mobile-lang button:hover { color: #fff8f4; }
.mobile-lang button.active { background: var(--rose-700); color: #fff8f4; }

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.mobile-toggle .icon-close { display: none; }
.mobile-toggle.open .icon-burger { display: none; }
.mobile-toggle.open .icon-close { display: block; }
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(58, 36, 42, 0.96);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--bg);
  text-decoration: none;
  font-size: 22px;
  font-family: var(--serif);
  font-style: italic;
}
.mobile-menu-cta {
  margin-top: 14px;
  padding: 12px 26px;
  border: 1px solid var(--rose-300);
  border-radius: 999px;
  font-size: 14px !important;
  font-style: normal !important;
  font-family: var(--font) !important;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 36px;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 20%, var(--rose-200) 0%, var(--rose-100) 50%, var(--bg) 100%);
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--script);
  font-size: 38px;
  color: var(--rose-700);
  margin-bottom: -10px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(46px, 6.5vw, 92px);
  line-height: 0.98;
  font-weight: 400;
  color: var(--ink);
  margin: 10px 0 24px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--rose-700); }
.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-featured {
  margin-top: 40px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  border: 1px solid rgba(180, 120, 130, 0.18);
  max-width: 480px;
}
.hero-featured-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-featured-title {
  font-family: var(--script);
  font-size: 24px;
  color: var(--rose-700);
  line-height: 1;
}
.hero-featured-link {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rose-700);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.hero-featured-link:hover { opacity: .7; }
.hero-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-featured-item {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(180, 120, 130, 0.12);
  transition: transform .2s, background .2s, border-color .2s;
}
.hero-featured-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(180, 120, 130, 0.28);
}
.hero-featured-cat {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-featured-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.hero-featured-from {
  font-family: var(--font);
  font-size: 11px;
  color: var(--ink-soft);
  margin-right: 2px;
  letter-spacing: 0.04em;
}
.hero-featured-sub {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.3;
}

.hero-photo-wrap { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(180, 120, 130, 0.25);
}
.hero-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 200px;
  padding: 18px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid rgba(180, 120, 130, 0.18);
  box-shadow: 0 18px 40px rgba(180, 120, 130, 0.18);
}
.hero-card-quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 8px;
}
.hero-card-author {
  font-size: 11px;
  margin-top: 10px;
  color: var(--ink-soft);
}

/* Stars */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; fill: var(--rose-700); }

/* ===== Strip (marquee) ===== */
.strip {
  padding: 22px 0;
  border-top: 1px solid rgba(180, 120, 130, 0.16);
  border-bottom: 1px solid rgba(180, 120, 130, 0.16);
  overflow: hidden;
  background: var(--bg-soft);
}
.strip-track {
  display: flex;
  gap: 56px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose-700);
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-item { display: inline-flex; align-items: center; gap: 56px; }
.strip-heart { width: 14px; height: 14px; color: var(--rose-500); }

/* ===== Section heads ===== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-700);
  font-family: var(--font);
}
.section-head { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  margin: 10px 0 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--rose-700); }
.section-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== Services ===== */
.services { padding: 96px 36px; background: var(--bg-soft); }
.svc-divider {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 26px;
}
.svc-divider-script {
  font-family: var(--script);
  font-size: 44px;
  color: var(--rose-700);
  line-height: 1;
}
.svc-divider-line { flex: 1; height: 1px; background: rgba(180, 120, 130, 0.25); }
.svc-divider-count {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}
.svc-grid:last-child { margin-bottom: 0; }
.svc-card {
  padding: 26px;
  background: var(--bg);
  border-radius: 18px;
  border: 1px solid rgba(180, 120, 130, 0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(180, 120, 130, 0.18);
}
.svc-tag {
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--rose-700);
  color: #fff8f4;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.svc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.svc-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  line-height: 1.15;
  flex: 1;
}
.svc-price {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--rose-700);
  font-variant-numeric: tabular-nums;
}
.svc-duration {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-700);
  font-weight: 500;
}
.svc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.svc-cta {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-top: 1px solid rgba(180, 120, 130, 0.18);
  padding-top: 14px;
}

/* ===== About ===== */
.about { padding: 96px 36px; background: var(--bg); }
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
}
.about-badge {
  position: absolute;
  bottom: 18px;
  right: -18px;
  padding: 14px 20px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(180, 120, 130, 0.18);
  box-shadow: 0 12px 28px rgba(180, 120, 130, 0.18);
  text-align: center;
}
.about-badge-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--rose-700);
  line-height: 1;
  font-style: italic;
}
.about-badge-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.about-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 400;
  margin: 10px 0 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about-title em { font-style: italic; color: var(--rose-700); }
.about-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.about-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.pill {
  padding: 8px 16px;
  background: var(--rose-100);
  border-radius: 999px;
  font-size: 12px;
  color: var(--rose-700);
  font-weight: 500;
}
.about-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(180, 120, 130, 0.16);
}
.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--rose-700);
  line-height: 1;
  font-style: italic;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ===== Gallery ===== */
.gallery { padding: 96px 36px; background: var(--bg-soft); }
.gallery .section-head { margin-bottom: 30px; }
.filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(180, 120, 130, 0.3);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active {
  background: var(--rose-700);
  color: #fff8f4;
  border-color: var(--rose-700);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-feature { grid-row: span 2; }
.gallery-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--rose-700);
}
.gallery-item.hidden { display: none; }
.gallery-cta-wrap { text-align: center; margin-top: 30px; }
.gallery-cta-wrap .btn { font-size: 13px; padding: 12px 22px; }

/* ===== Testimonials ===== */
.testimonials {
  padding: 96px 36px;
  background: linear-gradient(180deg, var(--rose-100) 0%, var(--bg-soft) 100%);
}
.testimonials .section-head { margin-bottom: 50px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--bg);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(180, 120, 130, 0.14);
  box-shadow: 0 4px 18px rgba(180, 120, 130, 0.06);
  display: flex;
  flex-direction: column;
}
.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 14px 0 22px;
  flex: 1;
}
.testi-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(180, 120, 130, 0.16);
}
.testi-name { font-weight: 500; color: var(--ink); font-size: 14px; }
.testi-svc {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-700);
}

/* ===== FAQ ===== */
.faq { padding: 96px 36px; background: var(--bg); }
.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.faq-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 400;
  margin: 10px 0 18px;
  color: var(--ink);
  line-height: 1.05;
}
.faq-title em { font-style: italic; color: var(--rose-700); }
.faq-body { color: var(--ink-soft); line-height: 1.7; }
.faq .btn-primary {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  font-size: 13px;
}
.faq-item {
  border-bottom: 1px solid rgba(180, 120, 130, 0.16);
  padding: 20px 0;
}
.faq-q {
  background: none;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}
.faq-plus {
  font-family: var(--font);
  font-size: 22px;
  color: var(--rose-700);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s;
  margin-top: 0;
}
.faq-item.open .faq-a-wrap { max-height: 250px; margin-top: 12px; }
.faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Booking ===== */
.booking { padding: 96px 36px; background: var(--rose-200); }
.booking-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.booking-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 400;
  margin: 10px 0 22px;
  color: var(--ink);
  line-height: 1.05;
}
.booking-title em { font-style: italic; color: var(--rose-700); }
.booking-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
}
.contact-card .rose-fill { fill: var(--rose-700); }
.contact-card-text { display: flex; flex-direction: column; line-height: 1.2; }
.contact-card-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-card-value { font-size: 14px; font-weight: 500; }

.booking-form {
  background: var(--bg);
  padding: 32px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border: 1px solid rgba(180, 120, 130, 0.16);
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-700);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid rgba(180, 120, 130, 0.22);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--rose-700); }
.field textarea { min-height: 80px; resize: vertical; }
.form-submit {
  grid-column: 1 / -1;
  padding: 16px 24px;
  border: none;
  margin-top: 4px;
}
.booking-success {
  background: var(--bg);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}
.booking-success svg { display: inline-block; margin-bottom: 16px; }
.booking-success h3 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 16px 0 10px;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.booking-success p { color: var(--ink-soft); margin: 0; }

/* ===== Contact ===== */
.contact { padding: 96px 36px; background: var(--bg-soft); }
.contact .section-head { margin-bottom: 50px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: stretch;
}
.contact-info {
  background: var(--bg);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(180, 120, 130, 0.14);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-700);
  margin-bottom: 8px;
}
.contact-value {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}
.contact-hours,
.contact-direct { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.contact-hours div,
.contact-direct a { display: flex; justify-content: space-between; }
.contact-direct a { color: var(--ink); text-decoration: none; }
.contact-hours div span:last-child,
.contact-direct a span:first-child { color: var(--ink-soft); }
.contact-directions {
  margin-top: auto;
  font-size: 13px;
  padding: 14px 22px;
}
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(180, 120, 130, 0.18);
  min-height: 380px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  filter: saturate(0.9) hue-rotate(-10deg);
}

/* ===== Footer ===== */
.footer {
  padding: 50px 36px 30px;
  background: var(--ink);
  color: var(--bg);
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-mark {
  width: 60px;
  height: 60px;
  display: block;
  margin-bottom: 14px;
}
.footer-brand-script {
  font-family: var(--script);
  font-size: 32px;
  color: var(--rose-300);
  line-height: 1;
}
.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.footer-blurb {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.7;
  margin-top: 14px;
  max-width: 320px;
}
.footer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
}
.footer-text { font-size: 13px; line-height: 1.7; opacity: 0.85; }
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  opacity: 0.85;
}
.footer-list a { color: inherit; text-decoration: none; }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.55;
}
.footer-credit {
  color: var(--rose-300);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s;
}
.footer-credit:hover { opacity: 0.7; }

/* ===== Floating WhatsApp ===== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  animation: pulseRing 2.4s infinite, fadeIn .8s;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.1); }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav { padding: 14px 20px; }
  .hero, .services, .about, .gallery, .testimonials, .faq, .booking, .contact { padding-left: 20px; padding-right: 20px; }
  .hero-grid,
  .about-grid,
  .faq-grid,
  .booking-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-lang { display: none; }
  .hero-card { display: none; }
  .mobile-toggle { display: flex; }
  .booking-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1 !important; }
  .about-badge { right: 12px; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-feature { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 24px; }
  .booking-form { padding: 22px; }
}
