/* =============================================
   Deluxe Arabia — Premium Funnel Design
   ============================================= */
:root {
  --bg-dark: #080604;
  --bg-card: #12100c;
  --bg-elevated: #1a1610;
  --bg-glass: rgba(18, 16, 12, 0.72);
  --gold: #c9962f;
  --gold-light: #e8c066;
  --gold-dark: #9a7320;
  --gold-glow: rgba(201, 150, 47, 0.35);
  --gold-subtle: rgba(201, 150, 47, 0.08);
  --text: #faf6ef;
  --text-muted: rgba(250, 246, 239, 0.68);
  --text-dim: rgba(250, 246, 239, 0.42);
  --border-gold: rgba(201, 150, 47, 0.28);
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 40px rgba(201, 150, 47, 0.2);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 84px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-feature-settings: "liga" 1, "kern" 1;
}
.text-gradient {
  background: linear-gradient(135deg, #f0d080 0%, var(--gold-light) 35%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.section-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.section-title {
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.section-title-left {
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title-left em,
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
  margin-inline: auto;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag--center { justify-content: center; }
.tag-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-luxe {
  position: relative;
  overflow: hidden;
}
.section-watermark {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(201, 150, 47, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Buttons — luxury gold system */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

/* Primary — rich gold with shine sweep */
.btn-primary {
  color: #1a0f04;
  background:
    linear-gradient(
      165deg,
      #f5dfa0 0%,
      #e8c066 22%,
      #c9962f 55%,
      #a67c1a 100%
    );
  background-size: 100% 100%;
  border-color: rgba(255, 228, 160, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 4px 20px rgba(201, 150, 47, 0.35),
    0 0 0 1px rgba(201, 150, 47, 0.25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(
    165deg,
    #fce9b8 0%,
    #efcf78 20%,
    #d4a23a 52%,
    #b8871c 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 14px 40px rgba(201, 150, 47, 0.5),
    0 0 0 1px rgba(232, 192, 102, 0.4),
    0 0 32px rgba(201, 150, 47, 0.25);
}

.btn-primary:hover::before {
  transform: translateX(130%) skewX(-12deg);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 6px 20px rgba(201, 150, 47, 0.35);
}

/* Subtle breathing glow on key CTAs */
.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -2px 0 rgba(0, 0, 0, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.14),
      0 4px 20px rgba(201, 150, 47, 0.35),
      0 0 0 1px rgba(201, 150, 47, 0.25);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -2px 0 rgba(0, 0, 0, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.18),
      0 8px 36px rgba(201, 150, 47, 0.55),
      0 0 0 1px rgba(232, 192, 102, 0.45),
      0 0 48px rgba(201, 150, 47, 0.22);
  }
}

.btn-glow:hover {
  animation: none;
}

/* Glass / secondary — gradient gold border */
.btn-glass {
  color: var(--text);
  background:
    linear-gradient(rgba(18, 16, 12, 0.88), rgba(18, 16, 12, 0.88)) padding-box,
    linear-gradient(135deg, rgba(232, 192, 102, 0.85), rgba(201, 150, 47, 0.45), rgba(232, 192, 102, 0.85)) border-box;
  border: 1.5px solid transparent;
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 24px rgba(0, 0, 0, 0.25);
}

.btn-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(201, 150, 47, 0.12) 50%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.btn-glass:hover {
  color: var(--gold-light);
  background:
    linear-gradient(rgba(201, 150, 47, 0.16), rgba(201, 150, 47, 0.06)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light)) border-box;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 32px rgba(201, 150, 47, 0.28),
    0 0 24px rgba(201, 150, 47, 0.12);
}

.btn-glass:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--border-gold);
  box-shadow:
    inset 0 0 0 1px rgba(201, 150, 47, 0.08),
    0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  background: rgba(201, 150, 47, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(232, 192, 102, 0.15),
    0 8px 28px rgba(201, 150, 47, 0.22);
}

/* Arrow — gold capsule badge on the right */
.btn-arrow {
  padding-right: 1.35rem;
  gap: 0.85rem;
}

.btn-arrow::after {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6h7M6.5 3.5L9 6l-2.5 2.5' stroke='%231a0f04' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat,
    linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(0, 0, 0, 0.18) 100%);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.btn-primary.btn-arrow:hover::after {
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.15);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6h7M6.5 3.5L9 6l-2.5 2.5' stroke='%231a0f04' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat,
    linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.btn-glass.btn-arrow::after,
.btn-outline.btn-arrow::after {
  border-color: rgba(201, 150, 47, 0.35);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6h7M6.5 3.5L9 6l-2.5 2.5' stroke='%23e8c066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat,
    rgba(201, 150, 47, 0.12);
}

.btn-glass.btn-arrow:hover::after {
  transform: translateX(5px);
  border-color: rgba(232, 192, 102, 0.55);
  box-shadow: 0 0 12px rgba(201, 150, 47, 0.3);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6h7M6.5 3.5L9 6l-2.5 2.5' stroke='%23e8c066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat,
    rgba(201, 150, 47, 0.28);
}

/* Header CTA — compact pill */
.header-cta {
  padding: 0.75rem 1.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.header-cta.btn-arrow {
  padding-right: 1.15rem;
  gap: 0.65rem;
}

.header-cta.btn-arrow::after {
  width: 1.65rem;
  height: 1.65rem;
  background-size: 10px 10px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   Header
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8, 6, 4, 0.6);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 150, 47, 0.08);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(8, 6, 4, 0.94);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo img { height: 50px; width: auto; filter: drop-shadow(0 2px 8px rgba(201, 150, 47, 0.2)); }
.nav-desktop { display: flex; align-items: center; gap: 2.25rem; }
.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold-light); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.header-phone svg { color: var(--gold); flex-shrink: 0; }
.header-cta { display: none; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(8, 6, 4, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-gold);
  flex-direction: column; gap: 0.5rem; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.05rem; padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 150, 47, 0.08);
  color: var(--text-muted);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .btn { margin-top: 0.75rem; width: 100%; }
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998; padding: 0.85rem 1rem;
  background: rgba(8, 6, 4, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* =============================================
   Hero — Split cinematic layout
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-poster--blur {
  filter: blur(48px) saturate(0.7);
  transform: scale(1.15);
  animation: none;
  opacity: 0.35;
}
.hero-media video { animation: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 6, 4, 0.97) 0%, rgba(8, 6, 4, 0.92) 50%, rgba(8, 6, 4, 0.88) 100%),
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(201, 150, 47, 0.06), transparent);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8, 6, 4, 0.6) 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow--1 {
  width: 500px; height: 500px;
  background: rgba(201, 150, 47, 0.12);
  top: 10%; right: 5%;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow--2 {
  width: 300px; height: 300px;
  background: rgba(201, 150, 47, 0.08);
  bottom: 20%; left: 10%;
  animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  min-height: 100vh;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 1.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.82rem; color: var(--gold-light);
  backdrop-filter: blur(12px);
  margin-bottom: 1.75rem;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; }
.hero-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}
.hero-title {
  font-size: clamp(2.85rem, 6.5vw, 4.85rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-micro {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-dim);
}
.hero-micro svg { color: var(--gold); flex-shrink: 0; }

/* Hero visual frame */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
  border: 1px solid var(--border-gold);
  max-width: 420px;
  width: 100%;
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center bottom;
}
.hero-frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-frame-corner {
  position: absolute;
  width: 48px; height: 48px;
  border-color: var(--gold-light);
  border-style: solid;
  opacity: 0.7;
  z-index: 2;
}
.hero-frame-corner--tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.hero-frame-corner--br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }
.hero-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card--trust {
  top: 1.25rem;
  right: -0.75rem;
  left: auto;
  bottom: auto;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.hero-float-card--trust svg { display: none; }
.hero-float-card--trust strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
}
.hero-float-card--trust span { font-size: 0.75rem; color: var(--text-dim); }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-dim); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   Stats Strip
   ============================================= */
.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -2rem;
  padding: 0 0 2rem;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: inline;
  letter-spacing: -0.02em;
}
.stat-suffix { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }
.stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
  flex-shrink: 0;
}

/* =============================================
   Marquee
   ============================================= */
.marquee-wrap {
  overflow: hidden;
  padding: 1.25rem 0;
  border-block: 1px solid rgba(201, 150, 47, 0.1);
  background: var(--bg-card);
}
.marquee {
  display: flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.marquee-dot { color: var(--gold) !important; font-style: normal !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   Brand Promise
   ============================================= */
.brand-promise {
  padding: 7rem 0;
  background: var(--bg-dark);
}
.brand-promise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-visual { position: relative; }
.brand-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
  background: #1a120b;
}
.brand-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
.brand-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
}
.brand-checklist { margin-top: 2rem; }
.brand-checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 150, 47, 0.08);
  color: var(--text-muted);
  font-size: 0.975rem;
  font-weight: 400;
  line-height: 1.6;
}
.check-icon {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   Gallery Strip
   ============================================= */
.gallery-strip {
  padding: 0;
  overflow: hidden;
}
.gallery-track {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 4px;
  height: 320px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.85) 0%, transparent 50%);
  transition: opacity var(--transition);
}
.gallery-item figcaption {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* =============================================
   Journey Steps
   ============================================= */
/* =============================================
   Experience (rites checklist)
   ============================================= */
.experience {
  padding: 7rem 0;
  background: var(--bg-dark);
}
.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.experience-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 440px;
}
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.experience-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201, 150, 47, 0.12);
  transition: var(--transition);
}
.experience-list li:first-child { border-top: 1px solid rgba(201, 150, 47, 0.12); }
.experience-list li:hover { padding-left: 0.5rem; }
.exp-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 2.5rem;
  line-height: 1.3;
}
.experience-list strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.experience-list p {
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.65;
}

/* =============================================
   Reviews trust panel
   ============================================= */
.reviews-trust-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  padding: 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}
.trust-score-block { text-align: center; min-width: 160px; }
.trust-score-big {
  font-family: var(--font-serif);
  font-size: 4.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-score-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1.1rem;
  margin: 0.35rem 0;
}
.trust-score-label {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}
.trust-score-count {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}
.trust-bars { display: flex; flex-direction: column; gap: 0.85rem; }
.trust-bar {
  display: grid;
  grid-template-columns: 140px 1fr 36px;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.bar-track {
  height: 6px;
  background: rgba(201, 150, 47, 0.12);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 100px;
  transform-origin: left;
  animation: barGrow 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.bar-val { color: var(--gold-light); font-weight: 600; text-align: right; }
.review-featured-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 600;
}
.review-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.reviews-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 150, 47, 0.12);
}
.reviews-cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.journey {
  padding: 7rem 0;
  background: var(--bg-card);
}
.journey-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3.5rem;
}
.journey-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.journey-step:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 150, 47, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
}
.journey-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.journey-step p {
  font-size: 0.925rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}
.journey-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-gold), var(--gold), var(--border-gold));
  align-self: center;
  margin-top: 4rem;
}
.journey-cta { text-align: center; }
.journey-cta .btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  padding: 0.95rem 1.75rem;
}

/* =============================================
   Pillars Bento
   ============================================= */
.pillars { padding: 7rem 0; background: var(--bg-dark); }
.pillars-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.pillar-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  min-height: 280px;
  transition: var(--transition);
}
.pillar-card--featured { grid-row: span 2; min-height: 100%; }
.pillar-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.pillar-bg { position: absolute; inset: 0; }
.pillar-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.pillar-card:hover .pillar-bg img { transform: scale(1.06); }
.pillar-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.95) 0%, rgba(8, 6, 4, 0.4) 60%, rgba(8, 6, 4, 0.2) 100%);
}
.pillar-content {
  position: relative; z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pillar-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.pillar-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   Philosophy Banner
   ============================================= */
.philosophy-banner {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.philosophy-banner-bg {
  position: absolute; inset: 0;
}
.philosophy-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.philosophy-banner-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 6, 4, 0.92) 0%, rgba(8, 6, 4, 0.75) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(201, 150, 47, 0.12), transparent);
}
.philosophy-banner-content {
  position: relative; z-index: 1;
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
}
.philosophy-banner-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.philosophy-banner-content blockquote em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.philosophy-banner-content > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-inline: auto;
}

/* =============================================
   Reviews
   ============================================= */
.reviews { padding: 7rem 0; background: var(--bg-card); }
.review-featured {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  padding: 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.review-featured::before {
  content: "\201C";
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(201, 150, 47, 0.08);
  line-height: 1;
  pointer-events: none;
}
.review-featured-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.review-featured blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.review-featured-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.review-featured-author strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
}
.review-featured-author span {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700; font-size: 1rem;
  color: var(--bg-dark);
  flex-shrink: 0;
  border: 2px solid var(--border-gold);
}
.review-avatar--lg { width: 56px; height: 56px; font-size: 1.25rem; }

/* Carousel */
.reviews-carousel-wrap { position: relative; }
.reviews-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 1rem; }
.review-quote {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  min-height: 80px;
}
.review-author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 150, 47, 0.1);
}
.review-name { font-weight: 600; color: var(--gold-light); font-size: 0.9rem; }
.review-label { font-size: 0.78rem; color: var(--text-dim); }
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: var(--bg-elevated);
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

/* =============================================
   Final CTA
   ============================================= */
.final-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(8, 6, 4, 0.88);
}
.final-cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 150, 47, 0.15), transparent 70%);
  pointer-events: none;
}
.final-cta-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.final-cta-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.final-cta-content h2 {
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.final-cta-content > p {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.final-cta-actions {
  display: flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center;
  margin-bottom: 2rem;
}
.final-cta-note {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
}
.final-cta-note svg { display: none; }

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background: #040302;
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.85rem;
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 150, 47, 0.08);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* =============================================
   Contact Page
   ============================================= */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 5rem) 0 5rem;
  text-align: center;
  background: var(--bg-card);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, var(--gold-glow), transparent),
    radial-gradient(circle 2px at 20% 60%, rgba(212, 168, 67, 0.3), transparent);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.85rem, 6vw, 4.15rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.03em;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin-inline: auto;
  position: relative;
}
.contact-section { padding: 4rem 0 5rem; background: var(--bg-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 1.85rem; margin-bottom: 0.5rem; color: var(--text); }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); margin-bottom: 0.5rem;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.95rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 150, 47, 0.15);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 47, 0.12);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-status {
  display: block;
  margin-top: 1.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  padding: 1rem 1.15rem;
  border-radius: 14px;
}
.form-status[hidden] {
  display: none !important;
}
.form-status--pending {
  color: var(--gold-light);
  background: rgba(201, 150, 47, 0.12);
  border: 1px solid rgba(201, 150, 47, 0.35);
}
.form-status--success {
  color: #d8f0d0;
  background: rgba(76, 140, 60, 0.22);
  border: 1px solid rgba(120, 180, 90, 0.45);
}
.form-status--error {
  color: #f5d0cc;
  background: rgba(160, 50, 40, 0.24);
  border: 1px solid rgba(200, 80, 70, 0.4);
}
.contact-info-wrap h2 { font-size: 1.85rem; margin-bottom: 2rem; color: var(--text); }
.info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  display: flex; gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  transition: var(--transition);
}
.info-card:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow-gold); }
.info-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
}
.info-card h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.35rem;
}
.info-card p, .info-card a { color: var(--text-muted); font-size: 0.9rem; }
.info-card a:hover { color: var(--gold-light); }
.contact-cta-band {
  background: var(--bg-card);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.contact-cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-subtle), transparent 70%);
  pointer-events: none;
}
.contact-cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--text);
  position: relative;
}
.contact-cta-band p { color: var(--text-muted); margin-bottom: 1.75rem; position: relative; }
.contact-cta-band .btn { position: relative; }

/* Video modal — header CTA player */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.video-modal[hidden] { display: none !important; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-modal-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: rgba(18, 16, 12, 0.9);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.video-modal-close:hover {
  background: var(--gold);
  color: #1a0f04;
  transform: scale(1.05);
}
.video-modal-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(201, 150, 47, 0.15);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-modal-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-modal-actions {
  display: flex;
  justify-content: center;
}
body.video-open { overflow: hidden; }

/* Legacy compat */
section { padding: 0; }
.bokeh-bg::before { display: none; }

/* =============================================
   Responsive
   ============================================= */
@media (min-width: 769px) {
  .header-cta { display: inline-flex; }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; padding-bottom: 4rem; }
  .hero-content { max-width: 640px; margin-inline: auto; }
  .hero-actions, .hero-micro { justify-content: center; }
  .hero-visual { max-width: 380px; margin-inline: auto; }
  .hero-float-card--trust { top: 1rem; right: 0.5rem; left: auto; }
  .experience-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews-trust-panel { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .trust-bar { grid-template-columns: 1fr; gap: 0.35rem; text-align: left; }
  .bar-val { text-align: left; }
  .journey-steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .journey-connector { display: none; }
  .pillars-bento { grid-template-columns: 1fr; }
  .pillar-card--featured { grid-row: span 1; min-height: 320px; }
  .gallery-track { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-item { height: 220px; }
  .gallery-item--wide { grid-column: span 2; height: 260px; }
}

@media (max-width: 1024px) {
  .brand-promise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .brand-visual { max-width: 480px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { flex-wrap: wrap; gap: 1.5rem; padding: 1.75rem; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .nav-desktop, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .sticky-cta { display: block; }
  .hero-scroll { display: none; }
  .brand-promise, .journey, .pillars, .reviews, .experience { padding: 4.5rem 0; }
  .philosophy-banner { padding: 5rem 0; }
  .final-cta { padding: 4rem 0 3.5rem; }
  body.has-sticky-cta { padding-bottom: 5.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-track { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item--wide { grid-column: span 1; height: 200px; }
  .section-watermark { display: none; }
  .review-featured { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .stat-item { flex: 0 0 100%; }
  .contact-form-wrap { padding: 1.75rem; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn { width: 100%; }
  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }
  .journey-cta .btn {
    width: auto;
    max-width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.74rem;
  }
}
