/* === Variables (paleta extreta de la web v0, en oklch) === */
:root {
  --color-cream: oklch(96.5% 0.012 85);       /* background */
  --color-cream-light: oklch(99% 0.008 85);   /* card / superfícies */
  --color-beige: oklch(93% 0.015 90);         /* muted */
  --color-green: oklch(50% 0.05 150);         /* primary (botons) */
  --color-green-light: oklch(57% 0.06 150);   /* hover */
  --color-green-pale: oklch(88% 0.03 145);    /* secondary / clar */
  --color-green-dark: oklch(34% 0.03 150);    /* títols / text fosc */
  --color-terracotta: oklch(66% 0.12 50);     /* accent */
  --color-terracotta-light: oklch(72% 0.11 55);
  --color-gold: oklch(72% 0.09 75);
  --color-text: oklch(38% 0.03 150);
  --color-text-light: oklch(52% 0.025 140);   /* muted-foreground */
  --color-border: oklch(86% 0.02 110);
  --color-white: #ffffff;
  --font-display: "Quicksand", "Nunito", sans-serif;
  --font-body: "Nunito", -apple-system, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow: 0 4px 20px rgba(70, 60, 40, 0.07);
  --shadow-lg: 0 10px 40px rgba(70, 60, 40, 0.12);
  --transition: 0.3s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.hidden { display: none !important; }
[hidden] { display: none !important; }

/* === Layout === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-green-dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 52px;
  font-size: 1.08rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--color-green);
  color: var(--color-cream-light);
}
.btn-primary:hover {
  background: var(--color-green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--color-green-dark);
  border-color: var(--color-green);
}
.btn-secondary:hover {
  background: var(--color-green-pale);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  padding: 12px 28px;
}
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: oklch(96.5% 0.012 85 / 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(70, 60, 40, 0.06);
  padding: 8px 0;
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img { height: 50px; width: 50px; border-radius: 50%; box-shadow: var(--shadow); }
.navbar.scrolled .nav-logo-img { height: 42px; width: 42px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-cream-light);
  text-shadow: 0 1px 8px rgba(40, 35, 25, 0.4);
  position: relative;
  padding: 4px 0;
}
.navbar.scrolled .nav-links a { color: var(--color-green-dark); text-shadow: none; }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-terracotta);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-cream-light);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.nav-instagram:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.nav-instagram svg { flex-shrink: 0; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 11px;
  border: 1.5px solid var(--color-cream-light);
  background: oklch(30% 0.03 150 / 0.25);
  color: var(--color-cream-light);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-display);
}
.navbar.scrolled .lang-btn { border-color: var(--color-green); background: transparent; color: var(--color-green-dark); }
.lang-btn.active, .lang-btn:hover { background: var(--color-green); color: var(--color-cream-light); border-color: var(--color-green); }
.navbar.scrolled .lang-btn.active, .navbar.scrolled .lang-btn:hover { background: var(--color-green); color: var(--color-cream-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-cream-light); transition: var(--transition); border-radius: 2px; }
.navbar.scrolled .nav-toggle span { background: var(--color-green-dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero (imatge de fons) === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      to bottom,
      oklch(30% 0.03 150 / 0.55),
      oklch(30% 0.03 150 / 0.35),
      oklch(96.5% 0.012 85 / 0.92)
    ),
    url("../images/hero.png") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 28px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-cream-light);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-cream-light);
  margin-bottom: 16px;
  line-height: 1.12;
  text-shadow: 0 2px 20px rgba(40, 35, 25, 0.4);
}
.hero-subtitle {
  font-size: 1.18rem;
  color: var(--color-cream-light);
  max-width: 540px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 12px rgba(40, 35, 25, 0.5);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-secondary {
  color: var(--color-cream-light);
  border-color: var(--color-cream-light);
}
.hero .btn-secondary:hover {
  background: var(--color-cream-light);
  color: var(--color-green-dark);
}

/* === About === */
.about { background: var(--color-cream-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-green-dark);
  margin-bottom: 16px;
}
.about-text p { color: var(--color-text-light); margin-bottom: 24px; line-height: 1.8; }
.includes-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}
.includes-list { display: grid; gap: 9px; margin-bottom: 20px; }
.includes-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text-light);
  line-height: 1.5;
}
.includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-terracotta);
  font-weight: 700;
}
.about-note { color: var(--color-text-light); font-style: italic; margin-bottom: 24px; }
.about-extras {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--color-beige);
  border-radius: var(--radius);
  color: var(--color-green-dark);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

/* Caixa de preus */
.price-box {
  margin: 22px 0;
  padding: 22px;
  background: var(--color-green);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-cream-light);
}
.price-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px !important;
  color: var(--color-cream-light) !important;
}
.price-sizes { font-size: 0.92rem; opacity: 0.9; margin-bottom: 12px !important; color: var(--color-cream-light) !important; }
.price-offer {
  display: inline-block;
  background: var(--color-terracotta);
  color: var(--color-cream-light);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin: 0 !important;
}

/* Consentiment del formulari */
.form-consent { margin-bottom: 20px; }
.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1.4;
}
.form-consent input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--color-green); }
.form-consent a { color: var(--color-terracotta); text-decoration: underline; }

/* Pàgines legals */
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--color-cream-light);
  border-bottom: 1px solid var(--color-border);
}
.legal-header img { height: 48px; width: 48px; border-radius: 50%; }
.legal-header .lang-btn { border: 1.5px solid var(--color-green); background: transparent; color: var(--color-green-dark); }
.legal-header .lang-btn.active { background: var(--color-green); color: var(--color-cream-light); }
.legal-page { max-width: 820px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-back { display: inline-block; margin-bottom: 24px; color: var(--color-green); font-weight: 600; }
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-green-dark);
  margin: 28px 0 10px;
}
.legal-content p, .legal-content li { color: var(--color-text); line-height: 1.7; margin-bottom: 10px; }
.legal-content ul { padding-left: 22px; margin-bottom: 10px; list-style: disc; }
.legal-content .legal-date { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 24px; }
.legal-content .legal-todo {
  background: oklch(66% 0.12 50 / 0.12);
  border-left: 3px solid var(--color-terracotta);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.about-features { display: flex; gap: 16px; }
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px;
  background: var(--color-beige);
  border-radius: var(--radius);
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-green-dark);
}
.feature-icon { font-size: 1.6rem; }
.about-occasions h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 20px;
  text-align: center;
}
.occasions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.occasion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 8px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green-dark);
  transition: var(--transition);
}
.occasion:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--color-green-pale); }
.occasion span:first-child { font-size: 1.6rem; }

/* === Themes === */
.themes { background: var(--color-cream); }
.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.theme-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.theme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(28% 0.03 150 / 0.78), oklch(28% 0.03 150 / 0.05) 55%);
}
.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.theme-card:hover img { transform: scale(1.08); }
.theme-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-cream-light);
  text-shadow: 0 2px 10px rgba(30, 25, 15, 0.5);
  letter-spacing: 0.3px;
}

/* === Gallery === */
.gallery { background: var(--color-cream-light); }
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--color-green);
  background: transparent;
  color: var(--color-green-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-green);
  color: var(--color-cream-light);
}
/* "Properament" — ambients sense fotos encara: desactivats amb franja a sobre */
.filter-soon {
  position: relative;
  padding: 19px 20px 8px;
  border-radius: var(--radius);
  border-color: var(--color-border);
  color: var(--color-text-light);
  opacity: 0.8;
  cursor: not-allowed;
  overflow: hidden;
}
.filter-soon:hover {
  background: transparent;
  color: var(--color-text-light);
  transform: none;
}
.soon-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-terracotta);
  color: var(--color-cream-light);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 0;
  text-align: center;
}
.soon-label { font-weight: 600; }
.gallery-item.filtered-out { display: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--color-beige);
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* === Lightbox === */
.lightbox {
  position: fixed; inset: 0;
  background: oklch(20% 0.02 150 / 0.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none; border: none;
  color: var(--color-cream-light);
  font-size: 2rem; cursor: pointer; padding: 12px;
  transition: var(--transition);
}
.lightbox-close { top: 20px; right: 20px; font-size: 2.5rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 0.6; }

/* === Contact === */
.contact { background: var(--color-cream); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-form {
  background: var(--color-cream-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-green-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: var(--transition);
  background: var(--color-cream);
  color: var(--color-text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px oklch(66% 0.12 50 / 0.15);
}
.form-group input:disabled {
  background: var(--color-beige);
  color: var(--color-text-light);
  cursor: not-allowed;
  opacity: 0.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info {
  background: var(--color-cream-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 24px;
}
.info-item { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 0.97rem; }
.info-item a:hover { color: var(--color-terracotta); }
.info-icon { font-size: 1.3rem; }
.contact-cta { margin-top: 28px; text-align: center; }

/* === Toast === */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(200px);
  opacity: 0; visibility: hidden;
  background: var(--color-green);
  color: var(--color-cream-light);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transition: transform 0.4s ease, opacity 0.4s ease;
  font-weight: 600;
  font-family: var(--font-display);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }

/* === Footer === */
.footer {
  background: var(--color-green-dark);
  color: var(--color-cream);
  text-align: center;
  padding: 52px 24px 24px;
}
.footer-logo { width: 84px; height: 84px; margin: 0 auto 16px; border-radius: 50%; box-shadow: var(--shadow-lg); }
.footer p {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-terracotta-light);
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--color-cream); opacity: 0.85; transition: var(--transition); font-size: 0.92rem; }
.footer-links a:hover { opacity: 1; color: var(--color-terracotta-light); }
.footer .footer-copy { font-family: var(--font-body); font-size: 0.8rem; opacity: 0.55; color: var(--color-cream); }

/* === Animations === */
.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.theme-card.animate:nth-child(2) { transition-delay: 0.05s; }
.theme-card.animate:nth-child(3) { transition-delay: 0.1s; }
.theme-card.animate:nth-child(4) { transition-delay: 0.15s; }
.theme-card.animate:nth-child(5) { transition-delay: 0.2s; }
.theme-card.animate:nth-child(6) { transition-delay: 0.25s; }
.theme-card.animate:nth-child(7) { transition-delay: 0.3s; }
.theme-card.animate:nth-child(8) { transition-delay: 0.35s; }
.theme-card.animate:nth-child(9) { transition-delay: 0.4s; }
.gallery-item.animate:nth-child(2) { transition-delay: 0.05s; }
.gallery-item.animate:nth-child(3) { transition-delay: 0.1s; }
.gallery-item.animate:nth-child(4) { transition-delay: 0.15s; }
.gallery-item.animate:nth-child(5) { transition-delay: 0.2s; }
.gallery-item.animate:nth-child(6) { transition-delay: 0.25s; }
.gallery-item.animate:nth-child(7) { transition-delay: 0.3s; }

/* === Responsive === */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 2rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-logo { width: 130px; height: 130px; }
  .hero-subtitle { font-size: 1.05rem; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(70, 60, 40, 0.12);
  }
  .nav-links.open { right: 0; }
  .nav-links a, .navbar.scrolled .nav-links a { color: var(--color-green-dark); text-shadow: none; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 10px; }
  .nav-instagram span { display: none; }
  .nav-instagram { padding: 8px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { flex-wrap: wrap; }
  .occasions-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }

  .themes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .theme-card { padding: 26px 16px; }
  .theme-icon { font-size: 2.3rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .themes-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
}
