/* ============================================================
   New Way Pizzeria & Grill — Ringsted
   ============================================================ */

:root {
  --ink:        #141210;
  --ink-2:      #241f1c;
  --ink-3:      #3a3330;
  --brown:      #4a1c18;
  --peach:      #ffd5a8;
  --peach-2:    #f0b97a;
  --peach-soft: #fdeee0;
  --peach-tint: #fff4e8;
  --cream:      #fff8f0;
  --white:      #ffffff;
  --flame:      #d6402b;
  --muted:      #6d635e;
  --line:       rgba(20, 18, 16, .12);

  --shell:  1240px;
  --gutter: clamp(18px, 4vw, 48px);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 18, 16, .07);
  --shadow-md: 0 14px 40px rgba(20, 18, 16, .10);
  --shadow-lg: 0 30px 70px rgba(20, 18, 16, .18);

  --head-h: 78px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--head-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Poppins, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 900; line-height: .96; letter-spacing: -.02em; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible {
  outline: 3px solid var(--flame);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- shared shell ---------- */
.topbar-inner, .header-inner, .hero-inner, .trust-list,
.favs, .menu, .spot-inner, .about, .visit-inner, .faq,
.footer-top, .footer-bottom {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   PILLS / BUTTONS
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .085em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              color .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.pill:hover { transform: translateY(-2px); }
.pill:active { transform: translateY(0); }

.pill--dark   { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.pill--dark:hover { background: var(--brown); box-shadow: var(--shadow-md); }

.pill--peach  { background: var(--peach); color: var(--ink); box-shadow: var(--shadow-sm); }
.pill--peach:hover { background: var(--white); box-shadow: var(--shadow-md); }

.pill--ghost  { background: transparent; color: var(--ink); border-color: var(--line); }
.pill--ghost:hover { border-color: var(--ink); background: var(--white); }

.pill--outline { background: transparent; color: var(--cream); border-color: rgba(255, 248, 240, .34); }
.pill--outline:hover { border-color: var(--peach); color: var(--peach); }

.pill--xl { padding: 18px 34px; font-size: 14.5px; }
.pill--block { width: 100%; }

.pill .ico { width: 17px; height: 17px; flex: none; }
.arrow { transition: transform .22s var(--ease); }
.pill:hover .arrow { transform: translateX(4px); }

.ghost-cta {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  padding: 6px 4px;
}
.ghost-cta-small {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--peach);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}
.ghost-cta-big {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 3px 16px rgba(0, 0, 0, .65);
  border-bottom: 2px solid rgba(255, 213, 168, .5);
  transition: border-color .22s var(--ease), color .22s var(--ease);
}
.ghost-cta:hover .ghost-cta-big { color: var(--peach); border-color: var(--peach); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--ink);
  color: rgba(255, 248, 240, .82);
  font-size: 13px;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-block: 8px;
}
.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  letter-spacing: .01em;
}
.topbar-status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex: none;
}
.topbar-status.is-open .dot {
  background: #3ec46d;
  box-shadow: 0 0 0 4px rgba(62, 196, 109, .22);
  animation: pulse 2.4s var(--ease) infinite;
}
.topbar-status.is-closed .dot { background: var(--flame); box-shadow: 0 0 0 4px rgba(214, 64, 43, .2); }
.topbar-status.is-open strong { color: #6be095; }
.topbar-status.is-closed strong { color: #ff9a88; }
.topbar-status strong { font-weight: 800; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(62, 196, 109, .22); }
  50%      { box-shadow: 0 0 0 7px rgba(62, 196, 109, .06); }
}

.topbar-meta { display: inline-flex; align-items: center; gap: 9px; }
.topbar-meta a { color: var(--peach); font-weight: 800; }
.topbar-meta a:hover { text-decoration: underline; }
.topbar-sep { opacity: .4; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 248, 240, .93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); background: rgba(255, 248, 240, .98); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--head-h);
}

/* Logoet har massiv sort baggrund (ingen alfa), så det skal stå
   på en mørk plade — ikke direkte på den creme header. */
.brand {
  display: grid;
  justify-items: start;
  gap: 5px;
  margin-right: auto;
}
.brand-plate {
  display: grid;
  background: #000;
  border-radius: 11px;
  padding: 8px 13px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.brand-plate img { height: 25px; width: auto; }
.brand:hover .brand-plate { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.brand-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-plate--footer { border-radius: 14px; padding: 12px 18px; }
.brand-plate--footer img { height: 34px; }

.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .085em;
  text-transform: uppercase;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.primary-nav a:hover { background: var(--peach-soft); }
.primary-nav a.is-active { background: var(--ink); color: var(--cream); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Flex, ikke grid: med grid ryger stregerne i tre implicitte rækker,
   der strækker sig over hele knappen (16px afstand i stedet for 7px),
   og så kan krydset ikke mødes. Flex pakker dem til deres egen højde,
   så afstanden er præcis gap + linjehøjde = 7px — samme tal som
   translateY nedenfor bruger. */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 14px var(--gutter) 26px;
}
/* Kun de direkte link-børn er navigationslinjer. Uden ">" rammer
   reglen også .pill-knapperne i .mobile-nav-actions og slår deres
   display:inline-flex ud med display:block — så holder centreringen op
   med at virke, og knapperne bliver venstrestillet tekst. */
.mobile-nav > a {
  display: block;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 800;
}
.mobile-nav-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.mobile-nav-actions .pill { padding: 16px 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 88vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 26s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(0, -1.6%, 0); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 42%, rgba(20, 18, 16, .34) 0%, rgba(20, 18, 16, .72) 62%, rgba(20, 18, 16, .9) 100%),
    linear-gradient(to bottom, rgba(20, 18, 16, .58) 0%, rgba(20, 18, 16, .2) 34%, rgba(20, 18, 16, .84) 100%);
}

.hero-inner {
  text-align: center;
  padding-block: clamp(72px, 12vh, 130px);
  display: grid;
  justify-items: center;
  gap: 26px;
}

.hero-title { display: grid; gap: 4px; text-transform: uppercase; }
.hero-l1 {
  font-size: clamp(30px, 6.4vw, 74px);
  color: var(--white);
  text-shadow: 0 6px 30px rgba(0, 0, 0, .45);
}
.hero-l2 {
  font-size: clamp(46px, 11vw, 132px);
  color: var(--peach);
  text-shadow: 0 8px 40px rgba(0, 0, 0, .5);
}

.hero-lede {
  max-width: 46ch;
  color: rgba(255, 248, 240, .9);
  font-weight: 600;
  font-size: clamp(15.5px, 1.5vw, 19px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 4px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.hero-chips li {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 248, 240, .26);
  background: rgba(20, 18, 16, .3);
  backdrop-filter: blur(6px);
  color: rgba(255, 248, 240, .92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 240, .34);
  color: var(--cream);
  font-size: 18px;
  background: rgba(20, 18, 16, .34);
  backdrop-filter: blur(6px);
  animation: bob 2.6s var(--ease) infinite;
}
.hero-scroll:hover { background: var(--peach); color: var(--ink); border-color: var(--peach); }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   SECTION FURNITURE
   ============================================================ */
.kicker {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--peach);
  color: var(--brown);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker--onDark { background: rgba(255, 213, 168, .16); color: var(--peach); }

.sec-head {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 62ch;
  margin-bottom: clamp(38px, 5vw, 62px);
}
.sec-head--center { justify-items: center; text-align: center; margin-inline: auto; }

.sec-title {
  font-size: clamp(30px, 4.6vw, 58px);
  text-transform: uppercase;
}
.sec-title em { font-style: normal; color: var(--flame); }
.sec-title .em--brown, .em--brown { font-style: normal; color: var(--brown); }
.sec-title--onDark { color: var(--cream); }
.sec-title--onDark em { color: var(--peach); }

.sec-lede { color: var(--muted); font-size: clamp(15.5px, 1.4vw, 18px); }

.sec-foot {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}
.sec-foot-note { color: var(--muted); font-size: 13.5px; font-weight: 600; }

.prose { display: grid; gap: 17px; color: var(--ink-3); font-weight: 500; }
.prose p { font-size: clamp(15.5px, 1.35vw, 17.5px); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--ink); }
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-block: 0;
}
.trust-list li {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
  padding: 34px 18px;
  position: relative;
  color: rgba(255, 248, 240, .68);
}
.trust-list li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 26%; bottom: 26%;
  width: 1px;
  background: rgba(255, 248, 240, .14);
}
.trust-ico { display: grid; place-items: center; color: var(--peach); margin-bottom: 3px; }
.trust-ico svg { width: 27px; height: 27px; }
.trust-list strong {
  color: var(--peach);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-list span:last-child { font-size: 13.5px; font-weight: 500; }

/* ============================================================
   FAVORITTER
   ============================================================ */
.favs { padding-block: clamp(64px, 9vw, 118px); }

.fav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

.fav {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.fav:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--peach-2);
}

/* Fast, ensartet højde på ALLE favoritbilleder — også det brede
   favoritkort. Billedet må ikke strække sig; overskydende højde i et
   kort optages af brødteksten nedenfor, så prisen falder til bunden. */
.fav-media {
  overflow: hidden;
  height: clamp(196px, 21vw, 272px);
  flex: 0 0 auto;
  background: var(--peach-soft);
}
.fav-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.fav:hover .fav-media img { transform: scale(1.07); }

.fav-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px 24px 26px;
  flex: 1 1 auto;
}
.fav-body h3 { font-size: 23px; text-transform: uppercase; }
.fav-desc { color: var(--muted); font-size: 14.5px; font-weight: 500; line-height: 1.55; }
.fav-price {
  margin-top: auto;
  padding-top: 12px;
  font-size: 25px;
  font-weight: 900;
  color: var(--brown);
  letter-spacing: -.02em;
}
.fav-price span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  vertical-align: middle;
  margin-right: 5px;
}

.fav--hero { grid-column: span 2; }
.fav--hero .fav-body { padding: 28px 30px 32px; }
.fav--hero h3 { font-size: clamp(26px, 2.6vw, 34px); }

.fav-flag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--flame);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   MENU CATEGORIES
   ============================================================ */
.menu {
  padding-block: clamp(64px, 9vw, 118px);
  background: var(--peach-soft);
  max-width: none;
  padding-inline: 0;
}
.menu > * {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}

.cat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px 26px;
  background: var(--cream);
  border: 1px solid rgba(74, 28, 24, .12);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), background-color .28s var(--ease),
              color .28s var(--ease), box-shadow .28s var(--ease);
}
.cat::after {
  content: "\2192";
  position: absolute;
  right: 22px; top: 26px;
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.cat:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cat:hover::after { opacity: 1; transform: translateX(0); }

.cat-name {
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  padding-right: 32px;
}
.cat-meta { color: var(--muted); font-size: 13.5px; font-weight: 500; }
.cat:hover .cat-meta { color: rgba(255, 248, 240, .7); }
.cat-price {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--flame);
}
.cat:hover .cat-price { color: var(--peach); }

/* ============================================================
   DURUM SPOTLIGHT
   ============================================================ */
.spot { padding-block: clamp(64px, 9vw, 118px); background: var(--peach-tint); }
.spot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
}
.spot-media {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 6;
}
.spot-media img { width: 100%; height: 100%; object-fit: cover; }
.spot-copy { display: grid; justify-items: start; gap: 22px; }
.spot-copy .sec-title { font-size: clamp(30px, 4.2vw, 54px); }

.ticks { display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.ticks li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--peach);
  font-size: 12px;
  font-weight: 900;
}

/* ============================================================
   OM OS
   ============================================================ */
.about { padding-block: clamp(64px, 9vw, 118px); }
.about-inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.about-art { position: relative; padding-bottom: 56px; }
.about-img { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--1 { aspect-ratio: 4 / 5; width: 78%; }
.about-img--2 {
  aspect-ratio: 1 / 1;
  width: 52%;
  position: absolute;
  right: 0; bottom: 0;
  border: 6px solid var(--cream);
}
.about-stamp {
  position: absolute;
  left: 4%; bottom: 8%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1px;
  width: 118px; height: 118px;
  border-radius: 50%;
  place-content: center;
  background: var(--ink);
  color: var(--peach);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-9deg);
}
.about-stamp span { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.about-stamp strong {
  font-size: 19px;
  font-weight: 900;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.1;
}

.about-copy { display: grid; gap: 30px; }

.virtues { display: grid; gap: 18px; }
.virtues li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.virtue-num {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
  flex: none;
}
.virtues div strong {
  display: block;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -.005em;
}
/* Kun beskrivelsen inde i div'en — ikke .virtue-num, som ellers
   fik display:block og mistede sin centrering. */
.virtues div span { display: block; color: var(--muted); font-size: 14.5px; font-weight: 500; line-height: 1.6; }

/* ============================================================
   FIND OS
   ============================================================ */
.visit { background: var(--ink); color: var(--cream); }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
  padding-block: clamp(64px, 9vw, 112px);
}
.visit-info { display: grid; justify-items: start; gap: 24px; }

.info { display: grid; gap: 20px; width: 100%; }
.info > div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 248, 240, .14);
}
.info dt {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--peach);
  padding-top: 3px;
}
.info dd { font-size: 16.5px; font-weight: 600; line-height: 1.6; }
.info dd a { border-bottom: 2px solid rgba(255, 213, 168, .5); font-weight: 800; }
.info dd a:hover { color: var(--peach); border-color: var(--peach); }

.hours { display: grid; gap: 7px; }
.hours li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15.5px;
}
.hours b { font-weight: 700; min-width: 148px; color: rgba(255, 248, 240, .78); }
.hours i { font-style: normal; font-weight: 800; }
.hours li.is-today b { color: var(--peach); }
.hours li.is-today i { color: var(--peach); }
.hours li.is-today::after {
  content: "i dag";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: rgba(255, 213, 168, .18);
  color: var(--peach);
}

.visit-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.visit-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 248, 240, .16);
  aspect-ratio: 4 / 3.4;
  background: var(--ink-2);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.24) contrast(1.04); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: clamp(64px, 9vw, 112px); }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--peach-2); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 26px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--brown);
  font-size: 19px;
  font-weight: 700;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.faq details[open] summary::after {
  content: "\2212";
  background: var(--ink);
  color: var(--peach);
  transform: rotate(180deg);
}
.faq summary:hover { color: var(--flame); }
.faq-body {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  max-width: 68ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255, 248, 240, .74); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 2fr;
  gap: clamp(32px, 4vw, 64px);
  padding-block: clamp(48px, 6vw, 78px);
  border-bottom: 1px solid rgba(255, 248, 240, .12);
}
.footer-brand { display: grid; justify-items: start; gap: 18px; align-content: start; }
.footer-tagline { display: grid; gap: 3px; }
.footer-tagline span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--peach);
}
.footer-tagline strong {
  font-size: 21px;
  font-weight: 900;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 42px);
}
.footer-col h3 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 14px;
}
.footer-col p { font-size: 15.5px; font-weight: 600; line-height: 1.85; }
.footer-col a { border-bottom: 1px solid transparent; }
.footer-col a:hover { color: var(--peach); border-color: var(--peach); }
.footer-col nav { display: grid; gap: 2px; }
/* Rigtig polstring frem for kunstigt hit-område: linkene ligger så tæt,
   at overlappende trykflader ville give fejltryk. */
.footer-col nav a { font-size: 15.5px; font-weight: 600; justify-self: start; padding-block: 8px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 22px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 248, 240, .5);
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.mobilebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20, 18, 16, .95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 248, 240, .14);
}
.mobilebar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 248, 240, .3);
  color: var(--cream);
}
.mobilebar a .ico { width: 16px; height: 16px; }
.mobilebar-primary {
  flex: 1;
  background: var(--peach);
  color: var(--ink) !important;
  border-color: var(--peach) !important;
}

/* ============================================================
   TRYKFLADER
   Telefonlinks er den vigtigste handling på siden, men står som
   inline tekst på 22-25px. De får en usynlig 44px trykflade via
   ::after, så udseende og understregning er urørt.
   ============================================================ */
.topbar-meta a,
.info dd a,
.footer-col p a { position: relative; }

.topbar-meta a::after,
.info dd a::after,
.footer-col p a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  min-width: 44px;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .fav-grid { grid-template-columns: repeat(2, 1fr); }
  /* Ved 2 kolonner må favoritkortet ikke spænde over begge — ellers
     efterlader det et tomt felt i rækken før. */
  .fav--hero { grid-column: auto; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-list li:nth-child(3)::before { display: none; }
}

@media (max-width: 960px) {
  :root { --head-h: 70px; }
  .primary-nav, .header-actions { display: none; }
  .burger { display: flex; }
  .spot-inner, .about-inner, .visit-inner { grid-template-columns: 1fr; }
  .spot-media { aspect-ratio: 4 / 3; }
  .about-art { max-width: 520px; }
  .footer-top { grid-template-columns: 1fr; }
  .mobilebar { display: flex; }
  body { padding-bottom: 78px; }
  .hero-scroll { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar-meta span:first-child,
  .topbar-sep { display: none; }
  .fav-grid { grid-template-columns: 1fr; }
  .fav--hero { grid-column: auto; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat { padding: 22px 20px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .info > div { grid-template-columns: 1fr; gap: 6px; }
  .hours li { flex-wrap: wrap; gap: 4px 10px; }
  .hours b { min-width: 0; }
  .visit-cta .pill { width: 100%; }
  .hero-cta { flex-direction: column; gap: 18px; }
  .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li::before { display: none !important; }
  .trust-list li { padding: 22px 14px; border-bottom: 1px solid rgba(255, 248, 240, .12); }
  .brand-plate { padding: 10px 12px; }
  .brand-plate img { height: 21px; }
  .brand-sub { display: none; }
  .about-stamp { width: 96px; height: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
