/* =========================================================
   Cookie and Kace - Main Stylesheet
   Warm Bakery palette | Modern Artisan vibe
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;600;700&display=swap');

/* ---------- CSS Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---------- Variables ---------- */
:root {
  --cream: #FDF6EC;
  --cream-2: #F7ECD9;
  --chocolate: #4A2C1A;
  --chocolate-dark: #2A1810;
  --caramel: #C68B59;
  --caramel-light: #E0B088;
  --rose: #E8A0A8;
  --rose-light: #F5D0D4;
  --text: #2A1810;
  --text-soft: #6B4A37;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(74, 44, 26, 0.08);
  --shadow-md: 0 12px 32px rgba(74, 44, 26, 0.12);
  --shadow-lg: 0 24px 60px rgba(74, 44, 26, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Base Typography ---------- */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(232, 160, 168, 0.08), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(198, 139, 89, 0.10), transparent 45%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--chocolate-dark);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

.script {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--caramel);
  font-size: 1.4em;
  display: inline-block;
  transform: rotate(-2deg);
}

p { color: var(--text-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--caramel);
}
.section-eyebrow::after { display: none; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--chocolate); color: var(--cream); }
.btn-primary:hover { background: var(--chocolate-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232,160,168,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-outline { background: transparent; color: var(--chocolate); border-color: var(--chocolate); }
.btn-outline:hover { background: var(--chocolate); color: var(--cream); transform: translateY(-3px); }
.btn-ghost { background: var(--white); color: var(--chocolate); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ebe57; transform: translateY(-3px); box-shadow: 0 12px 24px rgba(37,211,102,0.35); }

.btn .arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 30px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-cookie {
  width: 90px; height: 90px; position: relative;
  background: radial-gradient(circle at 30% 30%, var(--caramel-light), var(--caramel) 60%, var(--chocolate));
  border-radius: 50%;
  box-shadow: inset -8px -8px 18px rgba(42,24,16,0.4), 0 10px 30px rgba(74,44,26,0.25);
  animation: cookieBake 1.6s var(--ease-out) infinite;
}
.loader-cookie::before, .loader-cookie::after {
  content: ''; position: absolute; border-radius: 50%; background: var(--chocolate-dark);
}
.loader-cookie::before { width: 14px; height: 14px; top: 20%; left: 30%; box-shadow: 24px 12px 0 -2px var(--chocolate-dark), -6px 28px 0 -3px var(--chocolate-dark); }
.loader-cookie::after { width: 10px; height: 10px; bottom: 22%; right: 24%; box-shadow: -18px -6px 0 -1px var(--chocolate-dark); }
.loader-text {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--chocolate);
  letter-spacing: 0.3em; text-transform: uppercase;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes cookieBake {
  0%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
  50% { transform: scale(1.08) rotate(8deg); filter: brightness(1.1); }
}
@keyframes pulse { 0%,100% {opacity: 0.6;} 50% {opacity: 1;} }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(253, 246, 236, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(74,44,26,0.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.5rem; color: var(--chocolate-dark);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--caramel-light), var(--caramel) 60%, var(--chocolate));
  position: relative; flex-shrink: 0;
  box-shadow: inset -3px -3px 6px rgba(42,24,16,0.35);
  transition: transform 0.5s var(--ease-out);
}
.logo:hover .logo-mark { transform: rotate(20deg) scale(1.08); }
.logo-mark::before, .logo-mark::after {
  content: ''; position: absolute; background: var(--chocolate-dark); border-radius: 50%;
}
.logo-mark::before { width: 6px; height: 6px; top: 25%; left: 35%; box-shadow: 10px 5px 0 -1px var(--chocolate-dark), -3px 12px 0 -2px var(--chocolate-dark); }
.logo-mark::after { width: 5px; height: 5px; bottom: 28%; right: 25%; }
.logo-text small {
  display: block; font-family: 'Caveat', cursive; font-size: 0.85rem;
  color: var(--caramel); font-weight: 600; letter-spacing: 0; line-height: 1;
  margin-top: -2px;
}

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  position: relative; padding: 10px 16px;
  font-size: 0.95rem; font-weight: 500; color: var(--chocolate);
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--caramel);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 24px; }
.nav-links a:hover, .nav-links a.active { color: var(--caramel); }
.nav-cta { margin-left: 10px; padding: 10px 22px !important; font-size: 0.9rem !important; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm);
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--chocolate);
  border-radius: 2px; transition: all 0.4s var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: var(--white); border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 500; color: var(--chocolate);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(40px); animation: wordIn 0.9s var(--ease-out) forwards; }
.hero h1 .word:nth-child(1) { animation-delay: 0.2s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.35s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.5s; }
.hero h1 .word:nth-child(4) { animation-delay: 0.65s; }
.hero h1 .word:nth-child(5) { animation-delay: 0.8s; }
.hero h1 .word:nth-child(6) { animation-delay: 0.95s; }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }
.hero p.lead { font-size: 1.15rem; max-width: 540px; margin-bottom: 36px; opacity: 0; animation: fadeIn 1s 1.1s var(--ease-out) forwards; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeIn 1s 1.3s var(--ease-out) forwards; }
.hero-stats { display: flex; gap: 32px; margin-top: 56px; opacity: 0; animation: fadeIn 1s 1.5s var(--ease-out) forwards; }
.stat { }
.stat .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--chocolate-dark); font-weight: 700; line-height: 1; }
.stat .lbl { font-size: 0.85rem; color: var(--text-soft); margin-top: 4px; }
@keyframes fadeIn { to { opacity: 1; } }

/* Hero visual */
.hero-visual {
  position: relative; aspect-ratio: 1 / 1; max-width: 540px; margin-left: auto;
}
.hero-disc {
  position: absolute; inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--caramel-light), var(--caramel) 55%, var(--chocolate) 100%);
  box-shadow: inset -30px -30px 60px rgba(42,24,16,0.4), 0 40px 80px rgba(74,44,26,0.25);
  animation: floatY 6s ease-in-out infinite;
}
.hero-disc::before, .hero-disc::after {
  content: ''; position: absolute; border-radius: 50%; background: var(--chocolate-dark);
}
.hero-disc::before {
  width: 30px; height: 30px; top: 22%; left: 30%;
  box-shadow:
    60px 20px 0 -3px var(--chocolate-dark),
    140px 60px 0 -5px var(--chocolate-dark),
    -10px 90px 0 -2px var(--chocolate-dark),
    120px 140px 0 -6px var(--chocolate-dark),
    50px 180px 0 -3px var(--chocolate-dark);
}
.hero-disc::after {
  width: 20px; height: 20px; bottom: 25%; right: 30%;
  box-shadow: -80px -30px 0 -2px var(--chocolate-dark), -130px 30px 0 -5px var(--chocolate-dark);
}
.hero-ring {
  position: absolute; inset: 0; border: 2px dashed rgba(198,139,89,0.5); border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.hero-badge {
  position: absolute; width: 130px; height: 130px; border-radius: 50%;
  background: var(--rose); color: var(--white);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.95rem; padding: 16px; line-height: 1.2;
  bottom: -10px; left: -10px;
  box-shadow: var(--shadow-md);
  animation: floatY 4s ease-in-out infinite, rotate 14s linear infinite;
}
.hero-sprinkle {
  position: absolute; pointer-events: none;
}
.sprinkle { position: absolute; width: 10px; height: 4px; border-radius: 2px; animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes rotate { to { transform: rotate(360deg); } }

/* ---------- Specialties Strip ---------- */
.specialties {
  background: var(--chocolate);
  color: var(--cream);
  padding: 70px 0;
  overflow: hidden;
}
.specialties-track {
  display: flex; gap: 60px; align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.specialties-track:hover { animation-play-state: paused; }
.spec-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.6rem; color: var(--cream);
}
.spec-dot { width: 10px; height: 10px; background: var(--caramel); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Menu Categories ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border: 1px solid rgba(198,139,89,0.18);
}
.menu-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(232,160,168,0.15), transparent 50%);
  opacity: 0; transition: opacity 0.6s ease;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-card:hover::before { opacity: 1; }
.menu-card .cat-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.95rem; color: var(--caramel); margin-bottom: 12px;
}
.menu-card .cat-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), var(--caramel-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .cat-icon { transform: rotate(-10deg) scale(1.08); }
.menu-card .cat-icon svg { width: 32px; height: 32px; stroke: var(--chocolate); }
.menu-card h3 { margin-bottom: 8px; }
.menu-card .price-range {
  display: inline-block; margin-top: 4px; padding: 4px 12px;
  background: var(--cream-2); border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; color: var(--chocolate); letter-spacing: 0.04em;
}
.menu-card p { font-size: 0.95rem; margin-top: 12px; }
.flavour-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; position: relative; z-index: 1; }
.pill {
  font-size: 0.78rem;
  padding: 5px 11px;
  background: var(--cream);
  border: 1px solid var(--caramel-light);
  border-radius: var(--radius-pill);
  color: var(--chocolate);
  transition: all 0.3s ease;
}
.pill:hover { background: var(--caramel); color: var(--cream); border-color: var(--caramel); }
.menu-card-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font-weight: 600; color: var(--caramel); font-size: 0.95rem; }
.menu-card-cta span { transition: transform 0.4s var(--ease-out); }
.menu-card:hover .menu-card-cta span { transform: translateX(4px); }

/* ---------- Story / About ---------- */
.story { background: var(--cream-2); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img-stack { position: relative; aspect-ratio: 4 / 5; }
.story-img {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--caramel-light), var(--caramel));
  box-shadow: var(--shadow-lg);
}
.story-img-1 { top: 0; left: 0; width: 65%; height: 70%; background: linear-gradient(135deg, var(--rose-light), var(--rose)); }
.story-img-2 { bottom: 0; right: 0; width: 60%; height: 60%; background: linear-gradient(135deg, var(--caramel-light), var(--chocolate)); }
.story-img-1::after, .story-img-2::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 50%);
}
.story h2 { margin-bottom: 22px; }
.story-features { display: grid; gap: 18px; margin-top: 32px; }
.story-feature { display: flex; gap: 16px; align-items: flex-start; }
.story-feature .ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.story-feature .ico svg { width: 22px; height: 22px; stroke: var(--caramel); }
.story-feature h4 { font-size: 1.1rem; margin-bottom: 4px; color: var(--chocolate-dark); }
.story-feature p { font-size: 0.95rem; }

/* ---------- Locations ---------- */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.location-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border: 1px solid rgba(198,139,89,0.18);
  position: relative; overflow: hidden;
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.location-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--rose-light); color: var(--chocolate-dark);
  border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
}
.location-card h3 { margin-bottom: 10px; }
.location-card .addr { font-size: 1rem; color: var(--text-soft); margin-bottom: 22px; line-height: 1.6; }
.location-meta { display: grid; gap: 12px; margin-bottom: 24px; }
.location-meta-row { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.location-meta-row svg { width: 18px; height: 18px; stroke: var(--caramel); flex-shrink: 0; }
.map-frame {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 16/10; margin-top: 24px;
  border: 1px solid rgba(198,139,89,0.2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(0.95); }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--chocolate-dark);
  color: var(--cream);
}
.testimonials h2, .testimonials .section-eyebrow { color: var(--cream); }
.testimonials .section-eyebrow { color: var(--caramel-light); }
.testimonials .section-eyebrow::before { background: var(--caramel-light); }
.testimonials p.lead { color: rgba(253,246,236,0.7); }
.testimonial-track-wrap { overflow: hidden; mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); -webkit-mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.testimonial-track { display: flex; gap: 24px; animation: marquee 40s linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial {
  min-width: 380px;
  background: rgba(253,246,236,0.05);
  border: 1px solid rgba(253,246,236,0.1);
  padding: 32px; border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.testimonial .stars { color: var(--caramel-light); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--cream); line-height: 1.5; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial .who-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--caramel), var(--rose)); }
.testimonial .who-name { font-weight: 600; color: var(--cream); }
.testimonial .who-loc { font-size: 0.85rem; color: rgba(253,246,236,0.6); }

/* ---------- Instagram Grid ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
}
.insta-tile {
  aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.5s var(--ease-out);
}
.insta-tile:hover { transform: scale(1.04); z-index: 2; }
.insta-tile-bg { position: absolute; inset: 0; transition: transform 0.6s var(--ease-out); }
.insta-tile:hover .insta-tile-bg { transform: scale(1.1); }
.insta-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,44,26,0.85), transparent 50%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 16px;
  color: var(--cream); font-size: 0.85rem; font-weight: 500;
}
.insta-tile:hover .insta-tile-overlay { opacity: 1; }
.insta-cta { text-align: center; margin-top: 40px; }

/* Mock gradients for insta tiles */
.bg-1 { background: linear-gradient(135deg, #C68B59, #4A2C1A); }
.bg-2 { background: linear-gradient(135deg, #E8A0A8, #C68B59); }
.bg-3 { background: linear-gradient(135deg, #F7ECD9, #C68B59); }
.bg-4 { background: linear-gradient(135deg, #E0B088, #4A2C1A); }
.bg-5 { background: linear-gradient(135deg, #4A2C1A, #2A1810); }
.bg-6 { background: linear-gradient(135deg, #F5D0D4, #E8A0A8); }
.bg-7 { background: linear-gradient(135deg, #C68B59, #E8A0A8); }
.bg-8 { background: linear-gradient(135deg, #FDF6EC, #E0B088); }
.bg-9 { background: linear-gradient(135deg, #2A1810, #C68B59); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  margin: 0 var(--gutter) clamp(40px, 6vw, 80px);
  padding: clamp(50px, 7vw, 90px);
  background: linear-gradient(135deg, var(--chocolate), var(--chocolate-dark));
  border-radius: var(--radius-lg);
  text-align: center; color: var(--cream);
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; border-radius: 50%; opacity: 0.18;
}
.cta-banner::before { width: 300px; height: 300px; background: var(--rose); top: -100px; left: -100px; animation: floatY 8s ease-in-out infinite; }
.cta-banner::after { width: 260px; height: 260px; background: var(--caramel); bottom: -80px; right: -80px; animation: floatY 7s ease-in-out infinite reverse; }
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--cream); margin-bottom: 12px; }
.cta-banner p { color: rgba(253,246,236,0.85); margin-bottom: 28px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { color: var(--cream); border-color: var(--cream); }
.cta-banner .btn-outline:hover { background: var(--cream); color: var(--chocolate); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--chocolate-dark);
  color: rgba(253,246,236,0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px; margin-bottom: 60px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 18px; }
.footer-brand p { color: rgba(253,246,236,0.6); font-size: 0.95rem; max-width: 320px; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--caramel-light); margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.95rem; }
.footer-col ul li a { transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--caramel-light); }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(253,246,236,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.footer-socials a:hover { background: var(--caramel); transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; stroke: var(--cream); fill: none; }
.footer-bottom {
  border-top: 1px solid rgba(253,246,236,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem; color: rgba(253,246,236,0.5);
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.4s var(--ease-out);
  animation: waPulse 2.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 32px; height: 32px; fill: white; }
.float-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366;
  animation: waRing 2.4s ease-out infinite;
}
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 32px rgba(37,211,102,0.4); } 50% { box-shadow: 0 12px 50px rgba(37,211,102,0.7); } }
@keyframes waRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-left.is-visible { transform: translateX(0); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-right.is-visible { transform: translateX(0); }
.reveal.zoom { transform: scale(0.94); }
.reveal.zoom.is-visible { transform: scale(1); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.crumbs { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: 0.85rem; color: var(--text-soft); }
.crumbs a:hover { color: var(--caramel); }

/* ---------- Menu Page ---------- */
.menu-filter {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--chocolate);
  font-size: 0.9rem; font-weight: 500;
  border: 1px solid rgba(198,139,89,0.3);
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--chocolate); color: var(--cream); border-color: var(--chocolate); }

.menu-section { margin-bottom: 80px; }
.menu-section.hidden { display: none; }
.menu-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 36px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(198,139,89,0.25);
}
.menu-section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.menu-section-head .meta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.menu-section .price-range { background: var(--white); }
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.menu-item {
  padding: 28px 26px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(198,139,89,0.18);
  transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.menu-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--caramel); }
.menu-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--caramel);
  transition: height 0.5s var(--ease-out);
}
.menu-item:hover::before { height: 100%; }
.menu-item .num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.85rem; color: var(--caramel); margin-bottom: 8px;
}
.menu-item h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--chocolate-dark); margin-bottom: 8px; }
.menu-item p { font-size: 0.9rem; }
.menu-item .tag {
  display: inline-block; margin-top: 14px; padding: 4px 10px;
  background: var(--cream-2); border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 600; color: var(--chocolate); letter-spacing: 0.04em;
}

/* ---------- About page extras ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.value-card {
  text-align: center; padding: 40px 30px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(198,139,89,0.18);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .ico {
  width: 70px; height: 70px; margin: 0 auto 22px;
  border-radius: 50%; background: linear-gradient(135deg, var(--rose-light), var(--rose));
  display: flex; align-items: center; justify-content: center;
}
.value-card .ico svg { width: 32px; height: 32px; stroke: var(--white); }
.value-card h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-methods { display: grid; gap: 20px; }
.contact-method {
  display: flex; gap: 20px; align-items: center;
  padding: 24px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid rgba(198,139,89,0.18);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.contact-method:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-method .ico {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), var(--caramel-light));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method .ico svg { width: 24px; height: 24px; stroke: var(--chocolate); }
.contact-method h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 4px; }
.contact-method p { color: var(--chocolate-dark); font-weight: 600; font-size: 1.05rem; }

.hours-card { padding: 36px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(198,139,89,0.18); }
.hours-card h3 { margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(198,139,89,0.25); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--chocolate-dark); }
.hours-row .time { color: var(--text-soft); }

/* ---------- Corporate page ---------- */
.corp-hero { background: linear-gradient(135deg, var(--cream-2), var(--cream)); }
.corp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.corp-points { display: grid; gap: 18px; margin-top: 28px; }
.corp-point { display: flex; gap: 14px; align-items: flex-start; }
.corp-point .check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--caramel); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.corp-hampers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.hamper-card {
  padding: 30px; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(198,139,89,0.18);
  transition: all 0.4s var(--ease-out); text-align: center;
}
.hamper-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--caramel); }
.hamper-card .disc {
  width: 100px; height: 100px; margin: 0 auto 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--caramel));
  position: relative; overflow: hidden;
}
.hamper-card .disc::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 60%);
}
.hamper-card h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 8px; }
.hamper-card p { font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .story-grid, .contact-grid, .corp-grid { grid-template-columns: 1fr; }
  .hero-visual { margin: 0 auto; max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: var(--gutter); right: var(--gutter);
    background: var(--white); border-radius: var(--radius-md);
    padding: 16px; box-shadow: var(--shadow-md); margin-top: 12px;
    animation: slideDown 0.4s var(--ease-out);
  }
  .nav-links.open a { width: 100%; padding: 14px 18px; border-radius: var(--radius-sm); }
  .nav-links.open a:hover { background: var(--cream); }
  .nav-links.open a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 640px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial { min-width: 300px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat .num { font-size: 1.8rem; }
  .spec-item { font-size: 1.2rem; }
  .float-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* =========================================================
   Celebration cake landing pages — image slots, gallery,
   nav dropdown, inline lead-gen blocks
   ========================================================= */

/* Image slot: drop a real <img> in and it covers the labelled
   placeholder. If the file is missing, onerror hides the img and
   the friendly placeholder shows instead. */
.ck-shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--rose-light), var(--caramel-light));
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.ck-shot.tall { aspect-ratio: 4 / 5; }
.ck-shot.wide { aspect-ratio: 16 / 10; }
.ck-shot img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-out); }
.ck-shot:hover img { transform: scale(1.05); }
.ck-ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 20px; text-align: center; color: var(--chocolate);
}
.ck-ph svg { width: 42px; height: 42px; opacity: 0.55; stroke: var(--chocolate); }
.ck-ph span { font-size: 0.82rem; font-weight: 600; opacity: 0.8; }
.ck-ph small { font-family: monospace; font-size: 0.7rem; opacity: 0.5; }

.ck-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* Inline lead-gen strip (reuses .cta-banner look, tighter) */
.lead-strip { text-align: center; margin: 0 auto; max-width: 760px; }
.lead-strip .btn-wa svg { width: 20px; height: 20px; }

/* FAQ list */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.faq-item h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--chocolate-dark); margin-bottom: 8px; }
.faq-item p { font-size: 0.95rem; }

/* Nav "Cakes" dropdown */
.nav-dropdown { position: relative; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 4px; }
.nav-drop-toggle .caret { font-size: 0.7em; transition: transform 0.3s var(--ease-out); }
.nav-dropdown:hover .caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 210px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out); z-index: 50;
}
.nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px); }
.nav-drop-menu a { display: block; padding: 11px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; white-space: nowrap; }
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: var(--cream); color: var(--caramel); }

/* On mobile the dropdown items just flow inside the open menu */
@media (max-width: 980px) {
  .nav-dropdown { width: 100%; }
  .nav-drop-toggle .caret { display: none; }
  .nav-drop-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; padding: 0 0 0 14px; min-width: 0; background: transparent;
  }
}

/* Related-pages cross links */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.related-card { display: block; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out); }
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.related-card .ck-shot { border-radius: 0; aspect-ratio: 16 / 10; }
.related-card .rc-body { padding: 22px 24px; }
.related-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.related-card p { font-size: 0.92rem; }
.related-card .menu-card-cta { margin-top: 14px; display: inline-flex; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
