/* ==========================================================================
   Bar Bizoe — stylesheet
   Kleurenpalet en typografie overgenomen van de originele site barbizoe.be
   ========================================================================== */

:root {
  /* Kleuren — origineel BarBizoe palet */
  --cream: #EEE7DD;
  --cream-soft: #F6F1E8;
  --cream-deep: #E5DCCD;

  --terracotta: #89351E;        /* primair accent — donker rood/bruin */
  --terracotta-deep: #6B2715;
  --terracotta-soft: #A0492E;

  --brown: #8E6C50;              /* warm bruin — tekst */
  --brown-deep: #5E4734;
  --brown-soft: #B69277;

  --beige: #C6AE7C;              /* secundair accent — warm beige/goud */
  --beige-soft: #D9C49A;

  --ink: #2C2118;                /* zeer donker bruin — vrijwel zwart */
  --ink-soft: #4A3A2C;

  --white: #FFFFFF;

  /* Typografie */
  --font-heading: "Josefin Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Schaalwaardes */
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(46, 33, 24, 0.08);
  --shadow-md: 0 18px 44px rgba(46, 33, 24, 0.12);
  --shadow-lg: 0 30px 80px rgba(46, 33, 24, 0.22);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--brown-deep);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--terracotta); }

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

ul { list-style: none; padding: 0; margin: 0; }

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

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 500;
  color: var(--beige);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--beige-soft); }

.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 400;
  color: var(--terracotta);
  max-width: 18ch;
}
.section-title--light { color: var(--cream); }

.section-sub {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--brown);
  margin: 14px 0 0;
  max-width: 56ch;
  line-height: 1.5;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease),
              background-color 0.25s var(--ease),
              color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.btn--lg {
  padding: 18px 34px;
  font-size: 14.5px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--terracotta-deep);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--beige);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  background: #B89A66;
  color: var(--cream);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--terracotta);
  box-shadow: inset 0 0 0 1.5px rgba(137, 53, 30, 0.45);
}
.btn--ghost:hover {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--terracotta);
}
.btn--ghost-light {
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(238, 231, 221, 0.55);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--terracotta);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--terracotta);
  padding: 12px 0;
}
.link-arrow .material-symbols-rounded {
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover .material-symbols-rounded {
  transform: translateX(4px);
}

/* ---------- Header / navigatie ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease),
              padding 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(238, 231, 221, 0.72);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 1px 0 rgba(46, 33, 24, 0.07);
  padding: 12px 0;
}

.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--cream);
  transition: color 0.35s var(--ease);
}
.site-header.is-scrolled .brand { color: var(--terracotta); }

.brand__logo {
  width: 132px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.18));
  transition: width 0.35s var(--ease), filter 0.35s var(--ease);
}
.site-header.is-scrolled .brand__logo {
  width: 112px;
  filter: none;
}

/* Lippen-logo in de hero (vervangt "BAR BIZOE · BAZEL" tekst) */
.hero__logo {
  display: block;
  width: clamp(180px, 18vw, 260px);
  height: auto;
  margin: 100px auto 8px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

/* Foto in de "Bi-Zoe · Bij Zoë" pull-quote sectie */
.story-quote__photo {
  max-width: 560px;
  margin: 0 auto 36px;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.story-quote__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav { display: block; }

.nav-list {
  display: flex;
  gap: 28px;
}
.nav-list a {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 0;
  position: relative;
  transition: color 0.35s var(--ease);
}
.site-header.is-scrolled .nav-list a { color: var(--brown-deep); }

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-list a:hover { color: var(--beige-soft); }
.site-header.is-scrolled .nav-list a:hover { color: var(--terracotta); }
.nav-list a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: rgba(238, 231, 221, 0.18);
  color: var(--cream);
  align-items: center;
  justify-content: center;
}
.site-header.is-scrolled .nav-toggle {
  background: rgba(137, 53, 30, 0.1);
  color: var(--terracotta);
}

.nav-actions .btn--secondary {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(238, 231, 221, 0.55);
}
.nav-actions .btn--secondary:hover {
  background: var(--cream);
  color: var(--terracotta);
  box-shadow: inset 0 0 0 1.5px var(--cream);
}
.site-header.is-scrolled .nav-actions .btn--secondary {
  color: var(--terracotta);
  box-shadow: inset 0 0 0 1.5px rgba(137, 53, 30, 0.4);
}
.site-header.is-scrolled .nav-actions .btn--secondary:hover {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--terracotta);
}

/* Mobiel menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  padding: 40px;
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: rgba(137, 53, 30, 0.08);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 8s linear;
}
.hero__video.is-active {
  opacity: 1;
  transform: scale(1.0);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 13, 8, 0.55) 0%, rgba(20, 13, 8, 0.28) 35%, rgba(20, 13, 8, 0.78) 100%),
    radial-gradient(circle at 50% 60%, transparent 0%, rgba(20, 13, 8, 0.4) 90%);
}

.hero__content {
  max-width: 1180px;
  text-align: center;
  padding: 0 var(--gutter);
  margin-top: 70px;
  animation: heroFade 1s var(--ease) 0.2s both;
}

.hero__title {
  font-size: clamp(36px, 5.6vw, 76px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: -28px 0 22px;
  white-space: nowrap;
}
.hero__title-accent {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  color: var(--beige-soft);
  font-size: clamp(28px, 4.4vw, 60px);
  letter-spacing: 0.01em;
  margin-top: 10px;
  white-space: normal;
}

.hero__lead {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 38px;
  letter-spacing: 0.04em;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: rgba(238, 231, 221, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--cream); background: rgba(238, 231, 221, 0.28); }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Intro ---------- */
.intro {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--cream);
}

.intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}

.intro__text { max-width: 540px; }
.intro__lead {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--brown);
  margin: 28px 0 36px;
  line-height: 1.7;
}

.intro__image {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.intro__image:hover img { transform: scale(1.06); }

.intro__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(238, 231, 221, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 22px;
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.intro__badge-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.intro__badge-text {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ---------- Menu sectie ---------- */
.menu {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--cream-soft);
}

.menu__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.menu__head .section-title { margin: 0 auto; }
.menu__head .section-sub { margin-left: auto; margin-right: auto; }

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}
.menu__tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 32px;
  border-radius: var(--radius-m);
  background: var(--cream);
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
  min-width: 200px;
}
.menu__tab .material-symbols-rounded {
  font-size: 28px;
  color: var(--beige);
  transition: color 0.3s var(--ease);
}
.menu__tab-icon {
  width: 28px;
  height: 28px;
  color: var(--beige);
  transition: color 0.3s var(--ease);
  flex-shrink: 0;
}
.menu__tab small {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--brown);
  text-transform: uppercase;
  margin-top: 3px;
}
.menu__tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.menu__tab.is-active {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.menu__tab.is-active .material-symbols-rounded,
.menu__tab.is-active .menu__tab-icon,
.menu__tab.is-active small { color: var(--cream); opacity: 0.85; }

.menu__panel { display: none; }
.menu__panel.is-active {
  display: block;
  animation: panelFade 0.5s var(--ease);
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu__panel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.menu__visual {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.menu__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel — pure opacity fade, geen scale (voorkomt Safari sub-pixel bleed) */
.menu__slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.menu__slide.is-active {
  opacity: 1;
}

/* Specifieke object-position per foto — trekt onderwerp naar de juiste plek */
.menu__slide[src*="gallery-02.jpeg"] {
  object-position: 50% 85%;
}

.menu__dots {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(46, 33, 24, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
}
.menu__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(238, 231, 221, 0.5);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), width 0.3s var(--ease);
}
.menu__dot:hover { background: rgba(238, 231, 221, 0.85); }
.menu__dot.is-active {
  background: var(--cream);
  width: 22px;
  border-radius: 4px;
}
.menu__quote {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(46, 33, 24, 0.68);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: var(--cream);
  padding: 20px 22px;
  border-radius: var(--radius-m);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.menu__quote .material-symbols-rounded {
  font-size: 28px;
  color: var(--beige-soft);
  flex-shrink: 0;
}
.menu__quote p {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.menu__note {
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.85;
  margin: 0 0 8px;
}

.menu__group-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--beige);
  margin: 18px 0 -4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198, 174, 124, 0.4);
}
.menu__group-title:first-of-type { margin-top: 0; }

.menu__pdf {
  margin-top: 26px;
}
.menu__pdf .material-symbols-rounded {
  font-size: 20px;
}

.dish {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(142, 108, 80, 0.18);
}
.dish:last-child { border-bottom: 0; padding-bottom: 0; }

.dish__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}
.dish__head h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--terracotta);
}
.dish__price {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--beige);
  white-space: nowrap;
}
.dish__price::before { content: "€ "; opacity: 0.75; }

.dish p {
  margin: 0;
  font-size: 15.5px;
  color: var(--brown);
  line-height: 1.55;
  max-width: 60ch;
}

.dish__note-inline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: var(--brown);
  opacity: 0.75;
  margin-left: 6px;
}

.dish__sub-note {
  font-family: var(--font-heading) !important;
  font-size: 14.5px !important;
  color: var(--brown) !important;
  opacity: 0.85;
  padding-left: 24px;
  margin-top: 4px !important;
  font-style: italic;
}

.dish__vegan {
  font-size: 20px;
  color: #7a9b3f;
  vertical-align: -3px;
  margin-left: 4px;
  font-variation-settings: 'FILL' 1;
}

.dish__fine {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-style: italic;
  opacity: 0.75;
  margin-top: 6px !important;
}

.dish__variants {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.dish__variants li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  font-family: var(--font-heading);
  font-size: 15.5px;
  color: var(--brown);
  line-height: 1.4;
  border-bottom: 1px dotted rgba(142, 108, 80, 0.18);
}
.dish__variants li:last-child { border-bottom: 0; }
.dish__variant-name {
  flex: 1 1 auto;
  font-family: var(--font-heading);
}
.dish__variant-price {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--beige);
  white-space: nowrap;
  text-align: right;
}

/* ---------- Koffies — horizontale scroll ---------- */
.coffees {
  padding: clamp(80px, 12vw, 140px) 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(137, 53, 30, 0.32) 0%, transparent 45%),
    radial-gradient(circle at 82% 88%, rgba(198, 174, 124, 0.14) 0%, transparent 50%);
  color: var(--cream);
  overflow: hidden;
}

.coffees__head {
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 700px;
  margin: 0 auto 50px;
}
.coffees__head .section-title { margin: 0 auto; }

.coffees__sub {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(238, 231, 221, 0.85);
  margin: 14px auto 0;
  max-width: 56ch;
  line-height: 1.5;
}

.coffees__hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige-soft);
  opacity: 0.85;
}
.coffees__hint .material-symbols-rounded {
  font-size: 18px;
  animation: scrollHintNudge 1.8s ease-in-out infinite;
}
@keyframes scrollHintNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.coffees__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: rgba(238, 231, 221, 0.32) transparent;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 18px;
}
.coffees__scroll::-webkit-scrollbar { height: 6px; }
.coffees__scroll::-webkit-scrollbar-track { background: transparent; }
.coffees__scroll::-webkit-scrollbar-thumb {
  background: rgba(238, 231, 221, 0.28);
  border-radius: var(--radius-pill);
}
.coffees__scroll::-webkit-scrollbar-thumb:hover { background: rgba(238, 231, 221, 0.5); }
.coffees__scroll:focus-visible {
  outline: 2px solid var(--beige);
  outline-offset: -2px;
  border-radius: var(--radius-m);
}

.coffees__rail {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 4px var(--gutter) 8px;
}

.coffee-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coffee-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-m);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(137, 53, 30, 0.2), rgba(46, 33, 24, 0.4));
  box-shadow: var(--shadow-md);
}
.coffee-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), opacity 0.5s var(--ease);
}
.coffee-card:hover .coffee-card__photo img { transform: scale(1.06); }

/* Gestileerde icon-cards (no foto). Vervangbaar door eigen foto's later. */
.coffee-card__photo--art {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(135deg, var(--terracotta) 0%, var(--ink) 95%);
  transition: transform 0.6s var(--ease);
}
.coffee-card:hover .coffee-card__photo--art { transform: scale(1.02); }

.coffee-card__big-icon {
  font-size: clamp(72px, 11vw, 120px);
  color: var(--beige-soft);
  opacity: 0.92;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
  transition: transform 0.6s var(--ease);
}
.coffee-card:hover .coffee-card__big-icon { transform: translateY(-3px); }

/* Roteerbare gradient varianten — onderscheid per koffie */
.coffee-card:nth-child(8n+1) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 28% 22%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(135deg, var(--terracotta-deep) 0%, #1a110a 95%);
}
.coffee-card:nth-child(8n+2) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 70% 25%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(150deg, var(--brown-deep) 0%, var(--ink) 95%);
}
.coffee-card:nth-child(8n+3) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 35% 32%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(140deg, #6e3624 0%, #1b1209 95%);
}
.coffee-card:nth-child(8n+4) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 65% 28%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(145deg, var(--brown) 0%, var(--ink) 95%);
}
.coffee-card:nth-child(8n+5) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 32% 22%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(135deg, #a05a3c 0%, #2a1c12 95%);
}
.coffee-card:nth-child(8n+6) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 72% 30%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(150deg, var(--terracotta-soft) 0%, var(--ink) 95%);
}
.coffee-card:nth-child(8n+7) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 38% 28%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(135deg, #8c5a3a 0%, #1d130a 95%);
}
.coffee-card:nth-child(8n+8) .coffee-card__photo--art {
  background:
    radial-gradient(circle at 68% 22%, rgba(238, 231, 221, 0.10), transparent 55%),
    linear-gradient(150deg, var(--terracotta) 0%, var(--brown-deep) 95%);
}

/* Iced coffee — koudere variant */
.coffee-card__photo--cool {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(150deg, #6a8a96 0%, #2b3c44 90%) !important;
}
.coffee-card__photo--cool .coffee-card__big-icon {
  color: var(--cream);
}

.coffee-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(46, 33, 24, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.coffee-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.coffee-card__price {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--beige);
  white-space: nowrap;
}
.coffee-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(238, 231, 221, 0.72);
}

.coffee-card--feature .coffee-card__photo {
  box-shadow: 0 18px 44px rgba(137, 53, 30, 0.4), var(--shadow-md);
}

/* ---------- Quotes / reviews ---------- */
.quotes {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--terracotta);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(198, 174, 124, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(107, 39, 21, 0.6) 0%, transparent 50%);
  color: var(--cream);
}

.quotes__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.quotes__head .section-title { margin: 0 auto; }

.quotes__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: opacity 0.3s var(--ease);
}
.quotes__grid.is-fading { opacity: 0; }

.quotes__dots {
  max-width: var(--max-w);
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.quotes__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(238, 231, 221, 0.32);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.quotes__dots button:hover { background: rgba(238, 231, 221, 0.6); }
.quotes__dots button.is-active {
  background: var(--cream);
  width: 24px;
  border-radius: 4px;
}

.quote-card {
  position: relative;
  background: rgba(238, 231, 221, 0.09);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 38px 32px 32px;
  border-radius: var(--radius-l);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-card__mark { display: none; }

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(238, 231, 221, 0.96);
}

.quote-card figcaption {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: linear-gradient(135deg, var(--terracotta-deep), var(--terracotta));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.quote-card__avatar[data-palette="1"] {
  background: linear-gradient(135deg, var(--brown-deep), var(--brown));
}
.quote-card__avatar[data-palette="2"] {
  background: linear-gradient(135deg, var(--terracotta), #B86B4F);
}
.quote-card__avatar[data-palette="3"] {
  background: linear-gradient(135deg, #6E3624, var(--terracotta-deep));
}
.quote-card__avatar[data-palette="4"] {
  background: linear-gradient(135deg, var(--beige), #B89A66);
  color: var(--ink);
}

.quote-card__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.quote-card__meta strong {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.quote-card__date {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.92;
  margin-top: 2px;
}
.quote-card__source {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--beige-soft);
  opacity: 0.75;
  margin-top: 2px;
}

.quotes__more {
  max-width: var(--max-w);
  margin: 36px auto 0;
  text-align: center;
}
.quotes__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1.5px rgba(238, 231, 221, 0.4);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.quotes__more-btn:hover {
  background: var(--cream);
  color: var(--terracotta);
  box-shadow: inset 0 0 0 1.5px var(--cream);
  transform: translateY(-2px);
}
.quotes__more-btn .material-symbols-rounded { font-size: 18px; }

/* ---------- Reviews-modal ---------- */
.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.reviews-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.reviews-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 8, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.reviews-modal__inner {
  position: relative;
  margin: auto;
  width: min(1100px, 100%);
  max-height: 92vh;
  background: var(--cream);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(20px);
  transition: transform 0.35s var(--ease);
}
.reviews-modal.is-open .reviews-modal__inner { transform: translateY(0); }

.reviews-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 22px;
  border-bottom: 1px solid rgba(46, 33, 24, 0.1);
  background: var(--cream-soft);
}
.reviews-modal__head h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 6px 0 6px;
  color: var(--terracotta);
  font-weight: 500;
}
.reviews-modal__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0;
}

.reviews-modal__close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: rgba(137, 53, 30, 0.08);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.reviews-modal__close:hover { background: rgba(137, 53, 30, 0.18); }

.reviews-modal__body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: var(--cream);
}
.reviews-modal__body .quote-card {
  background: var(--cream-soft);
  color: var(--brown-deep);
  box-shadow: 0 1px 0 rgba(46, 33, 24, 0.08), 0 6px 16px rgba(46, 33, 24, 0.05);
  border-radius: var(--radius-m);
  padding: 26px 24px 22px;
}
.reviews-modal__body .quote-card blockquote {
  color: var(--brown-deep);
  font-size: 16px;
}
.reviews-modal__body .quote-card__meta strong {
  color: var(--terracotta);
}
.reviews-modal__body .quote-card__date {
  color: var(--brown);
}
.reviews-modal__body .quote-card__source {
  color: var(--brown);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .reviews-modal__inner {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
    width: 100%;
  }
  .reviews-modal__head { padding: 20px 22px 16px; }
  .reviews-modal__body { padding: 18px 22px 24px; grid-template-columns: 1fr; }
}

/* ---------- Pagina-hero (voor sub-paginas zoals gallerij) ---------- */
.page-hero {
  padding: 120px var(--gutter) 28px;
  background: var(--cream);
  text-align: center;
}
.page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 400;
  color: var(--terracotta);
  margin: 0;
}
.page-hero__lead {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--brown);
  margin: 18px auto 0;
  line-height: 1.6;
  max-width: 560px;
}

.page-gallerij .site-header,
.page-sub .site-header { padding: 12px 0; }

/* ---------- Contactpagina ---------- */
.contact-page {
  padding: 40px var(--gutter) clamp(60px, 10vw, 120px);
  background: var(--cream);
}
.contact-page__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--cream-soft);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  font-size: 32px;
  color: var(--beige);
  margin-bottom: 4px;
}

.contact-card h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--terracotta);
  margin: 0;
}
.contact-card h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 14px 0 4px;
}
.contact-card p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 16px;
  color: var(--brown-deep);
  line-height: 1.6;
  margin: 0;
}
.contact-card__note {
  font-size: 14px;
  color: var(--brown);
  opacity: 0.85;
}
.contact-card__link {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(137, 53, 30, 0.35);
  padding-bottom: 1px;
}
.contact-card__link:hover {
  border-color: var(--terracotta);
}

.contact-card .link-arrow { margin-top: 8px; }

.contact-card__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.contact-card__contact-icon {
  font-size: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* Openingsuren */
.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  font-family: var(--font-heading);
  margin: 0;
}
.hours dt {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brown-deep);
}
.hours dd {
  margin: 0;
  font-size: 14px;
  color: var(--brown);
}
.hours dd span {
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
  color: var(--brown);
  opacity: 0.7;
  font-style: italic;
}
.hours .hours__highlight {
  color: var(--terracotta);
  font-weight: 600;
}

/* CTA-band (gebruikt op contact + over-ons) */
.cta-band {
  position: relative;
  padding: clamp(70px, 10vw, 120px) var(--gutter);
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(137, 53, 30, 0.42) 0%, transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(198, 174, 124, 0.16) 0%, transparent 50%);
  color: var(--cream);
  text-align: center;
}
.cta-band__inner {
  max-width: 860px;
  margin: 0 auto;
}
.cta-band__inner .section-title {
  margin: 0 auto;
  max-width: none;
  white-space: nowrap;
  text-wrap: balance;
}
@media (max-width: 720px) {
  .cta-band__inner .section-title { white-space: normal; }
}
.cta-band__lead {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(238, 231, 221, 0.85);
  margin: 22px auto 32px;
  max-width: 560px;
}

/* ---------- Over ons — verhaal-secties ---------- */
.story {
  padding: clamp(70px, 11vw, 130px) var(--gutter);
  background: var(--cream);
}
.story--accent {
  background-color: var(--terracotta);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(198, 174, 124, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(107, 39, 21, 0.55) 0%, transparent 50%);
  color: var(--cream);
}
.story--accent h2,
.story--accent p,
.story--accent .eyebrow { color: inherit; }
.story--accent p { color: rgba(238, 231, 221, 0.92); }
.story--accent em { color: var(--beige-soft); font-style: italic; }

.story__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}
.story__inner--reverse { direction: rtl; }
.story__inner--reverse > * { direction: ltr; }

.story__text { max-width: 540px; }
.story__text .section-title { margin-bottom: 22px; }
.story__text p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
  color: var(--brown);
  margin: 0 0 18px;
}
.story--accent .story__text p { color: rgba(238, 231, 221, 0.92); }

.story__image {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.story__image:hover img { transform: scale(1.06); }

.story-quote {
  padding: clamp(70px, 10vw, 120px) var(--gutter);
  background:
    radial-gradient(circle at 50% 30%, rgba(238, 231, 221, 0.06), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #1a110a 100%);
  color: var(--cream);
  text-align: center;
}
.story-quote__inner {
  max-width: 720px;
  margin: 0 auto;
}
.story-quote__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  color: var(--cream);
  letter-spacing: 0.02em;
  margin: 12px 0 26px;
}
.story-quote__body {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: rgba(238, 231, 221, 0.85);
  margin: 0 0 36px;
}
.story-quote__slogan {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--beige-soft);
  margin: 0 0 8px;
}
.story-quote__author {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 231, 221, 0.6);
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-page__inner { grid-template-columns: 1fr 1fr; }
  .story__inner,
  .story__inner--reverse { grid-template-columns: 1fr; direction: ltr; }
  .story__image { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .contact-page__inner { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery {
  padding: clamp(20px, 3vw, 40px) var(--gutter) clamp(80px, 12vw, 160px);
  background: var(--cream);
}

.gallery__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.gallery__head .section-title { margin: 0 auto; }
.gallery__head .section-sub { margin-left: auto; margin-right: auto; }

.gallery__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* Masonry-variant — JavaScript-driven flexbox kolommen (Safari-stabiel) */
.gallery__grid--masonry {
  display: flex;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 80px;
}
.gallery__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.gallery__grid--masonry .gallery__item {
  display: block;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
}
.gallery__grid--masonry .gallery__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transform: none;
}
.gallery__grid--masonry .gallery__item:hover {
  box-shadow: var(--shadow-md);
}
.gallery__grid--masonry .gallery__item--tall,
.gallery__grid--masonry .gallery__item--wide {
  grid-column: auto;
  grid-row: auto;
}
@media (max-width: 768px) {
  .gallery__grid--masonry { gap: 12px; }
  .gallery__col { gap: 12px; }
}

/* ---------- Lightbox (foto in groot formaat binnen de site) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 4vw, 60px);
  background: rgba(20, 14, 10, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__inner {
  position: relative;
  max-width: min(1280px, 92vw);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-m);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.2);
}
.lightbox__counter {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--beige-soft);
  text-transform: uppercase;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: scale(1.06);
}
.lightbox__close .material-symbols-rounded,
.lightbox__nav .material-symbols-rounded {
  font-size: 28px;
}
.lightbox__close {
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
}
.lightbox__nav--prev { left: clamp(16px, 3vw, 36px); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(16px, 3vw, 36px); top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.06); }

body.no-scroll { overflow: hidden; }

@media (max-width: 640px) {
  .lightbox__close { width: 44px; height: 44px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav .material-symbols-rounded,
  .lightbox__close .material-symbols-rounded { font-size: 24px; }
}

/* ---------- Reserve CTA ---------- */
.reserve {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(137, 53, 30, 0.42) 0%, transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(198, 174, 124, 0.16) 0%, transparent 50%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.reserve__inner {
  max-width: 760px;
  margin: 0 auto;
}
.reserve__inner .section-title { margin: 0 auto; }

.reserve__lead {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(238, 231, 221, 0.85);
  margin: 24px 0 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.reserve__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.reserve__frame {
  max-width: 640px;
  margin: 36px auto 22px;
  background: rgba(238, 231, 221, 0.96);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45),
              0 1px 0 rgba(238, 231, 221, 0.18) inset;
}
.reserve__frame iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #fff;
}

.reserve__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px auto 0;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(238, 231, 221, 0.85);
}
.reserve__hint .material-symbols-rounded {
  font-size: 20px;
  color: var(--beige-soft);
}
.reserve__hint a {
  color: var(--cream);
  border-bottom: 1px solid rgba(238, 231, 221, 0.5);
  padding-bottom: 1px;
}
.reserve__hint a:hover {
  color: var(--beige-soft);
  border-color: var(--beige-soft);
}

@media (max-width: 768px) {
  .reserve__frame iframe { height: 740px; }
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(60px, 10vw, 120px) var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--cream-deep);
}

.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.contact__block h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.contact__block p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown-deep);
  margin: 0;
}
.contact__block a {
  border-bottom: 1px solid rgba(142, 108, 80, 0.4);
  padding-bottom: 1px;
}
.contact__block a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 28px var(--gutter);
  background: var(--ink);
  color: rgba(238, 231, 221, 0.7);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer a:hover { color: var(--cream); }
.site-footer__links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .menu__panel-inner { grid-template-columns: 1fr; }
  .menu__visual { position: relative; max-width: 560px; margin: 0 auto; top: auto; }
  .intro__inner { grid-template-columns: 1fr; }
  .intro__image { max-width: 560px; }
  .quotes__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero__content { margin-top: 90px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .menu__tabs { gap: 8px; }
  .menu__tab { min-width: 0; flex: 1 0 calc(50% - 8px); padding: 14px 16px; font-size: 15px; }

  .quotes__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .contact__inner { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .nav-actions { gap: 6px; }
  .brand__logo { width: 108px; }
  .site-header.is-scrolled .brand__logo { width: 96px; }
  .hero__title { font-size: 38px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__video { transition: opacity 0.3s linear; }
}
