/* ═══════════════════════════════════════════
   JUST SWEET PATISSERIE — PREMIUM CSS
   Design: Warm Luxury · Minimal · Cinematic
   Palette: Cream · Gold · Warm Brown · Blush
═══════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --cream:      #faf7f2;
  --cream-2:    #f5ede3;
  --gold:       #c9a96e;
  --gold-light: #e2c98f;
  --brown:      #3d2314;
  --brown-mid:  #7c4a2a;
  --blush:      #f0ddd1;
  --blush-2:    #e8c9b8;
  --text:       #2b1a0f;
  --text-muted: #7a5c48;
  --white:      #ffffff;
  --dark-bg:    #1a100a;
  --dark-surface:#241609;
  --dark-text:  #f5ede3;
  --shadow-sm:  0 4px 16px rgba(61,35,20,.08);
  --shadow-md:  0 12px 40px rgba(61,35,20,.14);
  --shadow-lg:  0 24px 70px rgba(61,35,20,.18);
  --radius:     18px;
  --radius-lg:  30px;
  --transition: .4s cubic-bezier(.25,.8,.25,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* Dark mode overrides */
body.dark-mode {
  --cream:      #1a100a;
  --cream-2:    #241609;
  --blush:      #2e1a0e;
  --blush-2:    #3a2010;
  --text:       #f5ede3;
  --text-muted: #c4a98c;
  --white:      #2e1a0e;
  --shadow-sm:  0 4px 16px rgba(0,0,0,.3);
  --shadow-md:  0 12px 40px rgba(0,0,0,.4);
  --shadow-lg:  0 24px 70px rgba(0,0,0,.5);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  transition: background var(--transition), color var(--transition);
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blush-2));
  z-index: 9999;
  transition: width .1s linear;
}

/* ─── CUSTOM CURSOR ─── */
#cursor-dot, #cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: opacity .3s;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s;
}
body.cursor-hover #cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold-light);
}
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0;
  background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity .8s ease, transform .8s ease;
}
#loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-logo { width: 220px; }
.loader-text-svg {
  font-family: var(--font-display);
  font-size: 36px;
  fill: var(--gold);
  letter-spacing: 2px;
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.15);
  margin: 20px auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loaderFill 1.6s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 50%;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s, background .3s;
  box-shadow: var(--shadow-md);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--gold-light); }

/* ─── THEME TOGGLE ─── */
#theme-toggle {
  position: fixed;
  bottom: 32px; left: 32px;
  width: 48px; height: 48px;
  background: var(--cream-2);
  color: var(--brown);
  border-radius: 50%;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow-md);
  transition: background .3s, color .3s, transform .3s;
  border: 1.5px solid var(--blush-2);
}
#theme-toggle:hover { transform: rotate(20deg); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 152px;
  display: flex; align-items: center;
  padding: 0 5%;
  z-index: 800;
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(250,247,242,.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 0 rgba(201,169,110,.2);
}
body.dark-mode #navbar.scrolled {
  background: rgba(26,16,10,.88);
}
.nav-logo {
  display: flex; align-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-right: auto;
}
.logo-serif { line-height: 1; }
.nav-links {
  display: flex; gap: 36px;
  margin: 0 auto;
}
.nav-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 100px;
  transition: background .3s, color .3s;
  margin-left: auto;
}
.nav-cta:hover { background: var(--gold); color: var(--brown); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 75vw; max-width: 340px;
  height: 100vh;
  background: var(--cream);
  z-index: 790;
  display: flex; flex-direction: column;
  padding: 100px 40px 40px;
  gap: 28px;
  box-shadow: -20px 0 60px rgba(0,0,0,.1);
  transition: right .4s cubic-bezier(.77,0,.18,1);
}
.mobile-nav.open { right: 0; }
.mobile-nav .nav-link {
  font-size: 20px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}
.mobile-cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 100px;
  text-align: center;
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
  gap: 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
#particle-canvas {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--brown);
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-title .italic-line {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.line-reveal {
  display: block;
  overflow: hidden;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--brown);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1px solid var(--blush-2);
  color: var(--brown);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--brown);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
  transition: background .3s, transform .3s;
}
.btn-light:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Hero visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-img-wrap {
  position: relative;
  display: inline-block;
}
.hero-img {
  width: 420px;
  max-width: 90vw;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  object-fit: cover;
  height: 540px;
  box-shadow: var(--shadow-lg);
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.hero-img-badge {
  position: absolute;
  bottom: 32px; right: -28px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 100px;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.7); opacity: .5; }
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--brown);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION SHARED ─── */
section { padding: 100px 5%; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.light-eyebrow { color: var(--gold-light) !important; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.15;
}
body.dark-mode .section-header h2 { color: var(--dark-text); }

/* ─── SERVICES ─── */
#services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .4s, box-shadow .4s, border-color .4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--cream-2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: var(--brown); color: var(--gold-light); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.service-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
}
.service-link:hover { gap: 14px; }

/* ─── FEATURED / CAROUSEL ─── */
#featured { background: var(--cream-2); }
.cake-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 60px;
}
.cake-carousel {
  display: flex;
  gap: 28px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.cake-slide {
  flex: 0 0 calc(33.33% - 18px);
  text-align: center;
}
.cake-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.cake-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .5s;
}
.cake-img-wrap:hover img { transform: scale(1.06); }
.cake-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,35,20,.7), transparent);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s;
  border-radius: var(--radius-lg);
}
.cake-img-wrap:hover .cake-overlay { opacity: 1; }
.cake-overlay span {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cake-slide h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 4px;
}
.cake-slide p { font-size: 13px; color: var(--gold); letter-spacing: 1px; }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--blush-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  transition: background .3s, color .3s;
  z-index: 10;
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-btn:hover { background: var(--gold); color: var(--white); }

/* Signature highlight */
.signature-highlight {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sig-image { flex: 0 0 420px; }
.sig-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.sig-text {
  flex: 1;
  padding: 60px 60px 60px 0;
}
.sig-text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--brown);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.sig-text p {
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 420px;
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--cream);
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}
.about-image {
  flex: 1;
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform .5s;
}
.about-image:hover img { transform: scale(1.02); }
.about-badge {
  position: absolute;
  top: 32px; right: -24px;
  background: var(--gold);
  color: var(--brown);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.badge-since {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.about-text { flex: 1; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.2;
  margin: 12px 0 24px;
}
.about-text h2 em { color: var(--gold); font-style: italic; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--blush);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── WEDDING ─── */
.wedding-section {
  background: var(--brown);
  padding: 0;
  overflow: hidden;
}
.wedding-inner {
  display: flex;
  align-items: stretch;
  min-height: 580px;
}
.wedding-text {
  flex: 1;
  padding: 80px 60px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.wedding-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 12px 0 24px;
}
.wedding-text p { color: var(--blush-2); font-size: 16px; margin-bottom: 36px; max-width: 420px; }
.wedding-img {
  flex: 0 0 480px;
  overflow: hidden;
}
.wedding-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.wedding-img:hover img { transform: scale(1.04); }

/* ─── GALLERY ─── */
#gallery { background: var(--cream-2); }
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: none;
}
.gallery-item img {
  width: 100%;
  transition: transform .5s;
  display: block;
}
.gallery-item.tall img { height: 400px; object-fit: cover; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(61,35,20,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .4s;
  font-size: 22px;
  color: var(--gold-light);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: lbFadeIn .3s ease;
}
@keyframes lbFadeIn { from { opacity:0; transform:scale(.95); } to { opacity:1; transform:scale(1); } }
#lb-close, #lb-prev, #lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: var(--gold-light);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .3s;
}
#lb-close:hover, #lb-prev:hover, #lb-next:hover { background: var(--gold); color: var(--brown); }
#lb-close { top: 24px; right: 24px; }
#lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
#lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ─── PLAYGROUND ─── */
.playground-section {
  background: var(--cream);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  min-height: 600px;
}
.playground-left, .playground-right {
  flex: 0 0 380px;
  overflow: hidden;
  height: 600px;
}
.playground-left img, .playground-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.playground-left { border-radius: 0 200px 0 0; }
.playground-right { border-radius: 200px 0 0 0; }
.playground-left:hover img, .playground-right:hover img { transform: scale(1.05); }
.playground-center {
  flex: 1;
  text-align: center;
  padding: 60px 60px;
}
.playground-center h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--brown);
  margin: 12px 0 20px;
}
.playground-center p {
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 400px;
  margin-left: auto; margin-right: auto;
}
.play-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
  margin: 0 auto;
}
.play-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: 100px;
  border: 1px solid var(--blush);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
}
.play-feat i { color: var(--gold); font-size: 14px; }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--brown); padding: 100px 5%; }
#testimonials .section-header .eyebrow { color: var(--gold-light); }
#testimonials .section-header h2 {
  font-family: var(--font-display);
  color: var(--cream);
}
.testimonial-slider {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform .5s cubic-bezier(.25,.8,.25,1);
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 18px);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: transform .4s, border-color .4s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,.5);
}
.stars {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: var(--blush);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
}
.reviewer span {
  font-size: 11px;
  color: var(--blush-2);
  letter-spacing: 1px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── FOOTER ─── */
#footer {
  background: var(--brown);
  border-top: 1px solid rgba(201,169,110,.15);
  padding: 80px 5% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-brand p {
  color: var(--blush-2);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 300px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: 100px;
  overflow: hidden;
  max-width: 320px;
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 20px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(240,221,209,.45); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 100px;
  font-size: 14px;
  transition: background .3s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gold-light);
  min-height: 18px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--blush-2);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.soc-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 16px;
  transition: background .3s, border-color .3s, transform .3s;
}
.soc-icon:hover {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.footer-tagline {
  color: rgba(240,221,209,.4) !important;
  font-style: italic;
  font-size: 13px !important;
  font-family: var(--font-display);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  color: rgba(240,221,209,.35);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.scroll-reveal, .reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.scroll-reveal.visible, .reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MENU PAGE ─── */
/* (Imported via menu.html with this same CSS) */
.menu-page-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  display: flex; align-items: flex-end;
  padding: 120px 5% 60px;
}
.menu-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  color: var(--brown);
}
.menu-page-hero em { color: var(--gold); font-style: italic; }

.menu-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 48px;
  padding: 0 5%;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--blush-2);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  transition: all .3s;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--brown);
  color: var(--gold-light);
  border-color: var(--brown);
}

.menu-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5% 80px;
}
.menu-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--blush);
  transition: transform .3s;
}
.menu-item-card:hover { transform: translateX(6px); }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 4px;
}
.menu-item-desc { font-size: 13px; color: var(--text-muted); }
.menu-item-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 20px;
}
.menu-item-card.hidden { display: none; }

/* ─── ADDRESS PAGE ─── */
.contact-section {
  padding: 120px 5% 80px;
}
.contact-container {
  max-width: 820px;
  margin: 0 auto;
}
.contact-container h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 8px;
}
.contact-container .subtitle { color: var(--text-muted); margin-bottom: 40px; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }
.contact-info { margin-bottom: 36px; }
.contact-info p { margin: 8px 0; color: var(--text-muted); font-size: 15px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  border: 1px solid var(--blush-2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}
.contact-form button {
  padding: 16px;
  background: var(--brown);
  color: var(--gold-light);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.contact-form button:hover { background: var(--brown-mid); transform: translateY(-2px); }
.field-error { border-color: #c0392b !important; }
.form-success {
  padding: 16px 20px;
  background: rgba(201,169,110,.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 14px;
  text-align: center;
  display: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cake-slide { flex: 0 0 calc(50% - 14px); }
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
  .signature-highlight { flex-direction: column; }
  .sig-image { flex: auto; }
  .sig-image img { width: 100%; height: 380px; }
  .sig-text { padding: 40px; }
  .wedding-img { flex: 0 0 380px; }
}

@media (max-width: 768px) {
  #hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-visual { width: 100%; }
  .hero-img { width: 100%; height: 400px; border-radius: var(--radius-lg); }
  .hero-img-badge { right: 12px; }
  .hero-scroll-hint { display: none; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-section { flex-direction: column; padding: 60px 5%; }
  .about-badge { right: 12px; }
  .about-stats { gap: 24px; }

  .gallery-masonry { columns: 2; }

  .playground-section { flex-direction: column; }
  .playground-left, .playground-right { flex: auto; width: 100%; border-radius: var(--radius-lg); height: 280px; }
  .playground-center { padding: 40px 20px; }

  .wedding-inner { flex-direction: column; }
  .wedding-text { padding: 60px 40px; }
  .wedding-img { flex: auto; height: 300px; }

  .testimonial-card { flex: 0 0 calc(90vw); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .cake-carousel-wrap { padding: 0 44px; }
  .cake-slide { flex: 0 0 calc(80vw); }

  section { padding: 60px 5%; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .hero-title { font-size: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 16px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}