/* ==========================================================================
   Neeso's Bakery — styles
   ========================================================================== */

@font-face { font-family: 'Bobby Jones Soft'; src: url('../fonts/BobbyJonesSoft.otf') format('opentype'); font-weight: normal; font-display: swap; }
@font-face { font-family: 'Dreaming Out Loud'; src: url('../fonts/DreamingOutLoud.otf') format('opentype'); font-weight: normal; font-display: swap; }

:root {
  --cream: #FFF6F5;
  --cream-2: #FFEDEB;
  --red: #9E2619;
  --red-dark: #7d1d13;
  --pink: #D45262;
  --pink-light: #FFD2CC;
  --pink-light-2: #FAD4CE;
  --pink-soft: #E98A8F;
  --brown: #472F29;
  --brown-light: #6e4a42;
  --brown-light-2: #5a3d36;
  --line: #ECCBC4;
  --line-2: #E6C9C3;
  --tan: #CBA59E;
}

* { box-sizing: border-box; }
body { margin: 0; }
img { max-width: 100%; }

body {
  background: var(--cream);
  font-family: 'Poppins', -apple-system, sans-serif;
  color: var(--brown);
  overflow-x: hidden;
}

.neeso-root { position: relative; min-height: 100vh; }

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,82,98,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,82,98,0.10) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 80px rgba(71,47,41,0.10);
}

/* ── Announcement bar ───────────────────────────────────────────────── */
.announce {
  background: var(--red);
  color: var(--pink-light);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 16px;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--cream-2);
  border-bottom: 2px solid rgba(158,38,25,0.12);
  position: relative;
}
.site-header .logo-link { display: flex; align-items: center; }
.site-header .logo-link img { height: 54px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a:not(.btn-pill) { color: var(--red); text-decoration: none; font-weight: 600; font-size: 15px; }
.btn-pill {
  background: var(--red);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 999px;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.btn-pill:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--red);
  display: inline-block;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-ghost:hover { background: var(--red); color: var(--cream); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 40px 78px;
  background: var(--cream);
  overflow: hidden;
}
.hero-deco {
  position: absolute;
  top: 50px; left: 42px;
  font-family: 'Dreaming Out Loud', cursive;
  font-size: 32px;
  color: var(--pink);
  transform: rotate(-7deg);
}
.hero-photo {
  position: absolute;
  width: 185px; height: 240px;
  filter: drop-shadow(0 12px 24px rgba(71,47,41,0.18));
}
.hero-photo.left { left: 18px; top: 188px; transform: rotate(-5deg); }
.hero-photo.right { right: 18px; top: 166px; width: 182px; transform: rotate(5deg); }
.hero-photo .mat {
  position: absolute; inset: -8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.hero-photo img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.hero-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 26px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cream-2);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-badge svg { border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,.25); flex-shrink: 0; }
.hero h1 {
  font-family: 'Bobby Jones Soft', sans-serif;
  font-size: 44px;
  line-height: 1.08;
  color: var(--red);
  margin: 0 0 18px;
}
.hero h1 .hl { position: relative; display: inline-block; }
.hero h1 .hl::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 1px; height: 10px;
  background: var(--pink-light);
  z-index: -1;
  border-radius: 4px;
}
.hero p {
  font-size: 17px; line-height: 1.6; color: var(--brown-light);
  margin: 0 auto 30px; max-width: 430px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-ctas .btn-pill, .hero-ctas .btn-ghost { font-size: 16px; padding: 15px 34px; }
.hero-ctas .btn-ghost { padding: 15px 32px; }
.hero-stars {
  margin-top: 18px;
  font-family: 'Dreaming Out Loud', cursive;
  font-size: 22px;
  color: var(--pink);
}

/* ── Marquee ─────────────────────────────────────────────────────────── */
@keyframes neeso-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: neeso-marquee 32s linear infinite;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--pink-light);
}
.marquee-track .copy { flex-shrink: 0; }
.marquee-track .copy span { padding: 0 20px; }

/* ── Promises ────────────────────────────────────────────────────────── */
.promises-section { background: var(--cream); padding: 40px 40px 14px; }
.promises-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.promise { text-align: center; padding: 8px 6px; }
.promise-icon { font-size: 30px; line-height: 1; height: 30px; display: flex; align-items: center; justify-content: center; }
.promise-icon svg { border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.promise-title { font-weight: 700; font-size: 15px; color: var(--red); margin-top: 10px; }
.promise-sub { font-size: 13px; color: var(--brown-light); margin-top: 3px; line-height: 1.4; }

/* ── About / story ───────────────────────────────────────────────────── */
.story-section { background: var(--cream-2); padding: 64px 40px 72px; position: relative; overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.postcard-wrap { position: relative; transform: rotate(-1.5deg); }
.postcard {
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(71,47,41,0.22);
}
.postcard-left { background: var(--red); padding: 22px 18px; }
.postcard-left .label { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--pink-light); font-weight: 700; }
.postcard-left .title { font-family: 'Bobby Jones Soft', sans-serif; font-size: 19px; color: var(--cream); margin: 9px 0 6px; line-height: 1.05; }
.postcard-left .title span { color: var(--pink-soft); }
.postcard-left .place { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pink-light); font-weight: 600; margin-bottom: 15px; }
.postcard-left .frame { border: 3px solid var(--pink-soft); border-radius: 4px; padding: 4px; }
.postcard-left .frame img { width: 100%; height: 286px; object-fit: cover; border-radius: 2px; display: block; }
.postcard-right { background: var(--cream); padding: 22px 22px 20px; position: relative; display: flex; flex-direction: column; }
.postcard-stamp {
  position: absolute; top: 18px; right: 20px;
  width: 56px; height: 66px;
  border: 2px dashed var(--pink);
  border-radius: 5px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: var(--cream-2);
}
.postcard-stamp .n { font-family: 'Bobby Jones Soft', sans-serif; font-size: 19px; color: var(--red); line-height: 1; }
.postcard-stamp .name { font-size: 6.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--pink); font-weight: 700; }
.postcard-stamp .est { font-size: 6.5px; letter-spacing: .5px; color: var(--red); }
.postcard-right .rule { width: 120px; border-top: 1.5px solid var(--line); margin-bottom: 16px; }
.postcard-right .to-label { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--tan); font-weight: 700; margin-bottom: 2px; }
.postcard-right .to-name { font-family: 'Dreaming Out Loud', cursive; font-size: 24px; color: var(--brown); border-bottom: 1px solid var(--line); padding-bottom: 8px; margin-bottom: 14px; }
.postcard-right .msg-label { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--tan); font-weight: 700; margin-bottom: 6px; }
.postcard-right .msg {
  font-family: 'Dreaming Out Loud', cursive; font-size: 18px; line-height: 27px; color: var(--brown-light-2);
  margin: 0;
  background: repeating-linear-gradient(transparent, transparent 26px, #F2DCD6 26px, #F2DCD6 27px);
  flex: 1;
}
.postcard-right .sign { font-family: 'Dreaming Out Loud', cursive; font-size: 24px; color: var(--pink); margin-top: 14px; }

.story-text .kicker-pill {
  display: inline-block;
  background: var(--pink-light-2);
  color: var(--pink);
  font-family: 'Dreaming Out Loud', cursive;
  font-size: 18px;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.story-text .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.story-text h2 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 42px; line-height: 1.06; color: var(--red); margin: 0; }
.story-text h2 span { color: var(--pink); }
.story-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; max-width: 380px; }
.story-divider span.line { height: 2px; background: var(--line-2); flex: 1; }
.story-divider span.star { color: var(--red); }
.story-text p { font-size: 16px; line-height: 1.7; color: var(--brown-light); margin: 0 0 16px; max-width: 480px; }
.story-text p em { color: var(--red); font-style: italic; }
.story-bullets { display: grid; gap: 13px; }
.story-bullets .bullet { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 600; color: var(--brown); }
.story-bullets .bullet span { color: var(--pink); }

/* ── Menu ────────────────────────────────────────────────────────────── */
.menu-section { background: var(--red); position: relative; }
.scallop-top { height: 30px; background-color: var(--cream-2); background-image: radial-gradient(circle at 19px 30px, var(--red) 18px, transparent 19px); background-size: 38px 30px; background-repeat: repeat-x; }
.scallop-bottom { height: 30px; background-color: var(--cream); background-image: radial-gradient(circle at 19px 0px, var(--red) 18px, transparent 19px); background-size: 38px 30px; background-repeat: repeat-x; }
.menu-inner { padding: 18px 40px 56px; text-align: center; }
.menu-inner .kicker { font-family: 'Dreaming Out Loud', cursive; font-size: 30px; color: var(--pink-light); }
.menu-inner h2 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 42px; color: var(--cream); margin: 4px 0 8px; }
.menu-inner > p { color: var(--pink-light); max-width: 480px; margin: 0 auto 30px; font-size: 16px; }

.menu-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.chip {
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: all .2s;
  white-space: nowrap;
  border: 2px solid rgba(255,237,235,0.45);
  background: transparent;
  color: var(--cream-2);
}
.chip.active { border-color: var(--cream-2); background: var(--cream-2); color: var(--red); }

.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.menu-card {
  background: var(--cream-2);
  border-radius: 22px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 0 rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  transition: transform .2s;
}
.menu-card:hover { transform: translateY(-4px); }
.menu-card-photo { position: relative; padding: 14px 14px 0; }
.menu-card-photo img { width: 100%; height: 170px; object-fit: cover; border-radius: 16px; display: block; }
.menu-card-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--red); color: var(--cream-2);
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.menu-card-body { padding: 15px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.menu-card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.menu-card-row h3 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 18px; color: var(--red); margin: 0; line-height: 1.15; }
.menu-card-price { font-family: 'Dreaming Out Loud', cursive; font-size: 26px; color: var(--pink); white-space: nowrap; }
.menu-card-body p { font-size: 13.5px; line-height: 1.5; color: var(--brown-light); margin: 8px 0 12px; flex: 1; }
.menu-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.meta-pill { font-size: 11px; font-weight: 600; color: var(--red); background: #FFD7CF; padding: 5px 10px; border-radius: 999px; }
.note-pill { font-size: 11px; font-weight: 600; color: var(--pink); border: 1px solid #E6A6A0; padding: 5px 10px; border-radius: 999px; }

.dips-band { max-width: 1000px; margin: 34px auto 0; background: rgba(255,237,235,0.10); border: 1px solid rgba(255,210,204,0.35); border-radius: 22px; padding: 26px 30px; text-align: left; }
.dips-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.dips-head h3 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 22px; color: var(--cream); margin: 0; }
.dips-head .note { font-family: 'Dreaming Out Loud', cursive; font-size: 22px; color: var(--pink-light); }
.dips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.dips-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pink-light); margin-bottom: 10px; }
.dips-list { display: flex; gap: 8px; flex-wrap: wrap; }
.dip-pill { font-size: 13px; font-weight: 600; color: var(--red); padding: 7px 14px; border-radius: 999px; }
.dip-pill.basic { background: var(--cream-2); }
.dip-pill.premium { background: var(--pink-light); }

/* ── Catering ────────────────────────────────────────────────────────── */
.catering-section { background: var(--cream); padding: 58px 40px 62px; }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head .kicker { font-family: 'Dreaming Out Loud', cursive; font-size: 30px; color: var(--pink); }
.section-head h2 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 38px; color: var(--red); margin: 2px 0 10px; }
.section-head p { font-size: 16px; line-height: 1.6; color: var(--brown-light); max-width: 560px; margin: 0 auto; }

.catering-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; max-width: 760px; margin: 0 auto; align-items: stretch; }
.catering-card { border-radius: 22px; box-shadow: 0 12px 28px rgba(71,47,41,0.10); display: flex; flex-direction: column; overflow: hidden; }
.catering-card.dark { box-shadow: 0 12px 28px rgba(71,47,41,0.18); }
.catering-photo { position: relative; height: 152px; overflow: hidden; }
.catering-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catering-photo .ph-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-light-2);
  color: var(--pink);
  font-size: 13px; font-weight: 600;
}
.catering-photo .tag {
  position: absolute; top: 12px; left: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.catering-photo .tag.light { background: var(--cream-2); color: var(--pink); }
.catering-photo .tag.dark { background: var(--red); color: var(--pink-light); }
.catering-body { padding: 36px 28px 28px; position: relative; flex: 1; display: flex; flex-direction: column; }
.catering-body.light { background: #FFFFFF; }
.catering-body.dark { background: var(--brown); }
.catering-badge {
  position: absolute; top: -26px; left: 28px;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.catering-badge.light { background: var(--red); color: var(--cream); box-shadow: 0 6px 14px rgba(71,47,41,0.25); }
.catering-badge.dark { background: var(--cream); color: var(--red); box-shadow: 0 6px 14px rgba(71,47,41,0.35); }
.catering-body h3 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 21px; margin: 0; }
.catering-body h3.light { color: var(--brown); }
.catering-body h3.dark { color: var(--cream); }
.catering-tagline { font-family: 'Bobby Jones Soft', sans-serif; font-size: 18px; margin: 2px 0 14px; }
.catering-tagline.light { color: var(--pink); }
.catering-tagline.dark { color: var(--pink-soft); }
.catering-body p { font-size: 14px; line-height: 1.6; margin: 0; flex: 1; }
.catering-body p.light { color: var(--brown-light); }
.catering-body p.dark { color: #F4D9D2; }
.catering-price { font-family: 'Bobby Jones Soft', sans-serif; margin: 18px 0 16px; }
.catering-price.light { font-size: 16px; color: var(--red); }
.catering-price.dark { font-size: 15px; color: var(--cream); }
.catering-price .sub { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; color: var(--pink-soft); }
.catering-card .btn-pill, .catering-card .btn-ghost { align-self: flex-start; font-size: 14px; padding: 12px 26px; }
.catering-card .btn-pill { padding: 13px 26px; }

.bulk-band {
  max-width: 1080px; margin: 30px auto 0;
  background: var(--cream-2); border-radius: 22px; padding: 26px 30px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.bulk-band h3 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 22px; color: var(--red); margin: 0 0 4px; }
.bulk-band p { font-size: 15px; color: var(--brown-light); margin: 0; }
.bulk-band .btn-pill { font-size: 15px; padding: 14px 28px; white-space: nowrap; }

/* ── How to order ────────────────────────────────────────────────────── */
.how-section { background: var(--cream-2); padding: 58px 40px 64px; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.how-card { background: var(--cream); border-radius: 20px; padding: 28px 26px; box-shadow: 0 6px 0 rgba(158,38,25,0.10); text-align: left; display: flex; flex-direction: column; }
.how-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--red); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.how-card h3 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 19px; color: var(--red); margin: 14px 0 7px; }
.how-card p { font-size: 14px; line-height: 1.6; color: var(--brown-light); margin: 0 0 20px; flex: 1; }
.how-card .btn-pill { align-self: flex-start; font-size: 13px; padding: 11px 22px; }
.yalla-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.yalla-row span { font-size: 15px; color: var(--brown-light); font-weight: 600; }
.yalla-row img { height: 34px; width: auto; display: block; }

/* ── Where to find us ────────────────────────────────────────────────── */
.find-section { background: var(--cream); padding: 62px 40px 66px; }
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1080px; margin: 0 auto; align-items: start; }
.find-text .kicker { font-family: 'Dreaming Out Loud', cursive; font-size: 28px; color: var(--pink); }
.find-text h2 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 42px; line-height: 1.05; color: var(--brown); margin: 4px 0 16px; }
.find-text p { font-size: 16px; line-height: 1.65; color: var(--brown-light); margin: 0 0 24px; max-width: 420px; }
.find-text .follow { margin: 0; font-family: 'Dreaming Out Loud', cursive; font-size: 20px; color: var(--pink); line-height: 1.4; }
.find-text .follow a { color: var(--red); text-decoration: none; }

.markets-label { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.markets-label .dash { width: 34px; height: 3px; background: var(--red); border-radius: 2px; }
.markets-label span.txt { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
.markets-list { display: grid; gap: 16px; }
.market-card { background: var(--cream); border: 2px solid var(--red); border-radius: 18px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; }
.market-date { text-align: center; padding-right: 16px; border-right: 2px solid var(--pink-light); flex-shrink: 0; }
.market-date .day { font-family: 'Bobby Jones Soft', sans-serif; font-size: 26px; color: var(--red); line-height: 1; }
.market-date .mon { font-family: 'Bobby Jones Soft', sans-serif; font-size: 13px; color: var(--pink); }
.market-info { flex: 1; min-width: 0; }
.market-info h3 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 16px; color: var(--brown); margin: 0 0 5px; line-height: 1.15; }
.market-info p { font-size: 12.5px; line-height: 1.45; color: var(--brown-light); margin: 0; }
.market-card .btn-pill { font-size: 13px; padding: 11px 16px; white-space: nowrap; flex-shrink: 0; }

/* ── Good to know ────────────────────────────────────────────────────── */
.know-section { background: var(--cream-2); padding: 56px 40px 60px; }
.know-section .section-head h2 { margin: 0; }
.know-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; max-width: 1040px; margin: 0 auto; }
.know-card { background: var(--cream); border-radius: 18px; padding: 22px 22px; }
.know-card .icon { font-size: 26px; line-height: 1; }
.know-card h3 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 16px; color: var(--red); margin: 12px 0 6px; }
.know-card p { font-size: 13.5px; line-height: 1.55; color: var(--brown-light); margin: 0; }
.know-note {
  max-width: 1040px; margin: 20px auto 0; display: flex; gap: 14px; align-items: center; justify-content: center;
  flex-wrap: wrap; background: var(--cream); border-radius: 18px; padding: 18px 26px;
}
.know-note .script { font-family: 'Dreaming Out Loud', cursive; font-size: 24px; color: var(--pink); white-space: nowrap; }
.know-note .txt { font-size: 14px; color: var(--brown-light); }
.know-note .txt strong { color: var(--red); }

/* ── Gallery ─────────────────────────────────────────────────────────── */
.gallery-section { background: var(--cream); padding: 56px 40px 50px; text-align: center; }
.gallery-section .kicker { font-family: 'Dreaming Out Loud', cursive; font-size: 30px; color: var(--pink); }
.gallery-section h2 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 36px; color: var(--red); margin: 2px 0 28px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.gallery-grid img { width: 100%; height: 170px; object-fit: cover; border-radius: 18px; display: block; }
.gallery-follow { margin-top: 18px; font-size: 14px; color: var(--brown-light); }
.gallery-follow a { color: var(--pink); font-weight: 700; text-decoration: none; }

/* ── Testimonials ────────────────────────────────────────────────────── */
.reviews-section { background: var(--red); padding: 60px 40px; text-align: center; position: relative; }
.reviews-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--pink-light); margin-bottom: 8px; }
.reviews-stars { font-family: 'Dreaming Out Loud', cursive; font-size: 26px; color: var(--pink-light); margin-bottom: 24px; }
.reviews-row { max-width: 740px; margin: 0 auto; display: flex; align-items: center; gap: 18px; }
.review-arrow {
  background: var(--cream-2); color: var(--red); border: none;
  width: 46px; height: 46px; border-radius: 50%; font-size: 22px; cursor: pointer; flex-shrink: 0;
  transition: background .15s;
}
.review-arrow:hover { background: var(--cream); }
.review-body { flex: 1; }
.review-quote { font-family: 'Bobby Jones Soft', sans-serif; font-size: 24px; line-height: 1.5; color: var(--cream); margin: 0 0 20px; }
.review-author { font-family: 'Dreaming Out Loud', cursive; font-size: 26px; color: var(--pink-light); }
.review-dots { display: flex; gap: 9px; justify-content: center; margin-top: 28px; }
.review-dot { width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,237,235,0.4); transition: all .2s; }
.review-dot.active { background: var(--cream-2); }

/* ── Order / CTA ─────────────────────────────────────────────────────── */
.cta-section { background: var(--cream-2); padding: 60px 40px 40px; }
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner .mascot { width: 150px; height: auto; display: block; margin: 0 auto 14px; }
.cta-inner .kicker { font-family: 'Dreaming Out Loud', cursive; font-size: 32px; color: var(--pink); }
.cta-inner h2 { font-family: 'Bobby Jones Soft', sans-serif; font-size: 42px; color: var(--red); margin: 6px 0 14px; }
.cta-inner p { color: var(--brown-light); font-size: 16px; line-height: 1.6; margin: 0 auto 26px; }
.cta-inner p strong { color: var(--red); }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-ctas .btn-pill, .cta-ctas .btn-ghost { font-size: 16px; padding: 15px 34px; }
.cta-ctas .btn-ghost { padding: 15px 32px; }
.cta-contact { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; font-size: 14px; color: var(--brown-light); }
.cta-contact a { color: var(--red); text-decoration: none; font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer { background: var(--red); padding: 30px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: 'Bobby Jones Soft', sans-serif; font-size: 22px; color: var(--cream-2); }
.footer-brand span { font-family: 'Dreaming Out Loud', cursive; color: var(--pink-light); font-size: 20px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--pink-light); text-decoration: none; font-weight: 600; font-size: 14px; }
.footer-copy { color: rgba(255,210,204,0.7); font-size: 13px; }

/* ── Responsive ──────────────────────────────────────────────────────── */
/* Tablet */
@media (max-width: 900px) {
  .menu-grid, .how-grid { grid-template-columns: repeat(2,1fr); }
  .catering-grid, .story-grid, .dips-grid, .find-grid { grid-template-columns: 1fr; }
  .promises-grid, .know-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .neeso-root section { padding-left: 24px !important; padding-right: 24px !important; }
}
/* Phone */
@media (max-width: 600px) {
  .menu-grid, .how-grid, .catering-grid, .story-grid, .dips-grid, .find-grid { grid-template-columns: 1fr; }
  .promises-grid { grid-template-columns: repeat(2,1fr); }
  .know-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .neeso-root section { padding-left: 18px !important; padding-right: 18px !important; }
  .site-header { flex-wrap: wrap; justify-content: center; gap: 10px; padding-left: 16px !important; padding-right: 16px !important; }
  .site-nav { gap: 12px !important; flex-wrap: wrap; justify-content: center; }
  .hero-photo, .hero-deco { display: none !important; }
  .hero h1 { font-size: 34px !important; }
}
