:root {
  --charcoal: #171514;
  --charcoal-2: #25201d;
  --orange: #f47b20;
  --orange-dark: #cf5d12;
  --cream: #fff7ec;
  --paper: #ffffff;
  --muted: #70675f;
  --line: #eadfd2;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(23, 21, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 236, 0.92);
  border-bottom: 1px solid rgba(234, 223, 210, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.brand-name,
.footer-brand {
  font-size: 1.35rem;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  font-weight: 700;
  color: var(--charcoal-2);
}

.nav-order,
.cart-link,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.nav-order:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.button-dark,
.cart-link {
  background: var(--charcoal);
}

.button-light {
  background: #fff;
  color: var(--charcoal);
}

.full-width {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.88), rgba(23, 21, 20, 0.42)),
    radial-gradient(circle at 72% 30%, rgba(244, 123, 32, 0.34), transparent 34%),
    url("data:image/svg+xml,%3Csvg width='1200' height='800' viewBox='0 0 1200 800' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1200' height='800' fill='%2325201d'/%3E%3Ccircle cx='760' cy='360' r='210' fill='%23f47b20'/%3E%3Ccircle cx='760' cy='360' r='168' fill='%23fff7ec'/%3E%3Ccircle cx='715' cy='330' r='42' fill='%23cf5d12'/%3E%3Ccircle cx='815' cy='330' r='34' fill='%2382a846'/%3E%3Ccircle cx='760' cy='430' r='52' fill='%23d94d35'/%3E%3Crect x='255' y='465' width='345' height='42' rx='21' fill='%23d8a15f'/%3E%3Crect x='285' y='415' width='285' height='78' rx='39' fill='%23f0c778'/%3E%3Crect x='300' y='450' width='255' height='26' rx='13' fill='%2382a846'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  align-self: center;
  padding-block: 72px;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  font-size: 1.2rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 64px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.split-section h2,
.hours-band h2,
.story-section h2,
.order-sidebar h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-menu .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.woocommerce ul.products li.product {
  margin: 0;
  width: auto;
}

.menu-card-image {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.18), rgba(255, 247, 236, 0.96)),
    #eadfd2;
  color: var(--muted);
  font-weight: 800;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.menu-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.menu-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.label-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.split-section,
.hours-band,
.values-section {
  background: var(--paper);
}

.split-grid,
.hours-grid,
.story-grid,
.story-columns,
.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.notice-card,
.order-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 20px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(234, 223, 210, 0.45);
}

.hours-list-large {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 14px 20px;
}

.page-hero {
  padding: 72px 0 46px;
  background: var(--charcoal);
  color: #fff;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.story-image {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 21, 20, 0.2), rgba(244, 123, 32, 0.24)),
    url("data:image/svg+xml,%3Csvg width='900' height='700' viewBox='0 0 900 700' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='900' height='700' fill='%23eadfd2'/%3E%3Crect x='140' y='430' width='620' height='55' rx='27' fill='%23d8a15f'/%3E%3Crect x='185' y='345' width='530' height='110' rx='55' fill='%23f0c778'/%3E%3Ccircle cx='330' cy='345' r='45' fill='%2382a846'/%3E%3Ccircle cx='470' cy='330' r='58' fill='%23d94d35'/%3E%3Ccircle cx='595' cy='352' r='42' fill='%23f47b20'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.story-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-columns article {
  display: grid;
  gap: 14px;
}

.story-columns h2 {
  margin: 0;
  font-size: 1.25rem;
}

.story-columns p {
  margin: 0;
  color: var(--muted);
}

.story-thumb {
  min-height: 210px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}

.story-thumb-one {
  background-image:
    linear-gradient(135deg, rgba(244, 123, 32, 0.16), rgba(255, 247, 236, 0.5)),
    url("data:image/svg+xml,%3Csvg width='640' height='420' viewBox='0 0 640 420' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='640' height='420' fill='%23fff7ec'/%3E%3Crect x='80' y='260' width='480' height='50' rx='25' fill='%23d8a15f'/%3E%3Ccircle cx='210' cy='210' r='56' fill='%2382a846'/%3E%3Ccircle cx='320' cy='190' r='68' fill='%23d94d35'/%3E%3Ccircle cx='435' cy='215' r='48' fill='%23f47b20'/%3E%3C/svg%3E");
}

.story-thumb-two {
  background-image:
    linear-gradient(135deg, rgba(23, 21, 20, 0.12), rgba(244, 123, 32, 0.14)),
    url("data:image/svg+xml,%3Csvg width='640' height='420' viewBox='0 0 640 420' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='640' height='420' fill='%23eadfd2'/%3E%3Crect x='130' y='145' width='380' height='180' rx='8' fill='%23ffffff'/%3E%3Crect x='168' y='178' width='304' height='34' rx='17' fill='%23f47b20'/%3E%3Crect x='168' y='230' width='210' height='20' rx='10' fill='%2370675f'/%3E%3Crect x='168' y='268' width='260' height='20' rx='10' fill='%2370675f'/%3E%3C/svg%3E");
}

.story-thumb-three {
  background-image:
    linear-gradient(135deg, rgba(244, 123, 32, 0.18), rgba(255, 247, 236, 0.36)),
    url("data:image/svg+xml,%3Csvg width='640' height='420' viewBox='0 0 640 420' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='640' height='420' fill='%2325201d'/%3E%3Crect x='165' y='130' width='310' height='205' rx='16' fill='%23fff7ec'/%3E%3Crect x='205' y='172' width='230' height='26' rx='13' fill='%23f47b20'/%3E%3Crect x='205' y='220' width='170' height='18' rx='9' fill='%2370675f'/%3E%3Crect x='205' y='255' width='205' height='18' rx='9' fill='%2370675f'/%3E%3C/svg%3E");
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 24px;
}

.value-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.menu-category {
  margin-bottom: 46px;
}

.compact-heading {
  margin-bottom: 18px;
}

.compact-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.menu-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
}

.menu-filter label {
  font-weight: 800;
}

.menu-filter select {
  min-width: 220px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 8px 12px;
  font-weight: 700;
}

.order-sidebar {
  position: sticky;
  top: 104px;
}

.order-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.woocommerce .quantity .qty {
  width: 74px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
}

.eethuis-checkout-fields {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 18px;
}

.site-footer {
  background: var(--charcoal);
  color: #fff;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.site-footer p,
.site-footer li,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

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

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .product-grid,
  .woocommerce ul.products,
  .split-grid,
  .hours-grid,
  .story-grid,
  .story-columns,
  .order-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .order-menu .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.2rem;
  }

  .section {
    padding: 42px 0;
  }

  .product-grid,
  .woocommerce ul.products,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .order-menu .product-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .menu-card-image {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .menu-card-body {
    gap: 7px;
    padding: 10px;
  }

  .menu-card-title {
    gap: 8px;
  }

  .menu-card h3 {
    font-size: 0.9rem;
  }

  .menu-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .label-row {
    gap: 4px;
  }

  .label-row span {
    padding: 2px 6px;
    font-size: 0.68rem;
  }

  .menu-card-actions .button,
  .menu-card-actions .added_to_cart,
  .menu-card-actions a.button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .menu-filter {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .menu-filter select {
    width: 100%;
    min-width: 0;
  }

  .hero-actions,
  .shop-toolbar,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}
