/* noon — huisstijl tokens (merkdossier §3) */
:root {
  --cream: #F4EEE3;
  --linen: #E6DAC4;
  --clay: #C07A56;
  --crust: #7E5636;
  --honey: #E0A458;
  --sage: #77855F;
  --ink: #383026;
  --navh: 93px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--clay); color: var(--cream); }

a { color: inherit; }

/* ---------- above the fold ---------- */

/* hero — full-bleed beeld met scrim, copy links, infostrip onderin */
.hero {
  position: relative;
  min-height: calc(100svh - 38px);
  display: flex;
  flex-direction: column;
  padding-top: var(--navh); /* ruimte achter de sticky nav */
}

/* anchors niet achter de sticky nav laten verdwijnen */
section[id] { scroll-margin-top: 100px; }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* rechts uitgelijnd: stapel + logo blijven heel, de afsnede valt in de lege wand links */
  object-position: right center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(244, 238, 227, 0.92) 0%,
    rgba(244, 238, 227, 0.72) 30%,
    rgba(244, 238, 227, 0.34) 48%,
    rgba(244, 238, 227, 0) 62%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 780px;
  padding: 0 48px 36px;
}

.hero__kicker {
  background: var(--clay);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.hero__copy h1 {
  margin: 26px 0 0;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(54px, 5.4vw, 78px);
  line-height: 1.04;
  max-width: 13ch;
}

.hero__copy p {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.65;
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.hero__strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 48px 26px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--crust);
}

.hero__sep { opacity: 0.45; }

/* topbar — smalle donkere balk met openingstijden en locatie */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 48px;
  background: var(--crust);
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__sep { opacity: 0.5; }

.topbar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.topbar a:hover { color: var(--honey); }

/* nav — sticky; transparant boven de hero, cream + horizonlijn zodra je scrolt.
   de onderrand is de horizon waar de scroll-zon overheen trekt. */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-bottom: calc(-1 * var(--navh)); /* hero schuift eronder */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav--scrolled {
  background: var(--cream);
  border-bottom-color: var(--linen);
}

.nav__sun {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clay);
  will-change: transform;
  pointer-events: none;
}

.nav__logo {
  justify-self: start;
  display: block;
  line-height: 0;
}

.nav__logo svg {
  height: 44px;
  width: auto;
  display: block;
  overflow: visible;
}

.nav__links {
  display: flex;
  gap: 38px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav__links a:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__hours {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.button {
  display: inline-block;
  margin-top: 6px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.25s ease;
}

.button:hover { background: var(--crust); }

.button--nav {
  margin-top: 0;
  padding: 12px 24px;
  font-size: 15px;
}

.button--ghost {
  background: rgba(244, 238, 227, 0.55);
  color: var(--ink);
  border: 1px solid rgba(126, 86, 54, 0.28);
}

.button--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ---------- stap 1 · marquee-divider ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  padding: 26px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}

.marquee__item {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 27px;
  white-space: nowrap;
  color: var(--ink);
}

.marquee__item--clay { color: var(--clay); }

/* de punt tussen de zinnen — kleine echo van de zonneschijf */
.marquee__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ---------- stap 2 · today's bake ---------- */

.kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--clay);
}

/* ---------- stap 3 · bakery ---------- */

.bakery { padding: 110px 48px 130px; }

.bakery__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 84px;
  align-items: center;
}

/* twee boog-portretten naast elkaar — de twee n's van het palindroom */
.bakery__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.bakery__fig { margin: 0; }

.bakery__fig--offset { margin-top: 60px; }

.bakery__fig img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 220px 220px 18px 18px;
}

.bakery__fig:first-child img { object-position: 60% 50%; }
.bakery__fig--offset img { object-position: 25% 50%; }

.bakery__fig figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--crust);
}

.bakery__title {
  margin: 0 0 18px;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.12;
}

.bakery__copy p:not(.kicker):not(.bakery__note) {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
}

.bakery__note {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--crust);
  font-style: italic;
  font-family: "Fraunces", serif;
}

/* ---------- stap 4 · lunch ---------- */

.lunch { padding: 0 48px 150px; }

.lunch__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: center;
}

.lunch__title {
  margin: 0 0 18px;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.12;
}

.lunch__copy p:not(.kicker):not(.lunch__note) {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
}

.lunch__note {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--crust);
  font-style: italic;
  font-family: "Fraunces", serif;
}

/* groot raamzit-beeld met ronde zon-inzet — de o van het woordmerk */
.lunch__media { position: relative; }

.lunch__main {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 30% 50%;
  border-radius: 24px;
}

.lunch__inset {
  position: absolute;
  left: -72px;
  bottom: -48px;
  width: 42%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 45% 72%;
  border-radius: 50%;
  border: 10px solid var(--cream);
}

/* ---------- stap 5 · menu ---------- */

.menu { padding: 0 48px 150px; }

.menu__head {
  max-width: 1180px;
  margin: 0 auto 64px;
  text-align: center;
}

.menu__head .kicker { margin-bottom: 12px; }

.menu__title {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.12;
}

.menu__sub {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--crust);
}

/* tabs — pills in huisstijl; actieve tab gevuld in clay */
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 56px;
}

.menu__tab {
  padding: 12px 26px;
  border: 1px solid var(--clay);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.menu__tab:hover { color: var(--clay); border-color: var(--crust); }

.menu__tab.is-active {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

.menu__pane { display: none; }

.menu__pane.is-active {
  display: block;
  animation: pane-in 0.4s ease;
}

@keyframes pane-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .menu__pane.is-active { animation: none; }
}

.menu__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.58fr 1fr;
  gap: 72px;
  align-items: start;
}

.menu__group {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 22px;
}

.menu__group span {
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: var(--crust);
}

.menu__group--second { margin-top: 40px; }

.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--linen);
}

.menu__name {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 18px;
}

.menu__leader {
  flex: 1;
  border-bottom: 1px dotted var(--linen);
  transform: translateY(-4px);
}

.menu__price {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.menu__desc {
  flex-basis: 100%;
  margin-top: -4px;
  font-size: 13px;
  color: var(--crust);
}

/* smal middenbeeld — de boognis tussen de kolommen */
.menu__media { margin: 0; align-self: center; }

.menu__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 9;
  object-fit: cover;
  border-radius: 999px 999px 18px 18px;
}

/* ---------- stap 6 · our story ---------- */

.story { padding: 0 48px 150px; }

.story__head {
  max-width: 1180px;
  margin: 0 auto 72px;
  text-align: center;
}

.story__head .kicker { margin-bottom: 12px; }

.story__title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.12;
}

/* drie beats, symmetrisch — zoals het palindroom */
.story__beats {
  max-width: 1080px;
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px;
  text-align: center;
}

.story__mark {
  height: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 22px;
}

.story__sun {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clay);
}

.story__mark svg { height: 78px; width: auto; }

.story__thai {
  font-family: "Fraunces", serif;
  font-size: 48px;
  line-height: 1;
  color: var(--clay);
}

.story__beat h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 22px;
}

.story__beat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.story__media {
  max-width: 1180px;
  margin: 0 auto;
}

.story__media img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 24px;
}

.story__media figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--crust);
}

/* ---------- stap 7 · #meetmeatnoon ---------- */

.ig { padding: 0 0 150px; }

.ig__head {
  text-align: center;
  padding: 0 48px;
  margin-bottom: 52px;
}

.ig__head .kicker { margin-bottom: 12px; }

.ig__title {
  margin: 0 0 22px;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.12;
}

/* full-width strip van zes vierkante tegels, zoals het grid zelf */
.ig__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.ig__tile {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ig__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ig__tile:hover img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .ig__tile img { transition: none; }
  .ig__tile:hover img { transform: none; }
}

/* ---------- stap 8 · visit ---------- */

.visit { padding: 0 48px; }

.visit__inner {
  max-width: 1180px;
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.visit__title {
  margin: 0 0 30px;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.12;
}

.visit__hours {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.visit__hours li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--linen);
}

.visit__hours li:first-child { border-top: 1px solid var(--linen); }

.visit__label {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 18px;
}

.visit__leader {
  flex: 1;
  border-bottom: 1px dotted var(--linen);
  transform: translateY(-4px);
}

.visit__value {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.visit__address {
  margin: 0 0 30px;
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
}

.visit__address a { color: var(--clay); text-decoration: none; }
.visit__address a:hover { text-decoration: underline; }

.visit__actions { display: flex; gap: 14px; }

/* het kaartje — linnen zee, kalk eiland */
.visit__map { margin: 0; }

.visit__map svg {
  display: block;
  width: 100%;
  height: auto;
  background: var(--linen);
  border-radius: 24px;
}

.visit__map figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--crust);
}

.visit__media {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 130px;
}

.visit__media img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 24px;
}

.visit__media figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--crust);
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 48px 26px;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer__brand svg {
  height: 42px;
  width: auto;
  display: block;
}

.footer__brand p {
  margin: 18px 0 0;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 8px;
}

.footer__nav a,
.footer__social a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.footer__nav a:hover,
.footer__social a:hover { color: var(--honey); }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  justify-self: end;
  text-align: right;
}

.footer__social span {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--honey);
}

.footer__base {
  max-width: 1180px;
  margin: 52px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 238, 227, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* ---------- stap 9 · scroll-reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--in {
  opacity: 1;
  transform: none;
}

/* ---------- mobiel menu ---------- */

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease;
}

body.menu-open .nav__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .nav__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--cream);
  padding: calc(var(--navh) + 30px) 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mobilemenu[hidden] { display: none; }

body.menu-open .nav { background: var(--cream); }

.mobilemenu__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobilemenu__links a {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 34px;
  color: var(--ink);
  text-decoration: none;
}

.mobilemenu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.mobilemenu__actions .button { text-align: center; margin-top: 0; }

.mobilemenu__meta {
  margin: auto 0 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--crust);
}

/* ---------- tablet (≤1080px) ---------- */

@media (max-width: 1080px) {
  .nav { padding: 18px 28px; gap: 16px; }
  .nav__links { gap: 22px; }
  .nav__links a { font-size: 13px; }
  .topbar { padding: 0 28px; }

  .hero__copy { padding: 0 28px 32px; }
  .hero__strip { padding: 0 28px 24px; }

  .bakery, .lunch, .menu, .story, .visit { padding-left: 32px; padding-right: 32px; }
  .bakery__inner, .lunch__inner, .visit__inner { gap: 56px; }
  .menu__inner { grid-template-columns: 1fr 0.5fr 1fr; gap: 44px; }
  .story__beats { gap: 44px; }
}

/* ---------- mobiel (≤760px) ---------- */

@media (max-width: 760px) {
  :root { --navh: 64px; }

  section[id] { scroll-margin-top: 78px; }

  /* topbar: alleen openingstijden + instagram */
  .topbar { padding: 0 20px; font-size: 11.5px; height: 34px; }
  .topbar__left { gap: 12px; }
  .topbar__sep, .topbar__left span:last-child { display: none; }
  .topbar__right a[href="#visit"] { display: none; }

  /* nav: logo · reserveerknop · hamburger */
  .nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px 10px 20px; gap: 10px; }
  .nav__logo svg { height: 32px; }
  .nav__links { display: none; }
  .nav__right { margin-left: auto; gap: 10px; }
  .nav__right .button--ghost { display: none; }
  .button--nav { padding: 10px 16px; font-size: 13px; }
  .nav__burger { display: flex; }

  /* hero: copy boven, beeld eronder als eigen band */
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__copy { order: 1; padding: 34px 24px 0; max-width: none; }
  .hero__media { order: 2; position: relative; inset: auto; margin: 30px 20px 0; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; }
  .hero__media img { object-position: right center; }
  .hero__scrim { display: none; }
  .hero__strip { order: 3; padding: 18px 24px 30px; flex-wrap: wrap; gap: 6px 14px; }

  .hero__copy h1 { font-size: clamp(38px, 10.5vw, 46px); max-width: none; margin-top: 22px; }
  .hero__copy p { font-size: 16px; margin-top: 18px; max-width: none; }
  .hero__actions { margin-top: 26px; flex-wrap: wrap; }

  /* marquee */
  .marquee { padding: 18px 0; }
  .marquee__item { font-size: 20px; }
  .marquee__group { gap: 26px; padding-right: 26px; }
  .marquee__dot { width: 7px; height: 7px; }

  /* bakery */
  .bakery { padding: 56px 24px 72px; }
  .bakery__inner { grid-template-columns: 1fr; gap: 40px; }
  .bakery__media { gap: 16px; }
  .bakery__fig--offset { margin-top: 34px; }
  .bakery__fig img { border-radius: 999px 999px 12px 12px; }

  /* lunch */
  .lunch { padding: 0 24px 84px; }
  .lunch__inner { grid-template-columns: 1fr; gap: 40px; }
  .lunch__media { order: 2; }
  .lunch__inset { left: -8px; bottom: -26px; width: 44%; border-width: 6px; }

  /* menu: kolommen stapelen, middenbeeld weg */
  .menu { padding: 0 24px 84px; }
  .menu__head { margin-bottom: 34px; }
  .menu__tabs { flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
  .menu__tab { padding: 10px 18px; font-size: 13px; }
  .menu__inner { display: block; }
  .menu__media { display: none; }
  .menu__inner > .menu__col:not(:first-child) { margin-top: 36px; }

  /* story: op mobiel verborgen (neemt te veel ruimte in) — desktop houdt hem */
  .story { display: none; }
  .mobilemenu__links a[href="#story"],
  .footer__nav a[href="#story"] { display: none; }

  /* instagram-strip: 3×2 */
  .ig { padding-bottom: 84px; }
  .ig__grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* visit */
  .visit { padding: 0 24px; }
  .visit__inner { grid-template-columns: 1fr; gap: 44px; margin-bottom: 64px; }
  .visit__actions { flex-wrap: wrap; }
  .visit__media { padding-bottom: 72px; }
  .visit__media img { aspect-ratio: 3 / 2; object-position: 55% 45%; }

  /* footer */
  .footer { padding: 44px 24px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 26px; }
  .footer__social { justify-self: start; text-align: left; }
  .footer__base { margin-top: 34px; flex-direction: column; gap: 6px; }
}
