/* =========================================================
   't Plukje — modern restaurant website
   ========================================================= */

:root {
  /* warm parchment & candlelight palette, geïnspireerd op het interieur */
  --bg:        #f1e7d2;
  --bg-warm:   #e7d9bc;
  --paper:     #faf2df;
  --ink:       #1d130c;
  --ink-soft:  #4a3525;
  --muted:     #8a7660;
  --line:      rgba(29, 19, 12, .14);

  /* donker hout, mahonie & espresso */
  --wood:        #3a2418;
  --wood-deep:   #21130b;
  --wood-mid:    #5b3924;

  /* tiffany-lamp tinten: amber, honing, gebrande sienna */
  --amber:       #c8893f;
  --amber-glow:  #e8b063;
  --honey:       #b8843a;
  --sienna:      #9b4a25;
  --burgundy:    #6e2a23;
  --cream:       #f3e3c2;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 4px 10px rgba(0,0,0,.04);
  --shadow:    0 12px 40px -16px rgba(0,0,0,.25);
  --shadow-lg: 0 30px 80px -30px rgba(0,0,0,.35);

  --ease: cubic-bezier(.22,.61,.36,1);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.section {
  padding-block: clamp(72px, 10vw, 140px);
  position: relative;
}
.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { text-align: center; margin-inline: auto; }
.section__intro { color: var(--ink-soft); font-size: 1.05rem; max-width: 60ch; }
.grid { display: grid; gap: clamp(32px, 5vw, 80px); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow--light { color: var(--cream); }
.eyebrow--light::before { background: var(--cream); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0 0 24px;
  color: #fbf3df;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.display em {
  font-style: italic;
  color: var(--amber-glow);
  font-variation-settings: "opsz" 144;
}
.h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.h2--light { color: #fff; }
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 50ch;
  margin: 0 0 32px;
  line-height: 1.55;
}
.muted-light { color: rgba(255,255,255,.78); max-width: 52ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), background .25s, color .25s, box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 22px -6px rgba(155, 74, 37, .55);
}
.btn--primary:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(110, 42, 35, .55);
}
.btn--ghost {
  border: 1px solid currentColor;
  background: transparent;
  padding: 10px 20px;
  font-size: .85rem;
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--link {
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: .95rem;
}
.btn--link:hover { color: var(--amber); }
.btn--link-light { color: #fff; }
.btn--link-light:hover { color: var(--cream); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.nav__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: color .3s;
}
.nav__mark { color: var(--cream); font-style: italic; }
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  letter-spacing: .04em;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { color: #fff; }
.nav__toggle { display: none; }

.nav.is-stuck {
  background: rgba(241, 231, 210, .94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-stuck .nav__logo,
.nav.is-stuck .nav__cta { color: var(--ink); }
.nav.is-stuck .nav__links a { color: var(--ink-soft); }
.nav.is-stuck .nav__links a:hover { color: var(--ink); }
.nav.is-stuck .nav__cta { border-color: var(--ink); }
.nav.is-stuck .nav__cta:hover { background: var(--ink); color: var(--bg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(20,12,6,.55), rgba(20,12,6,.25) 45%, rgba(20,12,6,.78)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1900&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 22% 30%, rgba(232, 176, 99, .22), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 137, 63, .14), transparent 60%),
    linear-gradient(to top, rgba(20,12,6,.7), transparent 38%);
}
.hero__content {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  width: 100%;
  padding-top: 80px;
  animation: rise .9s var(--ease) both .2s;
}
.hero__actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes heroZoom { to { transform: scale(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Story ---------- */
.section--story { background: var(--bg); }
.grid--story {
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .grid--story { grid-template-columns: 1fr 1.05fr; gap: 100px; }
}
.story__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
}
.story__img {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.story__img--1 {
  inset: 0 30% 12% 0;
  background-image:
    linear-gradient(180deg, rgba(33,19,11,0) 60%, rgba(33,19,11,.35)),
    url("https://images.unsplash.com/photo-1592861956120-e524fc739696?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}
.story__img--2 {
  inset: 35% 0 0 35%;
  aspect-ratio: 4/5;
  background-image: url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=900&q=80");
  border: 8px solid var(--bg);
}
.story__badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--amber-glow), var(--burgundy) 80%);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  box-shadow: 0 18px 40px -12px rgba(110, 42, 35, .55);
  transform: rotate(-8deg);
  border: 1px solid rgba(255,255,255,.15);
}
.story__badge span { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; opacity: .85; display: block; }
.story__badge strong { font-size: 1.6rem; font-weight: 500; display: block; margin-top: 2px; }

.story__points {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.story__points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink-soft);
}
.story__points li:last-child { border-bottom: 1px solid var(--line); }
.story__points span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber);
  font-size: 1rem;
  font-weight: 500;
}

/* ---------- Menu ---------- */
.section--menu { background: var(--paper); }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: var(--bg-warm);
  border-radius: 999px;
  width: fit-content;
  margin: 0 0 48px;
}
.menu-tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: background .3s, color .3s;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.is-active {
  background: var(--wood);
  color: #fff;
}
.menu-panels { position: relative; }
.menu-panel { display: none; animation: fadeUp .5s var(--ease); }
.menu-panel.is-active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 800px) {
  .menu-list { grid-template-columns: 1fr 1fr; gap: 8px 64px; }
}
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-list h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 4px;
}
.menu-list h3 em { font-style: italic; color: var(--muted); font-weight: 400; font-size: .9rem; }
.menu-list p {
  margin: 0;
  font-size: .9rem;
  color: var(--ink-soft);
  font-style: italic;
}
.price {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--amber);
  font-weight: 500;
  white-space: nowrap;
}
.menu-foot {
  margin-top: 56px;
  text-align: center;
  font-style: italic;
  color: var(--muted);
}

/* ---------- Drinks ---------- */
.section--drinks {
  background:
    linear-gradient(180deg, var(--wood) 0%, var(--wood-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.section--drinks::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(232, 176, 99, .28), transparent 55%),
    radial-gradient(ellipse at 8% 85%, rgba(155, 74, 37, .22), transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(110, 42, 35, .12), transparent 70%);
  pointer-events: none;
}
.grid--drinks { position: relative; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) {
  .grid--drinks { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.coffees { margin-top: 48px; }
.coffees h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.coffees h3 span {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-glow);
  font-weight: 500;
}
.coffees__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) {
  .coffees__grid { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}
.coffees__grid span {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.coffees__grid span em {
  font-style: italic;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  text-align: right;
}

.drinks__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-inline: auto;
}
.drinks__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(232,176,99,.45), rgba(33,19,11,0) 65%),
    linear-gradient(135deg, rgba(232,176,99,.22), rgba(155,74,37,.06));
  border: 1px solid rgba(232,176,99,.28);
  box-shadow: inset 0 0 80px rgba(232,176,99,.08);
}
.drinks__bottle {
  position: absolute;
  inset: 8% 22% 8% 22%;
  background:
    linear-gradient(180deg, rgba(33,19,11,.15), rgba(33,19,11,.55)),
    url("https://images.unsplash.com/photo-1474722883778-792e7990302f?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 999px;
  box-shadow: 0 35px 70px -20px rgba(0,0,0,.7);
}

/* ---------- Gallery ---------- */
.section--gallery { background: var(--bg); padding-bottom: 0; }
.gallery {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 130px;
  gap: 12px;
  padding-inline: clamp(20px, 4vw, 48px);
  max-width: 1400px;
  margin-inline: auto;
}
.gallery__item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  transition: transform .6s var(--ease), filter .6s;
  filter: saturate(.95);
}
.gallery__item:hover { transform: scale(1.02); filter: saturate(1.1); }

.gallery__item--1 { grid-column: span 4; grid-row: span 2; background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1100&q=80"); }
.gallery__item--2 { grid-column: span 3; grid-row: span 1; background-image: url("https://images.unsplash.com/photo-1592861956120-e524fc739696?auto=format&fit=crop&w=900&q=80"); }
.gallery__item--3 { grid-column: span 3; grid-row: span 1; background-image: url("https://images.unsplash.com/photo-1546964124-0cce460f38ef?auto=format&fit=crop&w=900&q=80"); }
.gallery__item--4 { grid-column: span 3; grid-row: span 1; background-image: url("https://images.unsplash.com/photo-1544148103-0773bf10d330?auto=format&fit=crop&w=900&q=80"); }
.gallery__item--5 { grid-column: span 3; grid-row: span 1; background-image: url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=900&q=80"); }

@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery__item--1 { grid-column: span 2 !important; }
}

/* ---------- Visit ---------- */
.section--visit { background: var(--bg-warm); }
.grid--visit {
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .grid--visit { grid-template-columns: 1fr 1.1fr 1fr; gap: 24px; align-items: stretch; }
}
.visit__card {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visit__card h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
}
.visit__card--accent {
  background: var(--wood);
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.visit__card--accent::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,.18), transparent 70%);
  top: -40px; right: -60px;
}
.visit__card--accent h3 { color: #fff; font-size: 2rem; letter-spacing: -.02em; }
.visit__note { color: rgba(255,255,255,.75); font-size: .92rem; margin-bottom: 8px; }
.hours { display: grid; gap: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--muted);
}
.hours li:last-child { border-bottom: 0; }
.hours li.is-open { color: var(--ink); }
.hours li.is-open b { color: var(--amber); font-weight: 500; }
.hours b { font-weight: 400; }

/* ---------- Footer ---------- */
.footer {
  background: var(--wood-deep);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 800px) {
  .footer__inner { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; }
}
.footer__mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.footer__brand p { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.footer__nav a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.footer__contact a { color: rgba(255,255,255,.85); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color .25s; }
.footer__contact a:hover { border-color: var(--amber-glow); }
.footer__bar {
  max-width: 1180px;
  margin-inline: auto;
  padding: 24px clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Mobile nav ---------- */
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav__toggle span {
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: transform .3s, opacity .3s, background .3s;
  }
  .nav.is-stuck .nav__toggle span { background: var(--ink); }
  .nav.is-open {
    background: var(--wood-deep);
    height: 100vh;
    align-items: flex-start;
  }
  .nav.is-open .nav__inner { flex-direction: column; align-items: flex-start; padding-top: 18px; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    width: 100%;
  }
  .nav.is-open .nav__links a { font-family: var(--serif); font-size: 2rem; color: #fff; }
  .nav.is-open .nav__cta { display: inline-flex; margin-top: 24px; color: #fff; border-color: rgba(255,255,255,.4); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: #fff; }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: #fff; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}
