:root {
  --bg: #f6f1ea;
  --surface: #fffdfb;
  --text: #2b221c;
  --muted: #5f4a3c;
  --accent: #8f4618;
  --accent-dark: #743711;
  --line: #decfc1;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #f3e9de 0%, var(--bg) 220px, var(--bg) 100%);
}

a {
  color: var(--accent-dark);
}

.site-shell {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #202020;
  border-bottom: 1px solid #333333;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: #f5f5f5;
}

.navbar-logo {
  height: 42px;
  width: auto;
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 0.45rem;
  color: #f1f1f1;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #2a2a2a;
}

.site-nav a.active {
  background: #353535;
  color: #ffb171;
}

.nav-toggle {
  display: none;
  background: #1b1b1b;
  border: 1px solid #3a3a3a;
  border-radius: 0.5rem;
  width: 44px;
  height: 44px;
  padding: 0.45rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #f5f5f5;
  margin: 5px 0;
}

.site-main {
  padding: 2.5rem 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  margin-top: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(74, 41, 20, 0.06);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-logo {
  max-width: 220px;
  height: auto;
  display: block;
}

.home-services,
.home-facebook-cta {
  margin-top: 1.75rem;
}

.home-terrace {
  margin-top: 1.75rem;
}

.terrace-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.terrace-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}

.home-service-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(74, 41, 20, 0.04);
}

.home-service-grid h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.home-service-grid p {
  margin: 0;
}

.home-facebook-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(74, 41, 20, 0.04);
}

.not-found-card {
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(74, 41, 20, 0.06);
}

.eyebrow {
  margin: 0 0 0.5rem 0;
  color: var(--muted);
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 0.62rem 0.9rem;
  min-height: 44px;
  border-radius: 0.5rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-facebook {
  background: #145bb8;
  border-color: #145bb8;
  color: #fff;
}

.btn-facebook:hover,
.btn-facebook:focus-visible {
  background: #114d9b;
  border-color: #114d9b;
}

.btn-outlook {
  background: #0078d4;
  border-color: #0078d4;
  color: #fff;
}

.btn-outlook:hover,
.btn-outlook:focus-visible {
  background: #006cbe;
  border-color: #006cbe;
}

.btn-kpn {
  background: #007d3d;
  border-color: #007d3d;
  color: #fff;
}

.btn-kpn:hover,
.btn-kpn:focus-visible {
  background: #009247;
  border-color: #009247;
}

.btn-maps {
  background: #f3f6f8;
  border-color: #bcc8d4;
  color: #02695a;
}

.btn-maps:hover,
.btn-maps:focus-visible {
  background: #eaf0f4;
  border-color: #a8b8c6;
}

.btn-icon {
  gap: 0.55rem;
}

.btn-icon .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.revealed-email-address {
  font-size: 1rem;
  font-weight: 400;
  margin: 0.2rem 0 0.75rem 0;
  color: var(--text);
}

.menu-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.menu-grid article,
.contact-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem;
}

.menu-hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(74, 41, 20, 0.06);
}

.menu-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.menu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.1rem;
}

.menu-card h2 {
  margin: 0 0 0.4rem 0;
}

.menu-card h3 {
  margin: 1.1rem 0 0.35rem 0;
  font-size: 1.1rem;
}

.menu-subtitle {
  margin: 0 0 0.8rem 0;
  color: var(--muted);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li + li {
  border-top: 1px solid #efe2d6;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: baseline;
}

.menu-item-head .price {
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.menu-item-desc {
  margin: 0.2rem 0 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.menu-download-cta {
  margin-top: 1.25rem;
}

.openingstijden {
  margin: 0;
  padding-left: 1.1rem;
}

.openingstijden-tabel {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem 0;
}

.openingstijden-tabel th,
.openingstijden-tabel td {
  padding: 0.2rem 0;
  text-align: left;
  vertical-align: top;
}

.openingstijden-tabel th {
  width: 7.5rem;
  font-weight: 600;
}

.contact-image {
  margin-top: 2rem;
}

.contact-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  border-top: 1px solid #343434;
  background: #222222;
  padding: 1.8rem 0;
  color: #f3f3f3;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer h2 {
  font-size: 1.05rem;
  margin-top: 0;
}

.site-footer p {
  margin: 0 0 0.55rem 0;
}

.site-footer a {
  color: #f3f3f3;
}

.footer-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  width: 240px;
  justify-content: center;
}

.footer-action-btn .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-action-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.phone-btn {
  background: #007d3d;
  color: #fff;
  border: 1px solid #007d3d;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  padding: 0.5rem 0.9rem;
}

.phone-btn .icon {
  color: #fff;
}

.phone-btn span:last-child {
  color: #fff;
}

.phone-btn:hover,
.phone-btn:focus-visible {
  background: #006f36;
  border-color: #006f36;
}

.facebook-icon-btn {
  background: #145bb8;
  color: #fff;
  border: 1px solid #145bb8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  padding: 0.5rem 0.9rem;
}

.facebook-icon-btn span {
  color: #fff;
}

.facebook-icon-btn svg {
  fill: #fff;
}

.facebook-icon-btn:hover,
.facebook-icon-btn:focus-visible {
  background: #114d9b;
  border-color: #114d9b;
}

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #111111;
    border-bottom: 1px solid #2a2a2a;
    display: none;
    padding: 0.5rem 4%;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.35rem;
  }

  .menu-grid,
  .contact-grid,
  .home-service-grid,
  .menu-sections {
    grid-template-columns: 1fr;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-logo {
    max-width: 160px;
  }

  .navbar-logo {
    height: 36px;
  }

  .terrace-gallery {
    grid-template-columns: 1fr;
  }

  .terrace-gallery img {
    height: 220px;
  }

  .contact-image img {
    height: 200px;
  }
}
