/* ===== Variables ===== */
:root {
  --navy: #0d1b4a;
  --navy-dark: #081130;
  --maroon: #6b1414;
  --maroon-dark: #4d0e0e;
  --gold: #c8962e;
  --gold-light: #e0b355;
  --ink: #1c1f2a;
  --gray-600: #5a5f6d;
  --gray-200: #e7e8ec;
  --gray-100: #f5f6f8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 27, 74, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 17, 48, 0.18);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.18; margin: 0 0 0.5em; color: var(--navy); letter-spacing: -0.01em; }
p { margin: 0 0 1em; text-align: justify; }
.section-head p, .hero p.lead, .cta-band p, .quote-band blockquote { text-align: center; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(200, 150, 46, 0.1);
  border: 1px solid rgba(200, 150, 46, 0.25);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.8em;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease, color 0.2s ease;
}
.btn::after {
  content: "\2192";
  transition: transform 0.25s var(--ease);
  display: inline-block;
}
.btn:hover::after { transform: translateX(4px); }
.btn-accent {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 10px 24px rgba(200, 150, 46, 0.35);
}
.btn-accent:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200, 150, 46, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(13, 27, 74, 0.25);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(13, 27, 74, 0.08);
  border-color: var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
}
.logo img { height: 52px; width: auto; transition: height 0.25s ease; }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 8px 2px;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--maroon); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
  animation: heroZoomIn 1.6s ease-out both;
}
@keyframes heroZoomIn {
  from { background-size: 112% auto; }
  to { background-size: 100% auto; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 15% 100%, rgba(200,150,46,0.28) 0%, rgba(200,150,46,0) 60%),
    linear-gradient(0deg, rgba(6,13,38,0.92) 8%, rgba(8,17,48,0.62) 50%, rgba(8,17,48,0.3) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 64px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 42%, 100% 100%, 0 100%);
}
.hero-inner {
  position: relative;
  padding-top: 64px;
  padding-bottom: 96px;
  max-width: 720px;
}
.hero-inner .eyebrow { color: var(--gold-light); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.hero-inner .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  animation: fadeUp 0.9s var(--ease) both 0.05s;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  animation: fadeUp 0.9s var(--ease) both 0.2s;
}
.hero .btn { animation: fadeUp 0.9s var(--ease) both 0.35s; }
.hero .eyebrow { animation: fadeUp 0.9s var(--ease) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-sm { min-height: 400px; }
.hero-sm .hero-inner { padding-top: 48px; padding-bottom: 80px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 8px; }
}

/* ===== Floating stat card (home hero) ===== */
.hero-float-card {
  position: absolute;
  right: 24px;
  bottom: 96px;
  z-index: 2;
  display: flex;
  gap: 24px;
  background: rgba(13, 27, 74, 0.85);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 22px 30px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.9s var(--ease) both 0.5s;
}
.hero-float-card div { text-align: center; }
.hero-float-card .num { font-family: var(--font-heading); font-size: 1.9rem; color: var(--gold-light); font-weight: 700; line-height: 1; }
.hero-float-card .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
.hero-float-card .sep { width: 1px; background: rgba(255,255,255,0.2); }

/* ===== Sections ===== */
section { padding: 100px 0; }
.section-alt { background: var(--gray-100); }
.section-head { position: relative; z-index: 0; max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  width: 460px;
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200,150,46,0.12) 0%, rgba(200,150,46,0) 70%);
  z-index: -1;
  pointer-events: none;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.section-head p { color: var(--gray-600); font-size: 1.05rem; }

/* Cortes diagonales reutilizables entre secciones: el color debe ser el de
   la sección VECINA hacia la que se funde el corte (no el propio). */
.angle-bottom { position: relative; }
.angle-bottom::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 64px;
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 60%);
}
.angle-bottom.to-white::after { background: var(--white); }
.angle-bottom.to-gray::after { background: var(--gray-100); }
.angle-bottom.to-navy::after { background: var(--navy); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
}
.two-col img:hover { transform: scale(1.015) translateY(-2px); }

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.checklist li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  background: rgba(200,150,46,0.12);
  border-radius: 50%;
  padding: 3px;
  width: 22px; height: 22px;
  box-sizing: border-box;
}

/* ===== Stats ===== */
.stats-band {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 75%);
}
.stats-band .container { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-grid > div { position: relative; }
.stats-grid > div:first-child::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(200,150,46,0.15);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--gold-light);
  font-weight: 700;
}
.stat-label { color: rgba(255,255,255,0.8); font-weight: 600; letter-spacing: 0.02em; }

/* ===== Feature cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(200,150,46,0.35); }
.card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(200,150,46,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.card:hover .card-icon { background: var(--gold); color: var(--white); transform: scale(1.08) rotate(-4deg); }
.card h3 { font-size: 1.18rem; }
.card p { color: var(--gray-600); margin-bottom: 0; font-size: 0.95rem; }

.card-dark {
  background: var(--navy);
  border-color: var(--navy);
}
.card-dark h3, .card-dark p { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.75); }
.card-dark .card-icon { background: rgba(200,150,46,0.2); color: var(--gold-light); }
.card-dark:hover { border-color: var(--gold); }
.card-dark:hover .card-icon { background: var(--gold); color: var(--navy-dark); }

/* ===== Video embed (a pantalla completa, como el hero) ===== */
.media-section { padding: 64px 0; background: var(--white); }
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 42%;
  overflow: hidden;
  background: var(--navy-dark);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed {
  width: 100%;
  height: 520px;
  margin-top: 56px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) {
  .video-embed { padding-top: 66%; }
  .map-embed { height: 360px; margin-top: 40px; }
}

/* ===== Warehouse listing cards ===== */
.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.warehouse-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wh-card {
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.wh-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8,17,48,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.wh-card img { height: 240px; object-fit: cover; width: 100%; transition: transform 0.6s var(--ease); }
.wh-card:hover img { transform: scale(1.08); }
.wh-card .wh-body { padding: 26px; }
.wh-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.wh-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 0; }
.wh-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.wh-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--maroon);
}
.wh-link::after { content: "\2192"; transition: transform 0.25s var(--ease); }
.wh-card:hover .wh-link::after { transform: translateX(4px); }

/* ===== Press ===== */
.press-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.press-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s ease;
}
.press-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(200,150,46,0.35); }
.press-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.press-outlet {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.press-date { font-size: 0.85rem; color: var(--gray-600); }
.press-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.press-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 14px; }
.press-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--maroon);
}
.press-read::after { content: "\2192"; transition: transform 0.25s var(--ease); }
.press-card:hover .press-read::after { transform: translateX(4px); }

/* ===== Quote band ===== */
.quote-band {
  position: relative;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(200,150,46,0.16) 0%, rgba(200,150,46,0) 70%);
}
.quote-band .container { position: relative; max-width: 820px; }
.quote-mark { color: var(--gold); opacity: 0.9; margin-bottom: 8px; }
.quote-band blockquote {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.45;
  color: var(--white);
}
.quote-author strong { display: block; font-size: 1rem; color: var(--gold-light); }
.quote-author span { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 65% at 85% 15%, rgba(200,150,46,0.35) 0%, rgba(200,150,46,0) 60%),
    radial-gradient(40% 60% at 10% 100%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }

/* ===== Forms ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field label .req { color: var(--maroon); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,150,46,0.15);
}
.form-note { font-size: 0.85rem; color: var(--gray-600); margin-top: -8px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-weight: 600;
}
.form-alert.success { background: #e5f5ea; color: #1e7a3c; }
.form-alert.error { background: #fbe9e9; color: var(--maroon); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); position: relative; }
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--navy));
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 40px;
}
.footer-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 220px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0) 65%);
  z-index: 0;
  pointer-events: none;
}
.footer-logo { position: relative; z-index: 1; height: 44px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col > a, .footer-col > span { display: block; margin-bottom: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-col > a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; font-size: 0.82rem; text-align: center; color: rgba(255,255,255,0.5); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .section-head::before { width: 280px; height: 280px; top: -40px; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    gap: 4px;
    animation: fadeUp 0.25s var(--ease) both;
  }
  .main-nav a::after { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid > div:first-child::after { display: none; }
  .cards-grid, .cards-grid.cols-2, .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .warehouse-grid, .warehouse-grid.cols-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; padding-bottom: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { min-height: 560px; animation: none; background-size: cover; flex-direction: column; align-items: stretch; }
  .hero-float-card {
    position: static;
    margin: 20px 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 20px;
  }
  .hero-float-card .sep { display: none; }
  .scroll-cue { display: none; }
}
