/* ============================================================
   COMPONENTS.CSS — All UI components
   Nav · Buttons · Hero · Marquee · Bento · Feature · Stats ·
   Testimonials · FAQ · Location CTA · Footer
   ============================================================ */


/* ══════════════════════════════════════════════════════════
   1. NAVIGATION
   ══════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  transition: background var(--duration-base) var(--ease-in-out),
    backdrop-filter var(--duration-base) var(--ease-in-out),
    box-shadow var(--duration-base) var(--ease-in-out),
    border-color var(--duration-base) var(--ease-in-out);
}

.nav.nav--scrolled {
  background: rgba(245, 240, 234, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid var(--border-subtle);
}

/* Nav open state on mobile */
.nav.is-mobile-open {
  background: #14120F !important;
  backdrop-filter: blur(24px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
  border-bottom: 1px solid rgba(240, 235, 227, 0.10) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45) !important;
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-32);
}

/* Logo */
.nav__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo {
  height: 2.5rem;
  width: auto;
  transition: opacity var(--duration-base) ease, filter var(--duration-base) ease;
}

.nav--hero .nav__logo {
  filter: brightness(0) invert(1);
}

.nav--scrolled .nav__logo {
  filter: none;
}

.nav.is-mobile-open .nav__logo {
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}

/* Desktop Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-40);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--duration-base) ease;
}

.nav--scrolled .nav__link {
  color: var(--text-secondary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--duration-base) ease;
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav--hero .nav__link:hover {
  color: #fff;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link.is-active {
  color: #fff;
  font-weight: var(--weight-medium);
}

.nav--scrolled .nav__link.is-active {
  color: var(--text-primary);
}

.nav__link.is-active::after {
  width: 100%;
}

/* CTA buttons in nav */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-shrink: 0;
}

/* Mobile toggle button */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) ease;
}

.nav__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav--scrolled:not(.is-mobile-open) .nav__toggle:hover {
  background: rgba(26, 24, 20, 0.06);
}

.nav__toggle-line {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--duration-base) ease, opacity var(--duration-base) ease, background var(--duration-base) ease;
  transform-origin: center;
}

.nav--scrolled .nav__toggle-line {
  background: var(--text-primary);
}

.nav.is-mobile-open .nav__toggle-line {
  background: #FFFFFF !important;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: #14120F !important;
  background-image: radial-gradient(circle at 85% 20%, rgba(200, 168, 106, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 15% 85%, rgba(139, 115, 85, 0.06) 0%, transparent 55%);
  padding: var(--space-20) clamp(1.25rem, 5vw, 2.5rem) var(--space-32);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--duration-slow) var(--ease-out-expo),
    visibility var(--duration-slow);
  visibility: hidden;
  border-top: 1px solid rgba(240, 235, 227, 0.06);
}

.nav__mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: var(--weight-light);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F0EBE3 !important;
  padding-block: clamp(0.75rem, 1.8vh, 1.125rem);
  border-bottom: 1px solid rgba(240, 235, 227, 0.08);
  text-decoration: none;
  transition: color var(--duration-base) ease,
    padding var(--duration-base) ease,
    border-color var(--duration-base) ease;
}

.nav__mobile-link:hover,
.nav__mobile-link:active {
  color: var(--accent-gold, #C8A86A) !important;
  padding-left: 0.5rem;
  border-bottom-color: rgba(200, 168, 106, 0.35);
}

.nav__mobile-link.is-active {
  color: var(--accent-gold, #C8A86A) !important;
  font-weight: var(--weight-regular);
}

.nav__mobile-link.is-active::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold, #C8A86A);
  display: inline-block;
  box-shadow: 0 0 10px rgba(200, 168, 106, 0.6);
}

.nav__mobile-bottom {
  margin-top: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  width: 100%;
}

.nav__mobile-actions .btn {
  width: 100%;
  justify-content: center;
  padding-block: 0.875rem;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
}

.nav__mobile-actions .btn--primary {
  background: var(--accent-primary, #8B7355) !important;
  border-color: var(--accent-primary, #8B7355) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(139, 115, 85, 0.35);
}

.nav__mobile-actions .btn--primary:hover {
  background: #9C8363 !important;
  border-color: #9C8363 !important;
}

.nav__mobile-actions .btn--secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(240, 235, 227, 0.32) !important;
  color: #F0EBE3 !important;
  backdrop-filter: blur(8px);
}

.nav__mobile-actions .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
}

.nav__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-top: var(--space-16);
  border-top: 1px solid rgba(240, 235, 227, 0.08);
}

.nav__mobile-contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.55);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.nav__mobile-contact-item:hover {
  color: var(--accent-gold, #C8A86A);
}

.nav__mobile-contact-item .lucide {
  color: var(--accent-gold, #C8A86A);
  width: 14px;
  height: 14px;
}

/* ── RESPONSIVE NAV ───────────────────────────────────────── */

@media (max-width: 1023px) {
  .nav__links {
    display: none;
  }

  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .nav__logo {
    height: 2.15rem;
  }
}


/* ══════════════════════════════════════════════════════════
   2. BUTTONS
   ══════════════════════════════════════════════════════════ */

/* Shared base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-full);
  padding: 0.8125rem 1.875rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration-base) ease,
    color var(--duration-base) ease,
    border-color var(--duration-base) ease,
    transform var(--duration-fast) ease,
    box-shadow var(--duration-base) ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary — dark filled */
.btn--primary {
  background: var(--text-primary);
  color: var(--text-on-dark);
  border-color: var(--text-primary);
}

.btn--primary:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 28px rgba(139, 115, 85, 0.30);
}

/* Secondary — ghost/outline */
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn--secondary:hover {
  background: var(--text-primary);
  color: var(--text-on-dark);
  border-color: var(--text-primary);
}

/* Ghost light — for use on dark backgrounds */
.btn--ghost-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(240, 235, 227, 0.30);
}

.btn--ghost-light:hover {
  background: rgba(240, 235, 227, 0.12);
  border-color: rgba(240, 235, 227, 0.60);
}

/* Nav contrast: Schedule button on transparent hero vs scrolled light nav */
.nav--hero .btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav--hero .btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff;
}

.nav--scrolled .btn--ghost-light {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
  font-weight: var(--weight-medium);
}

.nav--scrolled .btn--ghost-light:hover {
  background: var(--text-primary);
  color: var(--text-on-dark);
  border-color: var(--text-primary);
}

/* Gold/accent */
.btn--accent {
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border-color: var(--accent-primary);
}

.btn--accent:hover {
  background: #7a6349;
  border-color: #7a6349;
  box-shadow: 0 8px 28px rgba(139, 115, 85, 0.30);
}

/* Hero High-Contrast Accent Button — Warm Luxury Beige */
.btn--hero-accent {
  background: #F5F0EA;
  color: #1A1814;
  border-color: #F5F0EA;
  font-weight: var(--weight-medium);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.btn--hero-accent:hover {
  background: #FFFFFF;
  color: #1A1814;
  border-color: #FFFFFF;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

/* Small variant */
.btn--sm {
  font-size: var(--text-xs);
  padding: 0.625rem 1.375rem;
}

/* Text arrow CTA */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--duration-base) ease, color var(--duration-base) ease;
}

.btn-text .arrow {
  display: inline-block;
  transition: transform var(--duration-base) ease;
  font-size: 1em;
}

.btn-text:hover {
  color: var(--accent-primary);
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

.btn-text--light {
  color: var(--text-on-dark);
}

.btn-text--light:hover {
  color: var(--accent-light);
}


/* ══════════════════════════════════════════════════════════
   3. HERO
   ══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__media img.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(20, 18, 15, 0.08) 0%,
      rgba(20, 18, 15, 0.20) 40%,
      rgba(20, 18, 15, 0.62) 75%,
      rgba(20, 18, 15, 0.80) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-20);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: var(--weight-light);
  line-height: 0.98;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  max-width: 14ch;
  margin-bottom: var(--space-24);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  align-items: baseline;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.85);
  max-width: var(--measure-narrow, 48ch);
  text-wrap: pretty;
  margin-bottom: var(--space-40);
}

.hero__actions {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
  align-items: center;
}

/* Hero with video background — scaled to eliminate letterbox/pillarbox bars in original source */
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background-color: #0d0c0a;
  pointer-events: none;
}

.hero__media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.42);
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.68) contrast(1.12) saturate(1.08);
}

/* ── VIDEO SHOWCASE (Embedded mini-section below hero) ── */
.video-showcase {
  background: var(--bg-base);
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
}

.video-showcase__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.video-showcase__header {
  margin-bottom: var(--space-32);
}

.video-showcase__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-light);
  line-height: 1.06;
  margin-top: var(--space-12);
}

.video-showcase__title em {
  font-style: italic;
  color: var(--accent-primary);
}

.video-showcase__desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--text-secondary);
  max-width: 58ch;
  margin: var(--space-12) auto 0;
}

.video-showcase__player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(20, 18, 15, 0.12);
  background: #000;
  border: 1px solid var(--border-subtle);
}

.video-showcase__player-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* High-contrast luxury overlay for background video */
.hero__overlay--video {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(14, 12, 10, 0.42) 0%, rgba(14, 12, 10, 0.78) 100%),
    linear-gradient(to bottom,
      rgba(14, 12, 10, 0.55) 0%,
      rgba(14, 12, 10, 0.35) 25%,
      rgba(14, 12, 10, 0.55) 60%,
      rgba(14, 12, 10, 0.85) 85%,
      #14120F 100%);
}

/* Crisp, modern typography — clean contrast without blur or drop-shadows */
.hero__title,
.hero__subtitle,
.hero__eyebrow {
  text-shadow: none !important;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.88);
}

/* Google Review Pill (Quiet Luxury Frosted Glass Capsule) */
.hero__google-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 18, 15, 0.55);
  background-image: linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 6px 16px 6px 12px;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  text-decoration: none;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.875rem);
  width: fit-content;
  transition: all var(--duration-base) var(--ease-out-cubic);
}

.hero__google-pill:hover {
  background: rgba(20, 18, 15, 0.72);
  background-image: linear-gradient(135deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(200, 168, 106, 0.60);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.40), 0 0 20px rgba(200, 168, 106, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero__google-pill-stars {
  display: flex;
  gap: 2.5px;
  color: var(--accent-gold, #C8A86A);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.hero__google-pill-score {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: var(--weight-medium, 500);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero__google-pill-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 1px;
}

.hero__google-pill-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  vertical-align: middle;
}

.hero__google-pill-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--weight-medium, 500);
  color: rgba(240, 235, 227, 0.90);
  letter-spacing: var(--tracking-wider, 0.08em);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Minimalist Google Review Badge — Frosted Glass with Guaranteed Contrast */
.hero__google-badge {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.5rem);
  bottom: clamp(2rem, 5vh, 3.5rem);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 16, 13, 0.5);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: all var(--duration-fast) ease;
}

.hero__google-badge:hover {
  background: rgba(18, 16, 13, 0.65);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero__google-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.hero__google-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__google-stars {
  display: flex;
  gap: 2px;
  color: #FFC107;
  /* High-contrast official golden star */
  font-size: 0.8125rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.hero__google-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  /* High-contrast white text */
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.video-modal.is-open .video-modal__container {
  transform: scale(1);
}

.video-modal__video,
.video-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero {
    min-height: 560px;
    padding-bottom: clamp(2rem, 5vh, 3.5rem);
  }

  .hero__title {
    max-width: 100%;
    margin-bottom: var(--space-16);
  }

  .hero__subtitle {
    font-size: var(--text-sm);
    margin-bottom: var(--space-24);
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-12);
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__google-pill {
    padding: 5px 14px 5px 10px;
    gap: 8px;
    margin-bottom: var(--space-16);
    max-width: 100%;
  }

  .hero__google-pill-stars {
    font-size: 0.75rem;
  }

  .hero__google-pill-text {
    font-size: 0.6875rem;
  }

  .hero__google-badge {
    position: static;
    margin-top: var(--space-32);
    align-self: flex-start;
  }
}

.hero__badge-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  color: rgba(255, 255, 255, 0.85);
}

.hero__badge-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
  font-size: 0.75rem;
}


/* ══════════════════════════════════════════════════════════
   4. MARQUEE STRIP
   ══════════════════════════════════════════════════════════ */

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: var(--space-20);
  background: var(--bg-base);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: var(--space-48);
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}

/* Marquee slowdown handled smoothly via Web Animations API */

.marquee__logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter var(--duration-base) ease;
  flex-shrink: 0;
}

.marquee__logo:hover {
  filter: grayscale(0) opacity(1);
}

.marquee__sep {
  color: var(--accent-light);
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.6;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   5. BRAND STATEMENT
   ══════════════════════════════════════════════════════════ */

.brand-statement {
  text-align: center;
  padding-top: var(--section-py-md);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.brand-statement__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-3xl);
  font-weight: var(--weight-light);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto var(--space-48);
}

.brand-statement__text em {
  color: var(--accent-primary);
}

.brand-statement__divider {
  width: 60px;
  height: 1px;
  background: var(--accent-light);
  margin: 0 auto var(--space-48);
}


/* ══════════════════════════════════════════════════════════
   6. SERVICES BENTO GRID
   ══════════════════════════════════════════════════════════ */

.services {
  padding-block: var(--section-py-md);
}

.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-24);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--grid-gap);
}

/* Card base */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  cursor: pointer;
  transition: transform var(--duration-slow) var(--ease-out-cubic),
    box-shadow var(--duration-slow) var(--ease-out-cubic);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* Featured card — large, 2-row tall */
.service-card--featured {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 600px;
}

/* Medium card */
.service-card--medium {
  grid-column: span 4;
  min-height: 290px;
}

/* Wide card (full-width bottom) */
.service-card--wide {
  grid-column: span 12;
  min-height: 240px;
}

/* Image fill */
.service-card__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.02);
  transition: transform 0.65s var(--ease-out-cubic), filter 0.4s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
  filter: brightness(1.0) contrast(1.03);
}

/* Overlay on image cards — Soft, luminous quiet luxury scrim */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 12, 10, 0.70) 0%,
      rgba(14, 12, 10, 0.56) 26%,
      rgba(14, 12, 10, 0.34) 50%,
      rgba(14, 12, 10, 0.12) 72%,
      transparent 100%);
  z-index: 1;
  transition: background var(--duration-base) ease;
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top,
      rgba(14, 12, 10, 0.76) 0%,
      rgba(14, 12, 10, 0.62) 28%,
      rgba(14, 12, 10, 0.38) 52%,
      rgba(14, 12, 10, 0.15) 74%,
      transparent 100%);
}

/* Card body */
.service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  z-index: 2;
}

/* For non-image color cards */
.service-card--color .service-card__body {
  position: static;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2rem);
}

/* Card text */
.service-card__tag {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium, 500);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: #E5C58A;
  margin-bottom: var(--space-8);
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.service-card--color .service-card__tag {
  color: var(--text-muted);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: var(--leading-snug);
  color: #FFFFFF;
  margin-bottom: var(--space-16);
  text-wrap: balance;
}

.service-card--featured .service-card__title {
  font-size: var(--text-3xl);
}

.service-card--wide .service-card__title {
  font-size: var(--text-xl);
}

.service-card--color .service-card__title {
  color: var(--text-primary);
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular, 400);
  line-height: var(--leading-relaxed);
  color: #F0EBE3;
  margin-bottom: var(--space-20);
  max-width: 40ch;
  text-wrap: pretty;
}

.service-card--color .service-card__desc {
  color: var(--text-secondary);
}

/* Service card action button styling with frosted pill */
.service-card .btn-text--light {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium, 500);
  letter-spacing: var(--tracking-wide);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
  transition: all 0.25s ease;
  text-shadow: none;
}

.service-card .btn-text--light:hover,
.service-card:hover .btn-text--light {
  background: var(--accent-primary, #8B7355);
  border-color: var(--accent-primary, #8B7355);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Color card accent backgrounds */
.service-card--mocha {
  background: #8B7355;
}

.service-card--sage {
  background: #7E9A78;
}

.service-card--dark {
  background: var(--bg-dark);
}

.service-card--surface {
  background: var(--bg-surface);
}

.service-card--wide {
  display: flex;
  align-items: center;
}

.service-card--wide .service-card__img-wrap {
  position: absolute;
  inset: 0;
}

.service-card--wide .service-card__overlay {
  background: linear-gradient(to right,
      rgba(14, 12, 10, 0.72) 0%,
      rgba(14, 12, 10, 0.58) 32%,
      rgba(14, 12, 10, 0.28) 60%,
      rgba(14, 12, 10, 0.08) 80%,
      transparent 100%) !important;
}

.service-card--wide:hover .service-card__overlay {
  background: linear-gradient(to right,
      rgba(14, 12, 10, 0.78) 0%,
      rgba(14, 12, 10, 0.64) 32%,
      rgba(14, 12, 10, 0.32) 60%,
      rgba(14, 12, 10, 0.10) 80%,
      transparent 100%) !important;
}

/* ── Responsive bento ─────────────────────────────────────── */

@media (max-width: 1023px) {
  .service-card--featured {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 420px;
  }

  .service-card--medium {
    grid-column: span 6;
    min-height: 260px;
  }

  .service-card--medium:nth-child(6) {
    grid-column: span 12;
  }

  .service-card--wide {
    grid-column: span 12;
  }
}

@media (max-width: 767px) {
  .bento-grid {
    gap: 0.75rem;
  }

  .service-card--featured,
  .service-card--medium,
  .service-card--wide {
    grid-column: span 12;
    min-height: 280px;
  }

  .service-card--featured {
    min-height: 380px;
  }

  .service-card--wide {
    min-height: 220px;
  }

  .service-card--wide .service-card__overlay {
    background: linear-gradient(to top,
        rgba(14, 12, 10, 0.76) 0%,
        rgba(14, 12, 10, 0.58) 36%,
        rgba(14, 12, 10, 0.25) 68%,
        transparent 100%) !important;
  }

  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ══════════════════════════════════════════════════════════
   7. FEATURE SECTION (2-column split)
   ══════════════════════════════════════════════════════════ */

.feature-section {
  padding-block: var(--section-py-md);
  overflow: hidden;
}

.feature-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.feature-section__grid--reverse {
  direction: rtl;
}

.feature-section__grid--reverse>* {
  direction: ltr;
}

/* Image side */
.feature-section__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.feature-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out-cubic);
}

.feature-section__img-wrap:hover .feature-section__img {
  transform: scale(1.03);
}

/* ── FEATURE 2x2 MOSAIC GRID (Slots 1-3 Tall, Slot 2 & Slot 4) ── */
.feature-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  height: 100%;
  min-height: 520px;
  max-height: 620px;
}

.feature-mosaic__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out-cubic), box-shadow 0.4s var(--ease-out-cubic);
}

.feature-mosaic__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* Slot 1-3: Tall column 1 spanning rows 1 & 2 (Woman photo) */
.feature-mosaic__item--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Slot 2: Top Right (Estabelecimento) */
.feature-mosaic__item--top-right {
  grid-column: 2;
  grid-row: 1;
}

/* Slot 4: Bottom Right (Estabelecimento) */
.feature-mosaic__item--bottom-right {
  grid-column: 2;
  grid-row: 2;
}

.feature-mosaic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out-cubic);
}

.feature-mosaic__item:hover .feature-mosaic__img {
  transform: scale(1.05);
}

.feature-mosaic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(20, 18, 15, 0.20) 0%,
      transparent 45%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .feature-mosaic {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 4/3;
    min-height: 260px;
    max-height: 380px;
    height: auto;
    gap: 0.625rem;
  }
}

@media (max-width: 480px) {
  .feature-mosaic {
    min-height: 240px;
    aspect-ratio: 1.25/1;
  }
}

/* Text side */
.feature-section__content {
  max-width: 520px;
}

.feature-section__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-20);
}

.feature-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  line-height: 1.08;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-24);
}

.feature-section__title em {
  font-style: italic;
  color: var(--accent-primary);
}

.feature-section__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-40);
}

/* Divider hairline */
.feature-section__divider {
  width: 40px;
  height: 1px;
  background: var(--accent-light);
  margin-bottom: var(--space-24);
}

@media (max-width: 1023px) {
  .feature-section__grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .feature-section__grid--reverse {
    direction: ltr;
  }

  .feature-section__img-wrap {
    aspect-ratio: 4/3;
  }

  .feature-section__content {
    max-width: none;
  }
}


/* ══════════════════════════════════════════════════════════
   8. STATS / CREDENTIALS STRIP
   ══════════════════════════════════════════════════════════ */

.stats-strip {
  background: var(--bg-dark);
  padding-block: var(--section-py-sm);
  overflow: hidden;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
}

.stat-item {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  background: var(--bg-dark);
  transition: background var(--duration-base) ease;
}

.stat-item:hover {
  background: var(--bg-dark-card);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-dark);
  margin-bottom: var(--space-8);
}

.stat-item__number sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--accent-gold);
}

.stat-item__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: clamp(1.5rem, 4vw, 2.25rem) 1rem;
  }

  .stat-item__number {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
}


/* ══════════════════════════════════════════════════════════
   9. TESTIMONIALS
   ══════════════════════════════════════════════════════════ */

.testimonials {
  padding-block: var(--section-py-md);
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.testimonials__rating-bar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.testimonials__stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
  font-size: 0.9375rem;
}

.testimonials__rating-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  color: var(--text-muted);
  letter-spacing: var(--tracking-wide);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-bottom: var(--space-48);
}

/* Testimonial card */
.testimonial-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  transition: box-shadow var(--duration-base) ease,
    transform var(--duration-base) ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
  font-size: 0.8125rem;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(0.9375rem, 0.9rem + 0.25vw, 1.0625rem);
  font-weight: var(--weight-regular);
  line-height: 1.65;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  flex: 1;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding-top: var(--space-16);
  border-top: 1px solid var(--border-subtle);
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}

.testimonial-card__treatment {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--text-muted);
  letter-spacing: var(--tracking-wide);
}

@media (max-width: 1023px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonials Marquee ────────────────────────────────── */
.testimonials__marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: var(--space-32) 0 var(--space-48);
  padding: var(--space-12) 0;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials__marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  animation: reviewsMarquee 48s linear infinite;
  will-change: transform;
}

.testimonials__marquee-wrap:hover .testimonials__marquee-track {
  animation-play-state: paused;
}

.testimonials__marquee-track .testimonial-card {
  width: clamp(320px, 28vw, 420px);
  flex: 0 0 clamp(320px, 28vw, 420px);
  margin: 0;
  cursor: default;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
}

@keyframes reviewsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__marquee-track {
    animation: none;
  }
  .testimonials__marquee-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    mask-image: none;
    -webkit-mask-image: none;
  }
}


/* ══════════════════════════════════════════════════════════
   10. FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */

.faq {
  padding-block: var(--section-py-md);
}

.faq__header {
  max-width: var(--container-text);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.faq__list {
  max-width: var(--container-text);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-24);
  width: 100%;
  padding-block: var(--space-24);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-base) ease;
}

.faq-item__trigger:hover {
  color: var(--accent-primary);
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  font-weight: var(--weight-medium);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: inherit;
  transition: color var(--duration-base) ease;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-base) ease,
    background var(--duration-base) ease,
    border-color var(--duration-base) ease;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--text-on-dark-dim);
}

.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out-cubic),
    padding 0.3s ease;
}

.faq-item--open .faq-item__body {
  max-height: 500px;
  padding-bottom: var(--space-24);
}

.faq-item__answer {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  font-weight: var(--weight-regular);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 65ch;
}


/* ══════════════════════════════════════════════════════════
   10.5. INSTAGRAM FEED MARQUEE
   ══════════════════════════════════════════════════════════ */

.insta-marquee {
  background: var(--bg-base);
  border: none;
  padding-block: 16px;
  overflow: hidden;
  position: relative;
}

.insta-marquee__wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
}

.insta-marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(10px, 1.2vw, 16px);
  animation: instaScroll 45s linear infinite;
  will-change: transform;
}

/* Marquee slowdown handled smoothly via Web Animations API */

.insta-card {
  width: clamp(260px, 24vw, 360px);
  aspect-ratio: 3 / 2;
  flex: 0 0 clamp(260px, 24vw, 360px);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-deep);
  border: none;
  display: block;
  margin: 0;
  cursor: default;
}

.insta-card__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.6s var(--ease-out-expo);
}

@keyframes instaScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .insta-marquee__track {
    animation: none;
  }
  .insta-marquee__wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .insta-card {
    scroll-snap-align: start;
  }
}


/* ══════════════════════════════════════════════════════════
   11. LOCATION / CTA SECTION
   ══════════════════════════════════════════════════════════ */

.location-cta {
  background: var(--bg-dark);
  padding-block: var(--section-py-md);
}

.location-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}

.location-cta__map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: var(--bg-dark-card);
}

.location-cta__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-cta__content {
  color: var(--text-on-dark);
}

.location-cta__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-20);
}

.location-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  line-height: 1.06;
  color: var(--text-on-dark);
  margin-bottom: var(--space-32);
}

.location-cta__divider {
  width: 40px;
  height: 1px;
  background: var(--accent-primary);
  margin-bottom: var(--space-32);
}

.location-cta__info {
  margin-bottom: var(--space-40);
}

.location-cta__info-item {
  display: flex;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
  align-items: flex-start;
}

.location-cta__info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-light);
  font-size: 1rem;
}

.location-cta__info-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
  color: var(--text-on-dark-dim);
}

.location-cta__info-text strong {
  color: var(--text-on-dark);
  font-weight: var(--weight-medium);
  display: block;
  margin-bottom: var(--space-4);
}

.location-cta__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-dark);
  margin-bottom: var(--space-32);
  transition: color var(--duration-base) ease;
}

.location-cta__phone:hover {
  color: var(--accent-light);
}

/* High-contrast buttons inside dark CTA section */
.location-cta .btn--primary {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--text-on-dark);
}

.location-cta .btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--text-primary);
}

.location-cta .btn--secondary {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(240, 235, 227, 0.40);
}

.location-cta .btn--secondary:hover {
  background: rgba(240, 235, 227, 0.15);
  border-color: rgba(240, 235, 227, 0.80);
  color: var(--text-on-dark);
}

@media (max-width: 1023px) {
  .location-cta__grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .location-cta__map-wrap {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 767px) {
  .location-cta__map-wrap {
    height: 240px;
    aspect-ratio: auto;
  }

  .location-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .location-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ══════════════════════════════════════════════════════════
   12. FOOTER
   ══════════════════════════════════════════════════════════ */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding-block: var(--section-py-sm);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border-dark);
}

/* Brand column */
.footer__brand {}

.footer__logo {
  height: 2rem;
  width: auto;
  margin-bottom: var(--space-20);
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
  color: var(--text-on-dark-dim);
  max-width: 28ch;
  margin-bottom: var(--space-24);
}

.footer__social {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-base) ease,
    background var(--duration-base) ease;
}

.footer__social-link:hover {
  border-color: var(--accent-light);
  background: rgba(196, 168, 130, 0.10);
}

.footer__social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.70;
}

/* Nav columns */
.footer__nav-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-20);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  color: var(--text-on-dark-dim);
  transition: color var(--duration-base) ease;
}

.footer__nav-link:hover {
  color: var(--text-on-dark);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding-top: var(--space-24);
  flex-wrap: wrap;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-24);
  flex-wrap: wrap;
}

.footer__legal-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--text-muted);
  transition: color var(--duration-base) ease;
}

.footer__legal-link:hover {
  color: var(--text-on-dark);
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-32);
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: var(--space-16);
  }

  .footer__legal {
    flex-direction: column;
    gap: var(--space-8);
  }
}