/* ============================================================
   DE WATERGEUS — RESTAURANT & HOTEL NOORDEN
   Polder-luxe, waterige serene sfeer
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --water:       #7DCFDA;
  --water-deep:  #2E8B9A;
  --water-light: #B0E8EE;
  --white:       #FFFFFF;
  --anthracite:  #4A4A4A;
  --rietgroen:   #5A7A5A;
  --zand:        #F5F0E8;
  --crème:       #FAF7F2;
  --donker:      #2A2A2A;
  --grijs:       #6E6E6E;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(64px, 10vw, 120px);
  --inner-max:   1200px;
  --gutter:      clamp(20px, 5vw, 48px);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--anthracite);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- IMAGE FILL SAFETY NET ---- */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.photo-band__item img, .menu-photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--donker);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

em { font-style: italic; color: var(--water-deep); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--water-deep);
  margin-bottom: 0.75rem;
}

.body-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--anthracite);
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--water-deep);
  color: var(--white);
}
.btn--primary:hover { background: #236f7d; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(46,139,154,0.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

.btn--outline {
  background: transparent;
  color: var(--water-deep);
  border: 1.5px solid var(--water-deep);
}
.btn--outline:hover { background: var(--water-deep); color: var(--white); }

.btn--nav {
  background: var(--water-deep);
  color: var(--white);
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}
.btn--nav:hover { background: #236f7d; }

.btn--sm { padding: 0.65rem 1.3rem; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(125,207,218,0.2);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--donker);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--water-deep);
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.desktop-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--anthracite);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.desktop-nav a:hover { color: var(--water-deep); }
.desktop-nav .btn--nav { margin-left: 0.5rem; }

/* ---- HAMBURGER ---- */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--donker);
  -webkit-tap-highlight-color: transparent;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--donker);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--crème);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  height: 100svh;
  min-height: 100dvh;
}
.mobile-menu__overlay[aria-hidden="false"] { transform: translateX(0); }

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 80px var(--gutter) 40px;
}

.mobile-menu__close {
  position: absolute;
  top: 18px;
  right: var(--gutter);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--donker);
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--donker);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color 0.2s;
}
.mobile-menu__item:hover { color: var(--water-deep); }
.mobile-menu__cta {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--water-deep);
  border-bottom: none;
  margin-top: 1.5rem;
}
.mobile-menu__footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--grijs);
  line-height: 1.8;
}

/* ---- SECTION BASE ---- */
.section { padding: var(--section-pad) 0; }
.section__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section__intro {
  font-size: 1.05rem;
  color: var(--grijs);
  margin-top: 1rem;
  line-height: 1.8;
}

/* ---- SPLIT LAYOUT ---- */
.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.section--split-reverse { direction: rtl; }
.section--split-reverse > * { direction: ltr; }

.split__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split__text h2 { margin-bottom: 0.5rem; }
.split__text p { color: var(--grijs); }
.split__text .btn { margin-top: 0.5rem; align-self: flex-start; }

.split__media figure.photo {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
}
.split__media figure.photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.split__media figure.photo:hover img { transform: scale(1.03); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,40,50,0.55) 0%,
    rgba(20,40,50,0.30) 50%,
    rgba(20,40,50,0.45) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 0 var(--gutter);
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--water-light);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__title em { color: var(--water-light); font-style: italic; }
.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--zand);
  border-top: 1px solid rgba(125,207,218,0.25);
  border-bottom: 1px solid rgba(125,207,218,0.25);
  padding: 1.5rem var(--gutter);
}
.trust-bar__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--anthracite);
}
.trust-item svg { color: var(--water-deep); flex-shrink: 0; }

/* ---- OVER ONS ---- */
.over-ons { background: var(--white); }

/* ---- PHOTO BAND ---- */
.photo-band {
  background: var(--donker);
  overflow: hidden;
}
.photo-band__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: clamp(200px, 28vw, 360px);
}
.photo-band__item {
  overflow: hidden;
  position: relative;
}
.photo-band__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.9);
}
.photo-band__item:hover img { transform: scale(1.05); filter: brightness(1); }

/* ---- MENU SECTION ---- */
.menu-section { background: var(--crème); }

.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: 3rem;
}

.menu-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-left: 3px solid var(--water);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.menu-card__icon {
  color: var(--water-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.menu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--donker);
}
.menu-card p { font-size: 0.9rem; color: var(--grijs); margin-bottom: 0.35rem; }
.menu-card__hours {
  font-size: 0.78rem;
  color: var(--water-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.menu-photo {
  position: sticky;
  top: 100px;
}
.menu-photo figure.photo {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
}
.menu-photo figure.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.menu-photo__tag {
  background: var(--water-deep);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 0 0 6px 6px;
  line-height: 1.5;
}

.menu-cta {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.menu-cta p { font-size: 1.05rem; color: var(--anthracite); }

/* ---- HOTEL SECTION ---- */
.hotel-section { background: var(--white); }

/* ---- FEATURE LIST ---- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--anthracite);
}
.feature-list svg {
  color: var(--water-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- ZAKELIJK ---- */
.zakelijk-section { background: var(--zand); }
.zakelijk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.zakelijk-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.zakelijk-text h2 { margin-bottom: 0.5rem; }
.zakelijk-text p { color: var(--grijs); }
.zakelijk-text .btn { align-self: flex-start; }
.zakelijk-photo figure.photo {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
}
.zakelijk-photo figure.photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.zakelijk-photo figure.photo:hover img { transform: scale(1.03); }

/* ---- QUOTE BAND ---- */
.quote-band {
  background: var(--water-deep);
  padding: clamp(48px, 8vw, 96px) var(--gutter);
}
.quote-band__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
blockquote { }
blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-weight: 300;
}
blockquote p::before { content: '\201C'; }
blockquote p::after { content: '\201D'; }
blockquote cite {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-style: normal;
  color: var(--water-light);
  text-transform: uppercase;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--crème);
  border-radius: 6px;
  border-left: 3px solid var(--water);
}
.contact-card__icon {
  color: var(--water-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--water-deep);
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.contact-card a {
  font-size: 1rem;
  color: var(--donker);
  font-weight: 400;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--water-deep); }

.hours-table { border-collapse: collapse; width: 100%; font-size: 0.88rem; }
.hours-table td { padding: 0.2rem 0.5rem 0.2rem 0; color: var(--anthracite); }
.hours-table td:first-child { font-weight: 500; padding-right: 1rem; white-space: nowrap; }

/* ---- CONTACT FORM ---- */
.contact-form-wrap { }
.contact-form {
  background: var(--crème);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--donker);
}
.form-note {
  font-size: 0.85rem;
  color: var(--grijs);
  margin-bottom: 1.5rem;
}
.form-note a { color: var(--water-deep); text-decoration: underline; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--anthracite);
  letter-spacing: 0.04em;
}
input, textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--donker);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--water-deep);
  box-shadow: 0 0 0 3px rgba(46,139,154,0.12);
}
textarea { resize: vertical; min-height: 100px; }

/* ---- MAP ---- */
.map-wrap { margin-top: 1rem; }
.map-cta { margin-top: 1rem; text-align: right; }

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--donker);
  color: rgba(255,255,255,0.8);
}
.footer__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) var(--gutter) clamp(32px, 5vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--water-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer__address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--water-light);
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__col ul li a:hover { color: var(--water-light); }
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social a:hover { border-color: var(--water-light); color: var(--water-light); }

.footer-hours { border-collapse: collapse; width: 100%; font-size: 0.82rem; }
.footer-hours td { padding: 0.25rem 0.5rem 0.25rem 0; color: rgba(255,255,255,0.7); }
.footer-hours td:first-child { font-weight: 500; color: var(--white); padding-right: 1rem; }
.footer__note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; margin-bottom: 1.25rem; }
.footer__cta { margin-top: 0.5rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem var(--gutter);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: var(--inner-max);
  margin: 0 auto;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .section--split,
  .zakelijk-grid,
  .menu-split {
    grid-template-columns: 1fr;
  }
  .section--split-reverse { direction: ltr; }

  .menu-photo { position: static; }
  .menu-photo figure.photo { aspect-ratio: 16/9; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .quote-band__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .hero__title { font-size: 2.6rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-bar__inner { gap: 1rem; flex-direction: column; align-items: flex-start; }

  .photo-band__inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .photo-band__item { height: 220px; }

  .menu-card { flex-direction: column; gap: 0.75rem; }
  .menu-cta { flex-direction: column; text-align: center; }

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

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

  .map-cta { text-align: left; }
}
