/* ============================================================
   AURA LASH — Global Stylesheet
   ============================================================ */

/* ---------- ACCESSIBILITY UTILITIES ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1A1614;
  color: #FAF6F0 !important;
  padding: 12px 22px;
  z-index: 9999;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #B8975F;
  outline-offset: 2px;
}
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
*:focus-visible {
  outline: 2px solid #B8975F;
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible,
.nav-cta:focus-visible,
.book-this:focus-visible,
.sticky-btn:focus-visible,
.floating-book:focus-visible {
  outline: 3px solid #B8975F;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --cream: #F5EFE6;
  --warm-white: #FAF6F0;
  --beige: #E8DCC4;
  --soft-beige: #EFE5D2;
  --gold: #B8975F;
  --gold-light: #C9A876;
  --gold-deep: #8B7044;
  --ink: #1A1614;
  --ink-soft: #3A322B;
  --muted: #8A7D6E;
  --line: rgba(139, 112, 68, 0.18);
  --line-strong: rgba(139, 112, 68, 0.32);
  --shadow: 0 24px 60px -20px rgba(60, 40, 20, 0.18);
  --shadow-lg: 0 40px 100px -30px rgba(60, 40, 20, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; transition: opacity 0.25s ease, color 0.25s ease; }
a:hover { opacity: 0.7; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAVIGATION ---------- */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
nav.site-nav.scrolled { padding: 10px 0; }
nav.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 96px; width: auto; transition: height 0.3s ease; }
nav.site-nav.scrolled .nav-logo img { height: 70px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
}
.nav-links a.active { color: var(--gold-deep); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.nav-cta {
  padding: 12px 24px;
  border: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--warm-white) !important;
  border-radius: 0;
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  opacity: 1;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--ink);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--warm-white) !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); opacity: 1; }
.btn-ghost { background: transparent; color: var(--ink) !important; }
.btn-ghost:hover { background: var(--ink); color: var(--warm-white) !important; }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--warm-white) !important;
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-light {
  background: var(--warm-white);
  border-color: var(--warm-white);
  color: var(--ink) !important;
}
.btn-light:hover { background: var(--gold); border-color: var(--gold); color: var(--warm-white) !important; }

/* ---------- HERO (HOMEPAGE) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  color: var(--warm-white);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.20), rgba(0,0,0,0.55));
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-logo {
  width: clamp(280px, 28vw, 420px);
  margin: 0 auto 32px;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.35)) brightness(1.12);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 16px;
  color: rgba(250, 246, 240, 0.88);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-ghost {
  border-color: rgba(250, 246, 240, 0.6);
  color: var(--warm-white) !important;
}
.hero-actions .btn-ghost:hover {
  background: var(--warm-white);
  border-color: var(--warm-white);
  color: var(--ink) !important;
}
.hero-meta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.85);
}
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-light);
  display: inline-block;
  margin: 0 0 2px;
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 246, 240, 0.7);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- PAGE HEADER (Non-homepage) ---------- */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 151, 95, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232, 220, 196, 0.4), transparent 50%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}
.page-header .eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.page-header h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.page-header h1 em { font-style: italic; color: var(--gold-deep); }
.page-header .lead {
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.8;
}
.page-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}

/* ---------- SECTIONS ---------- */
section.section { padding: 120px 0; position: relative; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.section-lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-header .section-lead { margin: 0 auto; }

/* ---------- WHY US ---------- */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-item {
  background: var(--cream);
  padding: 56px 44px;
  transition: background 0.4s ease;
}
.why-item:hover { background: var(--soft-beige); }
.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.why-item h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.3;
}
.why-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft-beige);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 36px 32px; }
.service-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 500;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-meta strong { color: var(--gold-deep); font-weight: 500; }

/* ---------- PROMOS ---------- */
.promos {
  background: var(--ink);
  color: var(--warm-white);
  text-align: center;
}
.promos .section-eyebrow { color: var(--gold); }
.promos h2 {
  color: var(--warm-white);
  font-size: clamp(34px, 4.5vw, 52px);
  max-width: 720px;
  margin: 0 auto 56px;
  font-weight: 300;
}
.promos h2 em { color: var(--gold); font-style: italic; }
.promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.promo-card {
  padding: 44px 28px;
  border: 1px solid rgba(184, 151, 95, 0.35);
  transition: background 0.3s ease;
}
.promo-card:hover { background: rgba(184, 151, 95, 0.08); }
.promo-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
}
.promo-card h4 {
  color: var(--warm-white);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}
.promo-card p { font-size: 13px; color: #c8b89c; line-height: 1.7; }

/* ---------- GOOGLE REVIEWS ---------- */
.reviews { background: var(--warm-white); }
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.google-badge .stars { color: var(--gold); letter-spacing: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s ease;
}
.review-card:hover {
  background: var(--soft-beige);
  transform: translateY(-3px);
}
.review-card .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.7;
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 16px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-style: italic;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--warm-white);
  font-weight: 500;
  flex-shrink: 0;
}
.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.review-date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.reviews-cta { text-align: center; }

/* ---------- TESTIMONIALS GALLERY ---------- */
.gallery {
  background: var(--warm-white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: saturate(1.05);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.2); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 22, 20, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  color: var(--warm-white);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item .caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.gallery-item .caption-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- TRUST BADGES (homepage) ---------- */
.trust-badges {
  background: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.trust-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- VIDEO REEL GRID ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-tile {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-tile .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
  transition: background 0.3s ease;
  pointer-events: none;
}
.video-tile.playing .play-overlay { background: transparent; }
.video-tile .play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.video-tile.playing .play-icon { opacity: 0; transform: scale(0.8); }
.video-tile .play-icon::before {
  content: '';
  width: 0; height: 0;
  border-left: 14px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.video-tile .reel-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: var(--warm-white);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 2;
}

/* ---------- VIDEO SHOWCASE ---------- */
.video-showcase {
  background: var(--cream);
}
.video-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-caption {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 14px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--warm-white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.85;
  padding-right: 56px;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-top: 18px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 28px; }
.contact-info > p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 480px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: 1px solid var(--line); }
.contact-row .label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  min-width: 120px;
  padding-top: 4px;
}
.contact-row .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.contact-row .value a:hover { color: var(--gold-deep); opacity: 1; }
.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-card .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.contact-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-card p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 14.5px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.socials a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.socials a:hover { color: var(--gold-deep); opacity: 1; }

/* ---------- MAP ---------- */
.map-section { padding-top: 0; }
.map-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.95);
}
.map-overlay {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  max-width: 320px;
}
.map-overlay h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.map-overlay p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; }
.map-overlay a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

/* ---------- CTA BLOCK ---------- */
.cta-block {
  background: var(--ink);
  color: var(--warm-white);
  padding: 120px 0;
  text-align: center;
}
.cta-block .section-eyebrow { color: var(--gold); }
.cta-block h2 {
  color: var(--warm-white);
  font-size: clamp(38px, 5vw, 60px);
  max-width: 760px;
  margin: 0 auto 24px;
  font-weight: 300;
  line-height: 1.15;
}
.cta-block h2 em { color: var(--gold); font-style: italic; }
.cta-block p {
  color: rgba(250, 246, 240, 0.78);
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- FOOTER ---------- */
footer {
  background: #0F0D0B;
  color: #b5a78f;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo img {
  width: 260px;
  margin-bottom: 22px;
  filter: brightness(1.15);
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
  color: #b5a78f;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 22px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-col a { color: #b5a78f; }
.footer-col a:hover { color: var(--gold); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(184, 151, 95, 0.22);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #8e8267;
}
.footer-bottom a { color: #8e8267; }
.footer-bottom a:hover { color: var(--gold); opacity: 1; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.zp-credit a { color: var(--gold-light); }
.zp-credit a:hover { color: var(--gold); }

/* ---------- BOOK BUTTON ON SERVICE CARDS ---------- */
.service-body .book-this {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--ink);
  color: var(--warm-white) !important;
  border: 1px solid var(--ink);
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}
.service-body .book-this:hover {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

/* ---------- STICKY CTA BAR ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--warm-white);
  padding: 14px 20px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(184, 151, 95, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sticky-msg {
  font-size: 12px;
  letter-spacing: 0.08em;
  flex: 1;
  line-height: 1.4;
}
.sticky-cta .sticky-msg strong {
  color: var(--gold);
  font-weight: 500;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.sticky-cta .sticky-btn {
  background: var(--gold);
  color: var(--warm-white) !important;
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-cta .sticky-btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); opacity: 1; }
.sticky-cta .sticky-close {
  background: none;
  border: none;
  color: rgba(250, 246, 240, 0.5);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: 4px;
}
.sticky-cta .sticky-close:hover { color: var(--warm-white); }

/* ---------- FLOATING BOOK BUTTON ---------- */
.floating-book {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 70;
  padding: 16px 26px;
  background: var(--gold);
  color: var(--warm-white) !important;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  box-shadow: 0 14px 40px rgba(184, 151, 95, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.floating-book::before {
  content: '✦';
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}
.floating-book:hover {
  background: var(--ink);
  border-color: var(--ink);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

@media (max-width: 880px) {
  .floating-book { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 32px; right: 36px;
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 30px;
  cursor: pointer;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .container, .container-narrow { padding: 0 22px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--warm-white);
    padding: 28px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open .nav-cta { display: inline-block; align-self: flex-start; }
  section.section { padding: 80px 0; }
  .page-header { padding: 140px 0 60px; }
  .hero { padding: 110px 22px 70px; }
  .why-grid, .services-grid, .contact-grid, .promo-row,
  .reviews-grid, .gallery-masonry, .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-grid { gap: 1px; }
  .footer-grid { gap: 36px; }
  .why-item { padding: 40px 28px; }
  .service-body { padding: 28px 24px; }
  .contact-card { padding: 36px 28px; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }
  .hero-meta { gap: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .map-overlay { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}
