/* ============================================================
   Spiis – hovedside
   Palette: creme + kul + terracotta. Fonte: Fraunces (display),
   Outfit (brødtekst), Baloo 2 (logo-ordmærke).
   ============================================================ */

:root {
  --cream: #FAF6F0;
  --cream-2: #F2EBDF;
  --ink: #1C1814;
  --ink-soft: #6B6257;
  --accent: #D96C2C;
  --accent-deep: #B85417;
  --accent-soft: #F7E3D3;
  --dark: #211B15;
  --dark-2: #2C251D;
  --line: rgba(28, 24, 20, 0.12);
  --shadow: 0 1px 2px rgba(28, 24, 20, 0.04), 0 22px 48px -22px rgba(28, 24, 20, 0.28);
  --radius: 22px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Outfit', sans-serif;
  --font-logo: 'Baloo 2', cursive;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }

[hidden] { display: none !important; }

::selection { background: var(--accent); color: #fff; }

/* ---------- layout ---------- */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}
.container--narrow { width: min(760px, 92vw); }

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }

/* sektioner under folden renderes først, når man nærmer sig dem –
   gør både indlæsning og scroll mærkbart lettere */
main .section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
.section--dark { background: var(--dark); color: #F5EFE6; }

/* bløde, varme lysglimt i baggrunden – giver dybde uden at forstyrre */
#dagensret::before,
#booking::before {
  content: '';
  position: absolute;
  width: min(440px, 58vw);
  height: min(440px, 58vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 108, 44, 0.09), transparent 68%);
  pointer-events: none;
}
#dagensret::before { top: 30px; right: 3%; }
#booking::before { bottom: 40px; left: 3%; }

/* blød glidning fra creme til den tonede sektion */
.section--tint {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 90px, var(--cream-2) calc(100% - 90px), var(--cream) 100%);
}

.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 64px); }
.section__head h2,
.about__text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section__lead { color: var(--ink-soft); margin-top: 18px; font-size: 1.05rem; }
.section--dark .section__lead { color: rgba(245, 239, 230, 0.7); }

/* allergi-note: diskret men tydelig */
.allerginote {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  background: rgba(217, 108, 44, 0.08);
  border: 1px dashed rgba(217, 108, 44, 0.35);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.eyebrow--light { color: #E8A876; }

/* stiplet linje – motiv fra logoet */
.dotline {
  display: block;
  width: 90px;
  height: 5px;
  margin: 20px auto 0;
  background-image: radial-gradient(circle, var(--accent) 2.4px, transparent 2.6px);
  background-size: 15px 5px;
  background-repeat: repeat-x;
  background-position: left center;
}
.dotline--light { margin-left: 0; }

/* ---------- knapper ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 108, 44, 0.28);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(217, 108, 44, 0.7);
  position: relative;
  overflow: hidden;
}
.btn--accent:hover { background: var(--accent-deep); box-shadow: 0 16px 34px -12px rgba(217, 108, 44, 0.8); }
/* blødt lysstrejf hen over knappen ved hover */
.btn--accent::after {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn--accent:hover::after { left: 130%; }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); }

.btn--ghost-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--cream); }

.btn--small { padding: 10px 20px; font-size: 0.92rem; }
.btn--big { padding: 16px 40px; font-size: 1.08rem; }

/* ---------- nyheder fra køkkenet ---------- */
.section--news { padding-bottom: 30px; }
.newsgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.news {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius, 22px);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(28, 24, 20, 0.09);
  border: 1px solid rgba(28, 24, 20, 0.05);
}
.news--big { grid-column: 1 / -1; flex-direction: row; align-items: center; }
/* billederne er allerede beskåret til 3:2, så de vises helt uden at blive
   skævt klippet – samme pæne vandrette format på desktop og telefon */
.news__media { position: relative; aspect-ratio: 3 / 2; background: var(--cream-2); }
.news--big .news__media { flex: 0 0 46%; }
.news__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.news__body {
  flex: 1 1 45%;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
}
.news__date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.news__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.15;
}
.news__text { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; white-space: pre-line; }
.news__cta { margin-top: 6px; }
.news__deadline { font-size: 0.86rem; font-weight: 600; color: var(--accent-deep); }
.news__closed { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); font-style: italic; }

/* mini-bestilling fra en nyhed */
.confirm__x {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  background: rgba(28, 24, 20, 0.06);
  color: var(--ink); font-size: 1rem; cursor: pointer;
  line-height: 1;
}
.confirm__x:hover { background: rgba(28, 24, 20, 0.12); }
.confirm__card { position: relative; }
.confirm__sub { color: var(--ink-soft); font-size: 0.98rem; margin: -8px 0 16px; }
.nof { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.nof input {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px; font: inherit; font-weight: 400;
  border: 1.6px solid rgba(28, 24, 20, 0.15); border-radius: 12px;
  background: var(--cream);
}
.nof input:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217, 108, 44, 0.18); }
.nof__total { font-weight: 700; font-size: 1.05rem; margin: 4px 0 14px; }
.nof__done { text-align: center; padding: 10px 0; }
.nof__check {
  width: 60px; height: 60px; margin: 0 auto 14px;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  border-radius: 50%; font-size: 1.8rem; font-weight: 700;
}
.nof__done h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin-bottom: 8px; }
.nof__done p { color: var(--ink-soft); margin-bottom: 18px; }

/* ferie / luk-banner på hjemmesiden */
.closurebanner {
  background: linear-gradient(180deg, #FBE9D8, #F7DFC8);
  border-bottom: 1px solid rgba(217, 108, 44, 0.25);
}
.closurebanner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.closurebanner__icon { font-size: 1.9rem; line-height: 1; }
.closurebanner__text { flex: 1 1 300px; }
.closurebanner__text strong { display: block; font-size: 1.05rem; color: var(--ink); }
.closurebanner__text span { font-size: 0.92rem; color: var(--ink-soft); }
.closurebanner__cta { display: flex; gap: 10px; flex-wrap: wrap; }
/* under ferie skjules de "bestil"-knapper, der ellers inviterer til bestilling */
.site-closed .mobilecta,
.site-closed .nav__cta { display: none !important; }
@media (max-width: 760px) {
  .news--big { flex-direction: column; align-items: stretch; }
  .news--big .news__media { flex: 0 0 auto; }
  .news__body { padding: 20px 20px 24px; }
}

/* ---------- logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}
.logo__hat { width: 34px; height: 34px; margin-top: -12px; }
.logo__word {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  position: relative;
  line-height: 1;
}
.logo__dots {
  position: absolute;
  left: 42%;
  right: -4px;
  bottom: -7px;
  height: 4px;
  background-image: radial-gradient(circle, currentColor 1.7px, transparent 1.9px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
}

/* ---------- navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  color: #fff;
}
.nav.is-solid {
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  width: min(1240px, 94vw);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav__links a:not(.btn) {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding: 6px 0;
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.3s ease;
}
.nav__links a:not(.btn):hover::after { right: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 26px; height: 2.6px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  /* mørk fallback mens videoen loader */
  background: radial-gradient(1200px 700px at 50% 30%, #3A2E22, var(--dark));
}
.hero__media { position: absolute; inset: 0; }
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__media video.is-playing { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.14); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 12%, transparent 38%, rgba(15, 12, 9, 0.5) 100%),
    linear-gradient(180deg, rgba(15, 12, 9, 0.52) 0%, rgba(15, 12, 9, 0.18) 42%, rgba(15, 12, 9, 0.7) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
}
.hero__kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.hero__title em {
  font-style: italic;
  color: #F5B27E;
  position: relative;
  z-index: 1;
  padding: 0 0.06em;
}
/* håndtegnet streg, der vokser frem under "travl" til sidst i intro-animationen */
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.2em;
  background: linear-gradient(90deg, var(--accent), rgba(245, 178, 126, 0.85));
  border-radius: 999px;
  opacity: 0.4;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
}
.hero.is-ready .hero__title em::after {
  animation: underlineIn 0.7s 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; }
.hero__sub {
  margin: 26px auto 0;
  max-width: 560px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
}
.hero__cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* hero indgangs-animation */
[data-hero] { opacity: 0; }
.hero.is-ready [data-hero] {
  animation: heroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero.is-ready [data-hero="1"] { animation-delay: 0.15s; }
.hero.is-ready [data-hero="2"] { animation-delay: 0.3s; }
.hero.is-ready [data-hero="3"] { animation-delay: 0.42s; }
.hero.is-ready [data-hero="4"] { animation-delay: 0.6s; }
.hero.is-ready [data-hero="5"] { animation-delay: 0.75s; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll-dot {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: #fff;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 3;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  white-space: nowrap;
}
.marquee__track i { color: var(--accent); font-style: normal; }
/* animationer sættes på pause, når de er ude af syne (sparer CPU/batteri) */
.marquee.is-paused .marquee__track { animation-play-state: paused; }
.hero.is-offscreen video { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- kort ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 24, 20, 0.05);
}

/* ---------- dagens ret ---------- */
.today {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: linear-gradient(135deg, #fff 55%, #FFF7EE 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(28, 24, 20, 0.04), 0 28px 60px -24px rgba(184, 84, 23, 0.3);
  border: 1px solid rgba(217, 108, 44, 0.16);
}
.today__badge {
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 30px 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  text-align: center;
}
.steam { width: 56px; height: 36px; }
.steam__line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 3;
  stroke-linecap: round;
  animation: steam 2.6s ease-in-out infinite;
}
.steam__line--2 { animation-delay: 0.5s; }
.steam__line--3 { animation-delay: 1s; }
@keyframes steam {
  0%, 100% { opacity: 0.25; transform: translateY(2px); }
  50% { opacity: 1; transform: translateY(-2px); }
}
.today__body { padding: clamp(26px, 4vw, 42px); }
.today__dish {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
}
.today__desc { color: var(--ink-soft); margin-top: 10px; max-width: 560px; }
.today__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.today__price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 20px;
}
.today__price:empty { display: none; }
.today__stock {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  background: var(--cream-2);
  border-radius: 999px;
  padding: 7px 16px;
}
.today__stock:empty { display: none; }
.today__stock.is-low { background: var(--accent-soft); color: var(--accent-deep); }
.today__stock.is-soldout { background: #FBEAE7; color: #B3372B; }

/* pulserende "live"-prik, mens køkkenet er åbent */
.today__stock.is-live::before,
.field__hint.is-live::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3F7A3B;
  margin-right: 8px;
  vertical-align: middle;
  animation: livedot 1.4s ease-in-out infinite;
}
.today__stock.is-low.is-live::before { background: var(--accent-deep); }
@keyframes livedot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

/* ugeplan */
.weekplan { margin-top: 46px; }
.weekplan__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.weekplan__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.dayplan {
  background: #fff;
  border: 1px solid rgba(28, 24, 20, 0.07);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dayplan:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(217, 108, 44, 0.35); }
.dayplan--closed { opacity: 0.55; background: transparent; border-style: dashed; }
.dayplan__day {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.dayplan__date { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 8px; }
.dayplan__dish { font-weight: 600; line-height: 1.35; font-size: 0.98rem; }
.dayplan__desc {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dayplan__price { color: var(--ink-soft); font-size: 0.88rem; margin-top: 6px; }
.dayplan__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  padding: 3px 10px;
}
.dayplan__tag--soldout { background: #FBEAE7; color: #B3372B; }

/* ---------- formularer ---------- */
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field > span { font-weight: 600; font-size: 0.93rem; }
.field > span em { font-weight: 400; color: var(--ink-soft); font-style: normal; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: 13px;
  border: 1.6px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(217, 108, 44, 0.15);
}
.field__hint { color: var(--ink-soft); font-size: 0.85rem; min-height: 1.2em; }
.field__hint.is-ok { color: #3F7A3B; font-weight: 600; }
.field__hint.is-bad { color: #B3372B; font-weight: 600; }

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.segmented label { cursor: pointer; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 13px;
  border: 1.6px solid var(--line);
  background: var(--cream);
  font-weight: 600;
  transition: all 0.2s ease;
}
.segmented input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: scale(1.02);
}

/* ---------- kurv-opbygger ---------- */
.builder { display: grid; gap: 10px; margin-top: 4px; }
.builder__empty { color: var(--ink-soft); font-size: 0.95rem; padding: 10px 4px; }

.builder__dagens {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 26px -16px rgba(217, 108, 44, 0.5);
}
.builder__soldout {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B3372B;
  background: #FBEAE7;
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

.bcat {
  border: 1.6px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.bcat summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  background: var(--cream);
  transition: background 0.15s ease;
}
.bcat summary::-webkit-details-marker { display: none; }
.bcat summary:hover { background: var(--cream-2); }
.bcat__count {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 3px 12px;
}
.bcat__hint { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.bcat[open] .bcat__hint { visibility: hidden; }

.bitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px;
  border-top: 1px solid rgba(28, 24, 20, 0.06);
}
.bitem__info { display: grid; gap: 2px; min-width: 0; }
.bitem__info strong { font-size: 0.98rem; }
.bitem__info small { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.4; }
.bitem__info em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.92rem;
}

.stepper {
  display: flex;
  align-items: center;
  border: 1.6px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  flex: 0 0 auto;
}
.stepper button {
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-deep);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.12s ease;
}
.stepper button:hover:not(:disabled) { background: var(--accent-soft); }
.stepper button:disabled { opacity: 0.25; cursor: default; }
.stepper b { min-width: 26px; text-align: center; font-size: 1.02rem; }

.basketbar {
  margin-top: 12px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: basketIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes basketIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.basketbar strong { color: #F5B27E; }
.basketbar__total {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.form__submit { margin-top: 26px; width: 100%; }
.form__note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 14px;
}
.form__note--allergi { margin-top: 4px; opacity: 0.85; }
.form__error {
  margin-top: 18px;
  background: #FBEAE7;
  color: #B3372B;
  border: 1px solid rgba(179, 55, 43, 0.25);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* succes-kort */
.success { text-align: center; margin-top: 26px; }
.success h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.success p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 22px; }
.success__check { width: 84px; margin: 0 auto 18px; }
.success__check svg { width: 84px; height: 84px; }
.success__check circle {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: draw 0.7s ease forwards;
}
.success__check path {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw 0.5s ease 0.5s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- menukort ---------- */
.daytabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.daytab {
  border: 1.6px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.22s ease;
}
.daytab:hover { border-color: var(--accent); color: var(--accent-deep); }
.daytab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.daymenu { max-width: 760px; margin-inline: auto; }
.daymenu.is-switching { animation: menuFade 0.35s ease; }
@keyframes menuFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.daymenu__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1.6px dashed var(--line);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.daymenu__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.daymenu__date { color: var(--ink-soft); font-size: 0.92rem; }
.menuline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
}
.menuline + .menuline { border-top: 1px solid rgba(28, 24, 20, 0.06); }
.menuline__name { font-weight: 600; }
.menuline__badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  padding: 3px 9px;
  margin-left: 8px;
  vertical-align: middle;
}
/* bekræft bestilling – kvittering inden afsendelse */
.confirm {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(28, 24, 20, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: confirmFade 0.25s ease;
}
@keyframes confirmFade { from { opacity: 0; } }
.confirm__card {
  width: min(480px, 100%);
  max-height: min(86vh, 86svh);
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: clamp(24px, 5vw, 36px);
  box-shadow: 0 40px 90px -30px rgba(28, 24, 20, 0.55);
  animation: confirmUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes confirmUp {
  from { opacity: 0; transform: translateY(26px) scale(0.98); }
}
.confirm__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.confirm__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 4px 0 16px;
}
.confirm__lines {
  border: 1.6px dashed rgba(28, 24, 20, 0.15);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}
.confirm__line { display: flex; justify-content: space-between; gap: 14px; font-size: 0.98rem; }
.confirm__line b { color: var(--accent-deep); }
.confirm__line--total {
  border-top: 1.6px dashed rgba(28, 24, 20, 0.15);
  padding-top: 9px;
  font-weight: 700;
  font-family: var(--font-display);
}
.confirm__meta {
  display: grid;
  gap: 5px;
  margin: 16px 2px 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.confirm__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.confirm__btns .btn--accent { flex: 1; }

/* genbrugs-flueben + emballage-linje i bestillingen */
.reuse {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  background: #EDF6E9;
  border: 1.5px solid rgba(63, 122, 59, 0.3);
  border-radius: 14px;
  padding: 12px 15px;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.45;
}
.reuse input { width: 19px; height: 19px; margin-top: 2px; accent-color: #3F7A3B; flex-shrink: 0; }
.reuse strong { color: #2E5B2B; }
.reuse em { font-style: normal; color: var(--ink-soft); font-size: 0.85rem; }
.basketbar__pack { display: inline-block; color: var(--ink-soft); font-size: 0.9rem; margin-left: 6px; }
.basketbar__pack--free { color: #3F7A3B; font-weight: 600; }

.menuline__badge--out { background: #FBEAE7; color: #B3372B; }
.menuline__badge--few { background: #FFF3E4; color: var(--accent-deep); }

/* udsolgte varer: streget ud og kan ikke bestilles */
.menuline--soldout .menuline__name { color: var(--ink-soft); }
.menuline--soldout .menuline__name,
.menuline--soldout .menuline__price { text-decoration: line-through; text-decoration-color: rgba(179, 55, 43, 0.55); }
.menuline--soldout .menuline__desc { opacity: 0.6; }
.bitem--soldout { opacity: 0.68; }
.bitem--soldout .bitem__info strong { text-decoration: line-through; text-decoration-color: rgba(179, 55, 43, 0.55); color: var(--ink-soft); }
.bitem--soldout .menuline__badge { text-decoration: none; display: inline-block; }

.menuline__desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: 2px; }
.menuline__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-deep);
  white-space: nowrap;
}
.daymenu__empty { text-align: center; color: var(--ink-soft); padding: 24px 0; }

.menucats__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  margin: clamp(44px, 6vw, 70px) 0 10px;
}
.menucats__note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 26px;
}
.menucats__note:empty { margin-bottom: 16px; }
.menucat__badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 10px;
  vertical-align: middle;
}
.menucats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.menucat {
  padding: 26px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.menucat:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 2px rgba(28, 24, 20, 0.04), 0 30px 56px -24px rgba(28, 24, 20, 0.32);
  border-color: rgba(217, 108, 44, 0.22);
}
.menucat h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1.6px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.menucat__icon {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* sidste kategori i fuld bredde med varerne fordelt i spalter */
.menucat--wide { grid-column: 1 / -1; }
.menucat--wide .menucat__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  column-gap: 40px;
}
.menucat--wide .menuline + .menuline { border-top: 0; }
.menucat--wide .menuline { border-bottom: 1px solid rgba(28, 24, 20, 0.06); }

/* ---------- om spiis ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about__text .dotline { margin: 22px 0 26px; }
.about__text p { color: rgba(245, 239, 230, 0.78); margin-bottom: 16px; max-width: 480px; }
.about__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: #F5B27E !important;
}
.about__values { display: grid; gap: 16px; }
.value {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  background: var(--dark-2);
  border: 1px solid rgba(245, 239, 230, 0.08);
  border-radius: 18px;
  padding: 22px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.value:hover { transform: translateX(6px); border-color: rgba(245, 178, 126, 0.4); }
.value__icon { font-size: 1.9rem; grid-row: 1 / 3; }
.value h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; }
.value p { color: rgba(245, 239, 230, 0.65); font-size: 0.93rem; }

/* ---------- booking ---------- */
.booking__choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 30px;
}
.choice {
  text-align: left;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  display: grid;
  gap: 4px;
  box-shadow: 0 10px 30px -18px rgba(28, 24, 20, 0.3);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.choice:hover { transform: translateY(-3px); }
.choice.is-active {
  border-color: var(--accent);
  box-shadow: 0 16px 40px -18px rgba(217, 108, 44, 0.45);
}
.choice__icon { font-size: 1.7rem; }
.choice__title { font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.choice__desc { color: var(--ink-soft); font-size: 0.9rem; }

.booking__layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  align-items: start;
}
.contactcard h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.contactcard > p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; }
.contactcard__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 13px;
  background: var(--cream);
  border: 1.6px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contactcard__row:hover { border-color: var(--accent); transform: translateX(4px); }

/* ---------- åbningstider & kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.hourscard h3, .infocard h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 9px 0; border-bottom: 1px dashed rgba(28, 24, 20, 0.1); }
.hours td:last-child { text-align: right; font-weight: 600; }
.hours tr.is-today td { color: var(--accent-deep); font-weight: 700; }
.hours tr.is-closed td:last-child { color: var(--ink-soft); font-weight: 500; }
.hours__kitchen { margin-top: 14px; color: var(--ink-soft); font-size: 0.92rem; }
.hours__status { margin-top: 10px; font-weight: 600; }
.hours__status.is-open { color: #3F7A3B; }
.hours__status.is-soon { color: #B8860B; }
.hours__status.is-closed { color: #B3372B; }

.infocard__address { color: var(--ink-soft); margin-bottom: 18px; }
.infocard__contact { display: grid; gap: 8px; margin-top: 18px; }
.infocard__contact a { color: var(--ink); text-decoration: none; font-weight: 600; }
.infocard__contact a:hover { color: var(--accent-deep); }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer__brand p { color: rgba(250, 246, 240, 0.6); margin-top: 10px; font-size: 0.95rem; }
.footer__links { display: grid; gap: 8px; }
.footer__links a {
  color: rgba(250, 246, 240, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer__links a:hover { color: var(--accent); }
.footer__meta { text-align: right; font-size: 0.9rem; color: rgba(250, 246, 240, 0.6); }

/* smiley: Fødevarestyrelsens kontrol */
.smileybadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 9px 16px 9px 12px;
  background: rgba(250, 246, 240, 0.07);
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: 14px;
  text-align: left;
  color: rgba(250, 246, 240, 0.85);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.smileybadge:hover { background: rgba(250, 246, 240, 0.12); border-color: rgba(250, 246, 240, 0.3); }
.smileybadge__face { font-size: 1.6rem; line-height: 1; }
.smileybadge__text { font-size: 0.82rem; font-weight: 600; line-height: 1.35; }
.smileybadge__text em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__admin {
  display: inline-block;
  margin-top: 10px;
  color: rgba(250, 246, 240, 0.45);
  font-size: 0.85rem;
}
.footer__admin:hover { color: var(--accent); }

/* ---------- scroll-reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

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

/* ---------- responsivt ---------- */
@media (max-width: 900px) {
  .booking__layout, .contact, .about { grid-template-columns: 1fr; }
  .about__text { order: 0; }
  .footer__inner { grid-template-columns: 1fr; text-align: left; }
  .footer__meta { text-align: left; }
}

/* fast bestil-knap – kun på mobil */
.mobilecta { display: none; }

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(250, 246, 240, 0.97);
    backdrop-filter: blur(16px);
    color: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 6vw 26px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    box-shadow: 0 30px 40px -20px rgba(28, 24, 20, 0.25);
  }
  .nav__links a:not(.btn) { padding: 13px 4px; font-size: 1.05rem; border-bottom: 1px dashed var(--line); }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__cta { margin-top: 14px; text-align: center; }
  .nav__burger { display: flex; }

  .today { grid-template-columns: 1fr; }
  .today__badge { flex-direction: row; padding: 16px; gap: 12px; }
  .steam { width: 40px; height: 26px; }

  .form__grid { grid-template-columns: 1fr; }
  .booking__choice { grid-template-columns: 1fr; }

  /* ---------- mobil-optimering ---------- */
  body { padding-bottom: 84px; } /* plads til den faste bestil-knap */
  .section { padding: 60px 0; }

  /* kortere hero, så dagens ret er lige under folden */
  .hero { min-height: 88svh; }
  .hero__content { padding: 100px 18px 70px; }

  /* scroll-pillen er overflødig og klemt på mobil */
  .hero__scroll { display: none; }

  /* knapperne stables pænt i stedet for at klumpe */
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* fast bestil-knap i bunden */
  .mobilecta {
    position: fixed;
    left: 16px; right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 16px;
    min-height: 54px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 16px 36px -10px rgba(217, 108, 44, 0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .mobilecta:active { transform: scale(0.97); }
  .mobilecta.is-hidden {
    transform: translateY(96px);
    opacity: 0;
    pointer-events: none;
  }

  /* ugeplanen bliver et swipe-bånd */
  .weekplan__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0 -4vw;
    padding: 4px 4vw 16px;
    scrollbar-width: none;
  }
  .weekplan__grid::-webkit-scrollbar { display: none; }
  .dayplan {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }
  .dayplan:hover { transform: none; }

  /* ugedags-faner ruller vandret i stedet for at knække */
  .daytabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin: 0 -4vw 24px;
    padding: 2px 4vw 10px;
    scrollbar-width: none;
  }
  .daytabs::-webkit-scrollbar { display: none; }
  .daytab { flex: 0 0 auto; padding: 12px 22px; }

  /* touch-venlige felter og knapper */
  .btn { min-height: 48px; }
  .field input,
  .field select,
  .field textarea { padding: 15px 16px; font-size: 16px; }
  .segmented span { padding: 15px; }
  .contactcard__row { padding: 15px 16px; }
  .success { padding: 40px 22px; }
}
