/* ============================================
   VendorSphere by Simran — Ultra-Premium Edition
   Color Palette: Midnight Black, Rose Gold, Champagne, Warm White
   Indian Luxury Aesthetic with Glassmorphism & Gold Shimmer
   ============================================ */

/* ---- CSS Variables — Premium Indian Luxury ---- */
:root {
  /* Core Palette - Brand Charcoal */
  --midnight: #1f1f1f;
  --midnight-soft: #1a1a1a;
  --charcoal: #1f1f1f;
  --charcoal-light: #2a2a2a;

  /* Champagne Gold - Brand Primary */
  --champagne: #b8985e;
  --champagne-light: rgba(184, 152, 94, 0.12);
  --champagne-medium: rgba(184, 152, 94, 0.3);
  --champagne-glow: rgba(184, 152, 94, 0.2);
  --champagne-bright: #c9a96e;
  --champagne-pale: #d4b896;

  /* Rose Gold */
  --rose: #b76e79;
  --rose-hover: #c97d88;
  --rose-light: rgba(183, 110, 121, 0.12);
  --rose-medium: rgba(183, 110, 121, 0.25);
  --rose-deep: #9e5a65;

  /* Warm Neutrals - Brand Palette */
  --warm-white: #f7f2ea;
  --cream: #f3ece0;
  --ivory: #fdfbf7;
  --warm-gray: #e4dbd0;
  --border-light: rgba(184, 152, 94, 0.15);
  --warm-taupe: #c8beaa;

  /* Text */
  --text-primary: #1a1816;
  --text-secondary: #5a534d;
  --text-tertiary: #8a8078;
  --text-light: rgba(250, 246, 240, 0.7);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Premium Effects */
  --shadow-glass: 0 8px 32px rgba(12, 12, 12, 0.08);
  --shadow-elevated: 0 24px 64px rgba(12, 12, 12, 0.12);
  --shadow-champagne: 0 12px 40px rgba(201, 169, 110, 0.18);
  --shadow-rose: 0 12px 40px rgba(183, 110, 121, 0.2);
  --glow-champagne: 0 0 60px rgba(201, 169, 110, 0.15);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.25s;
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;
}

/* ---- Import Premium Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm-white); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--champagne-bright); }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Selection color */
::selection { background: var(--rose-light); color: var(--rose-deep); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Grain Texture Overlay for Dark Sections ---- */
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   TYPOGRAPHY — Editorial Luxury
   ============================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--champagne);
}

.eyebrow-centered {
  justify-content: center;
}

.eyebrow-centered::before,
.eyebrow-centered::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--champagne);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}

.section-title-small {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-tertiary);
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.body-large {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-weight: 400;
}

.text-muted {
  color: var(--text-tertiary);
  font-size: 16px;
  line-height: 1.8;
}

/* Display text for quotes etc */
.display-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* ============================================
   BUTTONS — Premium Interactive
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s var(--ease-out);
}

.btn-primary:hover {
  background: var(--rose-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-rose);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--champagne);
}

.btn-outline:hover {
  background: var(--champagne-light);
  border-color: var(--champagne-bright);
  color: var(--champagne-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-champagne);
}

.btn-outline-light {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid var(--champagne-medium);
}

.btn-outline-light:hover {
  background: var(--champagne-light);
  border-color: var(--champagne);
  color: var(--champagne-bright);
}

/* Arrow animation in buttons */
.btn .arrow {
  transition: transform var(--duration-normal) var(--ease-out);
}

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

/* Gold shimmer border animation */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-border {
  position: relative;
}

.shimmer-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* ============================================
   HEADER — Glassmorphism Luxury
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fbf8f2;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.site-header.scrolled {
  background: #fbf8f2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 125px;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--duration-normal) var(--ease-smooth);
  position: absolute;
  left: 32px;
}

.header-logo:hover {
  opacity: 0.85;
}

.header-logo img {
  height: 170px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 40px;
}

.header-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width var(--duration-normal) var(--ease-out);
}

.header-link:hover,
.header-link.active {
  color: var(--text-primary);
}

.header-link:hover::after,
.header-link.active::after {
  width: 100%;
}

.header-cta {
  padding: 14px 28px;
  font-size: 11px;
  position: absolute;
  right: 32px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  transition: color var(--duration-fast) var(--ease-smooth);
}

/* ---- Mobile Menu — Glass Panel ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: #fbf8f2;
  border-bottom: 1px solid var(--border-light);
  padding: 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--duration-fast) ease, padding-left var(--duration-fast) ease;
}

.mobile-menu a:hover {
  color: var(--champagne);
  padding-left: 8px;
}

/* ============================================
   HERO — Cinematic Full-Bleed
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--midnight);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.8) contrast(1.05);
  transition: transform 8s var(--ease-out);
}

.hero:hover .hero-bg img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 12, 0.75) 0%,
    rgba(12, 12, 12, 0.4) 50%,
    rgba(12, 12, 12, 0.6) 100%
  );
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(12, 12, 12, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  padding: 200px 32px 80px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 32px;
  padding: 10px 24px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--champagne-medium);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-bright);
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  color: var(--champagne);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .accent {
  color: var(--rose);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-align: center;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid var(--champagne-medium);
  margin: 0 auto;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--champagne-bright);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--champagne);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTIONS — Generous Spacing
   ============================================ */

.section { padding: 140px 0; position: relative; }
.section-alt { background: var(--ivory); }
.section-white { background: #fff; }

.section-header { text-align: center; margin-bottom: 80px; }

/* Elegant divider between sections */
.section-divider {
  position: relative;
  height: 1px;
  background: var(--border-light);
  margin: 0 auto;
  max-width: 120px;
}

/* ============================================
   ABOUT — Editorial Asymmetric Layout
   ============================================ */

.about-section { background: var(--ivory); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--champagne-medium);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.04);
}

/* Gold corner accent */
.about-image::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--champagne);
  border-right: 2px solid var(--champagne);
  z-index: 3;
  pointer-events: none;
}

.float-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--warm-white);
  padding: 32px 40px;
  border-radius: 2px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border-light);
  z-index: 4;
  min-width: 160px;
}

.float-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--champagne);
}

.float-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
}

.float-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Features */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.feature-item:hover {
  border-color: var(--border-light);
  background: rgba(201, 169, 110, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--champagne-light);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--champagne-medium);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.feature-item:hover .feature-icon {
  background: var(--champagne);
  color: var(--warm-white);
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-sub {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ============================================
   SERVICES — Glassmorphism Cards
   ============================================ */

.services-section { background: var(--warm-white); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 48px 36px;
  transition: all var(--duration-slow) var(--ease-out);
  overflow: hidden;
}

/* Top gold accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--rose), var(--champagne));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--champagne-medium);
  background: rgba(255, 255, 255, 0.95);
}

.service-card:hover::before {
  opacity: 1;
  animation: shimmer 3s linear infinite;
}

.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  opacity: 0.15;
  font-style: italic;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--champagne-light);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 28px;
  border: 1px solid var(--champagne-medium);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.service-card:hover .service-icon {
  background: var(--champagne);
  color: var(--warm-white);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-desc {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--champagne);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out);
}

.link-arrow:hover {
  gap: 16px;
  color: var(--rose);
}

/* ============================================
   STATS — Midnight Luxury Band
   ============================================ */

.stats-section {
  background: var(--midnight);
  padding: 100px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--champagne-medium);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--champagne-medium);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--champagne-medium);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--champagne-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================
   PROCESS — Elegant Vertical Timeline
   ============================================ */

.process-section { background: #fff; }

.process-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--champagne), var(--champagne-medium), transparent);
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--duration-slow) var(--ease-out);
}

.process-step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.process-step:last-child { margin-bottom: 0; }

.process-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border: 2px solid var(--champagne);
  box-shadow: 0 0 0 8px var(--champagne-light), var(--shadow-glass);
  position: relative;
  z-index: 1;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.process-step:hover .process-node {
  background: var(--champagne);
  color: var(--warm-white);
  transform: scale(1.08);
  box-shadow: 0 0 0 12px var(--champagne-light), var(--shadow-champagne);
}

.process-content { padding-top: 8px; }

.process-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--champagne);
  margin-bottom: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.process-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.process-desc {
  font-size: 16px;
  color: var(--text-tertiary);
  line-height: 1.8;
  max-width: 440px;
}

/* ============================================
   PORTFOLIO — Scrolling Gallery
   ============================================ */

.portfolio-section {
  background: var(--charcoal);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.portfolio-header .section-title {
  color: var(--warm-white);
  font-weight: 300;
}

.portfolio-header .section-desc {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Gold top and bottom lines */
.portfolio-section::before,
.portfolio-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--champagne-medium);
}

.portfolio-section::before { top: 0; }
.portfolio-section::after { bottom: 0; }

.portfolio-strip {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  animation: marquee 50s linear infinite;
}

.portfolio-strip[data-strip="2"] {
  animation-direction: reverse;
  animation-duration: 60s;
}

.portfolio-strip[data-strip="3"] {
  animation-duration: 55s;
}

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

.portfolio-item {
  flex-shrink: 0;
  width: 380px;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--champagne-medium);
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

/* Overlay on hover */
.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.portfolio-item:hover::after {
  opacity: 1;
}

/* ============================================
   TESTIMONIALS — Luxury Cards
   ============================================ */

.testimonials-section { background: var(--ivory); }

.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  transition: all var(--duration-slow) var(--ease-out);
  overflow: hidden;
}

/* Subtle gradient overlay */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--champagne), var(--rose), var(--champagne));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-6px);
  border-color: var(--champagne-medium);
}

.testimonial-card:hover::before {
  opacity: 1;
  animation: shimmer 3s linear infinite;
}

.quote-icon {
  font-size: 64px;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-display);
  opacity: 0.4;
  font-weight: 300;
}

.stars {
  color: var(--champagne);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.author-role {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.testimonial-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--champagne);
  background: var(--champagne-light);
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--champagne-medium);
}

/* ============================================
   CTA — Dramatic Midnight
   ============================================ */

.cta-section {
  background: var(--midnight);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.cta-title em {
  font-style: italic;
  color: var(--champagne-bright);
}

.cta-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.9;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT — Refined Form Design
   ============================================ */

.contact-section { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 0; }

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  border: 1.5px solid var(--warm-gray);
  border-radius: 6px;
  background: var(--ivory);
  color: var(--text-primary);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
  font-weight: 300;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: #fff;
  box-shadow: 0 0 0 4px var(--champagne-light);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* Sidebar */
.contact-sidebar { padding-left: 0; }

.sidebar-card {
  background: var(--ivory);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 44px 36px;
  position: sticky;
  top: 120px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sidebar-feature span {
  color: var(--champagne);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 2px;
}

.sidebar-phone {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--champagne-medium);
}

.sidebar-phone p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.sidebar-phone a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--rose);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.sidebar-phone a:hover {
  color: var(--rose-hover);
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 64px 40px;
  background: var(--champagne-light);
  border-radius: 12px;
  border: 1px solid var(--champagne-medium);
  display: none;
}

.form-success.visible { display: block; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   CONTACT INFO — Premium Cards
   ============================================ */

.contact-info-section {
  background: var(--ivory);
  padding: 80px 0;
  position: relative;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--rose), var(--champagne));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.info-card:hover {
  box-shadow: var(--shadow-champagne);
  transform: translateY(-6px);
  border-color: var(--champagne-medium);
}

.info-card:hover::before {
  opacity: 1;
  animation: shimmer 3s linear infinite;
}

.info-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--champagne);
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.info-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.info-sub {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* ============================================
   FOOTER — Midnight Elegance
   ============================================ */

.site-footer {
  background: var(--midnight);
  color: var(--warm-white);
  padding: 0 0 24px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--champagne-medium);
}

.footer-brand {
  text-align: center;
  margin-bottom: 8px;
  padding: 4px 0 0 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo img {
  height: 260px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}

.footer-link {
  display: block;
  font-size: 15px;
  color: var(--text-light);
  padding: 10px 0;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width var(--duration-normal) var(--ease-out);
}

.footer-link:hover {
  color: var(--champagne);
  padding-left: 4px;
}

.footer-link:hover::before {
  width: 20px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--champagne-medium);
  border-radius: 6px;
  background: rgba(201, 169, 110, 0.05);
  color: var(--warm-white);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.newsletter-form input::placeholder { color: var(--text-light); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--champagne);
  background: rgba(201, 169, 110, 0.1);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--champagne);
  color: var(--midnight);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out);
  font-weight: 700;
}

.newsletter-form button:hover {
  background: var(--champagne-bright);
  transform: translateX(2px);
}

/* Social Links */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--champagne-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--champagne);
  transition: all var(--duration-normal) var(--ease-out);
  letter-spacing: 0.05em;
}

.social-link:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--midnight);
  transform: translateY(-3px);
  box-shadow: var(--shadow-champagne);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ---- Footer Scrolling Marquee ---- */
.footer-marquee {
  position: relative;
  background: var(--midnight);
  border-bottom: 1px solid var(--champagne-medium);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: footerMarquee 20s linear infinite;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  white-space: nowrap;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--champagne);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.revealed {
  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; }

/* Fade from sides */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale reveal for images */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Hero entrance */
.hero-entrance {
  opacity: 0;
  transform: translateY(40px);
  animation: heroEnter 1.2s var(--ease-out) forwards;
}

.hero-entrance-delay-1 { animation-delay: 0.2s; }
.hero-entrance-delay-2 { animation-delay: 0.4s; }
.hero-entrance-delay-3 { animation-delay: 0.6s; }
.hero-entrance-delay-4 { animation-delay: 0.8s; }
.hero-entrance-delay-5 { animation-delay: 1s; }

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   GOLD SHIMMER LINE
   ============================================ */

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), var(--champagne-bright), var(--champagne));
  background-size: 200% 100%;
  margin: 24px auto;
  animation: shimmer 3s linear infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .stat-item { padding: 24px; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 100px 0; }

  .about-image img { height: 450px; }

  .portfolio-item { width: 300px; height: 210px; }
}

@media (max-width: 768px) {
  .header-nav,
  .header-cta { display: none; }

  .menu-toggle {
    display: block;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .header-inner {
    height: 72px;
    justify-content: center;
    position: relative;
  }

  .mobile-menu { top: 72px; }

  .header-logo {
    position: static;
    margin: 0 auto;
  }

  .header-logo img { height: 66px; }

  .hero { min-height: 100vh; }

  .hero-content {
    padding: 130px 24px 60px;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-stats {
    gap: 32px;
  }

  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

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

  .about-grid { gap: 48px; }

  .about-image img { height: 350px; }

  .float-card {
    right: 12px;
    bottom: -16px;
    left: auto;
    padding: 20px 28px;
    min-width: auto;
  }

  .float-card::before { display: none; }

  .float-num { font-size: 32px; }

  .features-grid { gap: 12px; }

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

  .section { padding: 80px 0; }

  .section-header { margin-bottom: 56px; }

  .portfolio-item { width: 260px; height: 180px; }

  .portfolio-section { overflow-x: hidden; }

  .site-footer { overflow-x: hidden; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
  }

  .footer-marquee {
    padding: 10px 0;
  }

  .marquee-item {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 0 16px;
    gap: 16px;
  }

  .marquee-dot {
    width: 4px;
    height: 4px;
  }

  .marquee-track {
    animation: footerMarquee 12s linear infinite;
  }

  .footer-brand {
    margin-bottom: 16px;
    padding: 4px 0 0 0;
  }

  .footer-logo img {
    height: 140px;
  }

  .footer-socials {
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .process-line { left: 24px; }

  .process-step { gap: 24px; }

  .process-node {
    width: 52px;
    height: 52px;
    font-size: 20px;
    box-shadow: 0 0 0 6px var(--champagne-light);
  }

  .process-content { padding-top: 2px; }

  .service-card { padding: 36px 28px; }

  .testimonial-card { padding: 32px 24px; }

  .sidebar-card {
    position: static;
    padding: 28px 20px;
    border-radius: 8px;
  }

  .sidebar-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  .sidebar-feature {
    font-size: 14px;
    margin-bottom: 14px;
    gap: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  .sidebar-feature span {
    font-size: 16px;
    flex-shrink: 0;
  }

  .sidebar-phone {
    margin-top: 20px;
    padding-top: 20px;
  }

  .sidebar-phone a {
    font-size: 22px;
  }

  .contact-grid { gap: 32px; }

  .scroll-indicator { display: none; }

  /* Swipeable Testimonials on Mobile */
  .testimonials-section .grid-3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 0 16px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-section .grid-3::-webkit-scrollbar {
    display: none;
  }

  .testimonials-section .testimonial-card {
    flex: 0 0 85%;
    min-width: 260px;
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }

  .hero-ctas { flex-direction: column; }

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

  .container { padding: 0 16px; }

  .sidebar-card { padding: 20px 14px; }

  .sidebar-feature {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .sidebar-title { font-size: 20px; }

  .sidebar-phone a { font-size: 20px; }

  .testimonials-section .testimonial-card {
    flex: 0 0 90%;
    padding: 28px 20px;
  }

  .footer-logo img { height: 110px; }

  .header-inner { height: 66px; }
  .mobile-menu { top: 66px; }
  .header-logo img { height: 58px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-col-title {
    margin-bottom: 12px;
  }

  .footer-link {
    padding: 6px 0;
  }

  .newsletter-form {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-socials {
    margin-bottom: 12px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
