:root {
  --olive: #3D4A2A;
  --olive-dark: #33401F;
  --olive-darker: #2C351F;
  --cream: #F3EDDD;
  --cream-frame: #DCD6C4;
  --card: #FBF7EC;
  --card-border: #E2D9BF;
  --soft-fill: #E7DFC9;
  --mustard: #D98F1E;
  --mustard-dark: #C47F14;
  --mustard-shadow: #A8681A;
  --mustard-soft: #EFE2C4;
  --mustard-text: #8A5F0B;
  --text-body: #4A552F;
  --text-muted: #5B653C;
  --text-mono: #7C8556;
  --cream-fade: #E8C583;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-frame);
  color: var(--olive-darker);
  font-family: "DM Sans", system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: var(--mustard-text); text-decoration: none; }
a:hover { color: var(--mustard-dark); }
button { font-family: inherit; }

.frame { max-width: 1440px; margin: 0 auto; background: var(--cream); overflow: hidden; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 22px; }

.mono { font-family: "DM Mono", monospace; }
.eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 12.5px;
  color: var(--mustard-text);
  letter-spacing: .1em;
}
.section-title {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -1px;
  margin: 12px 0 0;
  color: var(--olive-darker);
}
.section-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 52ch;
  margin: 18px 0 0;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--olive);
  border-bottom: 1px solid rgba(243,237,221,.14);
}
.header-inner {
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo { width: 30px; height: 30px; border-radius: 8px; }
.brand-wordmark { height: 38px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(243,237,221,.86);
}
.nav a:hover { color: var(--cream); background: rgba(243,237,221,.08); }
.nav a.active { color: var(--olive-darker); background: var(--cream); }
.nav a.active:hover { color: var(--olive-darker); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--olive);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 84px 20px 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 55;
    box-shadow: -12px 0 32px rgba(0,0,0,.25);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 13px 14px; text-align: left; }
  .nav a.btn-cta { margin: 10px 0 0; text-align: center; }
}
.nav-scrim {
  display: none;
  position: fixed; inset: 0; background: rgba(20,24,14,.5); z-index: 54;
}
.nav-scrim.is-open { display: block; }

.btn-cta {
  margin-left: 6px;
  background: var(--mustard);
  color: var(--olive-darker);
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 0 var(--mustard-shadow);
  border: none;
  cursor: pointer;
}
.btn-cta:hover { background: var(--mustard-dark); color: var(--olive-darker); }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--card) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='90'%3E%3Cg fill='none' stroke='%23D98F1E' stroke-width='2'%3E%3Cpolygon points='26,0 52,15 52,45 26,60 0,45 0,15'/%3E%3Cpolygon points='0,45 26,60 26,90 0,105 -26,90 -26,60'/%3E%3Cpolygon points='52,45 78,60 78,90 52,105 26,90 26,60'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  padding: 74px 22px 84px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.hero-copy { flex: 1 1 340px; min-width: 0; }
.hero-title {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -1.5px;
  color: var(--olive-darker);
  margin: 20px 0 0;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--text-body);
  max-width: 46ch;
  margin: 20px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn-primary {
  background: var(--mustard);
  color: var(--olive-darker);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--mustard-shadow);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--mustard-dark); color: var(--olive-darker); }
.btn-dark {
  background: var(--olive);
  color: var(--cream);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.btn-dark:hover { background: var(--olive-dark); color: var(--cream); }
.hero-loyalty-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: #6B7448;
  font-size: 14px;
}
.hero-loyalty-hint strong { color: var(--olive-darker); }
.drop-row { display: flex; gap: 5px; }
.drop {
  width: 13px;
  height: 13px;
  background: var(--mustard);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.drop.drop-empty { background: transparent; border: 1.5px dashed #C9A96A; }

.hero-art-wrap { flex: 1 1 320px; min-width: 0; display: flex; justify-content: center; align-self: center; margin-top: -20px; }
.hero-art { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.hero-art-glow {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(217,143,30,.30), rgba(217,143,30,0) 68%);
  animation: bb-pulse 6s ease-in-out infinite;
}
.hero-gallery { position: relative; width: 100%; height: 100%; }
.hero-gallery-item {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(60,48,10,.22);
  transform: rotate(var(--rot, 0deg));
  animation: bb-float-item 7s ease-in-out infinite;
  animation-fill-mode: backwards;
}
.hero-gallery-item.placeholder {
  border: 1.5px dashed rgba(44,53,31,.28);
  background: repeating-linear-gradient(135deg, rgba(217,143,30,.10), rgba(217,143,30,.10) 10px, rgba(217,143,30,.05) 10px, rgba(217,143,30,.05) 20px), var(--card);
  color: rgba(44,53,31,.55);
}
.hero-gallery-item svg { width: 26px; height: 26px; }
.hero-gallery-item span { font: 500 11px/1 "DM Sans", sans-serif; letter-spacing: .01em; text-align: center; padding: 0 10px; }
.hero-gallery-item.item-a { width: 46%; aspect-ratio: 4/5; left: -2%; top: 4%; --rot: -12deg; z-index: 3; }
.hero-gallery-item.item-b { width: 36%; aspect-ratio: 9/17; right: 4%; top: 30%; --rot: 16deg; animation-delay: .8s; z-index: 4; }
.hero-gallery-item.item-c { width: 38%; aspect-ratio: 1/1; left: 10%; bottom: -4%; --rot: 22deg; animation-delay: 1.4s; z-index: 2; }
.hero-gallery-item.item-d { width: 32%; aspect-ratio: 4/5; right: 14%; top: -6%; --rot: -20deg; animation-delay: 2s; z-index: 1; }
.hero-gallery-item.phone { border-radius: 26px; }
/* ---- Hero welcome video ---- */
.hero-welcome { position: relative; width: 100%; height: 100vh; overflow: hidden; background: var(--card); }
.hero-welcome-video {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(3.5px);
  transform: scale(1.06); /* hides the blur's soft edge from showing the container's background */
}
.hero-welcome-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,24,13,.6) 0%, rgba(20,24,13,.45) 50%, rgba(20,24,13,.7) 100%);
}
.hero-welcome-content {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px; gap: 18px;
}
.hero-welcome-title {
  font-family: "Baloo 2", cursive; font-weight: 800; color: var(--cream);
  font-size: clamp(38px, 7vw, 84px); line-height: 1.05; letter-spacing: .5px;
  text-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.hero-welcome-sub {
  font-family: "DM Sans", sans-serif; font-weight: 500; color: var(--cream);
  font-size: clamp(16px, 2.4vw, 21px); opacity: .9; max-width: 560px;
}
.hero-welcome-logo { height: 38px; opacity: .9; margin-top: 10px; }

/* ---- Menu preview / menu page shared ---- */
.menu-preview, .menu-page { padding: 74px 22px 20px; }
.menu-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; justify-content: space-between; }
.menu-head-link { font-weight: 700; font-size: 15px; color: var(--olive-darker); border-bottom: 2px solid var(--mustard); padding-bottom: 3px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 24px; }
.chip {
  font-family: "DM Sans", sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 10px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text-muted);
}
.chip.active { background: var(--mustard); color: var(--olive-darker); border-color: var(--mustard); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.product-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--mustard); }
.product-media {
  position: relative; aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  background-image: repeating-linear-gradient(135deg, var(--soft-fill) 0 9px, var(--card) 9px 18px);
  display: flex; align-items: flex-end; padding: 12px;
}
.product-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: "DM Mono", monospace; font-size: 11px; letter-spacing: .06em;
  color: var(--cream); background: var(--olive); border-radius: 999px; padding: 5px 10px;
}
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 20px; margin: 0; color: var(--olive-darker); line-height: 1.15; }
.product-body p { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); margin: 0; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.product-price { font-family: "DM Mono", monospace; font-size: 16px; font-weight: 500; color: var(--olive-darker); }
.product-cat { font-size: 12.5px; color: var(--mustard-text); background: var(--mustard-soft); border-radius: 999px; padding: 5px 10px; }
.menu-note { font-family: "DM Mono", monospace; font-size: 12px; color: var(--text-mono); margin: 18px 0 0; }
.menu-status { font-size: 15px; color: var(--text-muted); padding: 20px 0; }

/* Full menu page list rows */
.menu-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; margin-top: 28px; }
.menu-row { display: flex; gap: 14px; align-items: center; background: var(--card); border: 1px solid var(--card-border); border-radius: 18px; padding: 12px; }
.menu-row-img { width: 72px; height: 90px; flex: none; border-radius: 12px; background-size: cover; background-position: center; background-image: repeating-linear-gradient(135deg, var(--soft-fill) 0 8px, var(--card) 8px 16px); }
.menu-row-body { min-width: 0; flex: 1; }
.menu-row-top { display: flex; align-items: baseline; gap: 10px; justify-content: space-between; }
.menu-row-top h3 { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 19px; margin: 0; color: var(--olive-darker); }
.menu-row-price { font-family: "DM Mono", monospace; font-size: 15px; color: var(--olive-darker); }
.menu-row-desc { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); margin: 5px 0 0; }
.menu-row-cat { display: inline-block; font-size: 12px; color: var(--mustard-text); background: var(--mustard-soft); border-radius: 999px; padding: 4px 9px; margin-top: 8px; }
.allergen-banner {
  margin: 30px 0 0; background: var(--olive); color: var(--cream); border-radius: 22px; padding: 26px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.allergen-banner h3 { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 24px; margin: 0; }
.allergen-banner p { font-size: 14.5px; color: rgba(243,237,221,.78); margin: 6px 0 0; }

/* ---- Loyalty (Bal Damlası) ---- */
.loyalty { margin: 78px 0 0; background: var(--olive); color: var(--cream); position: relative; overflow: hidden; }
.loyalty::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='90'%3E%3Cg fill='none' stroke='%23F3EDDD' stroke-width='2'%3E%3Cpolygon points='26,0 52,15 52,45 26,60 0,45 0,15'/%3E%3Cpolygon points='0,45 26,60 26,90 0,105 -26,90 -26,60'/%3E%3Cpolygon points='52,45 78,60 78,90 52,105 26,90 26,60'/%3E%3C/g%3E%3C/svg%3E");
}
.loyalty-inner { position: relative; padding: 76px 22px 82px; }
.loyalty .eyebrow { color: var(--cream-fade); }
.loyalty-head { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-end; justify-content: space-between; margin-top: 12px; }
.loyalty-head h2 { font-family: "Baloo 2", cursive; font-weight: 800; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.02; letter-spacing: -1.2px; margin: 0; max-width: 20ch; }
.loyalty-head p { font-size: 16.5px; line-height: 1.6; color: rgba(243,237,221,.8); max-width: 40ch; margin: 0; }
.loyalty-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 42px; }
.loyalty-step { background: var(--cream); border: 1px solid rgba(243,237,221,.18); border-radius: 22px; padding: 26px; color: var(--olive-darker); }
.loyalty-step.final { background: var(--mustard); color: var(--olive-darker); border: none; }
.loyalty-step .step-label { font-family: "DM Mono", monospace; font-size: 12px; color: var(--mustard-text); letter-spacing: .1em; }
.loyalty-step.final .step-label { color: var(--mustard-text); }
.loyalty-step h3 { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 24px; margin: 10px 0 8px; color: var(--olive-darker); }
.loyalty-step p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.loyalty-step.final p { color: #4A3A12; }
.loyalty-progress {
  margin-top: 34px; background: rgba(243,237,221,.07); border: 1px solid rgba(243,237,221,.18); border-radius: 22px;
  padding: 22px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
}
.loyalty-drops { display: flex; gap: 12px; flex-wrap: wrap; }
.loyalty-hex {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(243,237,221,.1);
}
.loyalty-hex.filled { background: rgba(217,143,30,.9); }
.loyalty-hex .dot { width: 17px; height: 17px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: transparent; border: 1.5px dashed rgba(243,237,221,.5); }
.loyalty-hex.filled .dot { background: var(--olive-darker); border: none; }
.loyalty-progress-text { flex: 1 1 240px; min-width: 0; }
.loyalty-progress-text .title { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 21px; }
.loyalty-progress-text .sub { font-family: "DM Mono", monospace; font-size: 12.5px; color: var(--cream-fade); letter-spacing: .05em; margin-top: 4px; }

/* ---- Reviews marquee ---- */
.reviews { background: var(--mustard-soft); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 62px 0 66px; overflow: hidden; }
.reviews-head { padding: 0 22px 30px; }
.marquee { display: flex; width: max-content; gap: 16px; padding: 0 8px; }
.marquee.left { animation: bb-marq-l 46s linear infinite; }
.marquee.right { animation: bb-marq-r 54s linear infinite; padding-top: 16px; }
.review-card { width: 330px; background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 20px; flex: none; }
.review-card.dark { background: var(--olive); border: none; color: var(--cream); }
.review-rating { font-family: "DM Mono", monospace; font-size: 12px; color: var(--mustard-text); }
.review-card.dark .review-rating { color: var(--cream-fade); }
.review-quote { font-size: 15px; line-height: 1.6; color: #3A4327; margin: 10px 0 14px; }
.review-card.dark .review-quote { color: rgba(243,237,221,.9); }
.review-who { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--soft-fill); border: 1px solid var(--card-border); }
.review-card.dark .review-avatar { background: rgba(243,237,221,.16); border: none; }
.review-name { font-weight: 700; font-size: 14px; color: var(--olive-darker); }
.review-card.dark .review-name { color: var(--cream); }
.review-meta { font-size: 12.5px; color: var(--text-mono); }
.review-card.dark .review-meta { color: rgba(243,237,221,.6); }

/* ---- App CTA ---- */
.app-cta { margin-top: 78px; background: var(--olive-dark); color: var(--cream); overflow: hidden; }
.app-cta-inner { padding: 76px 22px; display: flex; flex-wrap: wrap; gap: 44px; align-items: center; }
.app-cta-copy { flex: 1 1 320px; min-width: 0; }
.app-cta .eyebrow { color: var(--cream-fade); }
.app-cta-copy h2 { font-family: "Baloo 2", cursive; font-weight: 800; font-size: clamp(32px, 5vw, 56px); line-height: 1.02; letter-spacing: -1.4px; margin: 14px 0 0; }
.app-cta-copy p { font-size: 16.5px; line-height: 1.65; color: rgba(243,237,221,.8); max-width: 44ch; margin: 18px 0 0; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.store-badge { display: flex; align-items: center; gap: 12px; background: rgba(243,237,221,.08); border: 1px solid rgba(243,237,221,.2); border-radius: 16px; padding: 13px 18px; }
.store-badge-icon { width: 26px; height: 26px; border-radius: 8px; background: rgba(243,237,221,.22); }
.store-badge .soon { font-family: "DM Mono", monospace; font-size: 10.5px; color: var(--cream-fade); letter-spacing: .1em; }
.store-badge .store-name { font-weight: 700; font-size: 15px; }
.app-cta-note { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 14px; color: rgba(243,237,221,.7); }
.app-cta-note .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mustard); flex: none; }

.phone-mock { flex: 1 1 340px; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.phone-stack { position: relative; width: 100%; max-width: 400px; aspect-ratio: 19 / 25; perspective: 1400px; }
.phone-shell {
  width: 220px; max-width: 62%; aspect-ratio: 9 / 19; background: var(--olive-darker); border: 8px solid var(--olive-darker);
  border-radius: 44px; box-shadow: 0 30px 60px rgba(0,0,0,.35); overflow: hidden; position: absolute;
  left: 50%; top: 50%;
}
.phone-shell.front { width: 250px; transform: translate(-50%,-50%) translateZ(60px); z-index: 3; box-shadow: 0 40px 70px rgba(0,0,0,.45); }
.phone-shell.side { z-index: 2; filter: brightness(.9); }
.phone-shell.side-left { transform: translate(-128%,-42%) rotateY(32deg) translateZ(0px); z-index: 1; }
.phone-shell.side-right { transform: translate(28%,-42%) rotateY(-32deg) translateZ(0px); }
.phone-screen { position: absolute; inset: 0; background: var(--cream); border-radius: 36px; overflow: hidden; display: flex; flex-direction: column; }
.phone-notch { height: 34px; display: flex; align-items: center; justify-content: center; background: var(--olive); }
.phone-notch span { width: 74px; height: 6px; border-radius: 999px; background: rgba(243,237,221,.35); }
.phone-header { padding: 16px 16px 12px; background: var(--olive); color: var(--cream); }
.phone-header.alt { padding: 22px 16px 12px; }
.phone-header .greet { font-family: "DM Mono", monospace; font-size: 10.5px; color: var(--cream-fade); letter-spacing: .08em; }
.phone-header .msg { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 21px; margin-top: 4px; }
.phone-header .drops { display: flex; gap: 6px; margin-top: 10px; }
.phone-header .drops span { width: 22px; height: 22px; background: var(--mustard); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.phone-header .drops span.empty { background: rgba(243,237,221,.22); }
.phone-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.phone-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; padding: 10px; display: flex; gap: 10px; align-items: center; }
.phone-item-img { width: 44px; height: 44px; border-radius: 10px; background-image: repeating-linear-gradient(135deg, var(--soft-fill) 0 6px, var(--card) 6px 12px); }
.phone-item-name { font-weight: 700; font-size: 13px; color: var(--olive-darker); }
.phone-item-price { font-family: "DM Mono", monospace; font-size: 11.5px; color: var(--mustard-text); }
.phone-cta { margin-top: auto; background: var(--mustard); color: var(--olive-darker); text-align: center; font-weight: 700; font-size: 14px; padding: 12px; border-radius: 14px; }
.phone-caption { font-family: "DM Mono", monospace; font-size: 11px; color: rgba(243,237,221,.55); text-align: center; max-width: 320px; }

/* ---- Campaigns page ---- */
.campaign-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 28px; }
.campaign-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column; color: inherit; text-decoration: none;
}
.campaign-card:hover { border-color: var(--mustard); color: inherit; }
.campaign-media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  display: flex; align-items: center; justify-content: center;
}
.campaign-media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.campaign-media-fallback { width: 44px; height: 44px; background: var(--mustard); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.campaign-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.campaign-body h3 { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 21px; margin: 0; color: var(--olive-darker); }
.campaign-sub { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.campaign-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.campaign-until { font-family: "DM Mono", monospace; font-size: 11.5px; color: var(--text-mono); }
.campaign-code { font-family: "DM Mono", monospace; font-size: 12.5px; font-weight: 600; color: var(--mustard-text); background: var(--mustard-soft); border-radius: 999px; padding: 6px 12px; }

/* ---- Campaign detail page ---- */
.campaign-detail { padding: 62px 22px 20px; }
.campaign-detail-grid { display: flex; flex-direction: column; gap: 28px; margin-top: 28px; max-width: 780px; }
.campaign-detail-media {
  width: 100%; aspect-ratio: 16 / 9; border-radius: 24px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark)); display: flex; align-items: center; justify-content: center;
}
.campaign-detail-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.campaign-detail-media .campaign-media-fallback { width: 64px; height: 64px; }
.campaign-detail-body { display: flex; flex-direction: column; gap: 18px; }
.campaign-detail-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--mustard-soft); color: var(--mustard-text); font-family: "DM Mono", monospace; font-size: 12.5px; letter-spacing: .05em; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--card-border); align-self: flex-start; }
.campaign-detail-body h1 { font-family: "Baloo 2", cursive; font-weight: 800; font-size: clamp(30px, 4.6vw, 46px); line-height: 1.05; letter-spacing: -1px; margin: 0; color: var(--olive-darker); }
.campaign-detail-sub { font-size: 16.5px; line-height: 1.6; color: var(--text-body); margin: 0; }
.campaign-code-box { display: flex; align-items: center; gap: 12px; background: var(--olive); color: var(--cream); border-radius: 16px; padding: 16px 20px; }
.campaign-code-box .label { font-family: "DM Mono", monospace; font-size: 11px; color: var(--cream-fade); letter-spacing: .08em; }
.campaign-code-box .code { font-family: "DM Mono", monospace; font-size: 22px; font-weight: 700; letter-spacing: .04em; }
.campaign-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.campaign-steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
.campaign-steps li .num {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--mustard-soft); color: var(--mustard-text);
  font-family: "DM Mono", monospace; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.campaign-terms { font-size: 12.5px; line-height: 1.6; color: var(--text-mono); margin: 0; padding-left: 16px; }
.campaign-terms li { margin-bottom: 4px; }
.campaign-back { font-weight: 700; font-size: 14px; color: var(--olive-darker); }

/* ---- Gallery page ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 28px; }
.gallery-item { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border); aspect-ratio: 4 / 5; background-size: cover; background-position: center; background-image: repeating-linear-gradient(135deg, var(--soft-fill) 0 9px, var(--card) 9px 18px); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 14px 12px;
  background: linear-gradient(0deg, rgba(44,53,31,.78) 0%, rgba(44,53,31,0) 100%);
  color: var(--cream); font-size: 13.5px; font-weight: 600;
}

/* ---- Events page ---- */
.event-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.event-card { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 16px; align-items: center; }
.event-card.past { opacity: .6; filter: grayscale(.5); }
.event-media { width: 120px; height: 120px; flex: none; border-radius: 16px; background-size: cover; background-position: center; background-image: repeating-linear-gradient(135deg, var(--soft-fill) 0 9px, var(--card) 9px 18px); }
.event-body { min-width: 0; flex: 1; }
.event-date { font-family: "DM Mono", monospace; font-size: 12px; color: var(--mustard-text); background: var(--mustard-soft); border-radius: 999px; padding: 5px 11px; display: inline-block; }
.event-body h3 { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 21px; margin: 10px 0 4px; color: var(--olive-darker); }
.event-location { font-size: 13px; color: var(--text-mono); font-family: "DM Mono", monospace; }
.event-desc { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 8px 0 0; }

/* ---- Contact page ---- */
.contact-page { padding: 62px 22px 20px; }
.contact-grid { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.contact-form { flex: 1 1 320px; min-width: 0; background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.field label { font-family: "DM Mono", monospace; font-size: 11.5px; color: var(--text-mono); letter-spacing: .08em; }
.field input, .field textarea {
  margin-top: 6px; width: 100%; background: var(--cream); border: 1px solid var(--card-border); border-radius: 12px;
  padding: 13px 14px; color: var(--olive-darker); font-size: 15px; font-family: inherit;
}
.field textarea { min-height: 110px; resize: vertical; }
.topic-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.topic-pill {
  font-size: 13.5px; font-weight: 600; color: var(--mustard-text); background: var(--cream); border: 1px solid var(--card-border);
  border-radius: 999px; padding: 8px 14px; cursor: pointer;
}
.topic-pill.active { color: var(--olive-darker); background: var(--mustard-soft); border-color: var(--mustard); }
.contact-side { flex: 1 1 260px; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-card-dark { background: var(--olive); color: var(--cream); border-radius: 22px; padding: 24px; }
.contact-card-dark .label { font-family: "DM Mono", monospace; font-size: 11.5px; color: var(--cream-fade); letter-spacing: .08em; }
.contact-card-dark .name { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 22px; margin: 8px 0 6px; }
.contact-card-dark .addr { font-size: 14.5px; line-height: 1.6; color: rgba(243,237,221,.8); }
.contact-card-plain { background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; padding: 24px; font-size: 15px; color: #3A4327; line-height: 1.8; }
.contact-card-plain .label { font-family: "DM Mono", monospace; font-size: 11.5px; color: var(--text-mono); letter-spacing: .08em; }
.contact-card-social { background: var(--mustard-soft); border: 1px solid var(--card-border); border-radius: 22px; padding: 24px; }
.contact-card-social .title { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 20px; color: var(--olive-darker); }
.social-links { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.social-links a { font-size: 14px; font-weight: 600; background: var(--card); border: 1px solid var(--card-border); border-radius: 999px; padding: 9px 14px; color: var(--olive-darker); }
.contact-map { margin-top: 22px; border-radius: 22px; overflow: hidden; border: 1px solid var(--card-border); aspect-ratio: 21 / 8; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- Footer ---- */
.site-footer { margin-top: 62px; background: var(--olive-darker); color: var(--cream); }
.footer-grid { padding: 54px 22px 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-logo { width: 26px; height: 26px; border-radius: 6px; }
.footer-brand span { font-family: "Baloo 2", cursive; font-weight: 800; font-size: 23px; }
.footer-tagline { font-size: 14.5px; line-height: 1.6; color: rgba(243,237,221,.7); margin: 14px 0 0; max-width: 30ch; }
.footer-col-title { font-family: "DM Mono", monospace; font-size: 11.5px; color: var(--cream-fade); letter-spacing: .08em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; font-size: 14.5px; }
.footer-links a { color: rgba(243,237,221,.82); }
.newsletter-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.newsletter-row input {
  flex: 1 1 140px; min-width: 0; background: rgba(243,237,221,.08); border: 1px solid rgba(243,237,221,.2);
  border-radius: 12px; padding: 12px 14px; font-size: 14px; color: var(--cream);
}
.newsletter-row input::placeholder { color: rgba(243,237,221,.5); }
.newsletter-row button {
  background: var(--mustard); color: var(--olive-darker); font-weight: 700; font-size: 14px; border: none;
  border-radius: 12px; padding: 12px 18px; cursor: pointer;
}
.footer-bottom { border-top: 1px solid rgba(243,237,221,.14); }
.footer-bottom-inner {
  padding: 18px 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-family: "DM Mono", monospace; font-size: 11.5px; color: rgba(243,237,221,.5);
}

/* ---- Sticky CTA ---- */
.sticky-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mustard); color: var(--olive-darker); font-weight: 700; font-size: 15px;
  padding: 15px 22px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(60,48,10,.34), 0 4px 0 var(--mustard-shadow);
}
.sticky-cta:hover { background: var(--mustard-dark); color: var(--olive-darker); }
.sticky-cta .dot { width: 12px; height: 12px; background: var(--olive-darker); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }

/* ---- Reveal on scroll ---- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---- Animations ---- */
@keyframes bb-marq-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bb-marq-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes bb-float { 0%,100% { transform: translateY(-10px) rotate(-45deg); } 50% { transform: translateY(14px) rotate(-45deg); } }
@keyframes bb-float-item { 0%,100% { transform: translateY(-8px) rotate(var(--rot, 0deg)); } 50% { transform: translateY(10px) rotate(var(--rot, 0deg)); } }
@keyframes bb-sheen { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bb-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes bb-pulse { 0%,100% { opacity: .35; transform: scale(1); } 50% { opacity: .7; transform: scale(1.06); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee, .hero-gallery-item, .hero-art-glow { animation: none; }
}

/* ---- Legal / policy pages ---- */
.legal-page { padding: 62px 22px 80px; }
.legal-content { max-width: 760px; margin: 40px auto 0; font-family: "DM Sans", sans-serif; color: var(--olive-darker); }
.legal-updated { font-family: "DM Mono", monospace; font-size: 12.5px; color: rgba(44,53,31,.55); margin-bottom: 36px; }
.legal-content h2 { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 22px; margin: 40px 0 12px; color: var(--olive-darker); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.7; margin: 0 0 14px; color: rgba(44,53,31,.82); }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; }
.legal-content li { font-size: 15px; line-height: 1.7; color: rgba(44,53,31,.82); margin-bottom: 6px; }
.legal-content strong { color: var(--olive-darker); }
.legal-placeholder { color: var(--mustard-text); font-style: italic; }
