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

:root {
  --bg: #0A0A0A;
  --surface: #121212;
  --text: #F5F0EB;
  --text-muted: rgba(245, 240, 235, 0.6);
  --corinto: #6B1D2F;
  --corinto-light: #8B3D4F;
  --corinto-dark: #4A1020;
  --bear: #4A3C31;
  --bear-light: #6B5A4C;
  --cream: #F5F0EB;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --font-sans: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── 3D Canvas Background ── */
#three-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ── Loader ── */

.loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-ring {
  width: 48px; height: 48px;
  border: 2px solid rgba(107, 29, 47, 0.15);
  border-top-color: var(--corinto);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
  mix-blend-mode: difference;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  padding: 16px 48px;
  mix-blend-mode: normal;
}
.nav-logo {
  display: inline-block;
  text-decoration: none;
  perspective: 1000px;
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  transform: translateZ(0);
  transform-style: preserve-3d;
  animation: logoFloat3D 6s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 2px 8px rgba(107, 29, 47, 0.5)) drop-shadow(0 0 20px rgba(107, 29, 47, 0.2)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  -webkit-user-drag: none;
}
.nav-logo:hover img {
  animation-play-state: paused;
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) translateZ(8px) scale(1.08);
  filter: drop-shadow(0 4px 16px rgba(107, 29, 47, 0.7)) drop-shadow(0 0 30px rgba(107, 29, 47, 0.3)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
@keyframes logoFloat3D {
  0%, 100% {
    transform: perspective(1000px) rotateY(-6deg) rotateX(3deg) translateZ(2px);
  }
  20% {
    transform: perspective(1000px) rotateY(-1deg) rotateX(-2deg) translateZ(4px);
  }
  40% {
    transform: perspective(1000px) rotateY(4deg) rotateX(1deg) translateZ(1px);
  }
  60% {
    transform: perspective(1000px) rotateY(6deg) rotateX(-3deg) translateZ(3px);
  }
  80% {
    transform: perspective(1000px) rotateY(2deg) rotateX(2deg) translateZ(5px);
  }
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--corinto);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--corinto); }
.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}
.nav-socials a {
  color: var(--cream);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.nav-socials a:hover {
  color: var(--corinto);
  opacity: 1;
}
.nav-socials-mobile { display: none; }
.nav-burger {
  display: none;
  position: relative;
  z-index: 100;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ── Sections container ── */
main {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  padding: 120px 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--corinto);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--corinto);
}

.section-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
}
.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--corinto);
  font-weight: 500;
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(107, 29, 47, 0.25);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: block;
  animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(100%);
  opacity: 0;
}
.hero-title .line:nth-child(2) span { animation-delay: 0.15s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.3s; }
@keyframes revealUp {
  to { transform: translateY(0); opacity: 1; }
}
.hero-title .accent { color: var(--corinto); }
.hero-sub {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub { transform: translateY(20px); }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: var(--cream);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
  transform: translateY(20px);
}
.hero-cta:hover {
  background: var(--corinto);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Drops ── */
.drops { padding-top: 80px; }
.drop {
  margin-bottom: 160px;
  position: relative;
}
.drop:last-child { margin-bottom: 0; }
.drop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}
.drop-number {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--corinto);
  font-weight: 500;
  margin-bottom: 8px;
}
.drop-name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.drop-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  white-space: nowrap;
}
.drop-subsection {
  margin-bottom: 64px;
}
.drop-subsection:last-child { margin-bottom: 0; }
.drop-subsection-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--corinto);
  font-weight: 500;
  margin-bottom: 20px;
}
.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.drop-grid.featured {
  grid-template-columns: 1.5fr 1fr 1fr;
}
.drop-grid.featured-reverse {
  grid-template-columns: 1fr 1fr 1.5fr;
}

/* ── Product Card ── */
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #141414 0%, #0E0E0E 50%, #100A0C 100%);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  aspect-ratio: 3/4;
}
.product-card:hover {
  transform: scale(0.97);
}
.product-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.product-card.featured {
  aspect-ratio: 3/4;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-info {
  opacity: 1;
  transform: translateY(0);
}
.product-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-price {
  font-size: 13px;
  color: var(--corinto);
  font-weight: 400;
}
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--corinto);
  color: var(--bg);
  font-weight: 600;
  backdrop-filter: blur(12px);
}

/* ── Glass Divider ── */
.glass-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-border), transparent);
  margin: 80px 0;
}

/* ── About / Philosophy ── */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 160px 48px;
  position: relative;
}
.philosophy-text .section-sub {
  max-width: 100%;
}
.philosophy-visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107,29,47,0.1) 0%, rgba(10,10,10,1) 50%, rgba(107,29,47,0.06) 100%);
  border: 1px solid var(--glass-border);
}
.philosophy-glass {
  text-align: center;
  padding: 48px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(107,29,47,0.2);
  border-radius: 24px;
}
.philosophy-logo {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.philosophy-logo span {
  color: var(--corinto);
}
.philosophy-year {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Full-width showcase ── */
.showcase {
  padding: 0;
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1015 30%, #0A0A0A 60%, #1A1015 100%);
}
.showcase-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,29,47,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(74,60,49,0.08) 0%, transparent 60%);
}
.showcase-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 48px;
}
.showcase-overlay .section-title {
  color: white;
}
.showcase-overlay .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 100%;
}

/* ── Corporate Section ── */
.corporate {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.corporate-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #0F080A 50%, #0A0A0A 100%);
}
.corporate-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(107,29,47,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 70%, rgba(74,60,49,0.06) 0%, transparent 50%);
}
.corporate-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.corporate-content .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.corporate-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.corporate-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s ease;
}
.corporate-feature:hover {
  background: rgba(107,29,47,0.06);
  border-color: rgba(107,29,47,0.2);
  transform: translateY(-4px);
}
.cf-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(107,29,47,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--corinto);
}
.cf-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cream);
}
.cf-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.corinto-cta {
  background: var(--corinto) !important;
  color: #fff !important;
}
.corinto-cta:hover {
  background: var(--corinto-light) !important;
}

/* ── Footer ── */
footer {
  padding: 48px 48px 32px;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo img {
  height: 36px;
  animation: none;
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateZ(2px);
  filter: drop-shadow(0 2px 6px rgba(107, 29, 47, 0.3)) drop-shadow(0 0 12px rgba(107, 29, 47, 0.1));
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 300;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}
.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-socials a:hover { color: var(--cream); }

/* ── Animations on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Cursor ── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--corinto);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(107, 29, 47, 0.35);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.1s ease;
  opacity: 0;
}
.cursor-dot.visible, .cursor-ring.visible { opacity: 1; }

/* ── Fullscreen Overlay for product view ── */
.product-overlay {
  position: fixed; inset: 0;
  z-index: 500;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 48px;
}
.product-overlay.open {
  opacity: 1;
  visibility: visible;
}
.product-overlay-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  width: 100%;
  align-items: center;
}
.product-overlay img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.product-overlay-close {
  position: absolute;
  top: 32px; right: 32px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.product-overlay-close:hover {
  background: rgba(255,255,255,0.1);
}
.product-overlay-info h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}
.product-overlay-info .desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}
.overlay-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--corinto);
  font-family: var(--font-serif);
  margin-bottom: 24px;
}
.product-overlay-info .size-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.product-overlay-info .size-option {
  padding: 10px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}
.product-overlay-info .size-option:hover,
.product-overlay-info .size-option.active {
  border-color: var(--corinto);
  color: var(--corinto);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #25D366;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--font-sans);
}
.whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

/* ── Gallery ── */
.gallery-section {
  text-align: center;
}
.gallery {
  position: relative;
  max-width: 600px;
  margin: 48px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 80vh;
  background: var(--surface);
}
.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
}
.gallery:hover .gallery-nav { opacity: 1; }
@media (hover: none) { .gallery-nav { opacity: 1; } }
.gallery-nav:hover {
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.15);
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.gallery-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.gallery-dots button.active {
  background: var(--cream);
  transform: scale(1.3);
}
.gallery-dots button:hover {
  background: rgba(255,255,255,0.6);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .drop-grid.featured,
  .drop-grid.featured-reverse {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  section, .drops { padding: 80px 32px; }
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .hero { padding: 100px 32px 60px; }
  .philosophy { padding: 80px 32px; }
  footer { padding: 40px 32px 24px; }
  .corporate { padding: 80px 32px; }
  .drop-grid, .drop-grid.featured, .drop-grid.featured-reverse {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .philosophy-visual { height: 360px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .corporate-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery { max-width: 560px; aspect-ratio: 3/4; }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  nav {
    flex-wrap: wrap;
    gap: 6px 0;
    padding: 16px 20px;
  }
  nav.scrolled { padding: 12px 20px; }
  .nav-links {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 24px;
    padding-top: 8px;
    order: 3;
  }
  .nav-links a {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 4px 0;
    opacity: 0.7;
  }
  .nav-links a::after { display: none; }
  .nav-burger { display: none; }
  .nav-socials {
    display: flex;
    margin-left: auto;
  }
  .nav-socials-mobile { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .showcase { height: 50vh; }
  .showcase-overlay .section-title { font-size: clamp(28px, 8vw, 42px); }
  .philosophy-visual { height: 260px; }
  .corporate { padding: 60px 20px; }
  .corporate-features {
    grid-template-columns: 1fr;
  }
  .corporate-feature { padding: 24px 16px; }
  .product-overlay-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-overlay { padding: 20px; }
  .product-overlay-info h2 { font-size: 24px; }
  .product-overlay-close { top: 16px; right: 16px; }
  .product-card { aspect-ratio: 2/3; }
  .drop { margin-bottom: 100px; }
  .hero-cta, .whatsapp-btn { padding: 16px 32px; font-size: 13px; }
  .size-option { padding: 14px 24px; font-size: 14px; }
  .gallery { max-width: 100%; }
  .gallery-nav { width: 36px; height: 36px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
}
@media (max-width: 480px) {
  section, .hero, .philosophy, .corporate {
    padding-left: 16px;
    padding-right: 16px;
  }
  nav { padding: 14px 16px; }
  nav.scrolled { padding: 10px 16px; }
  .hero-title { font-size: clamp(32px, 14vw, 48px); }
  .section-title { font-size: 26px; }
  .drop-name { font-size: 24px; }
  .philosophy-logo { font-size: 20px; letter-spacing: 4px; }
  .nav-logo img { height: 36px; }
  .product-overlay { padding: 12px; }
  .product-overlay-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 22px; }
  .gallery-nav { width: 32px; height: 32px; }
  .gallery-dots { gap: 8px; }
  .gallery-dots button { width: 6px; height: 6px; }
}

/* ── Section scroll offset for fixed nav ── */
#drops, #about, #modelos, #corporate, #contact {
  scroll-margin-top: 80px;
}
