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

:root {
  --bg:          #0b0b0b;
  --bg-card:     #131313;
  --bg-section:  #0f0f0f;
  --bg-nav:      rgba(11,11,11,0.96);
  --gold:        #c9a84c;
  --gold-light:  #dfc06a;
  --cream:       #f0e8d8;
  --cream-dim:   rgba(240,232,216,0.65);
  --muted:       #888070;
  --divider:     rgba(201,168,76,0.22);
  --border-card: rgba(201,168,76,0.18);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-edit:   'Cormorant Garamond', Georgia, serif;
  --font-ui:     'Montserrat', system-ui, sans-serif;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: var(--cream);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  animation: pageFadeIn 0.55s ease forwards;
}

.nav-spacer {
  display: block;
  width: 100%;
  height: 130px;
  flex-shrink: 0;
}
/* 
  FIX: body animation must NOT use transform — any transform on body creates a
  stacking context that prevents position:fixed children from being fixed to the
  viewport. Animating only opacity keeps the fade-in effect without breaking fixed
  positioning on #nav or any other fixed element.
*/
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#page-transition {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.40s ease;
  will-change: auto !important;
  transform: none !important;
  filter: none !important;
  isolation: auto !important;
  contain: none !important;
}
#page-transition.fade-out {
  opacity: 1;
  pointer-events: all;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.eyebrow::before,
.eyebrow::after {
  content: '\2014';
  color: #c9a84c;
  letter-spacing: 0;
}

/* ── NAV ── */
#nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 130px !important;
  background: rgba(10,10,10,0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  z-index: 9999 !important;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  will-change: auto !important;
  filter: none !important;
}
.nav-inner {
  max-width: 1136.67px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
}
.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.65);
  text-decoration: none;
  transition: color 0.22s ease;
}
.nav-links a:hover { color: #c9a84c; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,232,216,0.50);
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}
.nav-social a:hover {
  color: #c9a84c;
  transform: scale(1.15);
}
.nav-social svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(201,168,76,0.10); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(240,232,216,0.80);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0; width: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.nav-mobile-menu {
  position: fixed;
  top: 130px;
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 199;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1),
              transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav-mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.nav-mobile-links li:first-child {
  border-top: 1px solid rgba(201,168,76,0.08);
}
.nav-mobile-links a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.75);
  text-decoration: none;
  padding: 18px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile-links a:hover {
  color: #c9a84c;
  padding-left: 8px;
}
.nav-mobile-social {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-mobile-social a {
  display: flex;
  color: rgba(240,232,216,0.50);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-mobile-social a:hover { color: #c9a84c; }
.nav-mobile-social svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
}

/* ── HERO SLIDER ── */
#hero {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  height: calc(100vh - 130px);
  min-height: 600px;
  max-height: 900px;
  overflow: visible;
  clip-path: inset(0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0a0a0a;
  margin-top: -130px;
  border: none;
  outline: none;
  box-shadow: none;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0,0,0,0.22);
}
#hero::after {
  display: none;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.00)  0%,
    rgba(10,10,10,0.00) 20%,
    rgba(10,10,10,0.18) 40%,
    rgba(10,10,10,0.52) 62%,
    rgba(10,10,10,0.84) 82%,
    rgba(10,10,10,1.00) 100%
  );
}

/* ── SLIDES ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  will-change: opacity;
  overflow: hidden;
  transition: opacity 2.0s cubic-bezier(0.45, 0, 0.55, 1);
  will-change: opacity;
}
/* Hero slide img — replicates background-size:cover behaviour */
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75) saturate(0.88);
  display: block;
  pointer-events: none;
}

.hero-slide.leaving {
  opacity: 0;
  z-index: 1;
  transition: opacity 2.0s cubic-bezier(0.45, 0, 0.55, 1);
  animation: heroBurns 9s ease-in-out forwards;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transition: opacity 2.0s cubic-bezier(0.45, 0, 0.55, 1);
  animation: heroBurns 9s ease-in-out forwards;
}
@keyframes heroBurns {
  0%   { transform: scale(1.00) translate(0px, 0px);   }
  33%  { transform: scale(1.03) translate(-4px, -2px);  }
  66%  { transform: scale(1.05) translate(-8px, 3px);   }
  100% { transform: scale(1.08) translate(-12px, -4px); }
}
.hero-slide:not(.active):not(.leaving) {
  opacity: 0;
  z-index: 0;
  animation: none;
  transform: scale(1.0);
  transition: opacity 2.0s cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── VIGNETTE LAYERS ── */
.hero-vignette-left {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.20) 25%,
    rgba(0,0,0,0.00) 50%
  );
  pointer-events: none;
}
#hero + * {
  margin-top: -2px;
  position: relative;
  z-index: 1;
}
.hero-vignette-top {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.00) 20%
  );
  pointer-events: none;
}

/* ── CONTENT WRAPPER ── */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -40px;
}

/* ── EYEBROW ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 22px 0;
  opacity: 0;
  transform: translateY(20px);
}
.ey-dash {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #c9a84c;
  letter-spacing: 0;
  line-height: 1;
}
.ey-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a84c;
}

/* ── H1 ── */
.hero-h1 {
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.h1-line1 {
  display: block;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 96px;
  font-weight: 500;
  font-style: normal;
  color: #f0e8d8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.02;
  text-align: center;
  opacity: 0;
  transform: translateY(36px);
}
.h1-line2 {
  display: block;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 96px;
  font-weight: 400;
  font-style: italic;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-align: center;
  margin-top: -2px;
  opacity: 0;
  transform: translateY(36px);
}

/* ── SUBTEXT ── */
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(240,232,216,0.75);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.80;
  text-align: center;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(20px);
}

/* ── CTA ROW ── */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  background: transparent;
  border: 1px solid #c9a84c;
  padding: 15px 44px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.hero-btn-primary:hover {
  background: #c9a84c;
  color: #0a0a0a;
}
.hero-btn-ghost {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.65);
  background: none;
  border: none;
  padding: 15px 0;
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.hero-btn-ghost:hover { color: #f0e8d8; }

/* ── ARROWS ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(10,10,10,0.42);
  border: 1px solid rgba(240,232,216,0.16);
  color: rgba(240,232,216,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.hero-arrow:hover {
  background: rgba(201,168,76,0.20);
  border-color: rgba(201,168,76,0.60);
  color: #c9a84c;
}

/* ── DASH INDICATORS ── */
.hero-dashes {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdash {
  display: block;
  width: 28px;
  height: 1.5px;
  background: rgba(240,232,216,0.28);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}
.hdash.active {
  width: 48px;
  background: #c9a84c;
}

/* ── SLIDE COUNTER ── */
.hero-counter {
  position: absolute;
  bottom: 30px;
  right: 48px;
  z-index: 4;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: rgba(240,232,216,0.38);
  user-select: none;
}
.hc-cur {
  color: rgba(240,232,216,0.80);
  font-weight: 400;
}
.hc-sep { margin: 0 2px; }

/* ── BUTTONS ── */
.btn {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 15px 42px;
  display: inline-block;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  border: 1px solid #c9a84c;
  color: #c9a84c;
  background: transparent;
}
.btn-primary:hover {
  background: #c9a84c;
  color: #0a0a0a;
}
.btn-ghost {
  border: none;
  background: transparent;
  color: rgba(240,232,216,0.65);
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: #f0e8d8; }

/* ── MARQUEE ── */
.marquee-strip-outer {
  width: 100vw;
  height: 79.33px;
  background: #c9a84c;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  animation: marqueeFullRTL 30s linear infinite;
  will-change: transform;
}
.marquee-strip-outer:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeFullRTL {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}
.marquee-item {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 400; font-style: italic;
  color: #0b0b0b; letter-spacing: 0.04em;
  padding-right: 80px;
  display: inline-flex; align-items: center; gap: 20px;
  flex-shrink: 0; user-select: none;
}
.marquee-sep {
  font-style: normal; font-size: 11px;
  color: rgba(11,11,11,0.38);
}

/* ── MAISON ── */
#maison {
  padding: 120px 0;
  background: #0a0707;
  background-color: #0a0a0a;
}
.maison-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  overflow: visible;
}
.maison-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.maison-img-wrap::before,
.maison-img-wrap::after {
  display: none !important;
  content: none !important;
}
.maison-img-wrap img {
  width: 140%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.72));
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
  margin-left: auto;
  transform-origin: left center;
}
.maison-img-wrap:hover img {
  transform: translateY(-10px);
  filter: drop-shadow(0 44px 80px rgba(0,0,0,0.82));
}
.maison-h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 400;
  line-height: 1.20;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 24px;
  color: #f0e8d8;
}
.maison-h2-line1 { display: block; font-style: normal; color: #f0e8d8; }
.maison-h2-line2 { display: block; font-style: normal; color: #f0e8d8; }
.maison-h2 em { font-style: italic; color: #c9a84c; text-transform: uppercase; }
.maison-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300;
  color: rgba(240,232,216,0.55);
  letter-spacing: 0.03em; text-align: left;
  margin-top: 20px;
}
.maison-text.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.maison-text.reveal-left.visible { opacity: 1; transform: translateX(0); }
.maison-img-wrap.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s, transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s;
}
.maison-img-wrap.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── HANDCRAFTED — full-width landscape banner ── */
#handcrafted {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hc-parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background-image: url('../images/chocolate-ingredients.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.58) saturate(0.82);
  z-index: 0;
  will-change: transform;
}
#handcrafted::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.35) 35%,
    rgba(10,10,10,0.00) 65%
  );
}
#handcrafted::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.00)  0%,
    rgba(10,10,10,0.00) 55%,
    rgba(10,10,10,0.70) 85%,
    rgba(10,10,10,0.95) 100%
  );
}
.hc-deco-square {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201,168,76,0.30);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 2;
  pointer-events: none;
  animation: hcDiamondSpin 14s linear infinite;
}
.hc-deco-square::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,76,0.15);
}
@keyframes hcDiamondSpin {
  from { transform: translate(-50%, -50%) rotate(45deg); }
  to   { transform: translate(-50%, -50%) rotate(405deg); }
}
.hc-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 48px;
  box-sizing: border-box;
  text-align: center;
  z-index: 3;
}
#handcrafted .hc-eyebrow {
  justify-content: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
#handcrafted .hc-eyebrow.hc-visible {
  opacity: 1;
  transform: translateY(0);
}
.handcrafted-h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 300;
  line-height: 1.20;
  margin: 0;
  text-align: center;
}
.hc-line1 {
  display: block;
  font-size: clamp(42px, 5vw, 72px);
  font-style: normal;
  font-weight: 300;
  color: #f0e8d8;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
  text-transform: none;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.80s cubic-bezier(0.22,1,0.36,1),
              transform 0.80s cubic-bezier(0.22,1,0.36,1);
}
.hc-line2 {
  display: block;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  white-space: nowrap;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.80s cubic-bezier(0.22,1,0.36,1) 0.18s,
              transform 0.80s cubic-bezier(0.22,1,0.36,1) 0.18s;
}
.hc-em { font-style: italic; color: #c9a84c; }
.hc-normal { font-style: normal; color: #f0e8d8; }
.hc-line1.hc-visible,
.hc-line2.hc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── COLLECTION ── */
#collection {
  background: #0a0a0a;
  padding: 110px 0 120px;
}
#collection .container {
  max-width: 1280px;
}
.collection-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #c9a84c;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.collection-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: #c9a84c;
  text-align: center;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.collection-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 64px;
}
.div-line {
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(201,168,76,0.45);
}
.div-diamond {
  font-size: 8px;
  color: #c9a84c;
  line-height: 1;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px 48px;   /* more vertical + horizontal space so frames never overlap */
  align-items: end;
}
.collection-card {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.collection-card:hover {
  transform: translateY(-8px);
}
.card-frames {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: 240px;
  height: 240px;
  z-index: 0;
  pointer-events: none;
}
.frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.30);
}
.frame-outer {
  animation: frameSpinOuter 12s linear infinite;
}
/* .frame-inner intentionally removed — single rotating square only */
.frame-inner {
  display: none;
}
@keyframes frameSpinOuter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes frameSpinInner {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.card-img-wrap {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55));
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.collection-card:hover .card-img-wrap img {
  transform: scale(1.06) translateY(-4px);
}
.card-text {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 240px;
  padding: 18px 8px 0;
  text-align: center;
}
.card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #f0e8d8;
  margin: 0 0 8px 0;
  line-height: 1.25;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.collection-card:hover .card-name {
  color: #c9a84c;
}
.card-tags {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.45);
  margin: 0;
  line-height: 1.5;
}
.collection-cta {
  text-align: center;
  margin-top: 72px;
}
.btn-preorder {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #c9a84c;
  background: transparent;
  border: 1px solid #c9a84c;
  padding: 15px 42px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-preorder:hover {
  background: #c9a84c;
  color: #0a0a0a;
  border-color: #c9a84c;
}

/* ── VIDEO ── */
/* ── GALLERY SECTION ── */
#gallery-section {
  position: relative;
  padding: 110px 0 120px;
  text-align: center;
  overflow: hidden;
}
/* dark botanical background overlay */
.gallery-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(11,11,11,0) 40%, rgba(11,11,11,0.72) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cellipse cx='300' cy='300' rx='280' ry='280' fill='none' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E") center/cover;
  background-color: #080808;
  z-index: 0;
}
.gallery-container { position: relative; z-index: 1; }

.gallery-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 64px;
  letter-spacing: 0.01em;
}

/* ── FOCUS SLICE CAROUSEL ── */
.fsc-track {
  display: flex;
  gap: 12px;
  height: 500px;
  margin-bottom: 56px;
  cursor: pointer;
}

.fsc-slice {
  position: relative;
  border-radius: 999px;
  overflow: hidden;
  flex: 0.6;
  transition: flex 0.7s cubic-bezier(0.77,0,0.18,1),
              border-radius 0.7s cubic-bezier(0.77,0,0.18,1);
  min-width: 60px;
  will-change: flex;             /* GPU hint for flex expansion animation */
}

.fsc-slice.active {
  flex: 4;
  border-radius: 28px;
}

.fsc-slice img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
}
.fsc-slice.active img { transform: scale(1.0); }    /* natural size — no zoom, maximum sharpness */
.fsc-slice:not(.active) img { filter: brightness(0.4); }

.fsc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.15) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.fsc-slice.active .fsc-overlay { opacity: 1; }

.fsc-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0s, transform 0s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.fsc-slice.active .fsc-caption {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}



.fsc-caption-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.fsc-caption-sub {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  padding: 0;
}

/* ── FSC ARROW BUTTON ── */
.fsc-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s, background 0.2s;
  pointer-events: none;
  line-height: 1;
}
.fsc-slice.active .fsc-arrow {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.fsc-arrow:hover {
  background: var(--gold);
  color: #0b0b0b;
}

/* ── Cursor hint: pointer on active slice ── */
.fsc-slice.active { cursor: pointer; }
.fsc-slice:not(.active) { cursor: pointer; }

/* ── SEE MORE BUTTON ── */
.gallery-cta { margin-top: 8px; }
.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.gallery-btn:hover {
  background: var(--gold);
  color: #0b0b0b;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .fsc-track { height: 360px; gap: 8px; }
  .fsc-caption-title { font-size: 16px; white-space: normal; }
  .fsc-caption { bottom: 16px; left: 16px; }
  .fsc-slice { min-width: 36px; }
}
@media (max-width: 480px) {
  .fsc-track { height: 260px; gap: 5px; }
  .gallery-heading { font-size: clamp(20px, 5.5vw, 30px); margin-bottom: 40px; }
  #gallery-section { padding: 80px 0 90px; }
}


/* ── FOOTER ── */
#footer {
  background: #0b0b0b;
  border-top: 1px solid var(--divider);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1.4fr;
  gap: 56px; align-items: end;
}
.footer-col:nth-child(1),
.footer-col:nth-child(3) { align-self: start; }
.footer-logo img {
  width: 90px; height: 90px;
  object-fit: contain; margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 13px; font-weight: 300;
  color: #f0e8d8; line-height: 1.75; max-width: 260px;
}
.footer-brand-desc.dim { color: rgba(240,232,216,0.65); }
.footer-label {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #c9a84c;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.22);
  margin-bottom: 20px;
}
.footer-contact-label {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 300;
  color: rgba(240,232,216,0.5); line-height: 2;
}
.footer-phone {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  color: #f0e8d8 !important; transition: color 0.2s;
}
.footer-phone:hover { color: #c9a84c !important; }
.footer-col li {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 300;
  color: rgba(240,232,216,0.6); line-height: 1.9;
}
.footer-links li { line-height: 2.2; }
.footer-links a {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 300;
  color: rgba(240,232,216,0.6); transition: color 0.2s;
}
.footer-links a:hover { color: #c9a84c; }
.app-badges {
  display: flex; flex-direction: column;
  gap: 14px; justify-content: flex-end;
}
.app-badges a { transition: opacity 0.2s; }
.app-badges a:hover { opacity: 0.85; }
.app-badges img { width: 145px; border-radius: 8px; }
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(201,168,76,0.22);
  padding: 24px 0; text-align: center;
}
.footer-bottom p {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(240,232,216,0.45);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 36px;
  right: 104px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.45);
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8999;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease,
              background 0.25s ease, border-color 0.25s ease;
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#scrollTop:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0a0a0a;
}
#scrollTop svg {
  stroke: currentColor;
  width: 18px;
  height: 18px;
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 1024px) {
  .h1-line1, .h1-line2 { font-size: 80px; }
}
@media (max-width: 768px) {
  .h1-line1, .h1-line2 { font-size: 64px; }
  .hero-content { padding: 0 24px; margin-top: -20px; }
  .hero-ctas { gap: 20px; }
  .hero-btn-primary { padding: 13px 28px; }
  .hero-prev { left: 14px; }
  .hero-next { right: 14px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .h1-line1, .h1-line2 { font-size: 48px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .maison-grid { grid-template-columns: 1fr; }
  .maison-img-wrap { order: -1; }
  .maison-img-wrap img { width: 100%; max-width: 560px; margin: 0 auto; }
  .maison-h2 { font-size: clamp(26px, 5vw, 40px); }
  .container { padding: 0 28px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .nav-logo img { width: 64px; height: 64px; }
}
@media (max-width: 480px) {
  #nav { height: 100px !important; }
  .nav-spacer { height: 100px; }
  .nav-mobile-menu { top: 100px; }
  #hero { height: calc(100vh - 100px); margin-top: -100px; }
}
@media (max-width: 900px) {
  .hc-line1, .hc-line2 {
    font-size: clamp(32px, 5.5vw, 56px);
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .container { padding: 0 20px; }
  #maison, #gallery-section { padding: 80px 0; }
  #handcrafted { min-height: 360px; }
  .hc-line1, .hc-line2 { font-size: 36px; }
  .hc-content { padding: 0 20px; }
  .hc-deco-square { width: 200px; height: 200px; }
  .hero-arrow { display: none; }
  .hero-counter { display: none; }
}
@media (max-width: 900px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 560px) {
  .collection-grid { grid-template-columns: 1fr; gap: 48px; }
  #collection { padding: 80px 0; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
#wa-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8998;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
#wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.08); }
}
#wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* Tooltip */
#wa-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-family: var(--font-ui, sans-serif);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#wa-float:hover::before { opacity: 1; }

@media (max-width: 768px) {
  #wa-float { bottom: 24px; right: 20px; width: 46px; height: 46px; }
  #wa-float svg { width: 22px; height: 22px; }
}

/* ── OCCASIONS & TESTIMONIALS SHARED ── */
#occasions {
  padding: 100px 0 80px;
  background: #080808;
}
#testimonials {
  padding: 80px 0 100px;
  background: #060606;
  overflow: hidden;
}
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow-dash { color: #c9a84c; }
.occasions-h2 {
  font-family: var(--font-ui);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.divider-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(201,168,76,0.2);
}
.divider-diamond { color: var(--gold); font-size: 8px; }

/* ── OCCASIONS GRID ── */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.occasion-card {
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,0.12);
  padding: 44px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.occasion-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.occasion-icon { font-size: 36px; margin-bottom: 20px; }
.occasion-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.occasion-desc {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,232,216,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
}
.occasion-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0b0b0b;
  background: var(--gold);
  padding: 11px 24px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.occasion-btn:hover { opacity: 0.85; }

/* ── TESTIMONIALS ── */
#testi-track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
#testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: testiScroll 38s linear infinite;
}
#testi-track-wrap:hover #testi-track { animation-play-state: paused; }
#testi-track.paused { animation-play-state: paused; }
@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,0.12);
  padding: 32px 28px;
  width: 300px;
  flex-shrink: 0;
}
.testi-stars {
  color: #c9a84c;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,232,216,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-name {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.testi-loc {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 300;
  color: rgba(240,232,216,0.35);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .occasions-grid { grid-template-columns: 1fr; max-width: 340px; }
  .testi-card { width: 260px; padding: 24px 20px; }
}
@media (max-width: 480px) {
  .occasions-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — HOMEPAGE
   Breakpoints: 768px (tablet) | 480px (mobile) | 375px (small)
   ══════════════════════════════════════════ */

/* ── FSC CAROUSEL MOBILE: vertical stack ── */
@media (max-width: 768px) {
  #gallery-section { padding: 60px 0 70px; }
  .fsc-track {
    flex-direction: column;
    height: auto !important;
    gap: 8px;
    padding: 0 20px;
  }
  .fsc-slice {
    width: 100% !important;
    min-width: unset !important;
    height: 220px;
    flex: none;
    border-radius: 12px;
  }
  .fsc-slice.active {
    height: 320px;
  }
  .fsc-arrow { bottom: 16px; right: 16px; }
}

/* ── OCCASIONS ── */
@media (max-width: 768px) {
  #occasions { padding: 60px 0 50px; }
  .occasions-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 16px;
  }
  .occasion-card { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .occasions-grid { max-width: 100%; }
  .occasion-icon { font-size: 28px; margin-bottom: 14px; }
}

/* ── TESTIMONIALS ── */
@media (max-width: 768px) {
  #testimonials { padding: 60px 0 70px; }
  .testi-card { width: 260px; padding: 24px 18px; }
  .testi-quote { font-size: 13px; }
}
@media (max-width: 480px) {
  .testi-card { width: 220px; padding: 20px 16px; }
}

/* ── MAISON ── */
@media (max-width: 768px) {
  .maison-grid { grid-template-columns: 1fr; gap: 32px; }
  .maison-img-wrap { order: -1; }
  .maison-text { padding: 0; }
  #maison { padding: 60px 0; }
}

/* ── COLLECTION ── */
@media (max-width: 768px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  #collection { padding: 60px 0; }
}
@media (max-width: 480px) {
  .collection-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── FOOTER ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  #footer { padding: 60px 0 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo img { width: 70px; height: 70px; }
  .app-badges img { width: 130px; }
  .footer-bottom { margin-top: 36px; }
}

/* ── SCROLL TOP + WHATSAPP ── */
@media (max-width: 768px) {
  #scrollTop { right: 80px; bottom: 24px; width: 40px; height: 40px; }
  #wa-float { bottom: 24px; right: 20px; width: 44px; height: 44px; }
  #wa-float svg { width: 20px; height: 20px; }
  #wa-float::before { display: none; }
}

/* ── SECTION HEADERS ── */
@media (max-width: 768px) {
  .occasions-h2 { font-size: 16px; letter-spacing: 0.16em; }
  .section-header { margin-bottom: 36px; }
}

/* ── GALLERY HEADING ── */
@media (max-width: 768px) {
  .gallery-heading { font-size: clamp(22px, 5vw, 32px); }
  #gallery-section .gallery-sub { font-size: 12px; }
}
