/* Strandpaviljoen Hoëg — ontwerp "Zomeravond"
   Room + terracotta + goud, dunne schreefletter, veel lucht.
   Licht = middag aan de Maas, donker = avond aan de Maas (volgt systeemvoorkeur). */

:root {
  --paper: #F7F1E7;
  --paper-2: #EFE5D6;
  --ink: #2A1C14;
  --ink-soft: #6E5A4C;
  --accent: #C1552F;
  --accent-deep: #A3421F;
  --water: #E4D8C6;
  --sun-1: #DDA25C;
  --sun-2: #C98B4B;
  --line: rgba(42, 28, 20, 0.16);
  --tile: #EFE5D6;
  /* Tekst óp een terracotta vlak. Crème op terracotta leest goed;
     donkerbruin op terracotta haalde de contrastnorm niet (3,6:1). */
  --accent-text: #FFFCF6;
  /* Iets diepere terracotta voor hele vlakken, zodat crème tekst
     er ruim boven de norm blijft (5,4:1 in plaats van 4,5:1). */
  --accent-block: #B04A26;
  --btn-text: #FFFCF6;
  --radius: 3px;
  --ease: cubic-bezier(0.22, 0.9, 0.24, 1);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1A1310;
    --paper-2: #221913;
    --ink: #F0E6D8;
    --ink-soft: #B5A493;
    --accent: #D9703F;
    --accent-deep: #E58A5A;
    --water: #2A1F18;
    --sun-1: #DDA25C;
    --sun-2: #C98B4B;
    --line: rgba(240, 230, 216, 0.18);
    --tile: #241A14;
    /* In het donker is het accent juist licht, dus draait de tekst om */
    --accent-text: #1A1310;
    --accent-block: #D9703F;
    --btn-text: #1A1310;
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-padding-top: 84px;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--btn-text); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.005em;
}

/* Kleine kapitaaltjes-labels: het rustpunt boven elke kop */
.cover-kicker,
.sfeer-kicker,
.page-kicker,
.linkcard-kicker,
.ploeg-kicker,
.werken-kicker,
.tapas-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s var(--ease);
}

a:hover { color: var(--ink); }

a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Grain over alles, heel licht */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.9'%20numOctaves='2'/%3E%3C/filter%3E%3Crect%20width='160'%20height='160'%20filter='url(%23n)'%20opacity='0.5'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
}

.skip-link:focus { top: 12px; }

/* ---------- Navigatie ---------- */
/* Bovenaan (over de coverfoto): doorzichtig met witte tekst.
   Na scrollen: vaste zandbalk met inkttekst. JS zet .scrolled erop. */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  color: currentColor;
  text-decoration: none;
  transition: color 0.4s var(--ease);
}

.nav.scrolled .nav-brand:hover { color: var(--accent-deep); }

.nav-links {
  display: flex;
  gap: clamp(18px, 2.4vw, 30px);
}

/* De Ceuvel-effect: een lijntje dat bij hover van links naar rechts
   binnenschuift, en er bij weghalen naar rechts weer uit glijdt. */
.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: currentColor;
  text-decoration: none;
  padding-bottom: 4px;
  opacity: 0.92;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible { opacity: 1; }

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ---------- Cover ---------- */

.cover {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 64px) clamp(120px, 20vh, 200px);
  background: var(--ink);
}

/* De grote coverfoto. Vervang public/cover.jpg door een brede foto
   van Hoëg van veraf of bovenaf. Valt terug op foto-1 als cover.jpg
   er nog niet is. */
.cover-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("public/cover.jpg"), url("public/foto-1.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.04);
  animation: cover-drift 22s ease-in-out infinite alternate;
}

@keyframes cover-drift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.1) translateY(-12px); }
}

/* Warme avondwas over de foto: eerst donker voor de leesbaarheid,
   daarbovenop een dun laagje goud en terracotta. */
.cover-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(42,28,20,0.42) 0%, rgba(42,28,20,0.05) 36%, rgba(42,28,20,0.76) 100%),
    linear-gradient(120deg, rgba(221,162,92,0.30) 0%, rgba(193,85,47,0.22) 100%);
}

.cover-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  color: #fff;
}

.cover-kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.82);
  margin-bottom: 20px;
}

.cover h1 {
  font-size: clamp(3rem, 11vw, 7.6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #FFFCF6; /* vast, want de cover is altijd donker — ook in lichte modus */
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.22);
}

.cover-lede {
  max-width: 520px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: rgba(255, 246, 232, 0.94) !important;
  margin-bottom: 24px;
}

.cover-season {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 9px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.season-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun-1);
  box-shadow: 0 0 0 4px rgba(255, 217, 138, 0.28);
}

.cover-scroll {
  display: block;
  margin-top: 34px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  width: max-content;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255, 252, 246, 0.5);
  padding-bottom: 7px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.cover-scroll:hover { opacity: 1; transform: translateY(2px); color: #fff; }

/* Ontwerp "Zomeravond" kent geen golfrand — de foto loopt gewoon door. */
.waves { display: none; }

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  background: var(--accent-deep);
  color: var(--btn-text);
}

.btn:active { transform: translateY(1px) scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.waves {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 150px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4320px;
  display: block;
}

.wave-1 { height: 104px; fill: color-mix(in srgb, var(--water) 45%, var(--paper)); animation: drift 56s linear infinite; }
.wave-2 { height: 76px;  fill: color-mix(in srgb, var(--water) 80%, var(--paper)); animation: drift-terug 40s linear infinite; }
.wave-3 { height: 44px;  fill: var(--paper-2); animation: drift 64s linear infinite; }

@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-1440px); }
}

@keyframes drift-terug {
  from { transform: translateX(-1440px); }
  to   { transform: translateX(0); }
}

/* ---------- Secties algemeen ---------- */

section { padding: clamp(88px, 13vh, 150px) clamp(20px, 5vw, 64px); }

section h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 22px;
  max-width: 18ch;
}

section p { color: var(--ink-soft); }

/* ---------- De plek ---------- */

.story {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.story-text p { margin-bottom: 18px; max-width: 54ch; }
.story-text p:last-child { margin-bottom: 0; }

.story-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-1.5deg);
}

.story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Wat er is ---------- */

.menu { max-width: 900px; margin: 0 auto; }

.menu-head p { max-width: 52ch; margin-bottom: 12px; }

.menu-index {
  list-style: none;
  margin-top: 34px;
}

.menu-index li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.dish {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  transition: color 0.3s var(--ease);
}

.menu-index li:hover .dish { color: var(--accent-deep); }

.note {
  font-size: 15px;
  color: var(--ink-soft);
  text-align: right;
  max-width: 280px;
  flex-shrink: 0;
}

.menu-note { margin-top: 30px; font-size: 15px; }

/* ---------- Te doen ---------- */

.momenten { max-width: 1160px; margin: 0 auto; }

.momenten-head h2 { max-width: 24ch; margin-bottom: 44px; }

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tile {
  background: var(--tile);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease);
}

.tile:hover { transform: translateY(-4px); }

.tiles > .tile:nth-child(even) { margin-top: 44px; }

.tile h3 { font-size: 25px; font-weight: 700; margin-bottom: 8px; }
.tile p { font-size: 15px; }

.tile-water { background: var(--water); }

.tile-accent { background: var(--accent-block); }
.tile-accent h3, .tile-accent p { color: var(--accent-text); }

.momenten-note { margin-top: 46px; font-size: 15px; max-width: 52ch; }

/* ---------- Foto's ---------- */

.fotos { max-width: 1160px; margin: 0 auto; }

.fotos h2 { margin-bottom: 44px; }

.foto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.foto-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.foto-grid img:nth-child(even) { margin-top: 44px; }

/* ---------- Praktisch ---------- */

.praktisch {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.praktisch-inner { max-width: 1160px; margin: 0 auto; }

.praktisch h2 { margin-bottom: 52px; }

.praktisch-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.info-block { margin-bottom: 34px; }
.info-block:last-child { margin-bottom: 0; }

.info-block h3 { font-size: 20px; font-weight: 700; margin-bottom: 9px; }
.info-block p { max-width: 46ch; }

.komen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.komen-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
}

.komen-card h4 { font-size: 17.5px; font-weight: 700; margin-bottom: 7px; }
.komen-card p { font-size: 14.5px; }

/* ---------- Footer ---------- */

.footer { padding: clamp(80px, 12vh, 130px) clamp(20px, 5vw, 64px) 44px; }

.footer-groet {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  letter-spacing: -0.02em;
  max-width: 1160px;
  margin: 0 auto 56px;
}

.footer-line {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.footer-socials { display: flex; gap: 22px; }

.footer-legal {
  max-width: 1160px;
  margin: 12px auto 0;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* ---------- Sfeerimpressie ---------- */

.sfeer { max-width: 1160px; margin: 0 auto; }

.sfeer-intro { max-width: 660px; margin-bottom: 44px; }

.sfeer-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.sfeer-intro h2 { margin-bottom: 18px; }
.sfeer-intro p { max-width: 58ch; }

.sfeer-collage {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, clamp(150px, 21vw, 260px));
  gap: 16px;
}

.sfeer-collage figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.sfeer-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.sfeer-collage figure:hover img { transform: scale(1.05); }

.sfeer-groot { grid-column: 1; grid-row: 1 / span 2; }
.sfeer-collage figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.sfeer-collage figure:nth-child(3) { grid-column: 3; grid-row: 1; }
.sfeer-collage figure:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; }

.sfeer-collage figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(10, 20, 26, 0.74));
}

/* ---------- Agenda ---------- */

.agenda { max-width: 1160px; margin: 0 auto; }

.agenda-head { margin-bottom: 44px; }
.agenda-head h2 { margin-bottom: 18px; }
.agenda-head p { max-width: 60ch; }

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: 22px 26px;
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.agenda-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 30px -18px rgba(30, 57, 71, 0.5);
}

.agenda-date {
  text-align: center;
  line-height: 1;
}

.agenda-day {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-deep);
}

.agenda-month {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.agenda-body h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 4px;
}

.agenda-body p {
  font-size: 15px;
  margin: 0;
}

.agenda-tag {
  align-self: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: var(--sun-1);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Voorbije items: automatisch grijs en gedempt */
.agenda-verleden-wrap { margin-top: 52px; }

.agenda-sub {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.agenda-item.past {
  border-left-color: var(--ink-soft);
  opacity: 0.6;
  filter: grayscale(0.85);
  background: color-mix(in srgb, var(--tile) 70%, transparent);
}

.agenda-item.past:hover { transform: none; box-shadow: none; }
.agenda-item.past .agenda-day { color: var(--ink-soft); }
.agenda-item.past .agenda-tag { background: var(--line); color: var(--ink-soft); }

.agenda-note { margin-top: 34px; font-size: 15px; max-width: 52ch; }

/* ---------- Facebook-feed ---------- */

/* De sectie houdt de zijmarge van de pagina; de inhoud erbinnen is
   begrensd op 1160px. Zo staat "Vers van de Maas" op dezelfde
   linkerlijn als de titel en de linkkaarten eronder. */
.fbfeed-inner { max-width: 1160px; margin: 0 auto; }

.fbfeed-head { margin-bottom: 40px; }
.fbfeed-head h2 { margin-bottom: 14px; }
.fbfeed-head p { max-width: 58ch; }

.fbfeed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fbpost {
  display: flex;
  flex-direction: column;
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.fbpost:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px -20px rgba(30, 57, 71, 0.55);
  color: var(--ink);
}

.fbpost-media { aspect-ratio: 16 / 10; overflow: hidden; }
.fbpost-media img { width: 100%; height: 100%; object-fit: cover; }

.fbpost-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.fbpost-date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.fbpost-text { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

.fbpost-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-deep);
}

/* ---------- Tapas ---------- */

.tapas {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(64px, 9vh, 110px);
  padding-top: clamp(48px, 7vh, 90px);
  border-top: 1px solid var(--line);
}

.tapas-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}

.tapas-text h3 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 16ch;
}

.tapas-text p { max-width: 52ch; margin-bottom: 14px; }

.tapas-wink {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink) !important;
}

.tapas-foto {
  aspect-ratio: 3 / 4;
  max-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(1.5deg);
}

.tapas-foto img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- De ploeg / vrijwilligers ---------- */

.ploeg {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ploeg-inner { max-width: 1160px; margin: 0 auto; }

.ploeg-head { max-width: 760px; margin-bottom: 48px; }
.ploeg-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.ploeg-head h2 { margin-bottom: 20px; }
.ploeg-head p { max-width: 62ch; margin-bottom: 14px; }
.ploeg-dank {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink) !important;
}
.ploeg-dank strong { color: var(--accent-deep); }

.ploeg-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 20px;
}

.ploeg-strip img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.ploeg-strip img:nth-child(2) { margin-top: 32px; }

/* ---------- Reacties ---------- */

.reacties { max-width: 1160px; margin: 0 auto; }

.reacties-head { margin-bottom: 44px; }
.reacties-head h2 { margin-bottom: 16px; }
.reacties-head p { max-width: 56ch; }

.reactie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reactie-card {
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reactie-card blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.reactie-card figcaption { font-size: 14px; color: var(--ink-soft); }

.reacties-cta { margin-top: 36px; font-size: 15px; }

/* ---------- Werken bij ---------- */

.werken {
  background: var(--accent-block);
  text-align: center;
}

.werken-inner { max-width: 720px; margin: 0 auto; }

.werken-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 14px;
  opacity: 0.85;
}

.werken h2 { color: var(--accent-text); margin: 0 auto 20px; max-width: 18ch; }
.werken p { color: var(--accent-text) !important; opacity: 0.92; max-width: 52ch; margin: 0 auto 14px; }

.werken-acties {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.werken .btn {
  background: var(--accent-text);
  color: var(--accent);
}
.werken .btn:hover { background: var(--ink); color: var(--paper); }

.werken .btn-ghost {
  background: transparent;
  color: var(--accent-text);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--accent-text) 40%, transparent);
}
.werken .btn-ghost:hover { background: var(--accent-text); color: var(--accent); }

.info-mini { font-size: 14px; opacity: 0.85; margin-top: 8px; }

/* ---------- Subpagina's (agenda, menu) ---------- */
/* Geen coverfoto op subpagina's, dus de balk is meteen vast (zand + inkt). */
.page-sub .nav {
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.page-sub .nav-brand:hover { color: var(--accent-deep); }

.page-hero { padding-top: clamp(116px, 17vh, 190px); padding-bottom: clamp(20px, 4vh, 48px); }
.page-hero-inner { max-width: 1160px; margin: 0 auto; }

.page-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.page-hero-inner > p {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

/* ---------- Linkkaart (op de homepagina, naar een subpagina) ---------- */
.linkcard-section { padding-top: clamp(24px, 4vh, 52px); padding-bottom: clamp(24px, 4vh, 52px); }
.linkcard-wrap { max-width: 1160px; margin: 0 auto; }

.linkcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 5vw, 52px);
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.linkcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px rgba(30, 57, 71, 0.55);
  color: var(--ink);
}

.linkcard-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}

.linkcard h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 12px; max-width: 20ch; }
.linkcard p { max-width: 48ch; margin: 0; }

.linkcard-arrow {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 1.7rem;
  transition: transform 0.4s var(--ease);
}

.linkcard:hover .linkcard-arrow { transform: translateX(6px); }

/* ---------- Klein-keukentje intro (menupagina) ---------- */
.menu-intro-section { padding-top: clamp(40px, 6vh, 70px); }
.menu-intro { max-width: 720px; margin: 0 auto; }
.menu-intro h2 { margin-bottom: 18px; }
.menu-intro p { max-width: 58ch; margin-bottom: 14px; font-size: clamp(1.04rem, 2vw, 1.16rem); }
.menu-intro p:last-child { margin-bottom: 0; }

/* ---------- Sterren bij reacties ---------- */
.reactie-stars {
  color: var(--sun-2);
  font-size: 1.05rem;
  letter-spacing: 3px;
  line-height: 1;
}

/* ---------- Reveal bij scrollen ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Rustig aan (reduced motion) ---------- */

@media (prefers-reduced-motion: reduce) {
  .sun, .wave { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .tile, .btn { transition: none; }
}

/* ---------- Mobiel ---------- */

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; }

  .story-panel {
    max-width: 420px;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .tiles { grid-template-columns: 1fr; }
  .tiles > .tile:nth-child(even) { margin-top: 0; }
  .tile { min-height: 0; }

  .foto-grid { grid-template-columns: 1fr; }
  .foto-grid img:nth-child(even) { margin-top: 0; }

  .praktisch-grid { grid-template-columns: 1fr; }

  .tapas { grid-template-columns: 1fr; }
  .tapas-foto { max-width: 420px; transform: none; }

  .ploeg-strip { grid-template-columns: 1fr 1fr; }
  .ploeg-strip img:nth-child(2) { margin-top: 0; }
  .ploeg-strip img:nth-child(3) { grid-column: span 2; }

  .reactie-grid { grid-template-columns: 1fr; }

  .fbfeed-grid { grid-template-columns: 1fr; }

  .linkcard { flex-direction: column; align-items: flex-start; gap: 22px; }
}

@media (max-width: 720px) {
  .nav-links { gap: 0; }
  .nav-links a { display: none; }
  .nav-links a:last-child { display: inline; }
}

@media (max-width: 560px) {
  .komen { grid-template-columns: 1fr; }

  .menu-index li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .note { text-align: left; max-width: none; }

  .footer-line { flex-direction: column; }

  .agenda-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 18px 18px;
  }
  .agenda-day { font-size: 1.7rem; }
  .agenda-tag { grid-column: 2; justify-self: start; margin-top: 4px; }

  .ploeg-strip { grid-template-columns: 1fr; }
  .ploeg-strip img:nth-child(3) { grid-column: auto; }

  .sfeer-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: clamp(130px, 40vw, 210px);
  }
  .sfeer-groot { grid-column: 1 / span 2; grid-row: auto; }
  .sfeer-collage figure:nth-child(2),
  .sfeer-collage figure:nth-child(3) { grid-column: auto; grid-row: auto; }
  .sfeer-collage figure:nth-child(4) { grid-column: 1 / span 2; grid-row: auto; }
}

/* ============================================================
   ZOMERAVOND — typografie
   ------------------------------------------------------------
   De koppen staan in een dunne schreefletter (Cormorant Garamond).
   Die vraagt om licht gewicht en veel lucht: waar vroeger 700/800
   stond, staat nu 300/400. De kleine labels blijven schreefloos
   (Jost), in kapitalen met veel letterafstand — dat is het ritme
   van dit ontwerp.
   ============================================================ */

/* Koppen: dun, groot, rustig */
section h2,
.linkcard h2,
.tapas-text h3,
.page-hero h1,
.agenda-body h3,
.agenda-sub { font-weight: 300; }

section h2 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
.page-hero h1 { font-size: clamp(2.8rem, 8.5vw, 5.4rem); font-weight: 300; }
.linkcard h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }

/* Kleinere koppen: schreef, maar iets steviger zodat ze niet wegvallen */
.tile h3,
.info-block h3,
.komen-card h4,
.dish { font-weight: 400; }

.tile h3 { font-size: 27px; }
.info-block h3 { font-size: 21px; }
.komen-card h4 { font-size: 19px; }

/* Het woordmerk: geen vet blok meer, maar een rustig schreefwoord */
.nav-brand {
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0.06em;
}

/* Menu-items in de navigatie: klein, in kapitalen */
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Alle labels boven de koppen in één stijl */
.sfeer-kicker,
.page-kicker,
.linkcard-kicker,
.ploeg-kicker,
.werken-kicker,
.tapas-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* De groet in de voettekst: schreef, cursief, warm */
.footer-groet {
  font-weight: 300;
  font-style: italic;
  color: var(--accent-deep);
}

/* Kleine schreefloze details */
.fbpost-date,
.fbpost-link,
.agenda-month,
.agenda-tag {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}

.tapas-wink { font-weight: 300; font-style: italic; }

/* Dunne lijnen in plaats van dikke randen: rustiger op room */
.tile,
.komen-card,
.reactie-card,
.fbpost { border-width: 1px; }

/* ============================================================
   LAATSTE NIEUWS — vangnet en "lees verder"-pijl
   ============================================================ */

/* De ronde pijl staat op terracotta: crème letter in de lichte modus,
   donkere letter in de donkere modus. var(--btn-text) doet precies dat. */
.linkcard-arrow { color: var(--btn-text); }

/* Rij onderaan een bericht: "Lees verder" met de pijl ernaast */
.fbpost-meer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.fbpost-meer .fbpost-link { margin-top: 0; }

.fbpost-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--btn-text);
  font-size: 1.05rem;
  transition: transform 0.4s var(--ease);
}

.fbpost:hover .fbpost-arrow { transform: translateX(4px); }

/* Vangnet zolang de Facebook-koppeling nog niet is ingesteld */
.fbfeed-leeg {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 54px) clamp(24px, 4vw, 44px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tile);
}

.fbfeed-leeg p {
  margin-bottom: 24px;
  font-size: clamp(1.02rem, 2vw, 1.14rem);
  color: var(--ink-soft);
}

.fbfeed-leeg[hidden] { display: none; }
