/* ============================================
   ETIQUETA BLANCA — Design System
   Tu Closet a Medida · by Cecilia Seminario
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --eb-cream: #F5F0EB;
  --eb-cream-dark: #EDE5DC;
  --eb-blush: #E8C4C4;
  --eb-blush-light: #F2DADA;
  --eb-burgundy: #825b47;
  --eb-burgundy-light: #9A725D;
  --eb-charcoal: #2C2C2C;
  --eb-charcoal-light: #4A4A4A;
  --eb-sage: #8B9A7B;
  --eb-sage-light: #A8B59A;
  --eb-white: #FFFFFF;
  --eb-offwhite: #FAFAF8;
  --eb-gold: #C9A96E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --shadow-sm: 0 1px 3px rgba(44,44,44,0.06);
  --shadow-md: 0 4px 16px rgba(44,44,44,0.08);
  --shadow-lg: 0 12px 40px rgba(44,44,44,0.12);
  --shadow-xl: 0 24px 60px rgba(44,44,44,0.16);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--eb-charcoal);
  background: var(--eb-offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.text-accent { color: var(--eb-burgundy); }
.text-script { font-family: var(--font-display); font-style: italic; }

/* --- Preloader --- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--eb-cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  width: 120px; height: 120px;
  animation: pulse-soft 1.5s ease-in-out infinite;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* --- Navigation Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s var(--ease-out-expo);
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
body.nav-open {
  overflow: hidden;
}

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease-out-expo);
}
.navbar.scrolled {
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 3rem;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-logo img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  transition: transform 0.3s var(--ease-out-expo);
}
.navbar.scrolled .nav-logo img { width: 40px; height: 40px; }
.nav-logo-text-wrapper {
  display: flex;
  flex-direction: column;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--eb-charcoal);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo-subtext {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--eb-charcoal-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eb-charcoal);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--eb-burgundy);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--eb-burgundy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--eb-burgundy);
  color: var(--eb-white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out-expo);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--eb-burgundy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block; height: 2px; width: 24px;
  background: var(--eb-charcoal);
  transition: all 0.3s var(--ease-out-expo);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--eb-cream);
}
.hero-bg {
  position: absolute; inset: 0;
  display: flex; justify-content: center; align-items: center;
}
.hero-videos-container {
  display: flex;
  width: 55%; /* Ocupar la mitad derecha */
  height: 85%; /* Dejar un poco de aire arriba y abajo */
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto; /* Empujar a la derecha */
  padding-right: 4rem; /* Espacio desde el borde derecho */
}
.hero-videos-container video {
  flex: 1;
  height: 100%;
  object-fit: cover; /* Al estar en cajas verticales, cover ya no recorta casi nada */
  object-position: center center;
  border-radius: var(--radius-xl); /* Bordes redondeados elegantes */
  box-shadow: var(--shadow-xl);
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245,240,235,0.85) 0%,
    rgba(245,240,235,0.55) 40%,
    rgba(245,240,235,0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 8rem 3rem 4rem 6rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(130,91,71,0.08);
  border: 1px solid rgba(130,91,71,0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eb-burgundy);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--eb-burgundy); border-radius: 50%;
}
.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--eb-charcoal);
}
.hero h1 em {
  font-style: italic; color: var(--eb-burgundy);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--eb-charcoal-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--eb-burgundy);
  color: var(--eb-white);
  box-shadow: 0 4px 20px rgba(130,91,71,0.3);
}
.btn-primary:hover {
  background: var(--eb-burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(130,91,71,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--eb-charcoal);
  border: 1.5px solid var(--eb-charcoal);
}
.btn-outline:hover {
  background: var(--eb-charcoal);
  color: var(--eb-white);
  transform: translateY(-2px);
}
.btn-icon { font-size: 1.1rem; }
.btn-whatsapp {
  background: #25D366;
  color: var(--eb-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* --- Section Base --- */
.section {
  padding: 6rem 3rem;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eb-burgundy);
  margin-bottom: 1rem;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '—'; margin: 0 0.75rem;
  color: var(--eb-blush);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  color: var(--eb-charcoal-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Value Propositions --- */
.values {
  background: var(--eb-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--eb-offwhite);
}
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--eb-cream), var(--eb-blush-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.4s var(--ease-out-expo);
}
.value-card:hover .value-icon { transform: scale(1.08) rotate(-3deg); }
.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.value-card p {
  color: var(--eb-charcoal-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- Collection Gallery --- */
.collection {
  background: var(--eb-cream);
}
.collection-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.collection-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.collection-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
.collection-item {
  flex: 0 0 calc(33.333% - 1rem); /* 3 items visible on desktop */
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 3/4;
}
.collection-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.collection-item:hover img { transform: scale(1.06); }
.collection-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.collection-item:hover .collection-item-overlay { opacity: 1; }
.collection-item-info h4 {
  color: var(--eb-white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.collection-item-info span {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 300;
}

/* Nav buttons for collection slider */
.collection-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eb-white);
  color: var(--eb-charcoal);
  border: 1px solid rgba(44, 44, 44, 0.1);
  box-shadow: var(--shadow-md);
  font-size: 1.8rem;
  z-index: 10;
  transition: all 0.3s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-nav:hover {
  background: var(--eb-burgundy);
  color: var(--eb-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.05);
}
.collection-prev {
  left: -10px;
}
.collection-next {
  right: -10px;
}

/* --- Process Section --- */
.process {
  background: var(--eb-white);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--eb-blush), var(--eb-burgundy), var(--eb-blush));
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-number {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--eb-white);
  border: 2px solid var(--eb-burgundy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eb-burgundy);
  transition: all 0.4s var(--ease-out-expo);
}
.process-step:hover .process-number {
  background: var(--eb-burgundy);
  color: var(--eb-white);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(130,91,71,0.25);
}
.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--eb-charcoal-light);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--eb-cream);
  overflow: hidden;
}
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slide {
  text-align: center;
  padding: 2.5rem;
  display: none;
}
.testimonial-slide.active { display: block; animation: fadeIn 0.5s var(--ease-out-expo); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--eb-charcoal);
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--eb-blush);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}
.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--eb-burgundy);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--eb-charcoal-light);
  margin-top: 0.25rem;
}
.testimonial-dots {
  display: flex; gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.testimonial-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--eb-blush);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  border: 16px solid transparent;
  background-clip: padding-box;
  box-sizing: content-box;
}
.testimonial-dot.active {
  background: var(--eb-burgundy);
  transform: scale(1.2);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--eb-burgundy) 0%, #5D4032 100%);
  color: var(--eb-white);
  text-align: center;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="60" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="80" r="0.8" fill="rgba(255,255,255,0.04)"/></svg>');
  background-size: 200px;
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-section h2 { color: var(--eb-white); margin-bottom: 1rem; }
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-section .btn-whatsapp {
  font-size: 1rem;
  padding: 1.15rem 2.5rem;
}

/* --- Footer --- */
.footer {
  background: var(--eb-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 3rem 2rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-brand .nav-logo-text { color: var(--eb-white); }
.footer h4 {
  color: var(--eb-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--eb-blush); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.35s var(--ease-out-expo);
  animation: float-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Lightbox Modal --- */
.lightbox {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(0, 0, 0, 0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}
.lightbox.active {
  opacity: 1; visibility: visible;
}
.lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out-expo);
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  color: #fff; font-size: 3rem; cursor: pointer;
  line-height: 1; transition: transform 0.3s;
}
.lightbox-close:hover {
  transform: scale(1.1);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content { padding: 7rem 2rem 3rem 3rem; }
  .collection-item {
    flex: 0 0 calc(50% - 0.75rem); /* Show 2 items on tablets */
  }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.6rem 1.5rem; }
  
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--eb-cream);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.95rem;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links .nav-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
  }
  
  .nav-toggle { display: flex; }

  .hero {
    align-items: center;
    text-align: center;
  }
  .hero-content {
    padding: 7rem 1.5rem 4rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-videos-container { 
    width: 100%; 
    height: 100%; 
    padding: 0; 
    margin: 0; 
    position: absolute; 
    opacity: 0.25;
    display: block;
  }
  #heroVideo1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  #heroVideo2 {
    display: none;
  }
  .hero-videos-container video { border-radius: 0; }
  
  .section { padding: 4rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .collection-wrapper {
    padding: 0;
  }
  .collection-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  .collection-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .collection-nav {
    display: none;
  }
  .collection-item-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(44,44,44,0.75) 0%, rgba(44,44,44,0.15) 60%, transparent 100%);
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
  }
  .process-timeline::before {
    display: none;
  }

  .footer { text-align: center; }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    margin: 1rem auto 0;
  }
  .footer-brand .nav-logo {
    justify-content: center;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  /* No special grid styles needed for slider on small mobile */
}
