/* =============================================
   CRUMBS & CRAVINGS — Complete Stylesheet
   Modern redesign — beats Jenna Rae Cakes
   ============================================= */

:root {
  --espresso:    #3E2C25;
  --rose:        #D98A96;
  --rose-dark:   #B86B77;
  --light-pink:  #F7EBE8;
  --peach:       #F2DCD0;
  --cream:       #FAF6F0;
  --white:       #FFFFFF;
  --mid:         #8A7973;
  --gold:        #C9A96E;

  --font-script: 'Dancing Script', cursive;
  --font-serif:  'Playfair Display', serif;
  --font-sans:   'Poppins', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Custom Cursor ─────────────────────────── */
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor.hovering {
  width: 60px; height: 60px;
  background: rgba(217, 138, 150, 0.1);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

/* ── Floating CTA ──────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--espresso);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 500;
  box-shadow: 0 8px 30px rgba(62,44,37,0.25);
  transition: all 0.3s var(--ease);
  transform: translateY(100px);
  opacity: 0;
}
.float-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.float-cta:hover {
  background: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(217,138,150,0.4);
}

/* ── Marquee ───────────────────────────────── */
.marquee-bar {
  background: var(--espresso);
  overflow: hidden;
  padding: 0.6rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  padding-right: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header / Nav ──────────────────────────── */
#siteHeader {
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(62,44,37,0.06);
  transition: box-shadow 0.3s;
}
#siteHeader.scrolled {
  box-shadow: 0 4px 20px rgba(62,44,37,0.08);
}
.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.9rem; }
.logo-wrap { position: relative; width: 62px; height: 62px; flex-shrink: 0; }
#logoCanvas { display: none; }
.logo-fallback {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  mix-blend-mode: multiply;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--mid);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--espresso) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--rose) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--espresso);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--cream);
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(62,44,37,0.06);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--espresso);
}

/* ── Scroll Reveal ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entry animations ─────────────────── */
.anim-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero ──────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero-text {
  padding: 5rem 8% 5rem 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  color: var(--espresso);
}
.hero-title .line { display: block; }
.pink-text { color: var(--rose); font-style: italic; }
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--rose-dark);
  margin-bottom: 2rem;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.hero-pills span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(62,44,37,0.2);
  color: var(--espresso);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--espresso);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  width: fit-content;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 25px rgba(62,44,37,0.2);
}
.cta-btn:hover {
  background: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(217,138,150,0.4);
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 92vh;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.1s linear;
}
.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(62,44,37,0.15);
  text-align: center;
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-script {
  display: block;
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: var(--mid);
}
.badge-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--rose);
  font-weight: 700;
}
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--mid), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section Shared ────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--espresso);
  line-height: 1.12;
}
.section-desc {
  font-size: 1rem;
  color: var(--mid);
  margin: 1rem auto 0;
  max-width: 480px;
  text-align: center;
}

/* ── Signature Items ───────────────────────── */
.sig-section {
  background: var(--espresso);
  padding: 7rem 2.5rem;
  color: var(--white);
}
.sig-header {
  text-align: center;
  margin-bottom: 5rem;
}
.sig-header .section-eyebrow { color: var(--gold); }
.sig-header .section-title { color: var(--white); }
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.sig-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s;
  position: relative;
}
.sig-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
}
.sig-num {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  z-index: 2;
}
.sig-img-wrap {
  height: 260px;
  overflow: hidden;
}
.sig-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.sig-card:hover .sig-img-wrap img { transform: scale(1.05); }
.sig-info {
  padding: 1.8rem;
}
.sig-tag-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
}
.sig-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.sig-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  transition: gap 0.2s, color 0.2s;
}
.sig-link:hover { gap: 0.9rem; color: var(--gold); }

/* ── Gallery ───────────────────────────────── */
.gallery-section {
  background: var(--white);
  padding: 7rem 2.5rem;
}
.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.masonry-item {
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(62,44,37,0.75) 0%, transparent 55%);
  border-radius: 14px;
  display: flex; align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Stats ─────────────────────────────────── */
.stats-section {
  background: var(--light-pink);
  padding: 5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 100%;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 2rem;
}
.stat-num-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.6rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--espresso);
  font-weight: 700;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: var(--rose);
  font-weight: 700;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(62,44,37,0.15);
  flex-shrink: 0;
}

/* ── Testimonials ──────────────────────────── */
.testimonials-section {
  background: var(--cream);
  padding: 7rem 2.5rem;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(62,44,37,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(62,44,37,0.1);
}
.t-stars {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.t-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--espresso);
  margin-bottom: 1.8rem;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.t-avatar {
  width: 42px; height: 42px;
  background: var(--light-pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--rose-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.9rem; color: var(--espresso); }
.t-author span { font-size: 0.75rem; color: var(--mid); }

/* ── Menu ──────────────────────────────────── */
.menu-section {
  background: var(--espresso);
  padding: 7rem 2.5rem;
  color: var(--white);
}
.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}
.menu-header .section-eyebrow { color: var(--gold); }
.menu-header .section-title { color: var(--white); }
.menu-list {
  max-width: 750px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left 0.3s var(--ease);
}
.menu-row:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.menu-row:hover { padding-left: 0.8rem; }
.menu-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
}
.tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}
.tag-sig    { background: rgba(201,169,110,0.2); color: var(--gold); border: 1px solid rgba(201,169,110,0.3); }
.tag-fan    { background: rgba(217,138,150,0.2); color: var(--rose); border: 1px solid rgba(217,138,150,0.3); }
.tag-custom { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.tag-gift   { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.occasions-band {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem;
}
.occasions-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.occasions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.dot { opacity: 0.3; }

/* ── Contact ───────────────────────────────── */
.contact-section { background: var(--cream); padding: 7rem 2.5rem; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 1.2rem; }
.contact-note {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.info-item strong { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.info-item a, .info-item span {
  font-size: 0.95rem;
  color: var(--espresso);
  font-weight: 500;
  transition: color 0.2s;
}
.info-item a:hover { color: var(--rose); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1.5px solid rgba(62,44,37,0.12);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--espresso);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217,138,150,0.12);
}
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--espresso);
  color: var(--white);
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s var(--ease);
}
.submit-btn:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(217,138,150,0.35);
}

/* ── Footer ────────────────────────────────── */
.site-footer { background: var(--espresso); color: var(--white); }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.footer-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose); }
.footer-social { display: flex; justify-content: flex-end; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

/* ── Availability Badge ────────────────────── */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(217, 138, 150, 0.1);
  border: 1px solid rgba(217, 138, 150, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.avail-pulse {
  width: 7px;
  height: 7px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(217, 138, 150, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(217, 138, 150, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 138, 150, 0); }
}

/* ── How It Works ──────────────────────────── */
.how-section {
  background: #2A1D18;
  padding: 7rem 2.5rem;
  color: var(--white);
}
.how-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.how-header .section-eyebrow { color: var(--gold); }
.how-header .section-title   { color: var(--white); }
.how-header .pink-text        { color: var(--rose); }

.how-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.how-step {
  flex: 1;
  max-width: 310px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.how-step:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
}
.how-step-bg-num {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  pointer-events: none;
  font-weight: 700;
  user-select: none;
}
.how-step-tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.how-step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.how-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
  align-self: center;
}
.arr-v { display: none; }
.arr-h { display: block; }

/* ── Meet Harkiran ─────────────────────────── */
.baker-section {
  background: var(--peach);
  padding: 7rem 2.5rem;
}
.baker-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.baker-bio {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  margin: 1.5rem 0 2rem;
  max-width: 460px;
}
.baker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.baker-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(62,44,37,0.2);
  color: var(--espresso);
}
.baker-quote-card {
  background: var(--espresso);
  border-radius: 22px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.baker-quote-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: rgba(217, 138, 150, 0.09);
  border-radius: 50%;
}
.bq-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--rose);
  line-height: 0.7;
  margin-bottom: 1.5rem;
  opacity: 0.5;
  display: block;
}
.bq-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}
.bq-name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--rose);
}
.bq-role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}

/* ── Flavor Picker ─────────────────────────── */
.flavor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.flavor-pill {
  background: transparent;
  border: 1.5px solid rgba(62,44,37,0.18);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--espresso);
  cursor: none;
  transition: all 0.25s var(--ease);
  line-height: 1;
}
.flavor-pill:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(217, 138, 150, 0.07);
}
.flavor-pill.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

/* ── Confetti ──────────────────────────────── */
#confetti-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9997;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: -20px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  background: var(--color);
  border-radius: 2px;
  animation: confetti-fall var(--dur) var(--delay) ease-in forwards;
  transform: rotate(var(--rot));
}
@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ── Sparkle Cursor Trail ──────────────────── */
.sparkle-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  color: var(--rose);
  animation: sparkle-fly 0.9s ease-out forwards;
  transform: translate(-50%, -50%);
  user-select: none;
  line-height: 1;
}
@keyframes sparkle-fly {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.2); }
}

/* ── Mobile Touch Interactions ────────────── */
@keyframes tap-bounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.94); }
  65%  { transform: scale(1.04); }
  85%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}
.sig-card.tapped,
.how-step.tapped {
  animation: tap-bounce 0.4s var(--ease-out);
}

.tap-heart {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  z-index: 20;
  animation: heart-float 0.9s ease-out forwards;
  line-height: 1;
}
@keyframes heart-float {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.4); }
  40%  { opacity: 1; transform: translate(-50%, -70%) scale(1.4); }
  100% { opacity: 0; transform: translate(-50%, -130%) scale(1); }
}

/* ── Responsive ────────────────────────────── */

@media (max-width: 1100px) {
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .sig-card:last-child { grid-column: span 2; max-width: 500px; margin: 0 auto; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  /* Hero: image on top, text below, proper crop */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }
  .hero-visual {
    order: -1;
    height: 70vw;
    max-height: 480px;
    min-height: unset;
  }
  .hero-img-wrap {
    height: 100%;
    min-height: unset;
  }
  .hero-img { object-position: top center; }
  .hero-text { padding: 3rem 2.5rem 3.5rem; }
  .hero-badge { left: 1rem; bottom: 1.2rem; }
  .scroll-cue { display: none; }

  /* Section padding */
  .sig-section, .gallery-section, .testimonials-section,
  .how-section, .baker-section, .menu-section, .contact-section { padding: 5rem 1.8rem; }
  .stats-section { padding: 4rem 1.8rem; }

  /* Stats */
  .stats-section { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 50%; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }

  /* How It Works */
  .how-steps { flex-direction: column; align-items: center; }
  .how-step { max-width: 100%; width: 100%; }
  .how-arrow { transform: none; }
  .arr-h { display: none; }
  .arr-v { display: block; }

  /* Baker */
  .baker-inner { grid-template-columns: 1fr; gap: 3rem; }
  .baker-bio { max-width: 100%; }

  /* Sig grid */
  .sig-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .navbar { padding: 0.75rem 1.2rem; }

  /* Hero */
  .hero-visual { height: 75vw; }

  /* Cards */
  .sig-grid { grid-template-columns: 1fr; }
  .sig-card:last-child { grid-column: span 1; max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: span 1; }

  /* Gallery */
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }

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

  /* Menu */
  .menu-name { font-size: 1rem; }
  .occasions-row { font-size: 0.82rem; gap: 0.5rem; }

  /* Cursor off on touch — sparkle stays active via touch events */
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
  .cta-btn, .submit-btn, .float-cta, .flavor-pill { cursor: pointer; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-visual { height: 88vw; max-height: 380px; }
  .hero-text { padding: 2.5rem 1.2rem 2.5rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-script { font-size: 1.4rem; }
  .hero-pills span { font-size: 0.65rem; padding: 0.35rem 0.75rem; }

  /* Gallery */
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stat-item { flex: 0 0 100%; }
  .stat-divider { display: block; width: 80%; height: 1px; }
  .stat-num { font-size: 3rem; }

  /* Section padding */
  .sig-section, .gallery-section, .testimonials-section,
  .how-section, .baker-section, .menu-section, .contact-section { padding: 4rem 1.2rem; }

  /* How */
  .how-step { padding: 2rem 1.5rem; }

  /* Baker */
  .baker-quote-card { padding: 2rem 1.5rem; }
  .bq-text { font-size: 1.05rem; }

  /* Flavor pills */
  .flavor-pill { font-size: 0.72rem; padding: 0.45rem 0.9rem; }

  /* Footer */
  .footer-top { padding: 3rem 1.5rem; }

  /* Float CTA */
  .float-cta { bottom: 1.2rem; right: 1.2rem; padding: 0.75rem 1.4rem; font-size: 0.72rem; }

  /* Section titles */
  .section-title { font-size: 2rem; }
}
