/**
 * Di Vittore — Showcase
 * Paleta: creme, branco, dourado, ouro rosé, burgundy, preto sofisticado
 * Estilo: feminino, elegante, shimmer, curvas orgânicas
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --white: #FFFDF9;
  --cream: #F8F0E3;
  --cream-dark: #EDE3D4;
  --gold: #C8A35F;
  --gold-bright: #D4B574;
  --gold-rose: #D4A574;
  --gold-dim: rgba(200, 163, 95, 0.12);
  --burgundy: #6B2D3E;
  --dark: #1A1A1A;
  --dark-soft: #2A2520;
  --text: #3D3530;
  --text-light: #8A7E74;
  --border: rgba(200, 163, 95, 0.2);
  --font-display: 'Cormorant Garamond', 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);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease-out-quart), backdrop-filter 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(200, 163, 95, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 52px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 98;
}

.main-nav-kicker { display: none; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200, 163, 95, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 80% 80%, rgba(200, 163, 95, 0.06) 0%, transparent 50%);
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(200, 163, 95, 0.04) 45%,
    rgba(212, 181, 116, 0.06) 50%,
    rgba(200, 163, 95, 0.04) 55%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: hero-shimmer 8s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0%, 100% { background-position: 200% 200%; }
  50% { background-position: 0% 0%; }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float-glow 18s ease-in-out infinite;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -20%;
  left: -10%;
  opacity: 0.08;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--gold-rose);
  bottom: -15%;
  right: -10%;
  opacity: 0.06;
  animation-delay: -6s;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: var(--burgundy);
  top: 40%;
  right: 20%;
  opacity: 0.04;
  animation-delay: -12s;
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: auto;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.03); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo {
  margin-bottom: 2rem;
  animation: fade-up 0.8s var(--ease-out-expo) forwards;
}

.hero-logo img {
  height: 110px;
  width: auto;
  margin: 0 auto;
}

.hero-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s var(--ease-out-expo) 0.15s backwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.hero-title-line {
  display: block;
  animation: fade-up 0.8s var(--ease-out-expo) 0.3s backwards;
}

.hero-title-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rose) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fade-up 0.8s var(--ease-out-expo) 0.4s backwards, shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-light);
  max-width: 38ch;
  margin: 2rem auto 2.5rem;
  font-weight: 400;
  animation: fade-up 0.8s var(--ease-out-expo) 0.55s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out-expo) 0.7s backwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(200, 163, 95, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200, 163, 95, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fade-up 0.8s var(--ease-out-expo) 0.85s backwards;
}

.scroll-indicator {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  animation: reveal-in 0.8s var(--ease-out-expo) forwards;
}

.reveal[data-delay="50"].visible  { animation-delay: 0.05s; }
.reveal[data-delay="100"].visible { animation-delay: 0.1s; }
.reveal[data-delay="150"].visible { animation-delay: 0.15s; }
.reveal[data-delay="200"].visible { animation-delay: 0.2s; }
.reveal[data-delay="250"].visible { animation-delay: 0.25s; }
.reveal[data-delay="300"].visible { animation-delay: 0.3s; }

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   SECTIONS — Base
   ═══════════════════════════════════════ */

.section {
  padding: 7rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto 4rem;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.section-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 1rem;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */

.section-about {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content .section-kicker { margin-bottom: 1.5rem; }
.about-content .section-title { text-align: left; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */

.section-gallery {
  background: var(--cream);
  padding-bottom: 5rem;
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0 5vw 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-dark) transparent;
}

.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-track { background: transparent; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 3px; }

.gallery-track.dragging { cursor: grabbing; }

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.7) 0%, transparent 100%);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-bright);
  padding-bottom: 2px;
}

/* ═══════════════════════════════════════
   VIDEO
   ═══════════════════════════════════════ */

.section-video {
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.video-content { max-width: 40ch; }
.video-content .section-title { text-align: left; margin-bottom: 1.5rem; }

.video-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.video-detail-bar {
  width: 3px;
  height: 24px;
  background: linear-gradient(180deg, var(--gold), var(--gold-rose));
  border-radius: 2px;
  flex-shrink: 0;
}

.video-detail-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.video-wrap {
  width: 280px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow:
    0 25px 60px rgba(200, 163, 95, 0.15),
    0 0 0 1px var(--border);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.video-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(200, 163, 95, 0.2),
    0 0 0 1px rgba(200, 163, 95, 0.4);
}

.video-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px;
}

#divittore-youtube-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#divittore-youtube-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transform: scale(1.12);
  transform-origin: center;
}

/* ═══════════════════════════════════════
   COLLECTIONS
   ═══════════════════════════════════════ */

.section-collections {
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s, box-shadow 0.4s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(200, 163, 95, 0.1);
}

.product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  border-radius: 16px 16px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.25rem 0 0;
  color: var(--dark);
}

/* ═══════════════════════════════════════
   CATALOG DOWNLOAD
   ═══════════════════════════════════════ */

.section-catalog {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.catalog-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.catalog-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(200, 163, 95, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 30% 80%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
}

.catalog-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(180px);
  opacity: 0.04;
  animation: catalog-pulse 5s ease-in-out infinite;
}

.catalog-curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.catalog-curve svg { width: 100%; height: auto; }

@keyframes catalog-pulse {
  0%, 100% { opacity: 0.04; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.1); }
}

.catalog-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--gold-dim);
  border: 1px solid rgba(200, 163, 95, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.catalog-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  color: var(--dark);
}

.text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.catalog-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border: none;
  border-radius: 999px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(200, 163, 95, 0.3);
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200, 163, 95, 0.4);
}

.btn-download svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.site-footer {
  padding: 3rem 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.footer-inner { text-align: center; }

.footer-brand { margin-bottom: 1.5rem; }

.footer-brand img {
  height: 56px;
  width: auto;
  margin: 0 auto;
  opacity: 0.85;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin: 0 0 1rem;
}

.footer-links { margin-bottom: 1rem; }

.footer-links a {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.footer-links a:hover { opacity: 0.7; }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  opacity: 0.6;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  body.menu-open .site-header {
    z-index: 10000;
    background: var(--white);
    transition: none;
  }

  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
  }

  body.menu-open .nav-overlay {
    display: block;
    pointer-events: auto;
  }

  body.menu-open .main-nav {
    display: block;
    pointer-events: auto;
  }

  .main-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 300px;
    background: var(--white);
    padding: 5rem 1.5rem 2rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--cream-dark);
    z-index: 100;
  }

  body.menu-open .main-nav-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1.5rem;
  }

  body.menu-open .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  body.menu-open .main-nav li {
    border-bottom: 1px solid var(--cream-dark);
  }

  body.menu-open .main-nav a {
    display: block;
    padding: 0.9rem 0;
    color: var(--text-light);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.02em;
  }

  body.menu-open .main-nav a::after { display: none; }
  body.menu-open .main-nav a:hover { color: var(--gold); padding-left: 0.5rem; }

  .header-inner { position: relative; z-index: 102; }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 101;
  }

  body.menu-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--gold);
  }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--gold);
  }

  .hero { padding: 6rem 0 4rem; }

  .hero-scroll-hint {
    position: static;
    transform: none;
    margin-top: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image { order: -1; }
  .about-image img { height: 350px; }
  .about-content .section-title { text-align: center; }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .video-content { max-width: none; }
  .video-content .section-title { text-align: center; }
  .video-detail { justify-content: center; }
  .video-player { display: flex; justify-content: center; }

  .video-wrap { width: min(280px, 85vw); }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-item {
    width: 250px;
    height: 330px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════ */

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    width: 220px;
    height: 300px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem;
  }

  .whatsapp-text { display: none; }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 1366px
   ═══════════════════════════════════════ */

@media (max-width: 1366px) and (min-width: 769px) {
  .container { width: min(1100px, 92vw); }
  .gallery-item { width: 270px; height: 360px; }
}
