/* Theme tokens — body.theme-* overrides at end of file */
:root {
  --bg-page: #f8f3e8;
  --color-text: #222;
  --top-nav-bg: #ffffffef;
  --border-subtle: #eadfcb;
  --color-accent: #b22222;
  --color-accent-hover: #8d1b1b;
  --color-primary: #1f7a3b;
  --color-primary-hover: #17602f;
  --card-bg: #fff;
  --footer-bg: rgb(254, 210, 85);
  --footer-text: #1f1f1f;
  --meal4u-yellow: rgb(254, 210, 85);
  --hero-mobile-fallback: #111;
  --card-radius: 12px;
  --theme-bg-image: none;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  background-color: var(--bg-page);
  background-image: var(--theme-bg-image);
  color: var(--color-text);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--top-nav-bg);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(4px);
}

/* Anchor links should not hide behind sticky nav */
#om,
#artikler,
#aabningstider,
#faq,
#top {
  scroll-margin-top: 78px;
}

.top-nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.logo {
  font-size: 22px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12);
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.logo span {
  line-height: 1.1;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 14px;
  margin-left: auto;
}

.nav-links a {
  margin-left: 0;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.nav-links .btn-reservation {
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1.1;
  font-size: 13px;
  background: var(--color-accent);
  color: #fff !important;
  align-self: center;
}

.nav-links .btn-reservation:hover {
  background: var(--color-accent-hover);
}

.menu-toggle {
  display: none;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-left: auto;
  font-size: 18px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  z-index: 1001;
}

.menu-backdrop {
  display: none;
}

.hero {
  min-height: 56vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), var(--hero-image, url("images/hero.jpg"));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
  text-align: center;
}

.hero-inner > .btn-order {
  margin-top: 16px;
}

.hero-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  margin: 0 auto 10px;
}

.hero h1 {
  font-size: 46px;
  margin: 0 0 10px;
}

.hero p {
  font-size: 20px;
  margin: 0;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 12px auto 0;
  width: 100%;
  max-width: 40rem;
}

.hero-types,
.hero-offers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-offers {
  list-style: none;
}

.hero-type-chip,
.hero-offer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
  vertical-align: middle;
}

.hero-type-chip {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-offer-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
}

.hero-offer-chip-icon svg {
  display: block;
}

.hero-offer-chip-label {
  color: #fff;
  line-height: 1;
}

.hero-offer-chip--discount {
  background: rgba(234, 88, 12, 0.28);
  border: 1px solid rgba(251, 146, 60, 0.65);
}

.hero-offer-chip--discount .hero-offer-chip-icon {
  background: rgba(234, 88, 12, 0.85);
}

.hero-offer-chip--bonus {
  background: rgba(16, 185, 129, 0.24);
  border: 1px solid rgba(52, 211, 153, 0.6);
}

.hero-offer-chip--bonus .hero-offer-chip-icon {
  background: rgba(5, 150, 105, 0.9);
}

.hero-offer-chip--free_delivery {
  background: rgba(20, 184, 166, 0.24);
  border: 1px solid rgba(45, 212, 191, 0.6);
}

.hero-offer-chip--free_delivery .hero-offer-chip-icon {
  background: rgba(15, 118, 110, 0.9);
}

.hero-offer-chip--delivery_fee {
  background: rgba(71, 85, 105, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.65);
}

.hero-offer-chip--delivery_fee .hero-offer-chip-icon {
  background: rgba(51, 65, 85, 0.92);
}

.hero-offer-chip--pickup_only {
  background: rgba(180, 83, 9, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.65);
}

.hero-offer-chip--pickup_only .hero-offer-chip-icon {
  background: rgba(146, 64, 14, 0.92);
}

.hero-offer-chip--new {
  background: rgba(168, 85, 247, 0.24);
  border: 1px solid rgba(192, 132, 252, 0.6);
}

.hero-offer-chip--new .hero-offer-chip-icon {
  background: rgba(109, 40, 217, 0.9);
}

.hero-offer-chip--category_discount {
  background: rgba(59, 130, 246, 0.24);
  border: 1px solid rgba(96, 165, 250, 0.6);
}

.hero-offer-chip--category_discount .hero-offer-chip-icon {
  background: rgba(29, 78, 216, 0.9);
}

.hero-offer-chip--offer {
  background: rgba(100, 116, 139, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-offer-chip--offer .hero-offer-chip-icon {
  background: rgba(51, 65, 85, 0.9);
}

.btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
}

.btn-order {
  background: var(--color-primary);
  font-size: 20px;
  font-weight: bold;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.btn-order:hover {
  background: var(--color-primary-hover);
}

.btn-card-link {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: none;
}

.btn-map {
  margin-top: 10px;
  background: var(--color-accent);
}

.btn-map:hover {
  background: var(--color-accent-hover);
}

.btn-reservation {
  margin-left: 8px;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 20px 40px;
}

.headline {
  color: var(--color-accent);
  margin-bottom: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.cards-group-title {
  grid-column: 1 / -1;
  margin: 0 0 4px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
  transform: scale(1);
}

.card:hover img {
  transform: scale(1.06);
}

.card img:hover {
  transform: scale(1.06);
}

.card:focus-within img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card img {
    transition: none;
  }
}

.card-content {
  padding: 14px;
  position: relative;
  z-index: 2;
}

.card--linked {
  cursor: pointer;
}

.card-link-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.article {
  margin-top: 26px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 20px;
  position: relative;
}

.article--linked {
  cursor: pointer;
}

.article--linked > :not(.card-link-cover) {
  position: relative;
  z-index: 2;
}

.article h2 {
  color: var(--color-accent);
  margin-top: 0;
}

.article h3 {
  color: var(--color-primary);
  margin-bottom: 6px;
}

.article p {
  line-height: 1.65;
}

.reservation-page {
  max-width: 620px;
}

.reservation-page .article {
  margin-top: 10px;
}

.reservation-page--embed {
  max-width: 100%;
  padding: 12px 16px 22px;
}

.reservation-page--embed .article {
  margin-top: 8px;
  padding: 16px;
}

.reservation-back-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}

.reservation-back-link:hover {
  text-decoration: underline;
}

.legal-page {
  padding: 2rem 0 3rem;
}

.legal-page-back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}

.legal-page-back-link:hover {
  text-decoration: underline;
}

.legal-page-content h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
}

.legal-page-content p,
.legal-page-content ul {
  margin: 0 0 0.75rem;
  line-height: 1.55;
}

.legal-page-content ul {
  padding-left: 1.25rem;
}

.legal-page-content a {
  color: var(--color-primary);
}

.legal-page-meta {
  font-size: 0.9rem;
  opacity: 0.85;
}

.legal-page .footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.reservation-lead {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--color-text) 80%, #555 20%);
}

.reservation-feedback {
  margin-bottom: 12px;
  padding: 14px 16px;
}

.reservation-feedback--ok {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.reservation-feedback--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.reservation-form {
  display: grid;
  gap: 12px;
}

.reservation-wizard-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reservation-wizard-progress span {
  font-size: 12px;
  font-weight: 700;
  color: #667085;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 4px 10px;
  background: #fff;
}

.reservation-wizard-progress span.is-active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.reservation-step {
  display: none;
  gap: 10px;
}

.reservation-step.is-active {
  display: grid;
}

.reservation-step h3 {
  margin: 4px 0 0;
  color: var(--color-accent);
}

.reservation-step-help {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.reservation-hidden-date-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.reservation-date-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.reservation-month-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 2px;
}

.reservation-month-actions .btn {
  margin-top: 0;
}

.reservation-date-card {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: #fff;
  min-height: 56px;
  display: grid;
  place-content: center;
  gap: 2px;
  cursor: pointer;
  font: inherit;
}

.reservation-date-card strong {
  font-size: 13px;
  color: var(--color-accent);
}

.reservation-date-card span {
  font-size: 12px;
  color: #475467;
}

.reservation-date-card.is-active {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, #fff);
}

.reservation-date-card.is-disabled,
.reservation-date-card:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.reservation-time-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.reservation-time-chip {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: #fff;
  min-height: 38px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.reservation-time-chip.is-active {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 12%, #fff);
}

#reservation-time-ui {
  display: none;
}

.party-size-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.party-size-btn {
  border: 1px solid var(--border-subtle);
  background: #fff;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  min-height: 42px;
  cursor: pointer;
}

.party-size-btn.is-active {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, #fff);
}

.party-size-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.party-size-counter strong {
  min-width: 40px;
  text-align: center;
  font-size: 20px;
  color: var(--color-accent);
}

.reservation-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn.btn-ghost {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--border-subtle);
}

.reservation-options {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.reservation-options legend {
  font-weight: 700;
  padding: 0 4px;
}

.reservation-options label,
.reservation-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
}

.reservation-check {
  border: 1px solid #fca5a5;
  background: #fff1f2;
  border-radius: 10px;
  padding: 10px 12px;
}

.reservation-check strong {
  color: #b42318;
}

.reservation-required-hint {
  margin: -2px 0 0;
  font-size: 12px;
  color: #b42318;
  font-weight: 700;
}

.reservation-required-hint.is-ok {
  color: #166534;
}

.reservation-human-check {
  display: grid;
  gap: 6px;
}

.reservation-human-btn {
  width: 100%;
  margin-top: 0;
}

.reservation-human-btn.is-holding {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 18%, #fff);
}

.reservation-human-btn.is-verified {
  border-color: #16a34a;
  background: #dcfce7;
  color: #166534;
}

.reservation-human-status {
  margin: 0;
  font-size: 12px;
  color: #667085;
}

.reservation-hp {
  display: none;
}

.reservation-field {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--color-text);
}

.reservation-field input,
.reservation-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.reservation-field input:focus,
.reservation-field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--color-primary) 28%, transparent);
  border-color: color-mix(in srgb, var(--color-primary) 45%, var(--border-subtle));
}

.reservation-hint {
  font-weight: 400;
  color: #666;
}

.reservation-submit {
  border: none;
  cursor: pointer;
  justify-self: start;
}

.reservation-submit.is-loading,
.reservation-submit:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

.reservation-submit-status {
  margin: -4px 0 0;
  font-size: 12px;
  color: #475467;
  min-height: 16px;
}

.reservation-datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.reservation-time-help {
  margin: 4px 0 0;
  font-size: 12px;
  color: #667085;
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.reservation-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.reservation-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(1.5px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.reservation-modal.open .reservation-modal-backdrop {
  opacity: 1;
}

.reservation-modal-card {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  height: min(82vh, 760px);
  margin: 60px auto;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(12px) scale(0.985);
  opacity: 0.6;
  transition: transform 220ms ease, opacity 220ms ease;
}

.reservation-modal.open .reservation-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.privacy-modal-card {
  height: min(86vh, 820px);
  display: flex;
  flex-direction: column;
}

.privacy-modal-body {
  overflow: auto;
  padding: 14px 18px 20px;
}

body.privacy-modal-open {
  overflow: hidden;
}

.reservation-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: color-mix(in srgb, var(--card-bg) 88%, #fff 12%);
}

.reservation-modal-title {
  margin: 0;
  font-size: 16px;
  color: var(--color-accent);
}

.reservation-modal-close {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.reservation-modal-frame {
  width: 100%;
  height: calc(100% - 56px);
  border: 0;
  display: block;
  background: transparent;
}

.reservation-rules h2 {
  font-size: 20px;
}

.reservation-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.reservation-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--border-subtle) 80%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, #fff 88%, var(--surface-raised, #f6f7fb));
}

.reservation-hours-list li span {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 85%, black);
  line-height: 1.2;
}

.reservation-hours-list li strong {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 80%, black);
  white-space: nowrap;
  background: color-mix(in srgb, var(--color-accent) 16%, white);
  border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
  border-radius: 999px;
  padding: 2px 8px;
}

video.section-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card video.section-media-video {
  height: 180px;
}


.managed-section-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin: 8px 0 12px;
  border: 1px solid var(--border-subtle);
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 20px;
}

.site-footer a {
  color: var(--footer-text);
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 20px 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.footer-title {
  margin: 0 0 6px;
  font-size: 16px;
}

.footer-text {
  margin: 0;
  line-height: 1.5;
}

.hours-block {
  margin-top: 6px;
}

.hours-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.hours-title {
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin: 0 0 6px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  font-size: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.hours-days {
  font-weight: 600;
}

.hours-time {
  white-space: nowrap;
  opacity: 0.95;
}

.zip-note {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.95;
}

.zip-list {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 13px;
}

/* Leveringsområder (postnr., km-interval, pris) */
.delivery-areas {
  margin-top: 0;
}

.delivery-areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.delivery-areas-group + .delivery-areas-group {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.delivery-areas-group .hours-title {
  margin-top: 0;
}

.delivery-area-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.delivery-area-label {
  font-weight: 700;
  color: var(--color-text);
  word-break: break-word;
}

.delivery-area-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  text-align: right;
  flex-shrink: 0;
}

.delivery-area-price {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.delivery-area-min {
  font-size: 12px;
  opacity: 0.88;
  white-space: nowrap;
}

@media (min-width: 720px) {
  .delivery-areas-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }
}

@media (max-width: 480px) {
  .delivery-area-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .delivery-area-meta {
    align-items: flex-start;
    text-align: left;
  }
}

@media (min-width: 720px) {
  .hours-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
  }
}

.footer-link {
  color: var(--footer-text);
  text-decoration: underline;
}

.footer-smiley-link {
  display: inline-block;
  margin-top: 10px;
  line-height: 0;
  text-decoration: none;
}

.footer-smiley-link:hover {
  opacity: 0.92;
}

.footer-smiley-img {
  display: block;
  width: min(100px, 100%);
  max-width: 100px;
  height: auto;
}

.footer-social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.footer-social-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  min-width: 56px;
}

.footer-social-link:hover {
  text-decoration: none;
}

.footer-social-link:hover .footer-social-badge {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.footer-social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link--facebook .footer-social-badge {
  background: #1877f2;
}

.footer-social-link--instagram .footer-social-badge {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}

.footer-social-icon--facebook {
  width: 30px;
  height: 30px;
}

.footer-social-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.gh-footer .footer-social-link:hover .footer-social-badge {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 11px;
  line-height: 1.35;
  opacity: 0.85;
  text-align: center;
}

.footer-bottom-text {
  margin: 0;
  max-width: 52rem;
  margin-inline: auto;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  width: min(360px, calc(100vw - 32px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.cookie-banner-title {
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.cookie-banner-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text);
}

.cookie-banner-text a {
  color: var(--color-text);
  text-decoration: underline;
}

.cookie-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--color-text);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner-more {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.95;
}

.cookie-banner--prompt {
  left: 50%;
  right: auto;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 24px));
}

.cookie-banner-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.cookie-customize-panel {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 8px;
}

.cookie-customize-panel[hidden] {
  display: none !important;
}

.cookie-pref {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
  cursor: pointer;
}

.cookie-pref input {
  margin-top: 2px;
}

.cookie-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  font-size: 12px;
}

.cookie-accept {
  background: var(--color-primary);
  color: #fff;
}

.cookie-accept:hover {
  background: var(--color-primary-hover);
}

.cookie-reject,
.cookie-customize,
.cookie-save-prefs {
  background: #fff;
  color: var(--color-text);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.cookie-reject:hover,
.cookie-customize:hover,
.cookie-save-prefs:hover {
  background: #f7f7f7;
}

.cookie-save-prefs {
  justify-self: start;
  margin-top: 2px;
}

.cookie-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.cookie-fab:hover {
  background: #f8f8f8;
}

.cookie-fab svg {
  width: 22px;
  height: 22px;
  fill: #7c4a14;
}

.cookie-fab.cookie-fab--raised {
  bottom: 220px;
}

@media (max-width: 520px) {
  .cookie-fab.cookie-fab--raised {
    bottom: 250px;
  }
}

.meal4u-logo-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.meal4u-logo {
  height: 36px;
  width: auto;
  display: block;
}

.map-frame {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 120px;
  border: 0;
}

.location-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

.location-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.location-hours {
  padding-left: 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
}

.location-hours-card {
  margin-top: 0;
  padding: 16px;
}

.location-hours-title {
  margin: 0 0 8px;
  color: var(--color-accent);
}

.closure-notice {
  margin: 0 0 20px;
}

.closure-notice-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: linear-gradient(160deg, #fff8e6 0%, #ffefd0 100%);
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.closure-notice-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  font-family: system-ui, sans-serif;
}

.closure-notice-body {
  min-width: 0;
  flex: 1;
}

.closure-notice-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.closure-notice-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
}

@media (max-width: 720px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: inline-flex;
    position: fixed;
    right: 18px;
    top: 14px;
  }

  .menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
  }

  .menu-backdrop.open {
    display: block;
    z-index: 1000;
  }

  .menu-toggle {
    z-index: 1002;
  }

  .nav-links {
    display: none;
    position: fixed;
    right: 18px;
    top: 62px;
    width: min(280px, calc(100vw - 36px));
    max-height: min(70vh, calc(100vh - 84px));
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    z-index: 1001;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a1a;
    border-radius: 8px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.04);
  }

  .hero {
    min-height: min(48vh, 380px);
    max-height: none;
    height: auto;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--hero-mobile-fallback);
  }

  .hero-inner {
    padding: 32px 20px 36px;
  }

  .hero h1,
  .hero p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  }

  .hero-meta {
    max-width: 100%;
  }

  .hero-type-chip,
  .hero-offer-chip {
    font-size: 12px;
    padding: 5px 10px;
    min-height: 28px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 18px;
  }

  .logo span {
    max-width: min(68vw, 320px);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(14px, 3.4vw, 18px);
    line-height: 1.2;
  }

  .hero-logo {
    width: 58px;
    height: 58px;
  }

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

  .location-hours {
    padding-left: 0;
    border-left: 0;
  }

  .btn-reservation {
    margin-left: 0;
  }

  .nav-links .btn-reservation {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-self: auto;
    margin-top: 1px;
    padding: 4px 8px;
    font-size: 11px;
    white-space: nowrap;
  }

  .reservation-datetime-grid {
    grid-template-columns: 1fr;
  }

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

  .reservation-date-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

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

  .reservation-modal-card {
    width: calc(100vw - 18px);
    margin: 12px auto;
    height: calc(100vh - 24px);
    border-radius: 10px;
  }

  .map-frame iframe {
    height: 160px;
  }

  .closure-notice-inner {
    padding: 14px;
    gap: 12px;
  }

  .closure-notice-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .closure-notice-text {
    font-size: 1rem;
  }
}

/* Temaer ud fra Meal4U restaurant `types` + admin `themes` (body class theme-<slug>) */
body.theme-default {
  --bg-page: #f7f5f3;
  --color-accent: #4a5568;
  --color-accent-hover: #2d3748;
  --color-primary: #2b6cb0;
  --color-primary-hover: #2c5282;
  --border-subtle: #e2e8f0;
  --footer-bg: #e2e8f0;
  --footer-text: #1a202c;
  --top-nav-bg: rgba(255, 255, 255, 0.96);
  --card-radius: 12px;
  --theme-bg-image:
    radial-gradient(ellipse 85% 55% at 12% -8%, rgba(43, 108, 176, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse 65% 45% at 96% 102%, rgba(74, 85, 104, 0.09) 0%, transparent 48%);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Italiensk: oliven + terracotta + lys travertin (tidligere kun :root — for tæt på andre temaer) */
body.theme-italian {
  --bg-page: #f2efe6;
  --color-text: #1c1917;
  --color-accent: #c2410c;
  --color-accent-hover: #9a3412;
  --color-primary: #4d7c0f;
  --color-primary-hover: #3f6212;
  --border-subtle: #d4cfc0;
  --card-bg: #fffdf8;
  --footer-bg: #e7e2d6;
  --footer-text: #292524;
  --top-nav-bg: rgba(253, 252, 250, 0.96);
  --hero-mobile-fallback: #3f3f36;
  --card-radius: 16px;
  --theme-bg-image:
    radial-gradient(ellipse 100% 70% at 100% 0%, rgba(77, 124, 15, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(194, 65, 12, 0.07) 0%, transparent 50%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px);
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

/* Indisk: dyb rubin + saffron / meget adskilt fra italiensk oliven-look */
body.theme-indian {
  --bg-page: #fff7ed;
  --color-text: #1c1410;
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-primary: #7f1d1d;
  --color-primary-hover: #671818;
  --border-subtle: #fed7aa;
  --card-bg: #fffdfa;
  --footer-bg: #4a0f14;
  --footer-text: #fde68a;
  --top-nav-bg: rgba(255, 252, 248, 0.97);
  --hero-mobile-fallback: #1c0a0a;
  --card-radius: 10px;
  --theme-bg-image:
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(217, 119, 6, 0.12) 0%, transparent 48%),
    radial-gradient(ellipse 70% 55% at 0% 80%, rgba(127, 29, 29, 0.09) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(254, 215, 170, 0.22) 0 1px, transparent 1px 36px);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.theme-indian .hours-block {
  border-top-color: rgba(255, 255, 255, 0.18);
}

body.theme-indian .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.22);
}

body.theme-asian {
  --bg-page: #faf7f8;
  --color-accent: #a61c3d;
  --color-accent-hover: #851830;
  --color-primary: #1a5f4a;
  --color-primary-hover: #154a3a;
  --border-subtle: #e8dce0;
  --card-bg: #fffafb;
  --footer-bg: #fdeef2;
  --footer-text: #1a1a1a;
  --top-nav-bg: rgba(255, 250, 252, 0.96);
  --card-radius: 14px;
  --theme-bg-image:
    radial-gradient(ellipse 95% 65% at 0% 15%, rgba(166, 28, 61, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 75% 50% at 100% 90%, rgba(26, 95, 74, 0.09) 0%, transparent 48%),
    linear-gradient(165deg, #faf7f8 0%, #f4e8ee 100%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.theme-mexican {
  --bg-page: #fdf9f3;
  --color-accent: #c45c26;
  --color-accent-hover: #9e4a1e;
  --color-primary: #1d6f42;
  --color-primary-hover: #185a37;
  --border-subtle: #e8dcc8;
  --card-bg: #fffaf5;
  --footer-bg: #f4d03f;
  --footer-text: #2c1810;
  --top-nav-bg: rgba(255, 253, 248, 0.96);
  --card-radius: 18px;
  --theme-bg-image:
    repeating-linear-gradient(90deg, rgba(196, 92, 38, 0.04) 0 1px, transparent 1px 48px),
    conic-gradient(from 200deg at 105% -5%, rgba(244, 208, 63, 0.18) 0deg 48deg, transparent 48deg 360deg),
    linear-gradient(185deg, #fff9f2 0%, #fdf3e4 100%);
  font-family: Georgia, "Times New Roman", serif;
}

body.theme-burger {
  --bg-page: #faf6f0;
  --color-accent: #8b4513;
  --color-accent-hover: #6d370f;
  --color-primary: #e67e22;
  --color-primary-hover: #ca6f1d;
  --border-subtle: #e5d9cc;
  --card-bg: #fffdfa;
  --footer-bg: #ffd7a8;
  --footer-text: #2b1f14;
  --top-nav-bg: rgba(255, 252, 248, 0.96);
  --card-radius: 8px;
  --theme-bg-image:
    radial-gradient(circle at 20% 30%, rgba(230, 126, 34, 0.09) 0%, transparent 42%),
    radial-gradient(circle at 92% 75%, rgba(139, 69, 19, 0.08) 0%, transparent 38%),
    repeating-linear-gradient(-12deg, rgba(0, 0, 0, 0.02) 0 1px, transparent 1px 20px);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
}

body.theme-middle-eastern {
  --bg-page: #fdfaf5;
  --color-accent: #6b3d2e;
  --color-accent-hover: #563125;
  --color-primary: #bc6c25;
  --color-primary-hover: #9e5a1f;
  --border-subtle: #e5ddd4;
  --card-bg: #fffef9;
  --footer-bg: #e9c46a;
  --footer-text: #1f1a15;
  --top-nav-bg: rgba(255, 252, 248, 0.96);
  --card-radius: 12px;
  --theme-bg-image:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(188, 108, 37, 0.12) 0%, transparent 58%),
    repeating-linear-gradient(
      45deg,
      rgba(107, 61, 46, 0.04) 0,
      rgba(107, 61, 46, 0.04) 1px,
      transparent 1px,
      transparent 16px
    ),
    linear-gradient(180deg, #fdfaf5 0%, #f5efe3 100%);
  font-family: Cambria, Georgia, "Times New Roman", serif;
}

/* Grill & pizza — farver + layout (Burger Hytten-inspireret) */
/* Hero typer/tilbud — fælles læsbarhed på mørkt hero-billede (alle temaer undtagen grill-layout) */
body:not(.layout-grill-house) .hero .hero-meta {
  align-items: center;
}

body:not(.layout-grill-house) .hero .hero-types,
body:not(.layout-grill-house) .hero .hero-offers {
  justify-content: center;
}

body.theme-italian .hero .hero-type-chip,
body.theme-italian .hero .hero-offer-chip,
body.theme-mexican .hero .hero-type-chip,
body.theme-mexican .hero .hero-offer-chip,
body.theme-middle-eastern .hero .hero-type-chip,
body.theme-middle-eastern .hero .hero-offer-chip {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.theme-grill-house {
  --bg-page: #f4f4f6;
  --color-text: #141414;
  --color-accent: #141414;
  --color-accent-hover: #000;
  --color-primary: #1f7a3b;
  --color-primary-hover: #17602f;
  --border-subtle: #e3e3e8;
  --card-bg: #fff;
  --footer-bg: #141414;
  --footer-text: #f5f5f5;
  --top-nav-bg: rgba(255, 255, 255, 0.98);
  --hero-mobile-fallback: #141414;
  --card-radius: 14px;
  --theme-bg-image: none;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.layout-grill-house .top-nav,
body.layout-grill-house .hero,
body.layout-grill-house .container {
  display: none !important;
}

body.layout-grill-house {
  background-color: var(--bg-page);
  background-image: none;
}

body.layout-grill-house .gh-main {
  background-color: var(--bg-page);
}

body.layout-grill-house #om,
body.layout-grill-house #artikler,
body.layout-grill-house #aabningstider,
body.layout-grill-house #faq,
body.layout-grill-house #top {
  scroll-margin-top: 92px;
}

/* —— Topbar (fast, gennemsigtig over hero → hvid ved scroll) —— */
.gh-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.gh-topbar.gh-topbar--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 2px 14px rgba(15, 15, 20, 0.05);
  backdrop-filter: blur(8px);
}

.gh-topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6px 20px 8px;
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

.gh-topbar-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px 18px;
  align-self: center;
  min-height: 40px;
}

.gh-brand {
  display: inline-flex;
  align-items: flex-start;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
  margin-bottom: -46px;
  position: relative;
  z-index: 45;
  text-decoration: none;
  color: var(--color-text);
}

.gh-brand-logo {
  display: block;
  height: 104px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  object-position: left top;
  /* Klistret-på-look: tæt skygge + blød skygge ned/til højre */
  filter:
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.38))
    drop-shadow(0 5px 10px rgba(0, 0, 0, 0.32))
    drop-shadow(3px 10px 20px rgba(0, 0, 0, 0.35))
    drop-shadow(5px 16px 28px rgba(0, 0, 0, 0.22));
}

.gh-brand-text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.gh-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px 16px;
}

.gh-nav a {
  color: #2a2a2a;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.gh-nav a:hover {
  color: var(--color-primary);
}

.gh-topbar:not(.gh-topbar--scrolled) .gh-nav a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.gh-topbar:not(.gh-topbar--scrolled) .gh-nav a:hover {
  color: #fff;
}

.gh-topbar:not(.gh-topbar--scrolled) .gh-brand-text {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.gh-topbar-ctas {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  flex-shrink: 0;
}

.gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  line-height: 1.2;
  vertical-align: middle;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.layout-grill-house .gh-topbar .btn {
  margin-top: 0;
}

/* Topmenu-links er <a> — overskriv .nav-links a (grøn tekst på grøn knap) */
body.layout-grill-house .gh-topbar-menu a.gh-btn-primary,
body.layout-grill-house .gh-topbar-ctas a.gh-btn-primary {
  color: #fff;
  background: var(--color-primary);
}

body.layout-grill-house .gh-topbar-menu a.gh-btn-primary:hover,
body.layout-grill-house .gh-topbar-ctas a.gh-btn-primary:hover {
  color: #fff;
  background: var(--color-primary-hover);
}

body.layout-grill-house .gh-topbar-menu a.gh-btn-outline,
body.layout-grill-house .gh-topbar-ctas a.gh-btn-outline {
  color: var(--color-primary);
  background: #fff;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

body.layout-grill-house .gh-topbar:not(.gh-topbar--scrolled) .gh-topbar-menu a.gh-btn-outline,
body.layout-grill-house .gh-topbar:not(.gh-topbar--scrolled) .gh-topbar-ctas a.gh-btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

body.layout-grill-house .gh-topbar:not(.gh-topbar--scrolled) .gh-topbar-menu a.gh-btn-outline:hover,
body.layout-grill-house .gh-topbar:not(.gh-topbar--scrolled) .gh-topbar-ctas a.gh-btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.gh-btn:hover {
  transform: translateY(-1px);
}

.gh-btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 122, 59, 0.28);
}

.gh-btn-primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.gh-btn-outline {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.gh-btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}

.gh-btn-lg {
  padding: 14px 26px;
  font-size: 16px;
}

.gh-btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.gh-menu-toggle {
  display: none;
  border: 1px solid var(--border-subtle);
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.gh-topbar:not(.gh-topbar--scrolled) .gh-menu-toggle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* —— Hero med video/billede —— */
.gh-hero {
  position: relative;
  z-index: 1;
  margin-top: 0;
  min-height: min(88vh, 760px);
  display: grid;
  grid-template-areas: "stack";
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.gh-hero-video,
.gh-hero-media,
.gh-hero-overlay,
.gh-hero-content {
  grid-area: stack;
}

.gh-hero-video,
.gh-hero-media {
  position: absolute;
  inset: -8% -4%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  transform-origin: center center;
}

.gh-hero-media--image,
.gh-hero-media--fallback {
  background-size: cover;
  background-position: center;
}

.gh-hero-media--fallback {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d4a32 55%, #141414 100%);
}

.gh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.28) 28%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.gh-hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 56px 20px 56px;
  text-align: left;
}

/* Logo vises i hjørnet — ikke duplikeret i hero */
body.layout-grill-house .gh-hero-logo {
  display: none;
}

.gh-hero-kicker {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.gh-hero-title {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.gh-hero-address,
.gh-hero-lead {
  margin: 0 0 10px;
  max-width: 40rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  opacity: 0.95;
}

.gh-hero-content .hero-meta {
  align-items: flex-start;
  margin: 10px 0 0;
  max-width: none;
  width: 100%;
}

.gh-hero-content .hero-types,
.gh-hero-content .hero-offers {
  justify-content: flex-start;
  width: 100%;
}

.gh-hero-content .hero-type-chip,
.gh-hero-content .hero-offer-chip {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* —— Main sections —— */
.gh-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 48px;
}

.gh-section-title {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.gh-section-title--center {
  text-align: center;
  margin-bottom: 24px;
}

.gh-features .gh-section-title--center {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.gh-welcome {
  padding: 48px 0 24px;
  position: relative;
}

.gh-welcome--linked {
  cursor: pointer;
}

.gh-welcome--linked .gh-welcome-grid > * {
  position: relative;
  z-index: 2;
}

.gh-welcome-grid,
.gh-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.gh-location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
}

.gh-split--image-right .gh-split-grid {
  direction: rtl;
}

.gh-split--image-right .gh-split-grid > * {
  direction: ltr;
}

.gh-media-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #e8e8ed;
  box-shadow: 0 16px 40px rgba(20, 20, 30, 0.12);
  aspect-ratio: 4 / 3;
}

.gh-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Levende billeder: langsom Ken Burns-zoom (altid synlig, ikke kun ved hover) */
@keyframes gh-ken-burns {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-2.5%, -1.5%);
  }
}

@keyframes gh-hero-living {
  0% {
    transform: scale(1.1) translate(0%, 0%);
  }
  20% {
    transform: scale(1.16) translate(-2%, -1.2%);
  }
  45% {
    transform: scale(1.2) translate(1.5%, -2%);
  }
  70% {
    transform: scale(1.14) translate(-1%, 1.2%);
  }
  100% {
    transform: scale(1.1) translate(0.5%, 0%);
  }
}

@keyframes gh-hero-living-mobile {
  0% {
    transform: scale(1.04) translate(0%, 0%);
  }
  25% {
    transform: scale(1.07) translate(-1.2%, -0.8%);
  }
  50% {
    transform: scale(1.09) translate(1%, -1%);
  }
  75% {
    transform: scale(1.06) translate(-0.6%, 0.8%);
  }
  100% {
    transform: scale(1.04) translate(0.3%, 0%);
  }
}

@keyframes gh-placeholder-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.gh-media-frame .gh-media-img {
  animation: gh-ken-burns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.gh-media-frame video.section-media-video {
  min-height: 100%;
  animation: none;
  transform: none;
}

.gh-feature-card:nth-child(2) .gh-media-img {
  animation-duration: 26s;
  animation-delay: -5s;
}

.gh-feature-card:nth-child(3) .gh-media-img {
  animation-duration: 19s;
  animation-delay: -9s;
}

.gh-media-frame:hover .gh-media-img {
  animation-play-state: paused;
  transform: scale(1.14);
}

.gh-hero-media--image,
.gh-hero-video {
  animation: gh-hero-living 12s ease-in-out infinite;
  will-change: transform;
}

.gh-hero-media--fallback {
  animation: gh-hero-living 16s ease-in-out infinite;
}

.gh-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #d8dce3 0%, #f3f4f8 35%, #c5cad3 70%, #e8ebf0 100%);
  background-size: 220% 220%;
  animation: gh-placeholder-shimmer 8s ease-in-out infinite alternate;
}

.gh-welcome-copy p,
.gh-split-copy p {
  line-height: 1.65;
  color: #333;
}

.gh-features {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 36px 0;
  overflow: hidden;
  background-color: var(--bg-page);
  box-sizing: border-box;
}

.gh-feature-carousel {
  overflow: hidden;
  width: 100%;
  background-color: var(--bg-page);
}

.gh-feature-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 4px 24px 14px;
  animation: gh-feature-marquee var(--gh-feature-carousel-duration, 42s) linear infinite;
  will-change: transform;
}

.gh-feature-carousel:hover .gh-feature-track {
  animation-play-state: paused;
}

@keyframes gh-feature-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.gh-feature-card {
  flex: 0 0 300px;
  width: 300px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 20, 30, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
}

.gh-feature-card--linked {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .gh-features {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .gh-feature-carousel {
    width: 100%;
  }

  .gh-feature-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .gh-feature-card {
    flex: 1 1 260px;
    width: auto;
    max-width: 340px;
  }
}

.gh-feature-media {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  box-shadow: none;
}

.gh-feature-body {
  padding: 16px 18px 20px;
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.gh-feature-body h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.gh-split {
  padding: 36px 0;
  position: relative;
}

.gh-split--linked {
  cursor: pointer;
}

.gh-split--linked .gh-split-grid > * {
  position: relative;
  z-index: 2;
}

.gh-location {
  padding: 36px 0 24px;
}

/* Kontakt & åbningstider — samme opbygning som standardtema (.article.location) */
body.layout-grill-house .gh-location.article {
  margin-top: 0;
  padding: 22px 24px 24px;
  box-shadow: 0 10px 28px rgba(20, 20, 30, 0.06);
}

body.layout-grill-house .gh-location.article > h2 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent);
}

body.layout-grill-house .gh-location .location-grid {
  margin-top: 4px;
}

body.layout-grill-house .gh-location .location-info p {
  margin: 0 0 4px;
  line-height: 1.55;
  font-size: 15px;
}

body.layout-grill-house .gh-location .btn-map {
  margin-top: 12px;
  display: inline-flex;
  border-radius: 8px;
  font-weight: 700;
  padding: 8px 14px;
  font-size: 14px;
}

body.layout-grill-house .gh-location .location-hours {
  padding-left: 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
}

/* Åbningstider-indhold: samme typografi og layout som standardtemaer */
body.layout-grill-house .gh-location .location-hours-card {
  margin-top: 0;
  padding: 16px;
  background: var(--card-bg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.45;
}

body.layout-grill-house .gh-location .location-hours-card.article h3.location-hours-title {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: inherit;
  font-weight: 700;
}

body.layout-grill-house .gh-location .hours-block {
  margin-top: 6px;
}

body.layout-grill-house .gh-location .hours-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

body.layout-grill-house .gh-location .hours-title {
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin: 0 0 6px;
  color: inherit;
}

body.layout-grill-house .gh-location .hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  font-size: 14px;
}

body.layout-grill-house .gh-location .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

body.layout-grill-house .gh-location .hours-days {
  font-weight: 600;
}

body.layout-grill-house .gh-location .hours-time {
  white-space: nowrap;
  opacity: 0.95;
}

body.layout-grill-house .gh-location .delivery-areas-group .hours-title {
  margin-top: 0;
}

body.layout-grill-house .gh-location .delivery-area-row {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

body.layout-grill-house .gh-location .muted-hours-fallback,
body.layout-grill-house .gh-location .hours-section > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

@media (min-width: 720px) {
  body.layout-grill-house .gh-location .hours-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
  }
}

body.layout-grill-house .gh-location .map-frame {
  margin-top: 12px;
}

body.layout-grill-house .gh-map-frame iframe {
  height: 160px;
  min-height: 160px;
}

/* FAQ — slide-karrusel (Burger Hytten-inspireret) */
.site-faq {
  padding: 36px 0 32px;
  background-color: var(--bg-page);
}

.site-faq-title {
  margin: 0 auto 24px;
  padding: 0 20px;
  text-align: center;
  max-width: 980px;
}

.site-faq-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 52px;
}

.site-faq-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
}

.site-faq-viewport--dragging {
  cursor: grabbing;
}

.site-faq-viewport--dragging .site-faq-slide-inner {
  user-select: none;
  -webkit-user-select: none;
}

.site-faq-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.site-faq-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 8px;
}

.site-faq-slide-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.site-faq-slide-q {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-accent, #1a1a1a);
}

.site-faq-slide-a {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

.site-faq-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: #fff;
  color: var(--color-accent, #1a1a1a);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 14px rgba(20, 20, 30, 0.08);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.site-faq-nav:hover:not(:disabled) {
  background: var(--color-accent, #1a1a1a);
  border-color: var(--color-accent, #1a1a1a);
  color: #fff;
}

.site-faq-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.site-faq-nav--prev {
  left: 0;
}

.site-faq-nav--next {
  right: 0;
}

.site-faq-nav-icon {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
}

.site-faq-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
}

.site-faq-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.site-faq-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}

.site-faq-dot--active {
  background: var(--color-accent, #1a1a1a);
  transform: scale(1.15);
}

body.layout-grill-house .site-faq {
  background-color: var(--bg-page);
}

body.layout-grill-house .site-faq .site-faq-title.headline,
body.layout-grill-house .site-faq .gh-section-title {
  margin-bottom: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .site-faq-track {
    transition: none;
  }
}

@media (max-width: 640px) {
  .site-faq-slider {
    padding: 0 44px;
  }

  .site-faq-nav {
    width: 34px;
    height: 34px;
  }

  .site-faq-nav-icon {
    font-size: 1.15rem;
  }
}

.gh-footer {
  margin-top: 24px;
}

.gh-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.gh-footer .footer-title {
  color: #fff;
}

.gh-footer .footer-text,
.gh-footer .footer-link {
  color: #d7d7dc;
}

.gh-footer .footer-smiley-link {
  margin-top: 12px;
}

.gh-footer .footer-smiley-img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.gh-footer .footer-link:hover {
  color: #fff;
}

.gh-footer-order-panel {
  background: var(--meal4u-yellow);
  border-radius: 14px;
  padding: 16px 18px;
  color: #1f1f1f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.gh-footer .gh-footer-order-panel .footer-title,
.gh-footer .gh-footer-order-panel .footer-text,
.gh-footer .gh-footer-order-panel .footer-link {
  color: #1f1f1f;
}

.gh-footer .gh-footer-order-panel .footer-link:hover,
.gh-footer .gh-footer-order-panel .gh-footer-order:hover {
  color: #000;
}

.gh-footer-order-panel .meal4u-logo-link {
  margin-top: 12px;
}

.gh-footer-order-panel .meal4u-logo {
  height: 40px;
}

/* Scroll-fade: billeder er altid synlige uden JS; animation når JS er klar */
.gh-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.layout-grill-house.gh-js-ready .gh-reveal:not(.gh-reveal--visible) {
  opacity: 0;
  transform: translateY(28px);
}

body.layout-grill-house.gh-js-ready .gh-reveal.gh-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .gh-media-frame .gh-media-img,
  .gh-hero-media--image,
  .gh-hero-video,
  .gh-hero-media--fallback,
  .gh-media-placeholder {
    animation: none !important;
    transform: none !important;
  }

  .gh-hero-video,
  .gh-hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  body.layout-grill-house.gh-js-ready .gh-reveal:not(.gh-reveal--visible) {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .gh-topbar-inner {
    grid-template-columns: 1fr auto;
    min-height: 48px;
    padding: 6px 14px 8px;
  }

  .gh-brand {
    margin-bottom: -18px;
  }

  .gh-brand-logo {
    height: 72px;
    max-width: 200px;
    filter:
      drop-shadow(0 2px 3px rgba(0, 0, 0, 0.36))
      drop-shadow(0 4px 9px rgba(0, 0, 0, 0.3))
      drop-shadow(3px 8px 16px rgba(0, 0, 0, 0.32))
      drop-shadow(4px 12px 22px rgba(0, 0, 0, 0.2));
  }

  .gh-hero {
    margin-top: 0;
    min-height: min(58vh, 440px);
    max-height: none;
  }

  .gh-hero-video,
  .gh-hero-media {
    inset: -4%;
    width: 108%;
    height: 108%;
    animation: gh-hero-living-mobile 14s ease-in-out infinite;
    will-change: transform;
  }

  .gh-hero-media--fallback {
    animation: gh-hero-living-mobile 18s ease-in-out infinite;
  }

  .gh-hero-content {
    padding: 108px 16px 32px;
  }

  .gh-hero-kicker,
  .gh-hero-title,
  .gh-hero-address,
  .gh-hero-lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  }

  .gh-hero-title {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

  .gh-hero-lead {
    font-size: 0.95rem;
  }

  .gh-menu-toggle {
    display: inline-block;
    justify-self: end;
    position: relative;
    z-index: 1002;
  }

  body.layout-grill-house .menu-backdrop.open {
    z-index: 1000;
  }

  .gh-topbar-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    z-index: 1001;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    max-height: min(72vh, calc(100vh - 88px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gh-topbar-menu.open {
    display: flex;
  }

  .gh-topbar-menu.open .gh-nav a:not(.gh-btn) {
    color: #1a1a1a;
    text-shadow: none;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 10px;
    border-radius: 8px;
    display: block;
  }

  .gh-topbar-menu.open .gh-nav a:not(.gh-btn):hover,
  .gh-topbar-menu.open .gh-nav a:not(.gh-btn):focus-visible {
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.05);
  }

  .gh-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
  }

  .gh-topbar-ctas {
    width: 100%;
    flex-direction: column;
  }

  .gh-topbar-ctas .gh-btn {
    width: 100%;
    justify-content: center;
  }

  .gh-welcome-grid,
  .gh-split-grid,
  .gh-location-grid {
    grid-template-columns: 1fr;
  }

  body.layout-grill-house .gh-location .location-hours {
    padding-left: 0;
    border-left: 0;
    margin-top: 8px;
  }

  body.layout-grill-house .gh-location.article {
    padding: 18px 16px 20px;
  }

  body.layout-grill-house .gh-map-frame iframe {
    height: 140px;
    min-height: 140px;
  }

  .gh-split--image-right .gh-split-grid {
    direction: ltr;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: min(52vh, 360px);
    max-height: none;
  }

  .hero-inner {
    padding: 28px 16px 32px;
  }

  .hero-types,
  .hero-offers {
    gap: 6px;
  }

  .hero-type-chip,
  .hero-offer-chip {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .gh-hero {
    min-height: min(62vh, 400px);
    max-height: none;
  }

  .gh-brand {
    margin-bottom: -12px;
  }

  .gh-brand-logo {
    height: 64px;
    max-width: 180px;
  }

  .gh-hero-content {
    padding: 96px 14px 24px;
  }

  .gh-hero-kicker {
    font-size: 12px;
  }

  .gh-hero-title {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
  }

  .gh-hero-address,
  .gh-hero-lead {
    font-size: 0.9rem;
  }

  .gh-hero-actions {
    margin-top: 14px;
    gap: 8px;
  }

  .gh-btn-lg {
    padding: 10px 16px;
    font-size: 14px;
  }
}
