/* ════════════════════════════════════════════════════════════
   BITTA SWEETS · Midnight Patisserie
   Black canvas · rose-gold light · champagne cream
   ════════════════════════════════════════════════════════════ */

:root {
  --ink: #0b0807;
  --coal: #161009;
  --coal-2: #1f1710;
  --line: rgba(232, 169, 138, 0.16);
  --rose-deep: #b76e5a;
  --rose: #e8a98a;
  --rose-light: #f6ddd2;
  --cream: #f5ede4;
  --muted: #b3a193;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Jost", "Avenir Next", sans-serif;
  --pa: "Noto Serif Gurmukhi", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (max-width: 860px) { body { cursor: auto; } }

::selection { background: var(--rose); color: var(--ink); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* film grain over everything */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 70; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,3%); }
}

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 100; background: var(--ink);
  display: grid; place-items: center;
  transition: clip-path 1s var(--ease) 0.2s;
  clip-path: inset(0 0 0 0);
}
.preloader.is-done { clip-path: inset(0 0 100% 0); }
.preloader__inner { text-align: center; }
.preloader__logo {
  width: min(220px, 52vw); height: auto; aspect-ratio: 1; border-radius: 50%;
  margin: 0 auto 34px; display: block; object-fit: cover;
  opacity: 0; animation: logoIn 1.5s var(--ease) 0.1s forwards, ringGlow 2.6s ease 1.6s infinite;
}
@keyframes logoIn {
  0% { opacity: 0; filter: blur(16px); transform: scale(1.12); }
  60% { opacity: 1; }
  100% { opacity: 1; filter: blur(0); transform: scale(1); }
}
.preloader__ring {
  width: 128px; height: 128px; margin: 0 auto 18px; border-radius: 50%;
  border: 1px solid var(--line); position: relative;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 44px; color: var(--rose);
  animation: ringGlow 2.2s ease infinite;
}
.preloader__ring::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid transparent; border-top-color: var(--rose);
  animation: spin 1.4s linear infinite;
}
.preloader__ring span { line-height: 1; }
.preloader__s { margin-left: -10px; margin-top: 16px; color: var(--rose-light); }
.preloader__since { font-size: 11px; letter-spacing: 0.5em; color: var(--muted); margin-bottom: 22px; }
.preloader__bar { width: 148px; height: 1px; background: var(--line); margin: 0 auto; overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--rose-deep), var(--rose-light)); transform: translateX(-100%); animation: load 1.6s var(--ease) forwards; }
@keyframes load { to { transform: translateX(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ringGlow { 0%,100% { box-shadow: 0 0 0 rgba(232,169,138,0); } 50% { box-shadow: 0 0 42px rgba(232,169,138,0.22); } }

/* ── Gold dust canvas + cursor ─────────────────────────────── */
#dust { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.8; }
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; border-radius: 50%; }
.cursor { width: 6px; height: 6px; background: var(--rose-light); transform: translate(-50%, -50%); }
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid rgba(232,169,138,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor-ring.is-hot { width: 64px; height: 64px; border-color: var(--rose-light); }
@media (hover: none), (max-width: 860px) { .cursor, .cursor-ring { display: none; } }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 400; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 999px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, color 0.4s;
  will-change: transform;
}
.btn--lg { padding: 17px 34px; font-size: 13px; }
.btn--rose { background: linear-gradient(120deg, var(--rose-deep), var(--rose) 55%, var(--rose-light)); color: #2a120a; box-shadow: 0 12px 32px -10px rgba(232,169,138,0.45); }
.btn--rose:hover { box-shadow: 0 18px 44px -10px rgba(232,169,138,0.6); }
.btn--ghost { border: 1px solid var(--line); color: var(--rose-light); }
.btn--ghost:hover { border-color: var(--rose); }
.btn::after { /* shine sweep */
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 130%; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; gap: 36px;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: padding 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would
   become the containing block for the fixed mobile menu and break it */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(11,8,7,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; transition: opacity 0.5s;
}
.nav.is-scrolled { border-bottom-color: var(--line); padding-top: 12px; padding-bottom: 12px; }
.nav.is-scrolled::before { opacity: 1; }
.nav__brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.nav__mark {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  transition: box-shadow 0.4s, transform 0.5s var(--ease);
}
.nav__brand:hover .nav__mark { box-shadow: 0 0 28px rgba(232,169,138,0.4); transform: rotate(-8deg) scale(1.04); }
.footer__mark { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.nav__monogram {
  font-family: var(--serif); font-size: 26px; color: var(--rose);
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; letter-spacing: -2px;
  flex: 0 0 auto;
  transition: box-shadow 0.4s, transform 0.4s var(--ease);
}
.nav__monogram small { font-size: 20px; color: var(--rose-light); margin: 8px 0 0 -2px; }
.nav__brand:hover .nav__monogram { box-shadow: 0 0 28px rgba(232,169,138,0.35); transform: rotate(-6deg); }
.nav__name { font-family: var(--serif); font-size: 17px; letter-spacing: 0.12em; line-height: 1.15; display: grid; }
.nav__name em {
  font-style: normal;
  background: linear-gradient(105deg, var(--rose-deep), var(--rose) 50%, var(--rose-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__name b { font-family: var(--sans); font-weight: 400; font-size: 8.5px; letter-spacing: 0.42em; color: var(--muted); }
.nav__links { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav__links a { font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); position: relative; padding: 6px 0; transition: color 0.3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--rose); transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease); }
.nav__links a:hover { color: var(--rose-light); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.nav__burger span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--rose-light); transition: transform 0.4s var(--ease), top 0.4s; }
.nav__burger span:nth-child(1) { top: 15px; } .nav__burger span:nth-child(2) { top: 24px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 1060px) {
  .nav__cta { display: none; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100dvh; background: rgba(8,6,5,0.98);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none; transition: opacity 0.45s; z-index: 84;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 18px; }
  .nav__burger { display: block; z-index: 85; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: -8% 0; z-index: 0; }
.hero__media img { animation: kenburns 18s var(--ease) infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.12) translateY(-2.5%); } }
.hero__veil { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(11,8,7,0.2), transparent 60%),
    linear-gradient(180deg, rgba(11,8,7,0.75) 0%, rgba(11,8,7,0.35) 38%, rgba(11,8,7,0.55) 70%, var(--ink) 98%);
}
.hero__steam { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__steam i {
  position: absolute; bottom: 18%; width: 110px; height: 320px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(246,221,210,0.10), transparent 70%);
  filter: blur(14px); animation: steam 7s ease-in-out infinite;
}
.hero__steam i:nth-child(1) { left: 18%; animation-delay: 0s; }
.hero__steam i:nth-child(2) { left: 48%; animation-delay: 2.4s; }
.hero__steam i:nth-child(3) { left: 74%; animation-delay: 4.2s; }
@keyframes steam {
  0% { transform: translateY(40px) scaleX(1); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(-220px) scaleX(1.6) rotate(6deg); opacity: 0; }
}

.hero__content { position: relative; z-index: 3; text-align: center; padding: 120px 24px 80px; max-width: 1080px; }
.hero__gurmukhi { font-family: var(--pa); color: var(--rose); font-size: clamp(14px, 1.6vw, 18px); letter-spacing: 0.08em; margin-bottom: 26px; }
.hero__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(46px, 8.6vw, 118px);
  line-height: 0.98; letter-spacing: -0.02em; margin-bottom: 30px;
}
.hero__word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__word i {
  display: inline-block; font-style: normal; transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.hero__word--italic i { font-style: italic; font-weight: 300; }
.hero__word--rose i {
  background: linear-gradient(105deg, var(--rose-deep) 0%, var(--rose) 40%, var(--rose-light) 70%, var(--rose) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
body.is-loaded .hero__word i { transform: translateY(0); }
body.is-loaded .hero__word:nth-child(1) i { transition-delay: 0.15s; }
body.is-loaded .hero__word:nth-child(2) i { transition-delay: 0.27s; }
body.is-loaded .hero__word:nth-child(3) i { transition-delay: 0.39s; }
body.is-loaded .hero__word:nth-child(4) i { transition-delay: 0.51s; }

.reveal-line { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
body.is-loaded .hero .reveal-line { opacity: 1; transform: none; }
body.is-loaded .hero__gurmukhi { transition-delay: 0.1s; }
body.is-loaded .hero__sub { transition-delay: 0.7s; }
body.is-loaded .hero__cta { transition-delay: 0.85s; }
body.is-loaded .hero__badges { transition-delay: 1s; }

.hero__sub { max-width: 600px; margin: 0 auto 38px; color: var(--cream); font-size: clamp(15px, 1.7vw, 18px); font-weight: 300; }
.hero__sub b { color: var(--rose-light); font-weight: 500; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero__badges { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hero__badges i { color: var(--rose); font-style: normal; }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 44px; border: 1px solid var(--line); border-radius: 999px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 3px; background: var(--rose); animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(18px); opacity: 0; } 100% { opacity: 0; } }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee { position: relative; z-index: 4; border-block: 1px solid var(--line); background: var(--coal); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; gap: 34px; width: max-content; align-items: center; animation: marquee 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--rose-light); white-space: nowrap; }
.marquee__track i { color: var(--rose-deep); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections, shared ──────────────────────────────────────── */
.section { position: relative; z-index: 4; padding: clamp(80px, 11vw, 150px) clamp(20px, 6vw, 90px); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(44px, 6vw, 80px); }
.eyebrow { font-size: 11.5px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; font-weight: 400; }
h2 { font-family: var(--serif); font-weight: 380; font-size: clamp(34px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -0.015em; }
h2 em { color: var(--rose); }
.section__lede { color: var(--muted); margin-top: 20px; font-size: 16px; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── Heritage ──────────────────────────────────────────────── */
.heritage { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(36px, 6vw, 90px); align-items: center; }
.heritage__media { position: relative; border-radius: 18px; overflow: visible; }
.heritage__media img { border-radius: 18px; aspect-ratio: 4 / 4.6; box-shadow: var(--shadow); }
.heritage__stamp {
  position: absolute; right: -28px; bottom: -28px; width: 132px; height: 132px; border-radius: 50%;
  background: var(--coal-2); border: 1px solid var(--line);
  display: grid; place-content: center; text-align: center; gap: 2px;
  animation: floaty 5s ease-in-out infinite;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.8);
}
.heritage__stamp span { font-size: 9px; letter-spacing: 0.4em; color: var(--muted); }
.heritage__stamp b { font-family: var(--serif); font-size: 36px; color: var(--rose); }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
.heritage__copy p { color: var(--muted); margin-bottom: 18px; max-width: 56ch; }
.heritage__copy p b { color: var(--rose-light); font-weight: 500; }
.heritage__copy h2 { margin-bottom: 26px; }
.heritage__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; border-top: 1px solid var(--line); padding-top: 30px; }
.stat b { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); color: var(--rose-light); display: block; }
.stat b::after { content: "+"; color: var(--rose-deep); }
.stat span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 960px) { .heritage { grid-template-columns: 1fr; } .heritage__stats { grid-template-columns: repeat(2, 1fr); } .heritage__stamp { right: 8px; } }

/* ── Syrup drip divider ────────────────────────────────────── */
.drip { position: relative; z-index: 4; height: 90px; margin-top: -1px; }
.drip svg { width: 100%; height: 100%; display: block; }
.drip path { fill: var(--coal); }

/* ── Signature cards ───────────────────────────────────────── */
.signature { background: var(--coal); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--coal-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s, border-color 0.4s;
  transform-style: preserve-3d; will-change: transform;
}
.card:hover { border-color: rgba(232,169,138,0.45); box-shadow: 0 34px 60px -20px rgba(0,0,0,0.85), 0 0 50px -18px rgba(232,169,138,0.25); }
.card__media { position: relative; aspect-ratio: 1; overflow: hidden; }
.card__media img { transition: transform 1.1s var(--ease), filter 1.1s var(--ease); filter: saturate(0.96); }
.card:hover .card__media img { transform: scale(1.09) rotate(0.6deg); filter: saturate(1.12); }
.card__media::after { /* glossy sweep */
  content: ""; position: absolute; top: 0; left: -90%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg); transition: left 0.9s var(--ease); pointer-events: none;
}
.card:hover .card__media::after { left: 140%; }
.card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(11,8,7,0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--rose-light);
  padding: 6px 12px; border-radius: 999px;
}
.card__body { padding: 22px 22px 24px; }
.card__body h3 { font-family: var(--serif); font-weight: 420; font-size: 21px; letter-spacing: 0.01em; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.card__body h3 span { font-family: var(--pa); font-size: 13px; color: var(--rose); font-weight: 400; }
.card__body p { color: var(--muted); font-size: 13.5px; margin-top: 10px; min-height: 66px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.card__foot b { font-family: var(--serif); font-size: 17px; color: var(--rose-light); font-weight: 500; }
.card__order { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); transition: letter-spacing 0.35s var(--ease), color 0.3s; }
.card__order:hover { letter-spacing: 0.34em; color: var(--rose-light); }
/* stagger */
.cards .card { transition-delay: calc(var(--i, 0) * 90ms); }
@media (max-width: 1240px) { .cards { grid-template-columns: repeat(2, 1fr); } .card__body p { min-height: 0; } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

/* ── Menu ──────────────────────────────────────────────────── */
.menu { background: var(--coal); padding-top: 0; }
.menu__tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.menu__tab {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 26px; cursor: pointer; transition: all 0.4s var(--ease);
}
.menu__tab:hover { color: var(--rose-light); border-color: rgba(232,169,138,0.4); }
.menu__tab.is-active { background: linear-gradient(120deg, var(--rose-deep), var(--rose)); color: #2a120a; border-color: transparent; box-shadow: 0 10px 28px -10px rgba(232,169,138,0.5); }
.menu__panels { max-width: 880px; margin: 0 auto; position: relative; }
.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: panelIn 0.7s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.menu__panel ul { list-style: none; columns: 2; column-gap: 64px; }
.menu__panel li { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; break-inside: avoid; border-bottom: 1px dashed rgba(232,169,138,0.12); }
.menu__panel li span { font-size: 15px; }
.menu__panel li span em { color: var(--muted); font-size: 12px; margin-left: 6px; }
.menu__panel li i { flex: 1; border-bottom: 1px dotted rgba(232,169,138,0.35); transform: translateY(-4px); }
.menu__panel li b { font-family: var(--serif); color: var(--rose-light); font-weight: 500; font-size: 15px; white-space: nowrap; }
.menu__note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 40px; letter-spacing: 0.04em; }
.menu__note a { color: var(--rose); border-bottom: 1px solid rgba(232,169,138,0.4); }
@media (max-width: 760px) { .menu__panel ul { columns: 1; } }

/* ── Bakery ────────────────────────────────────────────────── */
.bakery { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(36px, 6vw, 90px); align-items: center; }
.bakery__images { position: relative; padding-bottom: 18%; }
.bakery__img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.bakery__img img { transition: transform 1.2s var(--ease); }
.bakery__img:hover img { transform: scale(1.06); }
.bakery__img--main { width: 78%; aspect-ratio: 1; }
.bakery__img--float { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border: 6px solid var(--ink); animation: floaty 6s ease-in-out infinite; }
.bakery__copy h2 { margin-bottom: 22px; }
.bakery__copy > p { color: var(--muted); max-width: 54ch; }
.bakery__copy .gifting__list { margin: 26px 0 32px; }
@media (max-width: 960px) { .bakery { grid-template-columns: 1fr; } }

/* ── Gifting ───────────────────────────────────────────────── */
.gifting { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(36px, 6vw, 90px); align-items: center; }
.gifting__copy h2 { margin-bottom: 22px; }
.gifting__copy > p { color: var(--muted); max-width: 54ch; }
.gifting__list { list-style: none; margin: 28px 0 34px; display: grid; gap: 14px; }
.gifting__list li { padding-left: 26px; position: relative; color: var(--muted); font-size: 15px; }
.gifting__list li::before { content: "✦"; position: absolute; left: 0; color: var(--rose); font-size: 12px; top: 4px; }
.gifting__list b { color: var(--cream); font-weight: 500; }
.gifting__media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.gifting__media img { aspect-ratio: 4 / 3.4; transition: transform 1.2s var(--ease); }
.gifting__media:hover img { transform: scale(1.05); }
.gifting__shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(246,221,210,0.14) 50%, transparent 60%); background-size: 260% 100%; background-position: 110% 0; transition: background-position 1.2s var(--ease); pointer-events: none; }
.gifting__media:hover .gifting__shine { background-position: -60% 0; }
@media (max-width: 960px) { .gifting { grid-template-columns: 1fr; } }

/* ── Festivals ─────────────────────────────────────────────── */
.festivals { background: var(--coal); overflow: hidden; }
.festivals__rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 24vw, 280px); gap: 18px; overflow-x: auto; padding: 6px 4px 22px; scroll-snap-type: x mandatory; }
.festivals__rail::-webkit-scrollbar { height: 4px; }
.festivals__rail::-webkit-scrollbar-thumb { background: var(--rose-deep); border-radius: 4px; }
.festivals__rail::-webkit-scrollbar-track { background: rgba(232,169,138,0.08); }
.fest {
  scroll-snap-align: start; background: var(--coal-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.fest::before { content: ""; position: absolute; top: -40%; right: -40%; width: 80%; height: 80%; border-radius: 50%; background: radial-gradient(circle, rgba(232,169,138,0.13), transparent 70%); transition: transform 0.6s var(--ease); }
.fest:hover { transform: translateY(-8px); border-color: rgba(232,169,138,0.4); }
.fest:hover::before { transform: scale(1.7); }
.fest b { font-family: var(--serif); font-size: 23px; font-weight: 420; display: block; }
.fest span { font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); display: block; margin: 6px 0 12px; }
.fest p { font-size: 13.5px; color: var(--muted); }

/* ── Quotes ────────────────────────────────────────────────── */
.quotes { text-align: center; max-width: 880px; margin: 0 auto; }
.quotes__mark { font-family: var(--serif); font-size: 130px; line-height: 0.4; color: var(--rose-deep); opacity: 0.65; margin-bottom: 6px; }
.quotes__stage { position: relative; min-height: 190px; }
.quote { position: absolute; inset: 0; opacity: 0; transform: translateY(16px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); pointer-events: none; }
.quote.is-active { opacity: 1; transform: none; pointer-events: auto; }
.quote p { font-family: var(--serif); font-style: italic; font-weight: 340; font-size: clamp(19px, 2.6vw, 28px); line-height: 1.4; color: var(--cream); }
.quote footer { margin-top: 20px; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--rose); }
.quotes__dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.quotes__dots button { width: 26px; height: 3px; border-radius: 3px; border: 0; background: rgba(232,169,138,0.22); cursor: pointer; transition: background 0.4s, width 0.4s var(--ease); }
.quotes__dots button.is-active { background: var(--rose); width: 44px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq__list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: var(--coal-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.4s; }
.faq__item[open] { border-color: rgba(232,169,138,0.45); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 54px 20px 24px; position: relative;
  font-family: var(--serif); font-size: 18px; font-weight: 420; color: var(--cream);
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 300; font-size: 24px; color: var(--rose);
  transition: transform 0.4s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--rose-light); }
.faq__item p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; max-width: 64ch; }
.faq__item p b { color: var(--rose-light); font-weight: 500; }
.faq__item p a { color: var(--rose); border-bottom: 1px solid rgba(232,169,138,0.4); }

/* ── Visit ─────────────────────────────────────────────────── */
.visit { background: var(--coal); }
.visit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
.visit__card { background: var(--coal-2); border: 1px solid var(--line); border-radius: 16px; padding: 32px 30px; transition: transform 0.5s var(--ease), border-color 0.4s; }
.visit__card:hover { transform: translateY(-6px); border-color: rgba(232,169,138,0.4); }
.visit__card h3 { font-family: var(--serif); font-weight: 420; font-size: 21px; margin-bottom: 14px; color: var(--rose-light); }
.visit__card p, .visit__card address { font-style: normal; color: var(--muted); font-size: 15px; line-height: 1.8; }
.visit__card b { color: var(--cream); font-weight: 500; }
.visit__card a:not(.visit__link) { color: var(--cream); transition: color 0.3s; }
.visit__card a:not(.visit__link):hover { color: var(--rose); }
.visit__link { display: inline-block; margin-top: 16px; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); transition: letter-spacing 0.35s var(--ease); }
.visit__link:hover { letter-spacing: 0.34em; }
.visit__map { grid-column: 1 / -1; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); height: 380px; position: relative; }
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) hue-rotate(180deg) saturate(0.4) brightness(0.9); }
@media (max-width: 860px) { .visit__grid { grid-template-columns: 1fr; } }

/* ── Footer ────────────────────────────────────────────────── */
.footer { position: relative; z-index: 4; border-top: 1px solid var(--line); background: var(--ink); }
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; padding: clamp(50px, 7vw, 90px) clamp(20px, 6vw, 90px); }
.nav__monogram--lg { width: 64px; height: 64px; font-size: 33px; margin-bottom: 16px; }
.footer__name { font-family: var(--serif); font-size: 24px; letter-spacing: 0.14em; }
.footer__name em { color: var(--rose); font-style: normal; }
.footer__tag { font-family: var(--pa); color: var(--muted); font-size: 13px; margin-top: 6px; }
.footer__links { display: grid; gap: 12px; align-content: start; }
.footer__links a { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); transition: color 0.3s, transform 0.3s var(--ease); width: max-content; }
.footer__links a:hover { color: var(--rose-light); transform: translateX(6px); }
.footer__contact { color: var(--muted); font-size: 14.5px; display: grid; gap: 12px; align-content: start; }
.footer__contact a { color: var(--cream); } .footer__contact a:hover { color: var(--rose); }
.footer__social a { color: var(--rose); }
.footer__bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 22px clamp(20px, 6vw, 90px); border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; letter-spacing: 0.06em; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr; } }

/* ── Motion safety ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-line, .hero__word i { opacity: 1 !important; transform: none !important; }
  body { cursor: auto; } .cursor, .cursor-ring, #dust { display: none; }
}
