﻿:root {
  --dark: #2b1208;
  --dark-2: #3d2216;
  --bg: #2b1208;
  --bg-soft: #3d2216;
  --brown: #6b2f16;
  --brown-2: #9a542c;
  --leather: #9a542c;
  --copper: #b76a3a;
  --gold: #c9823b;
  --cream: #f6f0e7;
  --cream-2: #efe3d3;
  --text: #f6f0e7;
  --text-dark: #2d211c;
  --muted: #d7c3ad;
  --line: rgba(183,106,58,.36);
  --card: rgba(246,240,231,.12);
  --surface: #f3dfc7;
  --surface-2: #ead4bb;
  --shadow: 0 24px 68px rgba(43,18,8,.26);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(201,130,59,.2), transparent 34%),
    linear-gradient(180deg, var(--dark-2) 0%, #34190e 46%, #56301d 100%);
  color: var(--text);
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43,18,8,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,130,59,.3);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand-type {
  width: 190px;
  max-height: 50px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  color: rgba(246,240,231,.9);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--text-dark) !important;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(43,18,8,.22);
}
.nav-cta:hover {
  color: var(--text-dark) !important;
  box-shadow: 0 14px 30px rgba(43,18,8,.26);
}
.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Header social icons: compact icon-only circles */
.header-social a {
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(201, 130, 59, 0.46);
  background: linear-gradient(180deg, rgba(246,240,231,.14), rgba(239,227,211,.07));
  border-radius: 999px;

  line-height: 1;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}

.header-social a svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.header-social a svg path {
  fill: currentColor;
}

.header-social a:hover {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border-color: rgba(246,240,231,.34);
  transform: translateY(-2px);
}

/* Footer social links: visible logo + readable text */
.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;

  text-decoration: none;
  color: rgba(246, 240, 231, 0.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;

  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.social-links .social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(201, 130, 59, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(246,240,231,.14), rgba(239,227,211,.07));
  flex: 0 0 28px;
}

.social-links .social-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: var(--cream);
}

.social-links .social-icon svg path {
  fill: var(--cream);
}

.social-links a:hover {
  color: var(--gold);
  background: transparent;
  transform: translateX(3px);
}

.social-links a:hover .social-icon {
  border-color: var(--gold);
}

.social-links a:hover .social-icon svg,
.social-links a:hover .social-icon svg path {
  fill: var(--gold);
}




.header-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(201,130,59,.42);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(246,240,231,.14), rgba(239,227,211,.07));
}
.header-lang-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(246,240,231,.88);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  padding: 9px 10px;
}
.header-lang-switch button.active {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--text-dark);
}
.mobile-menu-btn {
  display: none;
  background: rgba(246,240,231,.1);
  color: var(--cream);
  border: 1px solid rgba(201,130,59,.42);
  padding: 10px 12px;
  border-radius: 12px;
}

.hero {
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  background:
    radial-gradient(circle at 74% 38%, rgba(201,130,59,.18), transparent 28%),
    linear-gradient(90deg, rgba(43,18,8,.88), rgba(61,34,22,.56), rgba(43,18,8,.82)),
    url("/assets/images/la-griglia-restaurant-exterior-nederweert.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 7vw 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,130,59,.75), transparent);
  pointer-events: none;
}
.hero-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.logo-hero {
  width: min(650px, 92vw);
  margin-bottom: 34px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
}
h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -.03em;
}
h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin-bottom: 20px;
}
h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.lead {
  max-width: 740px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.75;
  color: var(--cream);
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 23px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(43,18,8,.24);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--text-dark);
  border-color: rgba(246,240,231,.26);
}
.btn-secondary {
  border-color: rgba(239,227,211,.52);
  color: var(--cream);
  background: rgba(246,240,231,.11);
}
.btn-secondary:hover {
  background: rgba(246,240,231,.18);
  border-color: rgba(201,130,59,.58);
}
.hero-card {
  background:
    linear-gradient(rgba(61,34,22,.54), rgba(43,18,8,.76)),
    url("/assets/images/la-griglia-shrimp-skillet.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.info-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246,240,231,.18);
}
.info-line:last-child { border-bottom: 0; }
.info-line strong { color: var(--gold); }

.section {
  padding: 96px 20px;
}
.section.alt {
  background:
    radial-gradient(circle at 18% 20%, rgba(201,130,59,.16), transparent 32%),
    linear-gradient(180deg, #452416, var(--bg-soft));
}
.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
  align-items: center;
}
.card {
  background: linear-gradient(180deg, rgba(246,240,231,.16), rgba(239,227,211,.09));
  border: 1px solid rgba(201,130,59,.34);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 18px 46px rgba(43,18,8,.18);
}
.text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.feature {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 280px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(rgba(61,34,22,.24), rgba(43,18,8,.7)),
    var(--feature-image, url("/assets/images/la-griglia-grilled-steak-dinner.webp"));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(201,130,59,.34);
  border-radius: 20px;
  transition: transform .26s ease, border-color .26s ease, background .26s ease, box-shadow .26s ease;
  text-decoration: none;
}
.feature:nth-child(1) { --feature-image: url("/assets/images/la-griglia-mediterranean-bruschetta.webp"); }
.feature:nth-child(2) { --feature-image: url("/assets/images/la-griglia-grilled-steak-dinner.webp"); }
.feature:nth-child(3) { --feature-image: url("/assets/images/la-griglia-restaurant-exterior-nederweert.webp"); }
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform .7s ease;
  z-index: 0;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(61,34,22,.12), rgba(43,18,8,.7));
  z-index: 1;
}
.feature > * {
  position: relative;
  z-index: 2;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(201,130,59,.58);
  box-shadow: 0 20px 50px rgba(43,18,8,.22);
}
.feature:hover::before {
  transform: scale(1.08);
}
.feature span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 80% 15%, rgba(201,130,59,.16), transparent 30%),
    linear-gradient(180deg, rgba(246,240,231,.06), rgba(246,240,231,.015));
}
.hero + .gallery-section,
.menu-hero + .gallery-section {
  padding-top: 42px;
}
.gallery-section + .section {
  padding-top: 74px;
}
.image-gallery {
  --gallery-card-width: clamp(260px, 32vw, 430px);
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 32px;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.image-gallery::-webkit-scrollbar {
  display: none;
}
.gallery-tile {
  position: relative;
  flex: 0 0 var(--gallery-card-width);
  height: clamp(300px, 34vw, 440px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201,130,59,.38);
  border-radius: var(--radius);
  background: rgba(246,240,231,.14);
  box-shadow: 0 20px 52px rgba(43,18,8,.23);
  cursor: zoom-in;
  scroll-snap-align: center;
  transform: translateZ(0);
}
.gallery-tile-large {
  flex-basis: clamp(300px, 38vw, 500px);
}
.gallery-tile img {
  display: block;
  width: 124%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transform: translate3d(var(--parallax-x, -10%), 0, 0) scale(1.02);
  transition: transform .7s ease, filter .7s ease;
  will-change: transform;
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,18,8,0), rgba(61,34,22,.16));
  pointer-events: none;
}
.gallery-tile:hover img {
  transform: translate3d(var(--parallax-x, -10%), 0, 0) scale(1.065);
  filter: saturate(1.05) contrast(1.03);
}
.gallery-tile:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.gallery-dot:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  min-height: 0;
  border: 1px solid rgba(154,84,44,.62);
  border-radius: 50%;
  background: rgba(239,227,211,.72);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gallery-dot:hover {
  background: rgba(201,130,59,.86);
  transform: scale(1.16);
}
.gallery-dot.active,
.gallery-dot[aria-current="true"] {
  background: var(--copper);
  border-color: var(--cream-2);
  box-shadow: 0 0 0 5px rgba(201,130,59,.18);
  transform: scale(1.22);
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(43,18,8,.9);
  backdrop-filter: blur(10px);
}
.gallery-lightbox.open {
  display: flex;
}
.gallery-lightbox img {
  display: block;
  max-width: min(1120px, 86vw);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 32px 90px rgba(43,18,8,.52);
  object-fit: contain;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(201,130,59,.48);
  background: rgba(61,34,22,.84);
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(43,18,8,.28);
}
.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 58px;
  border-radius: 999px;
  font-size: 32px;
  transform: translateY(-50%);
}
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-close:hover,
.lightbox-nav:hover {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--text-dark);
}
body.lightbox-open {
  overflow: hidden;
}
.banner {
  min-height: 340px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(61,34,22,.18), rgba(43,18,8,.68)),
    url("/assets/images/la-griglia-ribs-onion-rings.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .7s ease, filter .7s ease;
}
.banner.restaurant {
  background:
    linear-gradient(rgba(61,34,22,.12), rgba(43,18,8,.7)),
    url("/assets/images/la-griglia-restaurant-exterior-nederweert.webp");
  background-size: cover;
  background-position: center 75%;
}
.banner:hover {
  transform: scale(1.015);
  filter: saturate(1.05);
}
.menu-hero {
  padding: 86px 20px 54px;
  background:
    linear-gradient(rgba(43,18,8,.54), rgba(43,18,8,.82)),
    var(--page-hero-image, url("/assets/images/la-griglia-seafood-pasta-king-crab.webp"));
  background-size: cover;
  background-position: center 70%;
  background-attachment: scroll;
}
.page-title {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}
.page-title p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--cream);
  font-size: 19px;
  line-height: 1.7;
}
.lang-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.lang-switch button {
  border: 1px solid rgba(201,130,59,.46);
  background: rgba(246,240,231,.12);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.lang-switch button.active {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--text-dark);
  font-weight: 900;
}
.menu-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 34px;
}
.menu-category {
  padding: 54px 0;
  border-bottom: 1px solid rgba(201,130,59,.28);
}
.menu-category:last-child { border-bottom: 0; }
.menu-category h2 {
  color: var(--cream-2);
  margin-bottom: 28px;
}
.menu-list {
  display: grid;
  gap: 18px;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}
.item-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  color: var(--cream-2);
}
.item-desc {
  margin-top: 4px;
  color: #d0a88d;
  font-size: 16px;
  line-height: 1.45;
}
.item-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: var(--cream);
  white-space: nowrap;
}
.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.menu-card {
  background: linear-gradient(180deg, var(--surface), var(--cream-2));
  color: var(--text-dark);
  border: 1px solid rgba(107,47,22,.18);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: 0 22px 62px rgba(43,18,8,.22);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183,106,58,.36);
  box-shadow: 0 28px 76px rgba(43,18,8,.28);
}
.menu-card h2, .menu-card .item-name, .menu-card .item-price { color: var(--dark); }
.menu-card .item-desc { color: #7b432a; }
.dark-menu-card {
  background: linear-gradient(180deg, #4b2a1a, var(--dark-2));
  color: var(--cream);
  border-color: rgba(201,130,59,.34);
}
.dark-menu-card h2, .dark-menu-card .item-name, .dark-menu-card .item-price { color: var(--cream); }
.dark-menu-card .item-desc { color: #e0bfa5; }
.steak-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steak-box {
  border: 1px solid rgba(201,130,59,.34);
  border-radius: 18px;
  padding: 20px;
  background: rgba(246,240,231,.1);
}
.form {
  display: grid;
  gap: 18px;
}
.form [data-reservation-status]:not(:empty) {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(201,130,59,.42);
  border-radius: 14px;
  background: rgba(246,240,231,.12);
  color: var(--cream);
  font-weight: 800;
}
.form [data-reservation-status].reservation-status-warning {
  border-color: rgba(201,130,59,.82);
  background: rgba(201,130,59,.18);
  color: #fff4df;
}
.form [data-reservation-status].reservation-status-error {
  border-color: rgba(190,78,52,.7);
  background: rgba(120,36,22,.28);
  color: #ffe3dc;
}
.form [data-reservation-status].reservation-status-success {
  border-color: rgba(117,165,104,.7);
  background: rgba(55,112,68,.22);
  color: #e7f7e5;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--cream-2);
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(154,84,44,.46);
  border-radius: 14px;
  background: rgba(246,240,231,.9);
  color: var(--text-dark);
  padding: 14px 14px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(246,240,231,.45);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input::placeholder, textarea::placeholder {
  color: rgba(45,33,28,.58);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(201,130,59,.2);
}
.time-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 10px;
}
.time-picker select {
  min-width: 0;
}
select option {
  background: var(--cream);
  color: var(--text-dark);
}
select option:checked {
  background: var(--gold);
  color: var(--text-dark);
}
textarea { min-height: 130px; resize: vertical; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.consent input { width: auto; margin-top: 3px; }
.consent input[type="checkbox"] {
  accent-color: var(--gold);
}
.footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(201,130,59,.14), transparent 30%),
    linear-gradient(180deg, var(--dark-2), var(--dark));
  border-top: 1px solid rgba(201,130,59,.3);
  padding: 54px 20px 26px;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .7fr;
  gap: 34px;
}
.footer a { text-decoration: none; color: rgba(239,227,211,.82); }
.footer a:hover { color: var(--gold); }
.footer .social-links {
  align-items: flex-start;
  flex-direction: column;
}
.footer .social-links a {
  color: rgba(239,227,211,.82);
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: none;
}
.footer .social-links a:hover {
  color: var(--gold);
  background: transparent;
  transform: translateX(2px);
}
.footer-title {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 14px;
}
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(246,240,231,.16);
  color: rgba(246,240,231,.68);
  font-size: 13px;
}
.hidden-lang,
html[lang="nl"] [data-lang="en"],
html[lang="en"] [data-lang="nl"] { display: none !important; }

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .hero .reveal {
  transform: translateY(22px);
}
.js .hero .reveal.is-visible {
  transform: translateY(0);
}
.contact-social-wrap {
  margin-top: 28px;
}
.contact-social {
  max-width: 620px;
}
.contact-social .social-links {
  margin-top: 18px;
}
.contact-map-section {
  padding-top: 0;
}
.map-frame {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border: 1px solid rgba(201,130,59,.42);
  border-radius: var(--radius);
  background: rgba(246,240,231,.12);
  box-shadow: 0 20px 52px rgba(43,18,8,.2);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .nav { 
    display: none; 
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(61,34,22,.98), rgba(43,18,8,.98));
    padding: 20px;
    border-bottom: 1px solid rgba(201,130,59,.34);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .mobile-menu-btn { display: inline-flex; }
  .hero-inner, .grid-2, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { margin-top: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .image-gallery {
    --gallery-card-width: clamp(250px, 58vw, 360px);
    gap: 16px;
  }
  .gallery-tile,
  .gallery-tile-large {
    flex-basis: var(--gallery-card-width);
    height: 340px;
  }
  .steak-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-type { width: 150px; }
  .nav-wrap { gap: 12px; }
  .header-tools { margin-left: auto; }
  .map-frame { height: 380px; }
}
@media (max-width: 520px) {
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-type { width: 132px; }
  .section { padding: 70px 16px; }
  .menu-item { grid-template-columns: 1fr; gap: 6px; }
  .item-price { font-size: 20px; }
  .steak-grid { grid-template-columns: 1fr; }
  .gallery-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .image-gallery {
    gap: 14px;
    padding-bottom: 26px;
  }
  .gallery-tile,
  .gallery-tile-large {
    flex-basis: min(78vw, 320px);
    height: 300px;
  }
  .card, .menu-card { padding: 24px; }
  .header-social { display: none; }
  .map-frame { height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal,
  .js .reveal,
  .js .hero .reveal {
    opacity: 1;
    transform: none;
  }
  .image-gallery {
    scroll-behavior: auto;
  }
  .gallery-tile img,
  .gallery-tile:hover img {
    transform: translate3d(-10%, 0, 0) scale(1.02);
    transition: none;
  }
  .btn:hover,
  .feature:hover,
  .menu-card:hover,
  .banner:hover,
  .header-social a:hover,
  .social-links a:hover {
    transform: none;
  }
}

