/* ====== EMILIO. Design Tokens ====== */
:root {
  /* Brand palette */
  --cream: #F5E9D4;
  --cream-2: #F0DFC2;
  --cream-3: #E8D2B0;
  --ink: #1F3A2E;          /* dark green */
  --ink-2: #2B4A3B;
  --blush: #DC9A89;
  --blush-deep: #C97A6A;
  --ochre: #D89B36;
  --ochre-soft: #E5B566;
  --tan: #C9A878;
  --heart: #E8B5AA;
  --line: rgba(31,58,46,0.18);

  /* Type */
  --font-display: 'Fredoka', 'Sniglet', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-script: 'Caveat', 'Kalam', cursive;
  --font-caps: 'Manrope', system-ui, sans-serif;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-tap-highlight-color: rgba(31,58,46,0.14); accent-color: var(--ink); }
::selection { background: var(--blush); color: var(--ink); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* App shell */
#root { min-height: 100vh; }

.app {
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  overflow-x: hidden;
}

/* ============ TOP NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { background: rgba(31,58,46,0.07); }
.nav-links a.active {
  background: var(--ink);
  color: var(--cream);
}
.nav-cta {
  background: var(--blush);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, background 0.15s;
}
.nav-cta:hover { background: var(--blush-deep); transform: translateY(-1px); }
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 42px; height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}

/* ============ DECORATIVE BLOBS ============ */
/* Anchored to the true viewport corners (calc reaches past the centered max-width
   container to the screen edge), so they sit big & tucked in the corners on any screen. */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: clamp(200px, 24vw, 340px);
  height: clamp(200px, 24vw, 340px);
}
.blob svg { width: 100%; height: 100%; display: block; }
.blob-tl { top: 0; left: calc(50% - 50vw); transform: translate(-32%, -42%) rotate(-8deg); }
.blob-tr { top: 0; right: calc(50% - 50vw); transform: translate(32%, -46%) rotate(6deg); }
@media (max-width: 640px) {
  .blob { width: clamp(120px, 32vw, 180px); height: clamp(120px, 32vw, 180px); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 90px) var(--gutter) clamp(50px, 7vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}

/* Centered hero (homepage) — big logo flyer-stijl */
.hero-centered {
  text-align: center;
  padding-top: clamp(36px, 6vw, 70px);
}
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(12px, 2vw, 22px);
}
.hero-logo {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.hero-centered .hero-eyebrow {
  margin: 0 auto 22px;
}
.hero-centered .hero-script {
  display: block;
  margin-bottom: -8px;
}
.hero-centered .hero-title {
  font-size: clamp(48px, 8vw, 92px);
}
.hero-centered .hero-sub {
  margin: 22px auto 30px;
  max-width: 52ch;
}
.hero-centered .hero-ctas {
  justify-content: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 36px 0 0;
  font-size: 13px;
  opacity: 0.78;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .dotsep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.5;
}
.hero-photo-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 6vw, 70px);
}
@media (max-width: 720px) {
  .hero-photo-strip { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 10px; font-size: 12.5px; }
  .hero-trust .dotsep { display: none; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-caps);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream-2);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blush); }
.hero-eyebrow .dot.b { background: var(--ochre); }

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(34px, 5vw, 56px);
  color: var(--ink);
  line-height: 1;
  margin: 0 0 4px;
  transform: rotate(-2deg);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero-title .pink { color: var(--blush-deep); }
.hero-title .ochre { color: var(--ochre); }
.hero-sub {
  margin: 22px 0 32px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink);
  opacity: 0.78;
  max-width: 44ch;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn:disabled { opacity: 0.55; cursor: wait; pointer-events: none; }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-pink {
  background: var(--blush);
  color: var(--ink);
}
.btn-pink:hover { background: var(--blush-deep); transform: translateY(-1px); }

/* Hero visual side */
.hero-stage {
  position: relative;
  aspect-ratio: 1/1.05;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.hero-stage .photo:nth-child(1) { grid-column: 1; grid-row: 1 / 3; align-self: stretch; }
.hero-stage .photo:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-stage .photo:nth-child(3) { grid-column: 2; grid-row: 2; }

/* Photo placeholder */
.photo,
.photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  min-height: 120px;
}
.photo {
  background:
    repeating-linear-gradient(
      45deg,
      var(--cream-3),
      var(--cream-3) 12px,
      var(--cream-2) 12px,
      var(--cream-2) 24px
    );
  border: 1.5px dashed rgba(31,58,46,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo.tall, .photo-wrap.tall { aspect-ratio: 3/4; }
.photo.square, .photo-wrap.square { aspect-ratio: 1/1; }
.photo.wide, .photo-wrap.wide { aspect-ratio: 4/3; }
.photo-wrap image-slot {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-wrap image-slot::part(empty) {
  background:
    repeating-linear-gradient(
      45deg,
      var(--cream-3),
      var(--cream-3) 12px,
      var(--cream-2) 12px,
      var(--cream-2) 24px
    );
  border: 1.5px dashed rgba(31,58,46,0.28);
  color: var(--ink);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.photo .ph-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31,58,46,0.2);
  text-align: center;
  max-width: 80%;
}
.photo .ph-icon {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 22px;
  opacity: 0.4;
}

/* Decorative sparkles */
.spark {
  position: absolute;
  width: 22px; height: 22px;
  color: var(--ochre);
  pointer-events: none;
}
.heart-icon {
  display: inline-block;
  vertical-align: middle;
}

/* ============ SECTION CHROME ============ */
/* "How it works" 3-stap list */
.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.how-it-works .step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.how-it-works .num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 32px;
  text-align: center;
}
.how-it-works .step strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.how-it-works .step span {
  font-size: 14px;
  opacity: 0.7;
  display: block;
  margin-top: -2px;
}

/* Section chrome */
section.block {
  position: relative;
  padding: clamp(50px, 8vw, 100px) var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--blush-deep);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  color: var(--ink);
}
.section-title .underline {
  position: relative;
  display: inline-block;
}
.section-title .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--ochre);
  border-radius: 99px;
  transform: scaleX(0.9) translateX(2%);
}

/* ============ CATEGORY CARDS ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ink);
  min-height: 380px;
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 18px 40px -22px rgba(31,58,46,0.4);
}
.cat-card .photo { flex: 1; }
.cat-card .cat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cat-card .cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  letter-spacing: -0.01em;
}
.cat-card .cat-count {
  font-family: var(--font-caps);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
}
.cat-card .arrow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transition: transform 0.2s;
}
.cat-card:hover .arrow { transform: translateX(4px); }

/* ============ ZOMERBAR ============ */
.zomerbar {
  background: var(--ink);
  color: var(--cream);
  border-radius: 36px;
  padding: clamp(36px, 5vw, 72px) clamp(28px, 5vw, 64px);
  margin: clamp(50px, 8vw, 100px) var(--gutter);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.zomerbar-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.zomerbar .section-eyebrow { color: var(--ochre-soft); }
.zomerbar .section-title { color: var(--cream); }
.zomerbar .section-title .underline::after { background: var(--blush); }
.zb-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 28px;
}
.zb-meta .item {
  border: 1px solid rgba(245,233,212,0.2);
  border-radius: 18px;
  padding: 14px 16px;
}
.zb-meta .lbl {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.zb-meta .val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.zb-weather {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(245,233,212,0.07);
  border: 1px dashed rgba(245,233,212,0.3);
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.5;
  max-width: 48ch;
}
.zb-weather-ico {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.2;
}
.zb-weather strong { color: var(--ochre-soft); }

.zb-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.zb-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 8px;
  border: 1px dashed rgba(245,233,212,0.3);
  border-radius: 16px;
}
.zb-feat .ico {
  font-size: 26px;
  color: var(--ochre-soft);
}
.zb-feat .lbl {
  font-family: var(--font-caps);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  opacity: 0.92;
  line-height: 1.3;
}

/* Zomerbar calendar */
.zb-cal {
  background: rgba(245,233,212,0.05);
  border: 1px solid rgba(245,233,212,0.18);
  border-radius: 24px;
  padding: 22px;
  position: relative;
}
.zb-cal h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}
.zb-cal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
}
.zb-cal-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.zb-cal-row.next {
  background: var(--blush);
  color: var(--ink);
  border-color: var(--blush);
}
.zb-cal-row .day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  width: 36px;
  text-align: center;
  letter-spacing: -0.02em;
}
.zb-cal-row .mo {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  width: 32px;
}
.zb-cal-row.next .mo { opacity: 0.8; }
.zb-cal-row .when {
  font-size: 14px;
  opacity: 0.78;
  margin-left: auto;
}
.zb-cal-row.next .when { opacity: 0.9; font-weight: 600; }
.zb-cal-row .pill {
  margin-left: auto;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 99px;
}

/* ============ MENU PAGE ============ */
.menu-hero {
  padding: clamp(40px, 6vw, 70px) var(--gutter) clamp(20px, 3vw, 30px);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: visible;
}
.menu-hero .hero-script { display: block; margin-bottom: 0; }
.menu-hero .hero-title { font-size: clamp(56px, 9vw, 110px); }
.menu-hero p {
  max-width: 50ch;
  margin: 18px auto 0;
  font-size: 17px;
  opacity: 0.78;
}

.menu-tabs {
  position: sticky;
  top: 70px;
  z-index: 30;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter);
}
.menu-tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs-inner::-webkit-scrollbar { display: none; }
.menu-tab {
  white-space: nowrap;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.65;
  transition: all 0.15s;
}
.menu-tab:hover { opacity: 1; background: rgba(31,58,46,0.06); }
.menu-tab.active {
  background: var(--ink);
  color: var(--cream);
  opacity: 1;
  border-color: var(--ink);
}

.menu-section {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(20px, 4vw, 40px);
  max-width: 1280px;
  margin: 0 auto;
}
.menu-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--line);
}
.menu-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-section-title .ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.menu-section-title .ico.blush { background: var(--blush); color: var(--ink); }
.menu-section-title .ico.ochre { background: var(--ochre); color: var(--ink); }
.menu-section-title .ico.tan { background: var(--tan); color: var(--ink); }
.menu-section-note {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--blush-deep);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.menu-grid.single { grid-template-columns: 1fr; max-width: 720px; }
.menu-section.no-photos { padding-top: clamp(24px, 3vw, 40px); padding-bottom: clamp(20px, 3vw, 32px); }
.menu-list { display: flex; flex-direction: column; }
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--line);
  transition: background 0.15s, padding 0.15s;
  border-radius: 6px;
  cursor: pointer;
}
.menu-row:hover {
  background: var(--cream-2);
  padding-left: 12px;
  padding-right: 12px;
  border-bottom-color: transparent;
}
.menu-row .name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.005em;
}
.menu-row .sub {
  display: block;
  font-weight: 500;
  font-size: 13px;
  opacity: 0.65;
  margin-top: 2px;
}
.menu-row .add-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  opacity: 0.35;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s, background 0.15s;
}
.menu-row:hover .add-mark { opacity: 0; }
.menu-row .add { margin-right: 0; }
.menu-row.signature .name::before {
  content: "★";
  display: inline-block;
  color: var(--ochre);
  margin-right: 6px;
}
.menu-side {
  position: sticky;
  top: 160px;
}
.menu-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.menu-photo-stack .photo:first-child,
.menu-photo-stack .photo-wrap:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4/3;
}
.menu-photo-stack.one { grid-template-columns: 1fr; }
.menu-photo-stack.no-hero .photo:first-child,
.menu-photo-stack.no-hero .photo-wrap:first-child {
  grid-column: auto;
  aspect-ratio: 1/1;
}

/* "Bestel deze" inline action */
.menu-row .add {
  display: none;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  margin-right: 8px;
}
.menu-row:hover .add { display: inline-flex; }

/* Weeksmaken banner */
.weeksmaken {
  background: var(--blush);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.weeksmaken h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 36px);
  margin: 0;
  letter-spacing: -0.01em;
}
.weeksmaken p {
  margin: 6px 0 0;
  max-width: 50ch;
}
.weeksmaken .scoop {
  font-size: 60px;
  background: var(--cream);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
a.info-card { transition: transform 0.15s, box-shadow 0.15s; cursor: pointer; }
a.info-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -18px rgba(31,58,46,0.5); }
a.info-card:hover .val { color: var(--blush-deep); }
.info-card .ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card .lbl {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 4px;
}
.info-card .val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.info-card .val a { text-decoration: none; }
.info-card .val a:hover { color: var(--blush-deep); }
.info-card.dark {
  background: var(--ink);
  color: var(--cream);
}
.info-card.dark .ico { background: var(--blush); color: var(--ink); }
.info-card.dark .lbl { color: var(--cream); }

/* Order form */
.order-form {
  background: var(--cream-2);
  border-radius: 36px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.order-form h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.order-form p.lead {
  margin: 0 0 24px;
  opacity: 0.75;
  font-size: 15px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-caps);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.8;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.form-field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}
.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: var(--blush-deep);
}
.form-field .err {
  font-size: 12px;
  color: var(--blush-deep);
  display: none;
}
.form-field.error .err { display: block; }
.form-occasion {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.occ-chip {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.15s;
}
.occ-chip:hover { border-color: var(--ink); }
.occ-chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Mode switch — bestelling vs idee */
.form-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 6px 0 22px;
}
.mode-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  transition: all 0.15s;
}
.mode-btn:hover { border-color: var(--ink); }
.mode-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.mode-btn .mode-ico {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mode-btn.active .mode-ico { background: var(--blush); }
.mode-btn strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
}
.mode-btn em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  opacity: 0.7;
  margin-top: 2px;
  line-height: 1.35;
}
@media (max-width: 560px) {
  .form-mode { grid-template-columns: 1fr; }
}
.form-contactnotice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 22px;
}
.form-contactnotice .ico {
  font-size: 22px;
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blush);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-contactnotice strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}
.form-contactnotice span {
  font-size: 13.5px;
  opacity: 0.82;
  line-height: 1.45;
}
.form-submit {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-fine {
  font-size: 13px;
  opacity: 0.65;
  max-width: 36ch;
}
.form-success {
  background: var(--ink);
  color: var(--cream);
  border-radius: 36px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(31,58,46,0.7);
  animation: successPop 0.5s cubic-bezier(.2,.9,.3,1.25);
}
@keyframes successPop {
  from { transform: scale(0.94) translateY(14px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.form-success::before,
.form-success::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.form-success::before {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(220,154,137,0.35), transparent 70%);
  top: -90px; right: -70px;
}
.form-success::after {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(216,155,54,0.28), transparent 70%);
  bottom: -80px; left: -60px;
}
.form-success > * { position: relative; z-index: 1; }
.form-success .check {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1;
  box-shadow: 0 0 0 10px rgba(220,154,137,0.18);
  animation: checkPop 0.5s cubic-bezier(.2,.9,.3,1.6) 0.15s both;
}
@keyframes checkPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.form-success .success-script {
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ochre-soft);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

/* Foutmelding-banner bovenaan het formulier */
.form-errorbar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: color-mix(in srgb, var(--blush) 30%, var(--cream));
  border: 1.5px solid var(--blush-deep);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.45;
  animation: errShake 0.4s ease;
}
@keyframes errShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.form-errorbar .ico {
  font-size: 18px;
  flex-shrink: 0;
}
.form-errorbar strong { display: block; margin-bottom: 2px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 5vw, 70px) var(--gutter) 30px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h5 {
  font-family: var(--font-caps);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.65;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a { text-decoration: none; opacity: 0.92; }
.footer a:hover { color: var(--blush); }
.footer-brand .tagline {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--blush);
  margin: 14px 0 0;
}
.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(245,233,212,0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ DIRECTION: MAGAZINE ============ */
.app[data-direction="magazine"] {
  --cream: #F6EFE0;
  --cream-2: #EDE3CE;
  --font-display: 'Boldonse', 'Fraunces', 'Playfair Display', serif;
  --font-script: 'Caveat', cursive;
}
.app[data-direction="magazine"] .hero-title {
  font-family: 'Boldonse', 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-size: clamp(56px, 9vw, 112px);
}
.app[data-direction="magazine"] .section-title { font-family: 'Boldonse', 'Playfair Display', serif; font-weight: 400; }
.app[data-direction="magazine"] .menu-section-title { font-family: 'Boldonse', 'Playfair Display', serif; font-weight: 400; }
.app[data-direction="magazine"] .cat-card { background: #fff; border: 1.5px solid var(--line); }
.app[data-direction="magazine"] .nav-cta { background: var(--ink); color: var(--cream); }
.app[data-direction="magazine"] .blob { opacity: 0.4; }
.app[data-direction="magazine"] .hero-eyebrow { background: transparent; border: 1px solid var(--line); }
.app[data-direction="magazine"] .menu-row .price { background: transparent; padding: 0; }

/* ============ DIRECTION: POP ============ */
.app[data-direction="pop"] {
  --cream: #F4E6D0;
  --cream-2: #1F3A2E;
  --font-display: 'Bowlby One', 'Fredoka', sans-serif;
}
.app[data-direction="pop"] .hero-title {
  font-family: 'Bowlby One', sans-serif;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: clamp(56px, 10vw, 124px);
}
.app[data-direction="pop"] .section-title { font-family: 'Bowlby One', sans-serif; text-transform: uppercase; letter-spacing: 0; }
.app[data-direction="pop"] .menu-section-title { font-family: 'Bowlby One', sans-serif; text-transform: uppercase; }
.app[data-direction="pop"] .hero-stage .photo:nth-child(1) { background: var(--blush); border-color: var(--blush-deep); }
.app[data-direction="pop"] .hero-stage .photo:nth-child(2) { background: var(--ochre); border-color: var(--ochre-soft); }
.app[data-direction="pop"] .hero-stage .photo:nth-child(3) { background: var(--ink); border-color: var(--ink-2); }
.app[data-direction="pop"] .hero-stage .photo:nth-child(3) .ph-label { background: var(--ink); color: var(--cream); border-color: var(--cream); }
.app[data-direction="pop"] .cat-card { background: var(--cream); border: 2px solid var(--ink); }
.app[data-direction="pop"] .cat-card:nth-child(2) { background: var(--blush); }
.app[data-direction="pop"] .cat-card:nth-child(3) { background: var(--ochre); }
.app[data-direction="pop"] .btn-primary { box-shadow: 4px 4px 0 var(--blush-deep); }
.app[data-direction="pop"] .btn-pink { box-shadow: 4px 4px 0 var(--ink); }
.app[data-direction="pop"] .cat-card:hover { box-shadow: 6px 6px 0 var(--ink); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { aspect-ratio: 1/0.7; max-height: 480px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .zomerbar-grid { grid-template-columns: 1fr; }
  .zb-features { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .weeksmaken { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-burger.open + .nav-links-mobile { display: flex; }
  .cat-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .zb-features { grid-template-columns: repeat(2, 1fr); }
  .zb-meta { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stage { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; aspect-ratio: 1/1; }
}

@media (max-width: 820px) {
  /* Collapse the inline 2-col bands to a single column on tablets/phones */
  .moment-band { grid-template-columns: 1fr !important; }
  .moment-band > div:last-child { order: -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  /* Tighten vertical rhythm on phones */
  section.block { padding-top: 44px; padding-bottom: 44px; }
  .hero-centered { padding-top: 30px; padding-bottom: 36px; }
  .hero-centered .hero-title { font-size: clamp(40px, 13vw, 60px); }
  .hero-centered .hero-sub { font-size: 15.5px; margin-top: 18px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }

  /* Photo strips: 2 across, a touch shorter so they read as a tidy gallery */
  .hero-photo-strip { gap: 10px; margin-top: 32px; }
  .hero-photo-strip .photo-wrap.tall { aspect-ratio: 1/1; }
  .photo-strip { gap: 10px; }

  /* Section titles scale down */
  .section-title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 28px; }
  .menu-section-title { font-size: clamp(28px, 8vw, 40px); }
  .menu-section-title .ico { width: 46px; height: 46px; font-size: 20px; }
  .menu-section-head { margin-bottom: 24px; }
  .menu-section { padding-top: 36px; padding-bottom: 24px; }

  /* Menu side photos: tidy 2-up row, not oversized */
  .menu-photo-stack { gap: 10px; margin-top: 16px; }

  /* Category cards a bit shorter */
  .cat-card { min-height: 0; padding: 16px; }

  /* Zomerbar */
  .zomerbar { padding: 28px 20px; border-radius: 28px; margin-left: 18px; margin-right: 18px; }
  .zb-features { grid-template-columns: repeat(2, 1fr); }
  .zb-cal { padding: 16px; }
  .zb-cal-row .day { font-size: 20px; width: 30px; }

  /* Bands & forms */
  .adres-band { grid-template-columns: 1fr !important; }
  .order-form { border-radius: 26px; padding: 22px; }
  .form-success { padding: 30px 20px; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .zb-features { grid-template-columns: 1fr 1fr; }
  .hero-centered .hero-title { font-size: clamp(34px, 13vw, 48px); }
}

/* Mobile menu drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  padding: 30px var(--gutter);
  flex-direction: column;
  gap: 18px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--line);
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 32px;
  text-decoration: none;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

/* small spark anim */
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.15) rotate(15deg); opacity: 1; }
}
.spark { animation: sparkle 3.2s ease-in-out infinite; }
.spark.s2 { animation-delay: 0.7s; }
.spark.s3 { animation-delay: 1.4s; }
