/* ============================================================
   Restaurant Akkeroord — Main Stylesheet
   Palette: Teal #2E7D8C | Dark #1A4A5C | Gold #C8A96E | BG #F5F5F0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #F5F5F0;
  color: #1A4A5C;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

/* Fill-image utility */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.service-panel__img img,
.menu-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: #1A4A5C;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; color: #3a5a6a; }

.gold { color: #C8A96E; }
.teal { color: #2E7D8C; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2E7D8C;
  color: #fff;
  border-color: #2E7D8C;
}
.btn-primary:hover {
  background: #1A4A5C;
  border-color: #1A4A5C;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #2E7D8C;
  border-color: #2E7D8C;
}
.btn-ghost:hover {
  background: #2E7D8C;
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: #1A4A5C;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.site-nav--solid {
  background: #1A4A5C;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: #2E7D8C;
  border: 2px solid #C8A96E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover,
.nav__links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav__cta {
  background: #C8A96E !important;
  color: #1A4A5C !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px;
}
.nav__cta:hover {
  background: #b8954e !important;
  color: #fff !important;
}

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  z-index: 200;
}

.mobile-menu__trigger svg {
  display: block;
  width: 24px;
  height: 24px;
}

.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: #1A4A5C;
  z-index: 150;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu__overlay.is-open {
  display: flex;
  flex-direction: column;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 2rem 3rem;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 2rem;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }
.mobile-menu__close svg { display: block; width: 24px; height: 24px; }

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__item {
  display: block;
  color: rgba(255,255,255,0.9);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__item:hover {
  color: #C8A96E;
  padding-left: 0.5rem;
}

.mobile-menu__item--cta {
  margin-top: 2rem;
  background: #2E7D8C;
  color: #fff !important;
  text-align: center;
  border-radius: 4px;
  border-bottom: none;
  padding: 1rem 2rem;
}
.mobile-menu__item--cta:hover {
  background: #3a8fa0 !important;
  padding-left: 0 !important;
}

.mobile-menu__contact {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu__contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.mobile-menu__contact a {
  color: #C8A96E;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,74,92,0.3) 0%,
    rgba(26,74,92,0.55) 50%,
    rgba(26,74,92,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A96E;
  margin-bottom: 1.25rem;
}

.hero__title {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Trust Band ───────────────────────────────────────────── */
.trust-band {
  background: #2E7D8C;
  color: #fff;
  padding: 1rem 2rem;
}

.trust-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-band__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
}

.trust-band__item svg {
  color: #C8A96E;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.trust-band__item strong {
  color: #fff;
}

.trust-band__cta {
  background: #C8A96E;
  color: #1A4A5C;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.trust-band__cta:hover { background: #b8954e; color: #fff; }

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}

.section--alt { background: #fff; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2E7D8C;
  margin-bottom: 0.75rem;
}

.section__title {
  margin-bottom: 1rem;
}

.section__intro {
  font-size: 1.1rem;
  color: #5a7a8a;
  max-width: 560px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── About Section ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.about-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-grid__content h2 {
  margin-bottom: 1.25rem;
}
.about-grid__content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-quote {
  border-left: 3px solid #C8A96E;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(200,169,110,0.06);
  border-radius: 0 6px 6px 0;
}
.about-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #1A4A5C;
}

/* ── Services Panels ──────────────────────────────────────── */
.service-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}

.service-panel--reverse { direction: rtl; }
.service-panel--reverse > * { direction: ltr; }

.service-panel__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}
.service-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-panel:hover .service-panel__img img {
  transform: scale(1.03);
}

.service-panel__content {
  background: #fff;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-panel--dark .service-panel__content {
  background: #1A4A5C;
  color: #fff;
}
.service-panel--dark .service-panel__content h3 { color: #fff; }
.service-panel--dark .service-panel__content p { color: rgba(255,255,255,0.8); }

.service-panel__icon {
  width: 48px;
  height: 48px;
  color: #C8A96E;
  margin-bottom: 1.25rem;
}

.service-panel__content h3 {
  margin-bottom: 1rem;
}
.service-panel__content p {
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── Reviews ──────────────────────────────────────────────── */
.reviews-section {
  background: #1A4A5C;
  padding: 5rem 1.5rem;
}

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2rem;
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.1); }

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  color: #C8A96E;
  fill: #C8A96E;
}

.review-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-card__author {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C8A96E;
}
.review-card__source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #2E7D8C 0%, #1A4A5C 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: rgba(200,169,110,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #1A4A5C;
  color: rgba(255,255,255,0.75);
  padding: 4rem 1.5rem 2rem;
}

.footer-kit {
  max-width: 1100px;
  margin: 0 auto;
}

.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,0.12);
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #C8A96E;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}
.footer-col a:hover { color: #C8A96E; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo__mark {
  width: 44px;
  height: 44px;
  background: #2E7D8C;
  border: 2px solid #C8A96E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.footer-logo__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom a:hover { color: #C8A96E; }

/* ── Menu page ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1A4A5C 0%, #2E7D8C 100%);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #2E7D8C;
  color: #2E7D8C;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.menu-tab.active, .menu-tab:hover {
  background: #2E7D8C;
  color: #fff;
}

.menu-section {
  margin-bottom: 3rem;
}

.menu-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #C8A96E;
}

.menu-section__header h3 {
  color: #1A4A5C;
}

.menu-items {
  display: grid;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }

.menu-item__info h4 {
  font-size: 1rem;
  color: #1A4A5C;
  margin-bottom: 0.2rem;
}
.menu-item__info p {
  font-size: 0.85rem;
  color: #7a9aaa;
}

.menu-item__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2E7D8C;
  white-space: nowrap;
}

/* ── Reserveren ───────────────────────────────────────────── */
.reserveer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26,74,92,0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A4A5C;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0dde2;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1A4A5C;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2E7D8C;
  box-shadow: 0 0 0 3px rgba(46,125,140,0.12);
}

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

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-submit { width: 100%; }

.reserveer-info h3 { margin-bottom: 1.25rem; }
.reserveer-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.info-list {
  list-style: none;
  margin-bottom: 2rem;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.95rem;
  color: #3a5a6a;
}
.info-list li:last-child { border-bottom: none; }
.info-list svg {
  color: #2E7D8C;
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.tel-block {
  background: #F5F5F0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(46,125,140,0.15);
}
.tel-block p { font-size: 0.85rem; color: #7a9aaa; margin-bottom: 0.5rem; }
.tel-block a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2E7D8C;
}

/* ── Diensten page ────────────────────────────────────────── */
.dienst-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.dienst-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,74,92,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,74,92,0.14);
}

.dienst-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.dienst-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.dienst-card:hover .dienst-card__img img { transform: scale(1.04); }

.dienst-card__body {
  padding: 1.75rem;
}
.dienst-card__icon {
  width: 40px;
  height: 40px;
  color: #2E7D8C;
  margin-bottom: 1rem;
}
.dienst-card__body h3 { margin-bottom: 0.75rem; }
.dienst-card__body p { margin-bottom: 1.25rem; font-size: 0.95rem; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(46,125,140,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2E7D8C;
}
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail__text h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a9aaa;
  margin-bottom: 0.35rem;
  font-family: 'Inter', sans-serif;
}
.contact-detail__text p,
.contact-detail__text a {
  font-size: 1rem;
  color: #1A4A5C;
  line-height: 1.6;
}
.contact-detail__text a:hover { color: #2E7D8C; }

.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background: #dce8ec;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  text-align: center;
  padding: 2rem;
}
.map-placeholder svg { color: #2E7D8C; width: 48px; height: 48px; margin-bottom: 1rem; }
.map-placeholder p { color: #5a7a8a; }
.map-placeholder a { color: #2E7D8C; font-weight: 600; }

/* ── Utility ──────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.divider-gold {
  width: 48px;
  height: 3px;
  background: #C8A96E;
  border-radius: 2px;
  margin: 1rem 0 2rem;
}
.divider-gold--center { margin-left: auto; margin-right: auto; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.45rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.hours-table td:first-child { font-weight: 500; color: rgba(255,255,255,0.9); padding-right: 1rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__img { aspect-ratio: 16/9; }
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel--reverse { direction: ltr; }
  .service-panel__img { min-height: 280px; aspect-ratio: 16/9; }
  .service-panel__content { padding: 2.5rem 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reserveer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dienst-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .mobile-menu__trigger { display: block; }
  .trust-band__inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .trust-band__item { justify-content: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1rem; }
  .service-panel__content { padding: 2rem 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
}
