/* ==========================================================================
   AVIRA INTERIOR — LUXURY ARCHITECTURAL & INTERIOR DESIGN
   Apple-Style Scroll-Controlled Cinematic Hero Section
   ========================================================================== */

/* --- Custom Properties / Theme Variables --- */
:root {
  --bg-primary: #2B0309;
  --bg-surface: #250308;
  --bg-card: #36040C;

  --gold-primary: #F3C766;
  --gold-light: #F7D788;
  --gold-dark: #C9A75D;
  --gold-gradient: linear-gradient(135deg, #F3C766 0%, #D2B36A 100%);
  --gold-glow: rgba(243, 199, 102, 0.3);

  --text-main: #FFFFFF;
  --text-muted: #E8CFD3;
  --text-light: #F2DCE0;

  --border-glass: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(243, 199, 102, 0.35);
  --bg-glass: rgba(43, 3, 9, 0.92);

  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Cormorant Garamond', serif;
  --font-primary: 'Cormorant Garamond', serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-main);
}

html {
  scroll-behavior: auto; /* Frame-accurate programmatic transition & video scrubbing */
  font-size: 16px;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Section Base Layout */
.section-philosophy,
.section-services-transition,
.section-process,
.section-contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* ==========================================================================
   MASTER GLOBAL TYPOGRAPHY RULE (STRICTLY 2 CORMORANT GARAMOND FONT STYLES ONLY)
   ========================================================================== */

/* 1. ALL NON-HEADINGS (Body, Paragraphs, Links, Buttons, Lists, Subtitles, Eyebrows, Inputs, Selects, Textareas, Footers, Captions, Labels, Steppers, Numbers)
   MUST use Cormorant Garamond ITALIC style (Font of "True luxury...") */
body, p, span, a, li, button, input, textarea, select, label, small, strong, em, b, i:not([class*="ri-"]),
.hero-lead, .hero-subtitle, .hero-eyebrow, .section-eyebrow, .section-lead,
.nav-link, .nav-cta, .btn, .btn-outline, .btn-primary,
.service-desc, .service-features li, .step-dot, .service-num-total,
.narrative-body, .narrative-meta, .closing-principle, .closing-attribution,
.process-step-desc, .experience-eyebrow, .experience-desc,
.contact-desc, .contact-text, .form-group label, .form-group input, .form-group select, .form-group textarea,
.footer-text, .footer-col p, .footer-col li, .footer-bottom, .copyright-text, .metric-label {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  line-height: 1.6;
}

/* Ensure Remix Icons webfont is never overridden by Garamond */
i[class*="ri-"] {
  font-family: 'remixicon' !important;
  font-style: normal !important;
  font-weight: normal !important;
  display: inline-block !important;
  line-height: 1 !important;
}

/* 2. ALL HEADINGS (Section Titles, Slide Titles, Card Titles, Brand Logo Name, Main Headings, Stat Numbers)
   MUST match "ABOUT AVIRA INTERIORS" exactly: Cormorant Garamond, Upright Normal, UPPERCASE, 0.12em letter-spacing */
h1, h2, h3, h4, h5, h6,
.hero-heading,
.section-title,
.about-main-heading,
.about-hero-statement,
.narrative-title,
.service-title,
.process-step-title,
.contact-title,
.contact-info-title,
.form-title,
.experience-title,
.brand-name,
.logo-text .primary,
.process-num,
.service-num,
.metric-value,
.transition-quote {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-weight: 400 !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   NAVIGATION BAR (Fixed, Translucent Minimalist Header)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  background: #2B0309;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.9rem 0;
  background: #2B0309;
  border-bottom: 1px solid rgba(243, 199, 102, 0.25);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.nav-container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1001;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(243, 199, 102, 0.2), transparent);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(243, 199, 102, 0.3);
  transition: var(--transition-smooth);
}

.brand-logo:hover .logo-mark {
  transform: rotate(45deg);
  border-color: var(--gold-light);
  box-shadow: 0 0 25px rgba(243, 199, 102, 0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .primary {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.logo-text .sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  color: var(--gold-primary);
  font-weight: 600;
  margin-top: 2px;
}

/* Nav Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 8px var(--gold-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--gold-light) !important;
}

.nav-link:hover::after {
  width: 100%;
}

/* Scrolled Navbar Overrides for Translucent Dark Crimson Header */
.navbar.scrolled .logo-text .primary {
  color: #ffffff;
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.78);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold-light) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn {
  font-family: var(--font-serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-outline,
.nav-cta {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover,
.nav-cta:hover,
.navbar.scrolled .btn-outline:hover {
  background: var(--gold-gradient) !important;
  color: #141519 !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 25px var(--gold-glow);
  transform: translateY(-2px);
}

.navbar.scrolled .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary.cta-gold {
  font-family: var(--font-serif);
  background: #C9A75D;
  color: #000000;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(201, 167, 93, 0.45);
  border: none;
}

.btn-primary.cta-gold:hover {
  background: #d8b467;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 167, 93, 0.65);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  z-index: 1001;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.navbar.scrolled .hamburger-bar {
  background-color: #141519;
}

/* ==========================================================================
   SCROLL-CONTROLLED HERO SECTION (APPLE-STYLE STICKY)
   ========================================================================== */
.hero-scroll-track {
  position: relative;
  width: 100%;
  height: 300vh; /* 300vh scroll runway for 8-second video timeline */
  background-color: var(--bg-primary);
}

.hero-sticky-stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Video Canvas & Object-Fit Cover */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  /* Centering the curtain opening apex precisely at viewport horizontal center with 1.22 scale for full screen coverage */
  transform: translate(-58.5%, -50%) scale(1.22);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
  filter: none;
  will-change: transform;
}

/* 100% Clean Crisp Video Overlay without any color tinting */
.video-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      180deg, 
      rgba(0, 0, 0, 0.4) 0%, 
      transparent 20%, 
      transparent 80%, 
      rgba(0, 0, 0, 0.4) 100%
    );
  pointer-events: none;
  z-index: 2;
}

.video-ambient-glow {
  display: none;
}

/* Hero HTML Overlay Content (Stays fixed & fully visible over scrubbing video) */
.hero-overlay-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  pointer-events: none; /* Let scroll events pass freely to document */
  opacity: 1 !important;
  transform: none !important;
}

.hero-center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto; /* Re-enable for buttons and links */
}

/* Eyebrow Pill */
.hero-eyebrow-wrapper {
  margin-bottom: 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #D2B36A;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  background: rgba(14, 16, 20, 0.65);
  border: 1px solid rgba(210, 179, 106, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Grand Heading */
.hero-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 400 !important;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem) !important;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.85);
}

.text-gold-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none;
  display: inline-block;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.85));
}

/* Gold Subtitle */
.hero-subtitle {
  display: block;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: clamp(0.88rem, 1.2vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #FFE599;
  margin-bottom: 1.1rem;
  text-shadow: 
    0 0 25px rgba(243, 199, 102, 0.95), 
    0 0 14px rgba(243, 199, 102, 0.85), 
    0 0 7px rgba(243, 199, 102, 0.7), 
    0 3px 20px rgba(0, 0, 0, 0.95);
}

/* Supporting Lead Text */
.hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: #F1EEE8;
  max-width: 640px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2.25rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

/* CTA Wrapper */
.hero-cta-wrapper {
  margin-top: 0.5rem;
}

/* Hero Sequential Reveal Items Driven by Scroll Progress */
.hero-reveal-item {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

/* ==========================================================================
   NEXT SECTION: PHILOSOPHY (ELEVATED LUXURY PRESENTATION)
   ========================================================================== */
/* ==========================================================================
   THE STUDIO / ABOUT SECTION (ART-DIRECTED ARCHITECTURAL ATELIER)
   ========================================================================== */
.section-philosophy {
  position: relative;
  z-index: 30;
  background-color: #2B0309; /* Rich Deep Crimson Berry Maroon Base */
  color: #FFFFFF;
  padding: 5.5rem 0 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  scroll-margin-top: 110px;
}

/* Luminous Crimson Berry Radial Gradient Layer applied to Sections */
.section-philosophy::before,
.section-services-transition::before,
.section-process::before,
.section-metrics::before,
.section-contact::before {
  content: '';
  position: absolute;
  top: -35%;
  left: -35%;
  right: -35%;
  bottom: -35%;
  background: 
    /* Luminous Center Berry Crimson Spotlight */
    radial-gradient(ellipse at 50% 35%, #9E1B2C 0%, #75101E 35%, #4A0713 70%, #2B0309 100%);
  pointer-events: none;
  z-index: 1;
  animation: crimsonRadialPulse 8s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

/* Static Non-Animating Spotlight for Footer to prevent any text fading */
.footer::before {
  content: '';
  position: absolute;
  top: -35%;
  left: -35%;
  right: -35%;
  bottom: -35%;
  background: 
    radial-gradient(ellipse at 50% 35%, #9E1B2C 0%, #75101E 35%, #4A0713 70%, #2B0309 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* Vignette & Gloss Light Sheen Layer applied to ALL Sections */
.section-philosophy::after,
.section-services-transition::after,
.section-process::after,
.section-metrics::after,
.section-contact::after,
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(184, 35, 56, 0.22) 0%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes crimsonRadialPulse {
  0% {
    opacity: 0.85;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.00);
  }
}

/* Pure Edge-to-Edge Content Container (Zero Cards, Zero Box Frames) */
.about-content-wrapper {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* Main Section Heading Anchor with Editorial Spacing & White Luminous Glow */
.about-header-block {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 2;
}

.about-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Reduced Introductory Statement Size & Vertical Spacing */
.about-hero-moment {
  max-width: 840px;
  margin: 0 auto 3rem auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-hero-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 300;
  line-height: 1.45;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Asymmetrical Alternating Narrative Cadence (01 LEFT -> 02 RIGHT -> 03 LEFT) */
.about-asymmetric-narrative {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
}

.narrative-moment {
  max-width: 520px;
  position: relative;
}

.narrative-moment.moment-left {
  align-self: flex-start;
  margin-left: 3%;
  margin-bottom: 4.5rem;
}

.narrative-moment.moment-right {
  align-self: flex-end;
  margin-right: 4%;
  margin-bottom: 4.5rem;
}

/* 03 Aligned EXACTLY with 01 Left Edge */
.narrative-moment.moment-inset {
  align-self: flex-start;
  margin-left: 3%;
  margin-bottom: 0;
}

.narrative-meta {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #F3C766;
  font-weight: 600;
  display: block;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 16px rgba(243, 199, 102, 0.5);
}

.narrative-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: text-shadow 0.3s ease;
}

.narrative-moment:hover .narrative-title {
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.narrative-body {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: #E8CFD3;
  line-height: 1.85;
  font-weight: 400;
  margin: 0;
}

/* Quiet Principle Closing */
.about-quiet-closing {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
}

.closing-glow-line {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(243, 199, 102, 0.9) 50%, transparent 100%);
  box-shadow: 0 0 14px rgba(243, 199, 102, 0.6);
  margin: 0 auto 2.5rem auto;
}

.closing-principle {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.closing-attribution {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #F3C766;
  font-weight: 600;
  display: block;
  text-shadow: 0 0 14px rgba(243, 199, 102, 0.5);
}

@media (max-width: 768px) {
  .section-philosophy {
    padding: 4.5rem 0 5rem 0;
  }
  .narrative-moment {
    max-width: 86%;
    margin-bottom: 2.8rem;
  }
  .narrative-moment.moment-left {
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
  }
  .narrative-moment.moment-right {
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
  }
  .narrative-moment.moment-inset {
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0;
  }
  .about-main-heading {
    white-space: normal;
    font-size: clamp(1.8rem, 7.5vw, 2.8rem);
    letter-spacing: 0.06em;
  }
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATIONS (CINEMATIC CASCADE)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ==========================================================================
   GLOBAL SECTION HEADER & UTILITY STYLES
   ========================================================================== */
.text-center {
  text-align: center !important;
}

.text-gold {
  color: var(--gold-light) !important;
  text-shadow: 0 0 15px rgba(243, 199, 102, 0.4);
}

.section-header {
  max-width: 850px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.section-eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 0.88rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 12px rgba(243, 199, 102, 0.4);
  opacity: 1 !important;
  visibility: visible !important;
}

.section-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: normal !important;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF !important;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  opacity: 1 !important;
  visibility: visible !important;
}

.section-lead {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 720px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  opacity: 1 !important;
  visibility: visible !important;
}

/* ==========================================================================
   SERVICES / EXPERTISE SECTION (SCROLL-DRIVEN STICKY VIDEO RUNWAY)
   ========================================================================== */
.services-scroll-track {
  position: relative;
  height: 550vh;
  background-color: #2B0309;
  z-index: 28;
}

.services-sticky-stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 4.8rem 0 2rem 0;
  z-index: 28;
}

/* Video Canvas & Object-Fit Cover for Scene 2 */
.services-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.services-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: translate(-50%, -50%) translateZ(0);
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  filter: none;
  will-change: transform;
}

/* Directional Gradient Overlay: Deep Crimson Maroon transition top */
.services-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      180deg, 
      rgba(43, 3, 9, 0.85) 0%, 
      rgba(43, 3, 9, 0.35) 15%, 
      transparent 30%, 
      transparent 100%
    );
  pointer-events: none;
}

/* Foreground Content */
.services-stage-content {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.services-stage-header {
  max-width: 800px;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.services-stage-header .section-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.05rem, 3.8vw, 3.4rem);
  line-height: 1.18;
  margin-bottom: 0;
  color: #FFFFFF;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.services-stage-header .text-gold,
.services-stage-header .section-title span {
  color: #FFE599 !important;
  font-weight: 400 !important;
  text-shadow: 
    0 0 22px rgba(243, 199, 102, 0.85), 
    0 0 12px rgba(243, 199, 102, 0.7), 
    0 2px 16px rgba(0, 0, 0, 0.9) !important;
}

/* Slide Deck Container */
.services-deck {
  position: relative;
  width: 100%;
  max-width: 900px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  transform: translateY(0);
}

/* Individual Service Slide */
.service-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
}

.service-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Clean Full-Screen Direct-Over-Video Service Display with soft dark gradient behind text area ONLY */
.service-card-inner {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 1.5rem 1.8rem 1.6rem 1.8rem;
  position: relative;
  overflow: visible;
  transition: opacity 0.4s ease;
}

/* Extremely light, subtle black gradient strictly behind text area for clean contrast */
.service-card-inner::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -6%;
  right: -6%;
  bottom: -8%;
  background: radial-gradient(
    ellipse 70% 65% at 50% 50%, 
    rgba(0, 0, 0, 0.28) 0%, 
    rgba(0, 0, 0, 0.15) 50%, 
    transparent 90%
  );
  pointer-events: none;
  z-index: -1;
  border-radius: 30px;
  filter: blur(12px);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.35rem;
}

.service-meta-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.service-num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.6rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.95;
  letter-spacing: 0.04em !important;
  font-variant-numeric: lining-nums tabular-nums !important;
  font-feature-settings: "lnum" 1, "tnum" 1 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.service-num-total {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.service-icon {
  display: none !important;
}

.service-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85), 0 0 32px rgba(0, 0, 0, 0.5);
}

.service-desc {
  color: #FFFFFF !important;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 450;
  margin-bottom: 1.5rem;
  max-width: 95%;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(243, 199, 102, 0.35);
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #FFFFFF;
  font-weight: 450;
  line-height: 1.45;
  padding: 0 1.8rem;
  position: relative;
  box-sizing: border-box;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.service-features li:first-child {
  padding-left: 0.5rem;
  padding-right: 1.8rem;
}

.service-features li:nth-child(2) {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}

.service-features li:last-child {
  padding-left: 1.8rem;
  padding-right: 0.5rem;
}

.service-features li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  height: 84%;
  width: 1px;
  background: linear-gradient(
    180deg, 
    transparent 0%, 
    rgba(243, 199, 102, 0.2) 15%, 
    rgba(243, 199, 102, 0.5) 50%, 
    rgba(243, 199, 102, 0.2) 85%, 
    transparent 100%
  );
}

.service-features li i {
  color: var(--gold-light);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.6));
}

/* Bottom Stepper Timeline */
.services-stepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.stepper-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  position: relative;
  z-index: 10;
}

.step-dot {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}

.step-dot.active {
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(243, 199, 102, 0.6);
  transform: scale(1.15);
}

.stepper-progress-track {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.stepper-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 8px var(--gold-primary);
}


/* ==========================================================================
   EDITORIAL TRANSITION DIVIDER (SERVICES TO EXPERIENCE)
   ========================================================================== */
.section-services-transition {
  position: relative;
  z-index: 30;
  background-color: #2B0309;
  padding: 11rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.services-transition-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.transition-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #E8CFD3;
}

.transition-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
}

.transition-mark {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}


/* ==========================================================================
   BESPOKE EDITORIAL PROCESS TIMELINE SECTION
   ========================================================================== */
.section-process {
  position: relative;
  z-index: 30;
  background-color: #2B0309;
  padding: 8rem 0 9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.process-header {
  margin-bottom: 5.5rem;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
}

.process-header .section-title,
.section-process .section-title {
  color: #FFFFFF !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 10;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.4), 0 2px 20px rgba(0, 0, 0, 0.9);
}

.process-journey-wrapper {
  position: relative;
  width: 100%;
}

/* Horizontal Connected Journey Line */
.process-journey-line {
  position: absolute;
  top: 4.2rem;
  left: 3%;
  right: 3%;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(243, 199, 102, 0.15) 0%, 
    rgba(243, 199, 102, 0.5) 30%, 
    rgba(243, 199, 102, 0.5) 70%, 
    rgba(243, 199, 102, 0.15) 100%
  );
  z-index: 1;
}

.process-journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-step-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 1.8rem;
}

.process-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-primary) !important;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.process-node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 2px solid #2B0309;
  box-shadow: 0 0 10px rgba(243, 199, 102, 0.6);
  position: relative;
  z-index: 3;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.process-step-content {
  padding-right: 0.8rem;
}

/* Permanent 100% Full Visibility for Process Section Text (Zero Fade/Opacity Animations) */
.section-process,
.process-header,
.process-journey-wrapper,
.process-journey-steps,
.process-step,
.process-num,
.process-node,
.process-step-title,
.process-step-desc {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  color: #FFFFFF !important;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.process-step-desc {
  font-family: var(--font-serif);
  color: #E8CFD3 !important;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ==========================================================================
   METRICS & RECOGNITION SECTION
   ========================================================================== */
.section-metrics {
  position: relative;
  z-index: 30;
  background-color: #2B0309;
  padding: 3.5rem 0;
  min-height: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.metrics-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.metric-block {
  text-align: center;
  flex: 1;
}

.metric-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 400;
  color: #FFFFFF;
  display: inline-block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-plus {
  color: var(--gold-primary);
}

.metric-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.metric-sub {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: #E8CFD3;
  font-weight: 400;
}

.metric-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   VIP CONSULTATION & CONTACT SECTION
   ========================================================================== */
.section-contact {
  position: relative;
  z-index: 30;
  background-color: #2B0309;
  padding: 7rem 0 8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-info-panel {
  padding-top: 0.2rem;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.16;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
}

.contact-desc {
  font-family: var(--font-serif);
  color: #E8CFD3;
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(243, 199, 102, 0.12) !important;
  border: 1px solid rgba(243, 199, 102, 0.35) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.detail-icon i {
  font-family: 'remixicon' !important;
  font-style: normal !important;
  font-size: 1.2rem !important;
  color: #F3C766 !important;
}

.detail-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.detail-text p {
  font-family: var(--font-serif);
  color: #E8CFD3;
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Luxury Consultation Form Container */
.contact-form-panel {
  background: rgba(43, 3, 9, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem 2.8rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-family: var(--font-serif);
  color: #E8CFD3;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: var(--font-serif);
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(25, 2, 5, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: var(--font-serif);
  transition: all 0.3s ease;
  outline: none;
}

.form-group select {
  cursor: pointer;
  background-color: rgba(25, 2, 5, 0.8);
}

.form-group select option {
  background-color: #2B0309;
  color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(43, 3, 9, 0.95);
  box-shadow: 0 0 15px rgba(243, 199, 102, 0.25);
}

.form-group textarea {
  resize: vertical;
}

.btn-primary,
.form-submit-btn {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 0.88rem;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #F3C766 0%, #D2B36A 100%) !important;
  color: #1A0206 !important;
  border: 1px solid #F7D788 !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer !important;
  box-shadow: 0 8px 25px rgba(243, 199, 102, 0.35);
  transition: all 0.3s ease !important;
}

.btn-primary:hover,
.form-submit-btn:hover {
  background: linear-gradient(135deg, #FFE599 0%, #E6C87E 100%) !important;
  color: #1A0206 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(243, 199, 102, 0.5);
}

.form-feedback-msg {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  transition: all 0.3s ease;
}

.form-feedback-msg.success {
  display: block !important;
  background: rgba(243, 199, 102, 0.15) !important;
  border: 1px solid #F3C766 !important;
  color: #FFE599 !important;
  box-shadow: 0 4px 20px rgba(243, 199, 102, 0.2);
}

.form-feedback-msg.error {
  display: block !important;
  background: rgba(235, 87, 87, 0.15) !important;
  border: 1px solid #EB5757 !important;
  color: #FF8888 !important;
}

/* ==========================================================================
   MINIMALIST DARK FOOTER
   ========================================================================== */
.footer {
  background-color: #2B0309;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 0 3rem 0;
  position: relative;
  z-index: 30;
  overflow: hidden;
  color: #FFFFFF;
}

.footer-top,
.footer-bottom,
.footer-col,
.footer-heading,
.footer-links,
.footer-links a,
.footer-tagline,
.footer-contact-p {
  position: relative;
  z-index: 5;
  opacity: 1 !important;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 4.5rem;
  margin-bottom: 5rem;
}

.brand-col .footer-logo {
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.brand-col .footer-logo .primary {
  color: #FFFFFF;
}

.brand-col .footer-logo .sub {
  color: var(--gold-primary);
}

.footer-tagline {
  font-family: var(--font-serif);
  color: #D6B6BC;
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials .social-icon,
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(243, 199, 102, 0.1) !important;
  border: 1px solid rgba(243, 199, 102, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F3C766 !important;
  cursor: default;
  transition: all 0.3s ease;
}

.footer-socials .social-icon i,
.footer-socials a i {
  font-family: 'remixicon' !important;
  font-style: normal !important;
  font-size: 1.25rem !important;
  color: #F3C766 !important;
}

.footer-socials .social-icon:hover,
.footer-socials a:hover {
  border-color: var(--gold-primary) !important;
  background: rgba(243, 199, 102, 0.25) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(243, 199, 102, 0.4);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  font-family: var(--font-serif);
  color: #D6B6BC;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contact-p {
  font-family: var(--font-serif);
  color: #D6B6BC;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-p i {
  color: var(--gold-primary);
  font-size: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #D6B6BC;
  font-family: var(--font-serif);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: #D6B6BC;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #C9A75D;
}

.footer-legal .sep {
  opacity: 0.3;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-video {
    transform: translate(-68.5%, -50%) scale(1.45) !important;
    object-position: center center !important;
  }

  .container {
    padding: 0 2rem;
  }

  .hero-scroll-track {
    height: 250vh; /* Slightly shorter scroll runway for tablets */
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(43, 3, 9, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(243, 199, 102, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }

  .nav-menu .nav-link {
    font-size: 1.15rem;
    color: #FFFFFF;
  }

  .nav-menu .nav-link:hover {
    color: var(--gold-primary);
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.open .hamburger-bar {
    background-color: #FFFFFF;
  }

  .mobile-toggle.open .hamburger-bar:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.open .hamburger-bar:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* About Section - Tablet Alternating Cadence Preservation */
  .about-main-heading {
    white-space: normal;
    font-size: clamp(2.1rem, 6.5vw, 3.2rem);
  }

  .narrative-moment {
    max-width: 88%;
    margin-bottom: 3.2rem;
  }

  .narrative-moment.moment-left {
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
  }

  .narrative-moment.moment-right {
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
  }

  .narrative-moment.moment-inset {
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0;
  }

  .about-hero-moment {
    margin-bottom: 3.8rem;
  }

  .about-asymmetric-narrative {
    margin-bottom: 3.5rem;
  }

  .about-content-wrapper {
    margin-top: 3rem;
  }

  .section-philosophy {
    padding: 5.5rem 0 5rem 0;
    scroll-margin-top: 90px;
  }

  /* Services Tablet */
  .services-scroll-track {
    height: 480vh;
  }

  .services-deck {
    max-width: 92%;
  }

  .service-card-inner {
    padding: 1.5rem 1.5rem;
  }

  .service-features {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  /* Experience Tablet */
  .experience-overlay-content {
    max-width: 92%;
    padding: 2rem 1.2rem;
  }

  .experience-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  /* Process Tablet */
  .process-journey-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.75rem;
  }

  .process-journey-line {
    display: none;
  }

  /* Metrics Tablet */
  .metrics-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .metric-block {
    flex: none;
    text-align: center;
  }

  .metric-divider {
    display: none;
  }

  /* Contact Tablet */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  /* Footer Tablet */
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  /* 1. HERO MOBILE: Center curtain meeting point horizontally on mobile, desktop untouched */
  .hero-video {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.45) !important;
    object-position: center center !important;
  }

  .hero-scroll-track {
    height: 220vh; /* Smooth touch swipe runway for mobile */
  }

  .nav-cta {
    display: none;
  }

  .hero-eyebrow-wrapper {
    margin-bottom: 0.5rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 0.28rem 0.75rem;
    white-space: normal;
    text-align: center;
  }

  .hero-heading {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem) !important;
    line-height: 1.24;
    margin-bottom: 0.55rem;
    letter-spacing: 0.02em !important;
    font-weight: 500;
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 3vw, 1.05rem) !important;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    color: var(--gold-light) !important;
    font-weight: 500;
  }

  .hero-lead {
    font-size: clamp(0.88rem, 3vw, 0.98rem);
    line-height: 1.52;
    margin-bottom: 1.1rem;
    padding: 0 0.25rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .btn-primary.cta-gold {
    width: 100%;
    padding: 0.8rem 1.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .scroll-status-bar {
    bottom: 1.2rem;
  }

  .scroll-pill {
    padding: 0.25rem 0.65rem;
  }

  .scroll-label {
    font-size: 0.58rem;
  }

  /* 2. ABOUT MOBILE: Center-align all About section content on mobile */
  .section-philosophy {
    padding: 4rem 0 4.5rem 0;
    text-align: center !important;
  }

  .about-main-heading {
    white-space: normal;
    font-size: clamp(1.35rem, 4.5vw, 1.8rem);
    letter-spacing: 0.04em;
    text-align: center !important;
  }

  .about-hero-statement {
    font-size: clamp(0.98rem, 3.2vw, 1.15rem);
    line-height: 1.45;
    max-width: 90%;
    margin: 0 auto 2rem auto;
    text-align: center !important;
  }

  .narrative-moment,
  .narrative-moment.moment-left,
  .narrative-moment.moment-right,
  .narrative-moment.moment-inset {
    max-width: 90%;
    margin-bottom: 2.5rem;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .narrative-meta {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }

  .narrative-title {
    font-size: clamp(1.1rem, 3.5vw, 1.35rem);
    margin-bottom: 0.45rem;
  }

  .narrative-body {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  /* 3. SERVICES MOBILE: Scaled typography, checkmark icon top alignment, navigation fitting */
  .services-scroll-track {
    height: 420vh;
  }

  .services-sticky-stage {
    padding: 3.5rem 0.75rem 1.2rem 0.75rem;
  }

  .services-stage-header {
    margin-top: 0.2rem;
    margin-bottom: 0.25rem;
  }

  .services-stage-header .section-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .services-stage-header .section-title {
    display: none !important; /* On mobile, hide duplicate giant section header title to prevent card overlap */
  }

  .services-deck {
    max-width: 100%;
    margin: 0.25rem 0;
    transform: none;
  }

  .service-slide {
    top: 48%;
    transform: translate(-50%, -46%);
    width: 92%;
  }

  .service-card-inner {
    padding: 0.4rem 0.75rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: none;
  }

  .service-header {
    margin-bottom: 0.75rem;
  }

  .service-num {
    font-size: 1.6rem;
  }

  .service-num-total {
    font-size: 0.65rem;
  }

  .service-title {
    font-size: clamp(1.25rem, 4.5vw, 1.55rem);
    margin-bottom: 0.4rem;
    color: #ffffff !important;
    font-weight: 500;
  }

  .service-desc {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .service-features {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding-top: 0.6rem;
  }

  .service-features li,
  .service-features li:first-child,
  .service-features li:nth-child(2),
  .service-features li:last-child {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.55rem !important;
    font-size: clamp(0.8rem, 2.8vw, 0.88rem) !important;
    line-height: 1.4 !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.95) !important;
  }

  .service-features li::after {
    display: none !important;
  }

  .service-features li i {
    color: var(--gold-primary) !important;
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
  }

  .stepper-dots {
    gap: 0.75rem;
  }

  .step-dot {
    font-size: 0.68rem;
  }

  .stepper-progress-track {
    width: 120px;
  }

  /* 4. EXPERIENCE & TEXT SECTIONS MOBILE */
  .experience-overlay-content {
    max-width: 95%;
    padding: 1.25rem 0.75rem;
  }

  .experience-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .experience-title {
    font-size: clamp(1.25rem, 4.2vw, 1.75rem);
    line-height: 1.22;
  }

  .process-header .section-title {
    font-size: clamp(1.35rem, 4.5vw, 1.8rem);
  }

  .process-journey-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-num {
    display: block !important;
    font-size: clamp(1.8rem, 6vw, 2.3rem) !important;
    font-weight: 300 !important;
    color: var(--gold-primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1 !important;
    margin-bottom: 0.4rem !important;
  }

  .process-step-title {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
    color: #ffffff;
  }

  .process-step-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
  }

  .metrics-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.85rem;
  }

  .metric-num {
    font-size: clamp(1.5rem, 4.8vw, 2.1rem);
  }

  .metric-name {
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    letter-spacing: 1px;
  }

  .metric-sub {
    font-size: clamp(0.68rem, 1.8vw, 0.75rem);
  }

  /* 5. CONTACT MOBILE: Proportionate form heading, inputs, & submit button height */
  .contact-form-panel {
    padding: 1.35rem 1rem;
  }

  .contact-title {
    font-size: clamp(1.35rem, 4.5vw, 1.8rem);
  }

  .contact-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .contact-form-panel .form-title {
    font-size: clamp(1.15rem, 3.8vw, 1.4rem);
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .contact-form-panel .form-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.35;
  }

  .contact-form-panel .form-group {
    margin-bottom: 0.8rem;
  }

  .contact-form-panel input,
  .contact-form-panel textarea {
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
  }

  .form-submit-btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.78rem;
    min-height: 42px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section-services-transition,
  .section-process,
  .section-contact {
    padding: 4rem 0 5rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-heading {
    font-size: clamp(1.5rem, 6vw, 1.85rem) !important;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    padding: 0.25rem 0.65rem;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.05rem) !important;
  }

  .hero-lead {
    font-size: clamp(0.85rem, 3.2vw, 0.95rem);
  }

  .about-main-heading {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }

  .about-hero-statement {
    font-size: clamp(0.92rem, 3.5vw, 1.08rem);
  }

  .narrative-title {
    font-size: clamp(1.05rem, 4vw, 1.25rem);
  }

  .narrative-body {
    font-size: 0.8rem;
  }

  .service-num {
    font-size: 1.45rem;
  }

  .service-title {
    font-size: clamp(1.05rem, 4vw, 1.25rem);
  }

  .service-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .service-features li {
    font-size: 0.72rem;
  }

  .process-header .section-title {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }

  .process-step-title {
    font-size: clamp(0.98rem, 3.5vw, 1.15rem);
  }

  .process-step-desc {
    font-size: 0.78rem;
  }

  .metric-num {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }

  .metric-name {
    font-size: 0.62rem;
  }

  .contact-title {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }

  .contact-form-panel {
    padding: 1.15rem 0.85rem;
  }

  .contact-form-panel .form-title {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
  }

  .form-submit-btn {
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   THE AVIRA EXPERIENCE SECTION (SCROLL-DRIVEN STICKY VIDEO RUNWAY)
   ========================================================================== */
.experience-scroll-track {
  position: relative;
  height: 350vh;
  background-color: #0c0d0f;
  z-index: 29;
}

.experience-sticky-stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 29;
}

.experience-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.experience-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: translate(-50%, -50%) translateZ(0);
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  will-change: transform;
}

/* Subtle, localized dark gradient behind text area only for high text readability without darkening video */
.experience-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse 72% 65% at 50% 50%,
    rgba(12, 13, 15, 0.62) 0%,
    rgba(12, 13, 15, 0.32) 48%,
    transparent 85%
  );
  pointer-events: none;
  z-index: 2;
}

.experience-overlay-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 950px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  pointer-events: none;
}

.experience-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
}

.experience-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.experience-eyebrow::before,
.experience-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.85;
}

.experience-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.9);
}

@media (max-width: 1024px) {
  .process-journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .process-journey-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .experience-scroll-track {
    height: 280vh;
  }
  .experience-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
  }
  .experience-eyebrow::before,
  .experience-eyebrow::after {
    width: 20px;
  }
  .experience-title {
    font-size: clamp(1.85rem, 6.5vw, 2.8rem);
  }
  .process-journey-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INTERACTIVE 3D SPATIAL TILT ENGINE & HIGH-DEPTH PARALLAX HIERARCHY
   ========================================================================== */
.process-step,
.contact-form-panel,
.contact-info-panel,
.narrative-moment,
.narrative-3d-visual,
.service-card-inner,
.about-hero-moment,
.metric-block,
.services-transition-inner,
.experience-text-box,
.hero-center-box,
.about-quiet-closing {
  transform-style: preserve-3d !important;
  perspective: 1000px !important;
  will-change: transform;
  position: relative;
}

/* 3D Specular Light Glare Overlay */
.process-editorial-card::before,
.contact-form-panel::before,
.contact-info-panel::before,
.narrative-3d-visual::before,
.service-card-inner::before,
.metric-block::before,
.services-transition-inner::before,
.about-quiet-closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255, 255, 255, 0.16) 0%,
    rgba(243, 199, 102, 0.06) 30%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 10;
  border-radius: inherit;
}

.process-editorial-card:hover::before,
.contact-form-panel:hover::before,
.contact-info-panel:hover::before,
.narrative-3d-visual:hover::before,
.service-card-inner:hover::before,
.metric-block:hover::before,
.services-transition-inner:hover::before,
.about-quiet-closing:hover::before {
  opacity: 1;
}

/* Multi-Tiered Depth Layers */
.process-num,
.narrative-meta,
.form-title,
.narrative-title,
.about-main-heading,
.service-num,
.service-title,
.contact-info-title,
.metric-num,
.visual-3d-badge {
  transform: translateZ(45px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-desc,
.narrative-body,
.about-hero-statement,
.service-desc,
.service-features,
.contact-text,
.visual-3d-title {
  transform: translateZ(25px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-gold,
.form-submit-btn,
.metric-name,
.closing-principle,
.hero-eyebrow {
  transform: translateZ(55px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   SEPARATE LEGAL PAGES STYLING (PRIVACY POLICY & TERMS OF ENGAGEMENT)
   ========================================================================== */
.legal-page {
  background-color: var(--bg-primary);
  color: var(--text-main);
}

.legal-main {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.legal-hero-section {
  padding: 4rem 0 3rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3.5rem;
}

.legal-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.legal-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--gold-light);
  max-width: 780px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.legal-updated {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: #D6B6BC;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.legal-container {
  max-width: 900px;
}

.legal-card {
  background: rgba(43, 3, 9, 0.7);
  border: 1px solid rgba(243, 199, 102, 0.25);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2.5rem;
}

.legal-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-meta {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.legal-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.legal-p {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  color: #E8CFD3;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.legal-list li {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #F2DCE0;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.legal-list li i {
  color: var(--gold-primary);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.legal-contact-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(243, 199, 102, 0.06);
  border-left: 3px solid var(--gold-primary);
  border-radius: 4px;
}

.legal-contact-box p {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-size: 1.02rem;
}

.legal-contact-box a {
  color: var(--gold-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 2rem 1.5rem;
  }
}
