/* ─────────────────────────────────────────────────────────────────────────────
   thechickenbar.nl — "Don't flock around"
   Palette from the brand's own materials: UI red #A63A42 + logo red #C0212B
   (their CSS + logo), kraft #d7b993 (the printed menu paper), cream paper,
   ink, badge green #13A538. Type: Trade Gothic Bold Condensed (the printed
   menu face, self-hosted) + Lato body + Grand Hotel script accents.
   ───────────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Trade Gothic BC';
  src: url('../fonts/tradegothic-bc.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-400i.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Grand Hotel';
  src: url('../fonts/grandhotel-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --red: #A63A42;
  --red-deep: #8c2f36;
  --logo-red: #C0212B;
  --kraft: #d7b993;
  --kraft-deep: #c6a67c;
  --paper: #f8f2e7;
  --paper-warm: #f3e9d8;
  --ink: #241d18;
  --ink-soft: #4d423a;
  --green: #0d6e26;   /* white-on-green passes 4.5:1 at badge size */
  --line: rgba(36, 29, 24, .16);
  --display: 'Trade Gothic BC', 'Arial Narrow', sans-serif;
  --body: 'Lato', system-ui, sans-serif;
  --script: 'Grand Hotel', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }   /* the korverbv iOS lesson */
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
}

a { color: var(--red); }
a:hover { color: var(--red-deep); }
main { display: block; }

h1, h2, h3 { font-family: var(--display); text-transform: uppercase; line-height: 1.08; letter-spacing: .015em; }
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.script { font-family: var(--script); text-transform: none; letter-spacing: 0; font-weight: 400; }
h1 .script, h2 .script { font-size: 1.18em; color: var(--logo-red); position: relative; top: .06em; padding: 0 .09em; }
.on-dark .script, .dark h2 .script { color: var(--kraft); }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 3.5rem 0; }
.kicker { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .95rem; color: var(--red); margin-bottom: .4rem; }
.sub { color: var(--ink-soft); max-width: 46rem; margin-top: .5rem; }

/* ── buttons: the dual CTA ────────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.05rem; text-decoration: none;
  padding: .72rem 1.5rem; border-radius: 3px; border: 2px solid var(--red);
  transition: background .15s, color .15s, border-color .15s;
  text-align: center;
}
.btn-book { background: var(--red); color: #fff; }
.btn-book:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }
.btn-delivery { background: transparent; color: var(--red); }
.btn-delivery:hover { background: var(--red); color: #fff; }
.on-dark .btn-delivery { color: #fff; border-color: #fff; }
.on-dark .btn-delivery:hover { background: #fff; color: var(--ink); }
.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ── open chip ────────────────────────────────────────────────────────────── */
.open-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .9rem; font-weight: 700; color: #fff;
  background: rgba(0, 0, 0, .45); border-radius: 99px; padding: .3rem .9rem;
}
.open-chip::before { content: ''; width: .6rem; height: .6rem; border-radius: 50%; background: #9aa0a6; }
.open-chip.is-open::before { background: #35c463; }
.open-chip.is-closed::before { background: #e05252; }
.chip-inline { background: var(--ink); }

/* ── header ───────────────────────────────────────────────────────────────── */
header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.head-inner { display: flex; align-items: center; gap: 1.2rem; padding: .55rem 1.25rem; max-width: 78rem; margin: 0 auto; }
.head-logo img { height: 52px; width: auto; }
.head-nav { display: flex; gap: 1.1rem; margin-left: auto; align-items: center; flex-wrap: wrap; }
.head-nav a { font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; text-decoration: none; color: var(--ink); font-size: 1rem; }
.head-nav a:hover { color: var(--red); }
.head-nav a.is-active { color: var(--red); border-bottom: 2px solid var(--red); }
.head-ctas { display: flex; gap: .5rem; margin-left: 1rem; transition: opacity .25s; }
.head-ctas.is-hidden { opacity: 0; pointer-events: none; }
.head-ctas .btn { padding: .45rem 1rem; font-size: .95rem; }
.lang-switch { font-weight: 700; opacity: .75; }
.burger {
  display: none; margin-left: auto; background: none; border: 2px solid var(--ink);
  border-radius: 3px; padding: .35rem .6rem; font-family: var(--display);
  font-size: 1rem; text-transform: uppercase; cursor: pointer; color: var(--ink);
}
.mobile-panel { background: var(--paper); border-bottom: 2px solid var(--red); padding: .8rem 1.25rem 1.2rem; }
.mobile-panel a { display: block; padding: .45rem 0; font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; text-decoration: none; color: var(--ink); }

@media (max-width: 960px) {
  .head-nav, .head-ctas { display: none; }
  .burger { display: inline-block; }
}
@media (min-width: 961px) { .mobile-panel { display: none !important; } }

/* ── mobile bottom dual-CTA bar ───────────────────────────────────────────── */
.cta-bar { display: none; }
@media (max-width: 700px) {
  .cta-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--ink); padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom));
    gap: .55rem;
  }
  .cta-bar .btn { flex: 1 1 0; white-space: nowrap; font-size: .98rem; padding: .6rem .5rem; }
  .cta-bar .btn-delivery { color: #fff; border-color: #fff; }
  body { padding-bottom: 4.4rem; }
  /* the persistent bar IS the CTA pair on mobile: no duplicate pairs in view */
  .hero .btn-row { display: none; }
  .cta-band { display: none; }
}

/* ── hero ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; color: #fff; padding: 0; }
.hero img.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 12, 8, .35), rgba(20, 12, 8, .68)); }
.hero-inner { position: relative; z-index: 2; padding: 5.5rem 1.25rem 4.5rem; max-width: 72rem; margin: 0 auto; }
.hero-logo { width: min(320px, 62vw); margin-bottom: 1.2rem; }
.hero h1 { max-width: 22ch; text-shadow: 0 2px 14px rgba(0, 0, 0, .45); }
.hero .tagline { max-width: 42rem; margin: .8rem 0 1.4rem; font-size: 1.15rem; text-shadow: 0 1px 8px rgba(0, 0, 0, .5); }
.hero .open-chip { margin-bottom: 1.1rem; }

/* ── kraft panels (the printed-menu look) ─────────────────────────────────── */
.kraft {
  background: var(--kraft) url('../img/kraft-tile.jpg');
  background-size: 420px;
}
.kraft-card {
  background: var(--paper) ;
  border: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(36, 29, 24, .12);
  padding: 1.6rem 1.7rem;
}

/* menu sections */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.2rem; margin-top: 1.8rem; }
.menu-section h3 { display: flex; align-items: baseline; gap: .55rem; color: var(--logo-red); font-size: 1.45rem; margin-bottom: .25rem; }
.menu-section h3 .no { font-size: 1rem; color: var(--ink-soft); letter-spacing: .1em; }
.menu-note { font-style: italic; color: var(--ink-soft); font-size: .95rem; margin-bottom: .6rem; }
.menu-items { list-style: none; }
.menu-items li { display: flex; align-items: baseline; gap: .5rem; padding: .28rem 0; border-bottom: 1px dotted var(--line); }
.menu-items li:last-child { border-bottom: 0; }
.mi-name { font-weight: 700; }
.mi-note { color: var(--ink-soft); font-size: .9rem; }
.mi-dots { flex: 1; }
.mi-price { font-family: var(--display); white-space: nowrap; }
.veg-badge {
  display: inline-block; background: var(--green); color: #fff; font-size: .68rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; padding: .1rem .4rem; vertical-align: middle; margin-left: .35rem;
}

/* menu teaser on home */
.menu-teaser-items { margin: 1.2rem 0; }

/* ── generic split section ────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.4rem; align-items: center; }
.split figure img { width: 100%; border: 6px solid #fff; box-shadow: 0 3px 16px rgba(36, 29, 24, .2); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ── reviews ──────────────────────────────────────────────────────────────── */
.reviews { background: var(--paper-warm); }
.reviews-rotator { display: grid; margin-top: 1.4rem; min-height: 11rem; }
.review-slide {
  grid-area: 1 / 1; visibility: hidden; opacity: 0; transition: opacity .6s;
  max-width: 46rem;
}
.review-slide.is-active { visibility: visible; opacity: 1; }
.review-slide blockquote { font-size: 1.3rem; line-height: 1.5; font-style: italic; }
.review-slide blockquote::before { content: '\201C'; font-family: var(--script); font-size: 2.6rem; color: var(--logo-red); display: block; line-height: .6; margin-bottom: .4rem; }
.review-meta { margin-top: .8rem; font-size: .95rem; color: var(--ink-soft); }
.review-meta b { color: var(--ink); }
.review-stars { color: var(--logo-red); letter-spacing: .12em; }
.rating-line { margin-top: 1.6rem; font-size: .95rem; color: var(--ink-soft); }

/* ── delivery band ────────────────────────────────────────────────────────── */
.dark { background: var(--ink); color: #f4ece0; }
.dark h2 { color: #fff; }
.dark .sub, .dark p { color: rgba(244, 236, 224, .85); }
.dark a:not(.btn):not(.platform-btn) { color: var(--kraft); }
.dark a:not(.btn):not(.platform-btn):hover { color: #fff; }
.platforms { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.3rem 0 .6rem; }
.platform-btn {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em;
  background: #fff; color: var(--ink); text-decoration: none;
  padding: .8rem 1.4rem; border-radius: 3px; font-size: 1.05rem;
  border-bottom: 4px solid var(--red);
}
.platform-btn:hover { background: var(--kraft); color: var(--ink); }
.small-note { font-size: .9rem; opacity: .8; }

/* ── neon band ────────────────────────────────────────────────────────────── */
.neon-band { background: #1d1310; text-align: center; padding: 3rem 1rem; }
.neon-band img { display: inline-block; width: min(600px, 86vw); height: auto;
  filter: drop-shadow(0 0 6px rgba(255, 120, 90, .9)) drop-shadow(0 0 22px rgba(230, 60, 40, .55)); }

/* ── family / quartet ─────────────────────────────────────────────────────── */
.family-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; margin-top: 1.6rem; }
.family-card {
  background: #fff; border: 1px solid var(--line); padding: 1.15rem 1.2rem;
  text-decoration: none; color: var(--ink); display: block; position: relative;
}
.family-card:hover { border-color: var(--red); color: var(--ink); }
.family-card h3 { color: var(--logo-red); margin-bottom: .15rem; }
.family-card .addr { font-size: .9rem; color: var(--ink-soft); margin-bottom: .35rem; }
.family-card p { font-size: .95rem; }
.family-here {
  position: absolute; top: -.7rem; right: .8rem; background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: .15rem .5rem; border-radius: 2px;
}

/* gingham accent strip (their napkins) */
.gingham { height: .8rem; background:
  repeating-linear-gradient(90deg, rgba(166, 58, 66, .55) 0 14px, transparent 14px 28px),
  repeating-linear-gradient(0deg, rgba(166, 58, 66, .55) 0 14px, transparent 14px 28px),
  #fdfaf2; }

/* ── visit / contact ──────────────────────────────────────────────────────── */
.visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; margin-top: 1.4rem; }
.visit-block h3 { color: var(--logo-red); margin-bottom: .4rem; }
.visit-block address { font-style: normal; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 1.4rem; max-width: 52rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.05rem 0; }
.faq-item h3 { text-transform: none; font-family: var(--body); font-size: 1.12rem; font-weight: 700; margin-bottom: .35rem; }
.faq-item p { color: var(--ink-soft); }
.faq-item .learn-more { font-size: .95rem; font-weight: 700; }

/* ── guides ───────────────────────────────────────────────────────────────── */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; margin-top: 1.6rem; }
.guide-card { background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.guide-card:hover { border-color: var(--red); }
.guide-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.guide-card .pad { padding: 1rem 1.1rem 1.2rem; }
.guide-card h3 { margin-bottom: .3rem; }
.guide-card p { font-size: .95rem; color: var(--ink-soft); }
.guide-card .read { margin-top: auto; padding: 0 1.1rem 1rem; font-weight: 700; font-size: .95rem; color: var(--red); }

/* guide detail */
.guide-hero img { width: 100%; max-height: 26rem; object-fit: cover; }
.article { max-width: 46rem; }
.article .intro { font-size: 1.2rem; font-style: italic; color: var(--ink-soft); margin: .8rem 0 1.4rem; }
.article h2 { font-size: 1.5rem; margin: 1.8rem 0 .6rem; color: var(--logo-red); }
.article p { margin-bottom: 1rem; }
.breadcrumb { font-size: .9rem; color: var(--ink-soft); padding-top: 1.4rem; }
.breadcrumb a { color: var(--ink-soft); }

/* ── impression gallery ───────────────────────────────────────────────────── */
.impress-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .7rem; margin-top: 1.6rem; }
.impress-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ── CTA band (bottom of content pages) ───────────────────────────────────── */
.cta-band { background: var(--red); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .btn-row { justify-content: center; margin-top: 1.2rem; }
.cta-band .btn-book { background: #fff; color: var(--red); border-color: #fff; }
.cta-band .btn-book:hover { background: var(--paper); border-color: var(--paper); color: var(--red-deep); }
.cta-band .btn-delivery { color: #fff; border-color: #fff; }
.cta-band .btn-delivery:hover { background: #fff; color: var(--red); }

/* ── footer ───────────────────────────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(244, 236, 224, .85); padding: 3rem 0 2rem; font-size: .95rem; }
footer h4 { font-family: var(--display); text-transform: uppercase; color: var(--kraft); margin-bottom: .6rem; font-size: 1.05rem; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.6rem; }
footer a { color: rgba(244, 236, 224, .95); text-decoration: none; }
footer a:hover { color: #fff; text-decoration: underline; }
footer ul { list-style: none; }
footer li { padding: .14rem 0; }
.foot-logo { width: 130px; margin-bottom: .8rem; }
.foot-bottom { border-top: 1px solid rgba(244, 236, 224, .2); margin-top: 2rem; padding-top: 1rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between; font-size: .85rem; opacity: .8; }
address { font-style: normal; }

/* ── page hero (inner pages) ──────────────────────────────────────────────── */
.page-head { background: var(--kraft) url('../img/kraft-tile.jpg'); background-size: 420px; padding: 3rem 0 2.4rem; }
.page-head h1 { color: var(--ink); }
.page-head .script-over { font-family: var(--script); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--logo-red); display: block; margin-bottom: -.4rem; }

/* utility */
.mt { margin-top: 1.4rem; }
.center { text-align: center; }
