/* ============================================
   FLORERÍA CORAZÓN DE MARÍA - Stylesheet
   Paleta basada en el logo: rosa, verde olivo, crema
   ============================================ */

:root {
  /* Tipografía fluida */
  --text-xs: clamp(0.75rem, 0.72rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.98rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.5rem);
  --text-xl: clamp(1.75rem, 1.3rem + 1vw, 2.75rem);
  --text-2xl: clamp(2.8rem, 1.6rem + 3vw, 5rem);

  /* Espaciado */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Paleta de colores - Basada en el logo */
  --color-bg: #FDF8F5;
  --color-surface: #FFFFFF;
  --color-surface-2: #F5EDE8;
  --color-surface-3: #F0E6E0;
  --color-text: #2D2A26;
  --color-muted: #6B6560;
  --color-border: rgba(45, 42, 38, 0.10);
  --color-border-hover: rgba(183, 108, 130, 0.35);

  /* Colores del logo */
  --color-rose: #B76C82;
  --color-rose-light: #D4A0B0;
  --color-rose-dark: #8E4A60;
  --color-olive: #5A6B4E;
  --color-olive-light: #7A8F6C;
  --color-olive-dark: #3D4A35;
  --color-gold: #C4A882;
  --color-cream: #FDF8F5;
  --color-white: #ffffff;

  /* Fuentes */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;

  /* Radios */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 999px;

  /* Sombras */
  --shadow-soft: 0 12px 40px rgba(45, 42, 38, 0.06);
  --shadow-medium: 0 16px 50px rgba(45, 42, 38, 0.10);
  --shadow-hover: 0 24px 60px rgba(45, 42, 38, 0.14);
  --shadow-rose: 0 12px 40px rgba(183, 108, 130, 0.12);

  /* Layout */
  --container: min(1140px, calc(100% - 2rem));
  --header-height: 5.5rem;
  --transition: 280ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: none; }

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -3rem;
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-3) var(--space-4);
  z-index: 300;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}
.skip-link:focus { top: var(--space-4); }

:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 3px;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(var(--space-16), 10vw, var(--space-24)) 0;
}

.eyebrow {
  margin: 0 0 var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-text);
}

p { margin: 0; color: var(--color-muted); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-color: var(--color-border);
  box-shadow: 0 8px 30px rgba(45, 42, 38, 0.06);
  background: rgba(253, 248, 245, 0.97);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}

.brand-mark {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-rose-light);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 600;
  color: var(--color-rose-dark);
}

.brand-subtitle {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-olive);
  font-weight: 500;
}

/* Navigation */
.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: var(--space-8);
}

.site-nav a,
.header-cta,
.button,
.product-meta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav a {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-rose-dark);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--color-rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 1px;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Buttons */
.button {
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-rose);
  color: var(--color-white);
  box-shadow: var(--shadow-rose);
  gap: var(--space-2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-rose-dark);
  box-shadow: 0 12px 40px rgba(142, 74, 96, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

.icon-wa {
  width: 1.1rem;
  height: 1.1rem;
}

/* Menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  justify-self: end;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 1px;
}

.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.hero:hover .hero-media img {
  transform: scale(1.03);
}

.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(45, 42, 38, 0.70) 0%,
    rgba(45, 42, 38, 0.30) 50%,
    rgba(45, 42, 38, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(6rem, 10vw, 9rem);
  color: var(--color-cream);
}

.hero-content .eyebrow {
  color: var(--color-rose-light);
  margin-bottom: var(--space-5);
}

.hero-content h1 {
  max-width: 10ch;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-text {
  max-width: 36rem;
  font-size: var(--text-lg);
  color: rgba(253, 248, 245, 0.90);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-head {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.section-head h2,
.editorial-copy h2,
.delivery-grid h2,
.site-footer h2 {
  font-size: var(--text-xl);
  max-width: 18ch;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-hover);
}

.product-image-wrap {
  aspect-ratio: 0.9;
  overflow: hidden;
  position: relative;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,42,38,0.15), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-image-wrap::after {
  opacity: 1;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-6);
  flex: 1;
}

.product-copy h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.product-copy p {
  font-size: var(--text-sm);
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.product-meta span {
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 600;
}

.product-meta a {
  padding: 0.5rem var(--space-5);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  transition: all var(--transition);
}

.product-meta a:hover,
.product-meta a:focus-visible {
  background: var(--color-rose);
  color: var(--color-white);
  border-color: var(--color-rose);
  transform: translateY(-1px);
}

/* ============================================
   EDITORIAL
   ============================================ */
.editorial-grid,
.delivery-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-8), 6vw, var(--space-20));
  align-items: center;
}

.editorial-copy p:last-child,
.delivery-list p,
.footer-details p,
.footer-details a {
  max-width: 34rem;
}

.editorial-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  transition: transform 6s ease-out;
}

.editorial-image:hover img {
  transform: scale(1.02);
}

/* ============================================
   OCCASIONS
   ============================================ */
.occasions {
  background: var(--color-surface-2);
}

.split-head {
  grid-template-columns: 0.32fr 1fr;
  align-items: start;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-4);
}

.occasion-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-hover);
}

.occasion-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  opacity: 0.85;
}

.occasion-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
}

.occasion-card p {
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--color-surface-3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,42,38,0.6), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.gallery-controls {
  text-align: center;
  margin-top: var(--space-10);
}

.gallery-btn {
  background: var(--color-rose);
  color: var(--color-white);
  border: none;
  padding: 0.75rem var(--space-8);
}

.gallery-btn:hover {
  background: var(--color-rose-dark);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(23, 20, 18, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: var(--space-6); }
.lightbox-next { right: var(--space-6); }

.lightbox-caption {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  text-align: center;
}

/* ============================================
   DELIVERY
   ============================================ */
.delivery-list {
  display: grid;
  gap: var(--space-4);
}

.delivery-list article {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.delivery-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.delivery-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-rose);
  margin-bottom: var(--space-4);
}

.delivery-icon svg {
  width: 100%;
  height: 100%;
}

.delivery-list h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-3);
}

.delivery-list p {
  font-size: var(--text-sm);
  line-height: 1.55;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-text);
  color: var(--color-cream);
  padding-bottom: 0;
}

.site-footer p,
.site-footer a,
.site-footer .eyebrow {
  color: rgba(253, 248, 245, 0.78);
}

.site-footer h2 {
  color: var(--color-white);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-rose-light);
  margin-bottom: var(--space-2);
}

.footer-tagline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  max-width: 32rem;
  line-height: 1.6;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8) var(--space-6);
}

.footer-details h3 {
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-rose-light);
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-details a {
  transition: color var(--transition);
  position: relative;
}

.footer-details a:hover,
.footer-details a:focus-visible {
  color: var(--color-rose-light);
}

.footer-bottom {
  margin-top: var(--space-16);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(253, 248, 245, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(253, 248, 245, 0.45);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 180;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-olive);
  color: var(--color-white);
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--color-olive-dark);
  box-shadow: 0 20px 50px rgba(61, 74, 53, 0.3);
}

.whatsapp-float svg {
  width: 1.8rem;
  height: 1.8rem;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(90, 107, 78, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(90, 107, 78, 0); }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger para tarjetas */
.product-card.reveal,
.occasion-card.reveal,
.gallery-item.reveal {
  transition-delay: calc(var(--i, 0) * 100ms);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-media img,
  .editorial-image img {
    transition: none;
  }
}

/* ============================================
   RESPONSIVE - 1100px
   ============================================ */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    gap: var(--space-5);
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-head,
  .editorial-grid,
  .delivery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    order: -1;
  }
}

/* ============================================
   RESPONSIVE - 820px
   ============================================ */
@media (max-width: 820px) {
  :root {
    --header-height: 4.75rem;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    background: rgba(253, 248, 245, 0.98);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    padding: var(--space-4);
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--color-surface-2);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-bottom: 5rem;
  }

  .hero-content h1,
  .section-head h2,
  .editorial-copy h2,
  .delivery-grid h2,
  .site-footer h2 {
    max-width: 100%;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-details {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE - 520px
   ============================================ */
@media (max-width: 520px) {
  .container {
    width: min(100% - 1.25rem, 1140px);
  }

  .brand-subtitle {
    display: none;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .hero-actions,
  .product-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .product-meta a {
    width: 100%;
  }

  .product-grid,
  .gallery-grid,
  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .occasion-card {
    min-height: auto;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox img {
    max-width: 95vw;
  }
}
