/* ============================================
   BAKE N CAKE — Artisanal Patisserie
   Design System & Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300;1,600&display=swap');

/* ─── Design Tokens ─────────────────────────── */
:root {
  --primary:           #a83254;
  --primary-dark:      #7d1e39;
  --primary-light:     #f7d6df;
  --primary-glow:      rgba(168, 50, 84, 0.18);

  --secondary:         #7c5641;
  --secondary-light:   #fdc9af;
  --tertiary:          #84531a;
  --tertiary-light:    #fbb976;

  --surface:           #fff8f1;
  --surface-low:       #f9f3eb;
  --surface-mid:       #f4ede5;
  --surface-high:      #eee7df;
  --surface-highest:   #e8e1da;
  --surface-dim:       #dfd9d1;

  --on-surface:        #1e1b17;
  --on-surface-var:    #4f4445;
  --on-primary:        #ffffff;
  --outline:           #807475;
  --outline-var:       #d2c3c4;

  --ff-display:   'Playfair Display', serif;
  --ff-heading:   'Cormorant Garamond', serif;
  --ff-body:      'Plus Jakarta Sans', sans-serif;

  --radius-sm:    0.75rem;
  --radius-md:    1.25rem;
  --radius-lg:    2rem;
  --radius-xl:    3rem;
  --radius-full:  9999px;

  --shadow-sm:    0 2px 12px rgba(90, 56, 37, 0.06);
  --shadow-md:    0 8px 32px rgba(90, 56, 37, 0.10);
  --shadow-lg:    0 20px 60px rgba(90, 56, 37, 0.14);
  --shadow-glow:  0 0 40px rgba(168, 50, 84, 0.20);

  --transition:   0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── Reset & Base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--surface);
  color: var(--on-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

::selection {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ─── Utility ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.puffy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.12), var(--shadow-sm);
  cursor: pointer;
  border: none;
}
.puffy-btn:hover { transform: scale(1.05) translateY(-2px); box-shadow: inset 0 -4px 0 rgba(0,0,0,0.12), var(--shadow-md); }
.puffy-btn:active { transform: scale(0.97) translateY(0); }

.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-ghost {
  background: var(--surface-highest);
  color: var(--secondary);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.06), var(--shadow-sm);
  border: 2px solid rgba(168, 50, 84, 0.08);
}
.btn-ghost:hover { background: var(--surface-high); }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ─── Navigation ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 248, 241, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(210, 195, 196, 0.3);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}
.nav.scrolled {
  background: rgba(255, 248, 241, 0.96);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  max-width: 1320px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-icon-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background var(--transition-fast), transform var(--transition);
}
.nav-icon-btn:hover { background: var(--primary-light); transform: scale(1.1); }

/* Mobile Nav Toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 100%; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255, 248, 241, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--outline-var);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--outline-var); }
.mobile-menu ul li a {
  display: block;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary);
  transition: color var(--transition-fast), padding-left 0.2s ease;
}
.mobile-menu ul li a:hover { color: var(--primary); padding-left: 0.5rem; }
.mobile-menu-cta {
  margin-top: 1.5rem;
}

/* ─── Hero Section ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-blob-right {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
}
.hero-blob-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 10rem;
  opacity: 0.95;
}

.hero-blob-left {
  position: absolute;
  bottom: -5%;
  left: -3%;
  width: 30%;
  height: 65%;
}
.hero-blob-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 8rem;
  opacity: 0.85;
}

/* Noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(255,248,241,0) 0%, rgba(255,248,241,0.55) 100%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,248,241,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vh, 6rem) 0;
  max-width: 640px;
  padding-left: clamp(1.25rem, 4vw, 3rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--on-surface);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, #c94b6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--on-surface-var);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--outline);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce-down 2s ease-in-out infinite;
}
.hero-scroll-hint .scroll-arrow {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Floating particles on hero */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.particle-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(168, 50, 84, 0.07) 0%, transparent 70%);
  top: 10%; left: 20%;
  animation: float-slow 8s ease-in-out infinite;
}
.particle-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(132, 83, 26, 0.08) 0%, transparent 70%);
  bottom: 15%; right: 45%;
  animation: float-slow 10s ease-in-out infinite 2s;
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

/* ─── Stats Strip ─────────────────────────────── */
.stats-strip {
  background: var(--primary);
  color: var(--on-primary);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.stats-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-strip 28s linear infinite;
}
.stats-strip-track:hover { animation-play-state: paused; }
.stats-strip-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 3rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.stats-strip-item .dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
.stats-strip-item .stat-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.25rem;
}
@keyframes marquee-strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Menu Section ────────────────────────────── */
.menu-section {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--surface-low);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  flex-wrap: wrap;
}

.menu-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 480px;
}

.menu-subtitle {
  font-size: 1rem;
  color: var(--on-surface-var);
  max-width: 340px;
  margin-top: 1rem;
  line-height: 1.75;
}

.menu-filters {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.filter-chip {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.filter-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chip-secondary { background: var(--secondary-light); color: var(--secondary); }
.chip-primary { background: var(--primary-light); color: var(--primary); }

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Card 1: Cupcakes - wide */
.card-cupcakes {
  grid-column: span 8;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.card-cupcakes .card-img {
  position: absolute;
  inset: 0;
}
.card-cupcakes .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.bento-card:hover .card-img img { transform: scale(1.07); }
.card-cupcakes .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,248,241,0.97) 0%,
    rgba(255,248,241,0.9) 40%,
    rgba(255,248,241,0.3) 70%,
    transparent 100%);
}
.card-cupcakes .card-body { position: relative; z-index: 2; max-width: 320px; }

/* Card 2: Dessert Cups - narrow tall */
.card-desserts {
  grid-column: span 4;
  background: var(--surface-high);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card 3: Marshmallow - square */
.card-marshmallow {
  grid-column: span 4;
  padding: 2rem;
}

/* Card 4: Napolitaine */
.card-napo {
  grid-column: span 4;
  background: var(--primary);
  color: var(--on-primary);
  padding: 2rem;
}

/* Card 5: Tartes */
.card-tartes {
  grid-column: span 4;
  background: var(--surface-highest);
  padding: 2rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.card-tartes .card-tag, .card-napo .card-tag { color: rgba(255,255,255,0.7); }
.card-napo .card-tag { color: rgba(255,255,255,0.8); }

.card-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.card-description {
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.card-napo .card-description { color: rgba(255,255,255,0.75); }

.card-price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
.card-price span {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--on-surface-var);
  margin-left: 0.25rem;
}

/* Price list rows */
.price-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(79, 68, 69, 0.1);
  font-size: 0.95rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .label { font-weight: 600; }
.price-row .price { font-weight: 700; color: var(--primary); }

/* Napo price boxes */
.napo-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.napo-price-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.napo-price-box .size-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}
.napo-price-box .size-price {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
}

/* Napo decorative text */
.napo-bg-text {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}

/* Marshmallow image box */
.card-img-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.bento-card:hover .card-img-box img { transform: scale(1.06); }

/* Price options */
.price-options { display: flex; flex-direction: column; gap: 0.6rem; }
.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--surface-low);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.price-option .opt-label { font-weight: 500; color: var(--on-surface-var); }
.price-option .opt-price { font-weight: 700; color: var(--primary); }

/* Tartes flavors */
.tarte-flavors {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.flavor-tag {
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}
.flavor-tag:hover { transform: scale(1.08); }
.flavor-active { background: var(--secondary-light); color: var(--secondary); }
.flavor-inactive { background: var(--surface-low); color: var(--on-surface-var); }

.tarte-items { display: flex; flex-direction: column; gap: 1rem; }
.tarte-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.tarte-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tarte-icon-1 { background: var(--secondary-light); }
.tarte-icon-2 { background: var(--primary-light); }
.tarte-icon .material-symbols-outlined { font-size: 1.3rem; }
.tarte-info { flex: 1; }
.tarte-name { font-weight: 700; font-size: 0.95rem; }
.tarte-desc { font-size: 0.78rem; color: var(--on-surface-var); margin-top: 0.1rem; }
.tarte-price { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

/* Dessert cups image */
.desserts-img {
  width: 100%;
  height: 8rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 1.5rem;
}
.desserts-img img { width: 100%; height: 100%; object-fit: cover; }

.card-desserts .card-title { color: var(--on-surface); }

/* ─── Gallery Section ─────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(400px, 50vw, 720px);
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-cell:hover img { transform: scale(1.07); }

.gallery-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, transparent 30%, rgba(30, 14, 10, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-cell:hover .gallery-label { opacity: 1; }
.gallery-label span {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* ─── About Section ───────────────────────────── */
.about {
  padding: clamp(5rem, 10vh, 9rem) 0;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.about-visual {
  position: relative;
}
.about-visual-blob {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: -5%;
  left: -5%;
  z-index: 0;
  filter: blur(40px);
  opacity: 0.6;
}
.about-visual-blob-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(132, 83, 26, 0.12) 0%, transparent 70%);
  bottom: -5%;
  right: -5%;
  z-index: 0;
  filter: blur(30px);
}
.about-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform var(--transition-slow);
}
.about-img-wrap:hover { transform: rotate(0deg) scale(1.01); }
.about-img-wrap img { width: 100%; height: auto; }

/* Floating badge on image */
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
}
.about-badge strong { display: block; font-size: 1.6rem; }

.about-content { }
.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--on-surface-var);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface-low);
  border-radius: var(--radius-md);
}
.feature-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.feature-icon .material-symbols-outlined { font-size: 1.1rem; }
.feature-text { font-size: 0.85rem; font-weight: 600; line-height: 1.4; }

/* ─── Testimonials ────────────────────────────── */
.testimonials {
  padding: clamp(4rem, 8vh, 6rem) 0;
  background: var(--surface-high);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1.25rem;
}
.testimonials-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.testimonials-header p {
  color: var(--on-surface-var);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.testimonials-track-wrap {
  position: relative;
}
.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-high), transparent);
}
.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-high), transparent);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding: 0.5rem 0;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tcard {
  min-width: 340px;
  max-width: 340px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--tertiary-light);
}
.stars .material-symbols-outlined {
  font-size: 1.1rem;
  font-variation-settings: 'FILL' 1;
}

.tcard-quote {
  font-style: italic;
  color: var(--on-surface-var);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-context { font-size: 0.75rem; color: var(--on-surface-var); margin-top: 0.1rem; }

/* ─── Contact Section ─────────────────────────── */
.contact {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.contact-subtitle {
  color: var(--on-surface-var);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--on-surface);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  background: var(--surface-low);
  color: var(--on-surface);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--outline); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-textarea { resize: vertical; min-height: 120px; }

.contact-right { }

/* Social Feed */
.social-section { margin-bottom: 2.5rem; }
.social-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.social-title .material-symbols-outlined { color: var(--primary); font-size: 1.2rem; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.insta-cell {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-cell:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(168, 50, 84, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-cell:hover .insta-overlay { opacity: 1; }
.insta-overlay .material-symbols-outlined { color: #fff; font-size: 1.5rem; }

/* Boutique card */
.boutique-card {
  background: var(--secondary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.boutique-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.boutique-address {
  color: var(--secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.boutique-hours {
  font-size: 0.8rem;
  color: var(--on-surface-var);
  margin-bottom: 1.25rem;
}
.boutique-map {
  width: 100%;
  height: 110px;
  background: var(--surface-highest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--outline);
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.boutique-map .material-symbols-outlined { font-size: 1.5rem; }

/* ─── Footer ──────────────────────────────────── */
.footer {
  background: var(--surface-high);
  border-top: 1px solid var(--outline-var);
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition-fast), transform var(--transition);
}
.social-icon:hover { background: var(--primary); color: #fff; transform: scale(1.12); }
.social-icon .material-symbols-outlined { font-size: 1.1rem; }

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-surface);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--on-surface-var);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--outline-var);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.82rem;
  color: var(--on-surface-var);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--on-surface-var);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--primary); }

/* ─── WhatsApp FAB ────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 80;
}
.whatsapp-fab-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-fab-btn:hover { transform: scale(1.12); box-shadow: var(--shadow-lg); }
.whatsapp-fab-btn .material-symbols-outlined { font-size: 1.5rem; }

.fab-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: fab-ping 2s ease-in-out infinite;
}
@keyframes fab-ping {
  0% { transform: scale(1); opacity: 0.3; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%) translateX(4px);
}
.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ─── Mobile Bottom Nav ───────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 248, 241, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 70;
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid var(--outline-var);
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -10px 40px rgba(90, 56, 37, 0.08);
}

.mobile-nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), transform var(--transition);
  cursor: pointer;
  color: var(--on-surface-var);
}
.mobile-nav-item.active {
  background: var(--secondary-light);
  color: var(--primary);
  transform: scale(1.05);
}
.mobile-nav-item .material-symbols-outlined { font-size: 1.3rem; }
.mobile-nav-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Scroll-Reveal Animations ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .card-cupcakes { grid-column: span 6; min-height: 360px; }
  .card-desserts { grid-column: span 6; }
  .card-marshmallow { grid-column: span 3; }
  .card-napo { grid-column: span 3; }
  .card-tartes { grid-column: span 6; }

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

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-icon-btn:not(:last-of-type) { display: none; }

  /* Hero */
  .hero-blob-right { width: 100%; opacity: 0.25; }
  .hero-blob-left { display: none; }
  .hero-content { max-width: 100%; padding: 2rem 1.25rem; text-align: center; }
  .hero-actions { justify-content: center; flex-direction: column; }
  .hero-actions .puffy-btn { width: 100%; justify-content: center; }
  .hero-badge { }

  /* Bento */
  .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
  .card-cupcakes,
  .card-desserts,
  .card-marshmallow,
  .card-napo,
  .card-tartes { grid-column: span 1; }
  .card-cupcakes { min-height: 380px; }
  .card-cupcakes .card-overlay {
    background: linear-gradient(to top, rgba(255,248,241,0.98) 0%, rgba(255,248,241,0.8) 50%, rgba(255,248,241,0.2) 100%);
  }
  .card-cupcakes .card-body { max-width: 100%; }
  .card-cupcakes .card-img { bottom: 0; top: auto; height: 55%; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .card-cupcakes .card-img img { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr; height: auto; }
  .gallery-cell { height: 50vw; min-height: 220px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-badge { right: 1rem; }
  .about-features { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile Nav */
  .mobile-bottom-nav { display: block; }
  .whatsapp-fab { bottom: 7rem; right: 1.25rem; }
  .whatsapp-fab-btn { width: 52px; height: 52px; }

  /* extra bottom space for mobile nav */
  .footer { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .menu-filters { flex-wrap: wrap; }
  .napo-prices { grid-template-columns: 1fr 1fr; }
  .tcard { min-width: 280px; max-width: 280px; }
}

/* ─── Material Symbols fix ────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}
