/* ============================================================
   NMCA ConsorcioMX — Stylesheet
   ============================================================ */

:root {
  --navy-900: #050f22;
  --navy-800: #08182f;
  --navy-700: #0a1d3a;
  --navy-600: #112646;
  --navy-500: #1b3358;
  --gold-400: #d4b87c;
  --gold-500: #c9a96e;
  --gold-600: #b08f53;
  --gold-700: #8a6d3a;
  --ivory: #f5f1e8;
  --cream: #ebe5d6;
  --mute: #9a9588;
  --line: rgba(201,169,110,0.18);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --display: 'Cinzel', 'Cormorant Garamond', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy-900);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

::selection { background: var(--gold-500); color: var(--navy-900); }

/* ─────────── Preloader ─────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-500);
  letter-spacing: 0.4em;
  position: relative;
  padding-bottom: 1rem;
}
.preloader-mark::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px; background: var(--gold-500);
  animation: loadLine 1.4s ease-in-out forwards;
}
@keyframes loadLine { to { width: 100%; left: 0; } }

/* ─────────── Navigation ─────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: linear-gradient(180deg, rgba(5,15,34,0.85) 0%, rgba(5,15,34,0) 100%);
}
.nav.scrolled {
  background: rgba(5,15,34,0.95);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold-500);
  letter-spacing: 0.3em;
  text-decoration: none;
  font-weight: 500;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span:last-child {
  font-size: 0.65rem; color: var(--cream); letter-spacing: 0.5em;
  margin-top: 0.3rem; opacity: 0.7; font-weight: 300;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold-500);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-400); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line); padding: 0.4rem 0.7rem;
  border-radius: 2px; cursor: pointer; background: transparent;
  transition: border-color 0.3s ease;
}
.lang-toggle:hover { border-color: var(--gold-500); }
.lang-toggle span {
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--mute); font-weight: 500;
  padding: 0.1rem 0.3rem; transition: color 0.3s ease;
}
.lang-toggle span.active { color: var(--gold-400); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 1px; background: var(--gold-500);
  margin: 6px 0; transition: all 0.3s ease;
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,169,110,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(27,51,88,0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow 8s ease-in-out infinite alternate;
}
.hero-glow.one { top: -200px; right: -100px; }
.hero-glow.two { bottom: -200px; left: -100px; animation-delay: -4s; }
@keyframes glow {
  0% { transform: translate(0,0) scale(1); opacity: 0.7; }
  100% { transform: translate(40px,-40px) scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 0 3rem; width: 100%;
}
.hero-eyebrow {
  font-family: var(--sans);
  color: var(--gold-500);
  font-size: 0.8rem; letter-spacing: 0.5em;
  text-transform: uppercase; font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s 0.3s ease forwards;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--gold-500); display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.2s 0.5s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 580px;
  color: var(--cream);
  margin-bottom: 3rem;
  line-height: 1.7; font-weight: 300;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.2s 0.7s ease forwards;
}
.hero-cta {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.2s 0.9s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1.1rem 2.4rem;
  font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  border: 1px solid var(--gold-500);
  background: var(--gold-500); color: var(--navy-900);
  cursor: pointer; transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-400);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn span { position: relative; z-index: 1; }
.btn:hover::before { transform: translateX(0); }
.btn-outline {
  background: transparent; color: var(--gold-500);
}
.btn-outline::before { background: var(--gold-500); }
.btn-outline:hover span { color: var(--navy-900); }

.scroll-indicator {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: var(--mute); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1.5s 1.5s ease forwards;
}
.scroll-indicator::after {
  content: ''; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  50% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
}

/* ─────────── Sections ─────────── */
section { padding: 8rem 3rem; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }

.section-label {
  font-family: var(--sans);
  color: var(--gold-500);
  font-size: 0.75rem; letter-spacing: 0.4em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold-500);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--ivory); margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--gold-500); font-style: italic; font-weight: 400; }
.section-intro {
  max-width: 720px; font-size: 1.05rem;
  color: var(--cream); line-height: 1.8; font-weight: 300;
}

/* ─────────── Heritage ─────────── */
.heritage {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-top: 1px solid var(--line);
}
.heritage-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem;
  align-items: center; margin-top: 4rem;
}
.heritage-text p {
  color: var(--cream); margin-bottom: 1.5rem;
  font-size: 1.02rem; line-height: 1.85; font-weight: 300;
}
.heritage-text p strong {
  color: var(--gold-400); font-weight: 500;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat {
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(27,51,88,0.3) 0%, rgba(8,24,47,0.3) 100%);
  text-align: center;
  transition: all 0.5s ease;
  position: relative; overflow: hidden;
}
.stat::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 1px; background: var(--gold-500);
  transition: width 0.6s ease;
}
.stat:hover { border-color: var(--gold-700); transform: translateY(-4px); }
.stat:hover::before { width: 100%; }
.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold-500); font-weight: 400;
  line-height: 1; margin-bottom: 0.8rem;
}
.stat-label {
  font-size: 0.72rem; color: var(--cream);
  letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 400;
}

/* ─────────── Brands ─────────── */
.brands {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 50%),
    var(--navy-800);
  border-top: 1px solid var(--line);
}
.brands-header { text-align: center; max-width: 800px; margin: 0 auto 5rem; }
.brands-header .section-label { justify-content: center; }
.brands-header .section-label::before { display: none; }
.brands-header .section-label::after {
  content: ''; width: 30px; height: 1px; background: var(--gold-500);
}
.brands-header .section-intro { margin: 0 auto; }

.brands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.brand-card {
  background: var(--navy-800); padding: 4rem 2.5rem;
  transition: all 0.5s ease; cursor: pointer;
  position: relative; overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.brand-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,169,110,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s ease;
}
.brand-card:hover { background: var(--navy-700); }
.brand-card:hover::before { opacity: 1; }
.brand-mark {
  font-family: var(--display);
  font-size: 1.4rem; color: var(--gold-500);
  letter-spacing: 0.15em; font-weight: 500;
  line-height: 1.2; margin-bottom: 0.5rem;
}
.brand-origin {
  font-size: 0.7rem; color: var(--mute);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 2rem; font-weight: 400;
}
.brand-desc {
  color: var(--cream); font-size: 0.95rem;
  line-height: 1.75; font-weight: 300;
  flex: 1;
}
.brand-meta {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.7rem; color: var(--gold-500);
  letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.brand-arrow {
  width: 30px; height: 1px; background: var(--gold-500);
  position: relative; transition: width 0.4s ease;
}
.brand-arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--gold-500);
  border-right: 1px solid var(--gold-500);
  transform: rotate(45deg);
}
.brand-card:hover .brand-arrow { width: 50px; }

/* ─────────── Channels ─────────── */
.channels {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
}
.channels-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  margin-top: 4rem;
  border: 1px solid var(--line);
}
.channel {
  background: var(--navy-800); padding: 4rem 3rem;
  position: relative; overflow: hidden;
}
.channel-icon {
  width: 60px; height: 60px;
  border: 1px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500); margin-bottom: 2rem;
  transition: all 0.4s ease;
}
.channel:hover .channel-icon {
  background: var(--gold-500); color: var(--navy-900);
}
.channel h3 {
  font-family: var(--serif);
  font-size: 2rem; color: var(--ivory);
  font-weight: 400; margin-bottom: 1rem;
}
.channel > p {
  color: var(--cream); margin-bottom: 2rem;
  font-weight: 300; line-height: 1.7;
}
.partners-list {
  list-style: none; display: flex; flex-direction: column; gap: 1rem;
}
.partners-list li {
  display: flex; align-items: center; gap: 1rem;
  color: var(--cream); font-size: 0.95rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}
.partners-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold-500); flex-shrink: 0;
}
.partners-list li:last-child { border-bottom: none; }

/* ─────────── Logistics ─────────── */
.logistics {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-top: 1px solid var(--line);
}
.logistics-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: center; margin-top: 4rem;
}
.logistics-text p {
  color: var(--cream); font-weight: 300;
  margin-bottom: 1.5rem; line-height: 1.8;
}
.logistics-features {
  list-style: none; margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.logistics-features li {
  display: flex; gap: 1rem; align-items: flex-start;
  color: var(--cream); font-size: 0.95rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}
.logistics-features li:last-child { border-bottom: none; }
.feature-num {
  font-family: var(--serif);
  color: var(--gold-500); font-size: 1.4rem;
  line-height: 1; flex-shrink: 0; min-width: 40px;
  border-right: 1px solid var(--line); padding-right: 1rem;
}
.feature-text strong {
  color: var(--ivory); font-weight: 500;
  display: block; margin-bottom: 0.3rem;
  font-size: 1rem;
}

.map-card {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid var(--line);
  padding: 3rem; position: relative;
  aspect-ratio: 4/5; min-height: 450px;
  overflow: hidden;
}
.map-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gold-500); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,169,110,0.2), 0 0 0 8px rgba(201,169,110,0.1);
  animation: pulse 2.5s ease-in-out infinite;
}
.map-pin.warehouse { top: 38%; left: 52%; }
.map-pin.cdmx { top: 42%; left: 50%; animation-delay: -1s; width: 10px; height: 10px; }
.map-pin.gdl { top: 40%; left: 35%; animation-delay: -1.5s; width: 8px; height: 8px; }
.map-pin.mty { top: 22%; left: 48%; animation-delay: -2s; width: 8px; height: 8px; }
.map-pin.cancun { top: 38%; left: 78%; animation-delay: -2.5s; width: 8px; height: 8px; }
.map-pin.cabo { top: 35%; left: 18%; animation-delay: -3s; width: 8px; height: 8px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,169,110,0.2), 0 0 0 8px rgba(201,169,110,0.1); }
  50% { box-shadow: 0 0 0 8px rgba(201,169,110,0.3), 0 0 0 16px rgba(201,169,110,0.05); }
}
.map-label {
  position: absolute; bottom: 2rem; left: 3rem; right: 3rem;
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--ivory); font-style: italic;
  z-index: 2;
}
.map-label small {
  display: block; font-family: var(--sans);
  font-size: 0.7rem; color: var(--gold-500);
  letter-spacing: 0.3em; text-transform: uppercase;
  font-style: normal; margin-bottom: 0.5rem;
  font-weight: 500;
}

/* ─────────── Parent ─────────── */
.parent {
  background: var(--navy-800);
  border-top: 1px solid var(--line);
  text-align: center;
}
.parent .container { max-width: 880px; }
.parent-mark {
  font-family: var(--display);
  color: var(--gold-500);
  font-size: 0.85rem; letter-spacing: 0.5em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.parent-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ivory); font-style: italic;
  line-height: 1.4; margin-bottom: 3rem;
  font-weight: 300;
}
.parent-quote::before, .parent-quote::after {
  content: '"'; color: var(--gold-500);
  font-size: 1.5em; line-height: 0;
  vertical-align: -0.2em;
}
.parent-link {
  display: inline-flex; align-items: center; gap: 1rem;
  color: var(--gold-500); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.parent-link:hover {
  color: var(--gold-400); border-bottom-color: var(--gold-500);
}

/* ─────────── Contact ─────────── */
.contact {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(201,169,110,0.08) 0%, transparent 50%),
    var(--navy-900);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; margin-top: 4rem;
}
.contact-info { padding-right: 2rem; }
.info-block { margin-bottom: 3rem; }
.info-label {
  font-size: 0.7rem; color: var(--gold-500);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 0.8rem; font-weight: 500;
}
.info-value {
  color: var(--ivory); font-size: 1.05rem;
  font-weight: 300; line-height: 1.6;
}
.info-value a { color: var(--ivory); text-decoration: none; transition: color 0.3s ease; }
.info-value a:hover { color: var(--gold-400); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  position: absolute; left: 0; top: 1rem;
  color: var(--mute); font-size: 0.85rem;
  letter-spacing: 0.05em;
  pointer-events: none; transition: all 0.3s ease;
  font-weight: 300;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  color: var(--ivory); font-family: var(--sans);
  font-size: 0.95rem; padding: 1rem 0;
  outline: none; transition: border-color 0.3s ease;
  font-weight: 300;
}
.form-group select option { background: var(--navy-800); color: var(--ivory); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--gold-500); }
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select.has-value + label {
  top: -0.7rem; font-size: 0.7rem;
  color: var(--gold-500); letter-spacing: 0.2em;
  text-transform: uppercase;
}
.form-submit { grid-column: 1 / -1; margin-top: 1rem; }

.form-success {
  grid-column: 1 / -1;
  padding: 2rem; border: 1px solid var(--gold-500);
  background: rgba(201,169,110,0.08);
  text-align: center; color: var(--gold-400);
  font-family: var(--serif); font-size: 1.3rem; font-style: italic;
  display: none;
}
.form-success.visible { display: block; animation: fadeUp 0.6s ease forwards; }

/* ─────────── Footer ─────────── */
footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1400px; margin: 0 auto 3rem;
}
.footer-brand .nav-logo { font-size: 1.3rem; }
.footer-brand p {
  color: var(--mute); font-size: 0.88rem;
  margin-top: 1.5rem; line-height: 1.7; font-weight: 300;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.7rem; color: var(--gold-500);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1.5rem; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
  color: var(--cream); text-decoration: none;
  font-size: 0.88rem; transition: color 0.3s ease;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--mute); font-size: 0.78rem; font-weight: 300; }

/* ─────────── Reveal Animations ─────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ─────────── Responsive ─────────── */
@media (max-width: 1024px) {
  .nav { padding: 1.2rem 2rem; }
  .nav.scrolled { padding: 0.8rem 2rem; }
  section { padding: 6rem 2rem; }
  .heritage-grid, .logistics-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links {
    position: fixed; inset: 0; top: 0;
    background: var(--navy-900);
    flex-direction: column; justify-content: center;
    gap: 2.5rem; transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: block; z-index: 1001; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  section { padding: 5rem 1.5rem; }
  .brands-grid, .channels-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-content { padding: 0 1.5rem; }
  .heritage-text p { font-size: 0.95rem; }
}
