/* ═══════════════════════════════════════════════════════════════
   Van der Geest Keurslager — Gouda
   Brand: Navy #1a3a6b · Red #c8102e · Cream #faf6f0
   Type: Barlow Condensed (headings) · Barlow (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Custom Properties ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c8102e;
  --red-dark:  #a50d25;
  --navy:      #1a3a6b;
  --navy-dark: #122952;
  --cream:     #faf6f0;
  --warm-grey: #f0ebe3;
  --charcoal:  #2c2c2c;
  --mid-grey:  #6b6b6b;
  --white:     #ffffff;

  --font-head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);

  --container: 1200px;
  --section-gap: 5rem;

  --header-h: 72px;

  scroll-behavior: smooth;
}

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .7rem 1.5rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-primary.btn-lg { font-size: 1.05rem; padding: .9rem 2rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600; font-size: .95rem;
  padding: .7rem 1.5rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,.6);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn-ghost.btn-lg { font-size: 1.05rem; padding: .9rem 2rem; }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600; font-size: .95rem;
  padding: .7rem 1.5rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, background .2s;
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-ghost-light.btn-lg { font-size: 1.05rem; padding: .9rem 2rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600; font-size: .9rem;
  padding: .55rem 1.2rem;
  border-radius: 4px;
  border: 2px solid var(--navy);
  margin-top: 1rem;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-tel {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--charcoal);
  font-weight: 600; font-size: .9rem;
  padding: .5rem .8rem;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: color .2s;
}
.btn-tel:hover { color: var(--red); }

/* ── Section commons ── */
.section { padding-block: var(--section-gap); }
.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center p { max-width: 52ch; margin-inline: auto; color: var(--mid-grey); }
.section-header p { color: var(--mid-grey); margin-top: .75rem; max-width: 56ch; }

.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.section-kicker--light { color: rgba(255,255,255,.75); }

h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
}
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.15;
}

/* ═══════════════════════════════ HEADER ═══════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .72rem;
  font-weight: 600;
  color: var(--mid-grey);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .25rem; }
.main-nav a {
  font-weight: 600;
  font-size: .88rem;
  color: var(--charcoal);
  padding: .5rem .75rem;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--red); background: var(--cream); }

.header-ctas { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 1.25rem clamp(1rem, 4vw, 2rem) 1.5rem;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  padding: .6rem .75rem;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.mobile-nav a:hover { color: var(--red); background: var(--cream); }
.mobile-nav .mobile-tel { color: var(--navy); }
.mobile-nav .btn-primary { margin-top: .5rem; justify-content: center; }

/* ═══════════════════════════════ HERO ═════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 20, 50, 0.82) 0%,
    rgba(10, 20, 50, 0.55) 55%,
    rgba(10, 20, 50, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding: 4rem clamp(1rem, 4vw, 2rem);
  max-width: 720px;
  width: 100%;
  /* left-align inside the page container */
  padding-left: clamp(1rem, 6vw, 4rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(200, 16, 46, 0.2);
  border: 1px solid rgba(200, 16, 46, 0.5);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.03;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,.92);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 44ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════ TRUST STRIP ══════════════════════ */
.trust-strip {
  background: var(--navy);
  padding: 1.1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: .75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .85rem;
  padding: .3rem 1.25rem;
  white-space: nowrap;
}
.trust-item svg { color: #ffd700; flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 1.4rem;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════ CATEGORIES ═══════════════════════ */
.section-categories { background: var(--cream); }

/* CSS grid masonry-style: 2 rows, mixed sizes */
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 12px;
}

.cat-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

/* Tile 1: Vers Vlees — large, spans cols 1-2, row 1 */
.cat-tile--large {
  grid-column: 1 / span 2;
  grid-row: 1;
}
/* Tile 2: Vleeswaren — col 3, row 1 */
.cat-tile:nth-child(2) { grid-column: 3; grid-row: 1; }
/* Tile 3: Vlugklaar — col 1, row 2 */
.cat-tile:nth-child(3) { grid-column: 1; grid-row: 2; }
/* Tile 4: Barbecue — col 2, row 2 */
.cat-tile:nth-child(4) { grid-column: 2; grid-row: 2; }
/* Tile 5: Gourmet-wide — col 3, row 2 */
.cat-tile--wide { grid-column: 3; grid-row: 2; }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,50,.85) 0%,
    rgba(10,20,50,.35) 45%,
    transparent 100%
  );
  transition: background .3s;
}
.cat-tile:hover .cat-overlay {
  background: linear-gradient(
    to top,
    rgba(10,20,50,.92) 0%,
    rgba(10,20,50,.55) 55%,
    rgba(10,20,50,.15) 100%
  );
}

.cat-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.cat-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  margin-bottom: .5rem;
  align-self: flex-start;
}
.cat-content h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .4rem;
}
.cat-content p {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  max-width: 38ch;
  margin-bottom: .75rem;
  display: none;
}
.cat-tile--large .cat-content p,
.cat-tile--wide .cat-content p {
  display: block;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: .1rem;
  transition: color .2s, border-color .2s;
  align-self: flex-start;
}
.cat-tile:hover .cat-link { color: #ffd0d8; border-color: #ffd0d8; }

/* ═══════════════════════════════ VAKMANSCHAP STORY ════════════════ */
.section-story { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-img-wrap {
  position: relative;
}
.story-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(200,16,46,.4);
  text-align: center;
}
.story-badge-float strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
}
.story-badge-float span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .9;
}

.story-text { padding: 1rem 0; }
.story-text h2 { margin-bottom: 1.25rem; }
.story-text .lead-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.story-text p {
  color: var(--mid-grey);
  margin-bottom: .85rem;
}

.story-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.story-feat {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
  font-size: .92rem;
}

/* ═══════════════════════════════ REVIEWS ══════════════════════════ */
.section-reviews { background: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-top: 4px solid transparent;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card--featured {
  border-top-color: var(--red);
  background: var(--navy);
  color: var(--white);
}
.review-card--featured blockquote { color: rgba(255,255,255,.85); }
.review-card--featured .review-author strong { color: var(--white); }
.review-card--featured .review-author span { color: rgba(255,255,255,.6); }

.review-stars { font-size: 1.1rem; color: #f5a623; margin-bottom: .75rem; letter-spacing: .05em; }

blockquote {
  font-size: .92rem;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex: 1;
}
blockquote::before { content: '\201C'; }
blockquote::after { content: '\201D'; }

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .92rem; }
.review-author span { font-size: .8rem; color: var(--mid-grey); }

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.score-big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
}
.score-details { display: flex; flex-direction: column; gap: .25rem; }
.score-stars { font-size: 1.5rem; color: #f5a623; }
.score-details span { font-size: .85rem; color: var(--mid-grey); }

/* ═══════════════════════════════ CATERING ════════════════════════ */
.section-catering { background: var(--navy); color: var(--white); }
.section-catering h2 { color: var(--white); }

.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.catering-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.catering-text .lead-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.catering-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.catering-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}

/* ═══════════════════════════════ GALLERY ═════════════════════════ */
.section-gallery { background: var(--white); }

/* Masonry gallery — 3-column flex layout, zero gaps */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: start;
}
.masonry-col { display: flex; flex-direction: column; gap: 10px; }

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.masonry-col:nth-child(1) .gallery-item:first-child img { height: 320px; }
.masonry-col:nth-child(1) .gallery-item:last-child img  { height: 240px; }
.masonry-col:nth-child(2) .gallery-item:first-child img { height: 240px; }
.masonry-col:nth-child(2) .gallery-item:last-child img  { height: 320px; }
.masonry-col:nth-child(3) .gallery-item:first-child img { height: 280px; }
.masonry-col:nth-child(3) .gallery-item:last-child img  { height: 280px; }
.gallery-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ═══════════════════════════════ WEBSHOP ════════════════════════ */
.section-webshop { background: #1a3a6b !important; color: var(--white); }

.webshop-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.webshop-text .section-kicker { color: rgba(255,255,255,.65); }
.webshop-text h2 { color: var(--white); margin-bottom: 1rem; }
.webshop-text p { color: rgba(255,255,255,.8); max-width: 52ch; margin-bottom: 1.75rem; }
.webshop-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.webshop-img img {
  width: 380px;
  max-width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════ WINKEL INFO ════════════════════ */
.section-winkel { background: var(--cream); }

.winkel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 2.5rem;
}

.winkel-block h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: .5rem 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.hours-highlight td { color: var(--navy); }
.hours-highlight td:last-child { color: var(--red); }
.hours-closed td { color: var(--mid-grey); }
.hours-closed td:last-child { font-weight: 400; }

.winkel-address {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--charcoal);
}
.winkel-address a { color: var(--navy); font-weight: 600; }
.winkel-address a:hover { color: var(--red); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ═══════════════════════════════ CONTACT ═════════════════════════ */
.section-contact { background: var(--navy); color: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-intro h2 { color: var(--white); margin-bottom: 1rem; }
.contact-intro p { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; }

.contact-details { display: flex; flex-direction: column; gap: .75rem; }
.contact-details li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}
.contact-details a { color: rgba(255,255,255,.85); font-weight: 600; }
.contact-details a:hover { color: var(--white); text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }

.form-group label {
  font-size: .83rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group label span { color: var(--red); }

.form-group input,
.form-group textarea {
  padding: .7rem 1rem;
  border: 2px solid rgba(0,0,0,.12);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,107,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-privacy {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--mid-grey);
  margin-top: .75rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success h3 { color: var(--navy); font-size: 1.5rem; margin: 1rem 0 .5rem; }
.form-success p { color: var(--mid-grey); }

/* ═══════════════════════════════ FOOTER ═════════════════════════ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding-top: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.logo--footer .logo-name { color: var(--white); }
.logo--footer .logo-sub { color: rgba(255,255,255,.5); }

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }

.footer-col address {
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
}
.footer-col address a { color: rgba(255,255,255,.65); }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-keurslager {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════ RESPONSIVE ═════════════════════ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  :root { --section-gap: 4rem; }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 260px 260px;
  }
  .cat-tile--large { grid-column: 1 / span 2; grid-row: 1; }
  .cat-tile:nth-child(2) { grid-column: 1; grid-row: 2; }
  .cat-tile:nth-child(3) { grid-column: 2; grid-row: 2; }
  .cat-tile:nth-child(4) { grid-column: 1; grid-row: 3; }
  .cat-tile--wide { grid-column: 2; grid-row: 3; }

  .story-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .story-img-wrap img { height: 420px; }
  .story-badge-float { right: -.75rem; bottom: -.75rem; width: 95px; height: 95px; }

  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: 1 / span 2; max-width: 480px; margin-inline: auto; }

  .catering-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .catering-img img { height: 380px; }

  .webshop-banner { grid-template-columns: 1fr; }
  .webshop-img { display: none; }

  .winkel-grid { grid-template-columns: 1fr 1fr; }
  .winkel-map { grid-column: 1 / span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
  :root { --section-gap: 3rem; --header-h: 60px; }

  .main-nav, .header-ctas { display: none; }
  .nav-toggle { display: flex; }

  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  .trust-strip { gap: .25rem; }
  .trust-sep { display: none; }
  .trust-item { font-size: .8rem; padding: .3rem .75rem; }

  .cat-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .cat-tile, .cat-tile--large, .cat-tile--wide,
  .cat-tile:nth-child(2), .cat-tile:nth-child(3),
  .cat-tile:nth-child(4), .cat-tile:nth-child(5) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .cat-content p { display: block; }

  .story-grid { grid-template-columns: 1fr; }
  .story-img-wrap img { height: 300px; }
  .story-badge-float { right: 1rem; bottom: -1rem; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: 1; max-width: 100%; }

  .catering-grid { grid-template-columns: 1fr; }
  .catering-img { order: -1; }
  .catering-img img { height: 260px; }

  .masonry-gallery { grid-template-columns: 1fr 1fr; }
  .masonry-col:last-child { display: none; }
  .masonry-col .gallery-item img { height: 200px !important; }

  .winkel-grid { grid-template-columns: 1fr; }
  .winkel-map { grid-column: 1; }

  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Extra small ≤ 480px */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .webshop-actions { flex-direction: column; }
}
