/* ===========================================================
   Bistro Hellström — B-final
   Tokens från Claude Design handoff (B-final)
   =========================================================== */

:root {
  /* Tells the browser to use dark variants of native form widgets, scrollbars,
     date/time pickers etc. — fixes invisible date-picker indicator on dark bg. */
  color-scheme: dark;

  /* Color tokens */
  --bg: #1A1715;
  --bg-raised: #221E1B;
  --bg-ink: #0F0D0B;
  --fg: #F2EBDD;
  --fg-muted: #A89A85;
  --fg-dim: #B8AC97;
  --rule: rgba(242, 235, 221, 0.14);
  --saffron: #D4A04C;
  --saffron-soft: rgba(212, 160, 76, 0.16);
  --saffron-line: rgba(212, 160, 76, 0.28);

  /* Type families */
  --display: "Cormorant Garamond", "Tiempos Headline", Garamond, "Times New Roman", serif;
  --body: "EB Garamond", Garamond, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing */
  --container: 1280px;
  --pad-x: 20px;
  --section-pad: 40px 20px;

  /* Reduced motion default off */
}

@media (min-width: 900px) {
  :root {
    --pad-x: 80px;
    --section-pad: 120px 80px;
  }
}

/* ===========================================================
   Cross-document view transitions
   Chrome 126+ / Edge 126+ / Safari 18+. Firefox falls back to a
   hard cut. Gated on prefers-reduced-motion.
   =========================================================== */

@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 250ms;
    animation-timing-function: ease-out;
  }

  .site-header {
    view-transition-name: site-header;
  }
}

/* ===========================================================
   Reset
   =========================================================== */

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

html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--fg);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Atmospheric layers — subtle warm light at top of viewport + faint film grain.
   Both fixed, decorative-only, no animation, do not capture pointer events. */
body::before {
  content: none;
}
body::after {
  content: none;
}

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

a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

button {
  cursor: pointer;
  font: inherit;
  color: inherit;
}

::selection { background: var(--saffron); color: var(--bg-ink); }

/* ===========================================================
   Skip link & sr-only
   =========================================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--saffron);
  color: var(--bg-ink);
  padding: 12px 18px;
  z-index: 100;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================================
   Typography helpers
   =========================================================== */

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 8px;
  display: block;
}
@media (min-width: 900px) {
  .eyebrow { font-size: 11px; letter-spacing: 0.28em; margin-bottom: 16px; }
}

.eyebrow--dim { color: var(--fg-dim); letter-spacing: 0.22em; }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.0;
  margin: 0;
}

em { font-style: italic; color: var(--saffron); font-weight: 500; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; margin: 0; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 32em;
}
@media (min-width: 900px) { .lead { font-size: 18px; line-height: 1.55; } }

/* ===========================================================
   Layout
   =========================================================== */

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

section { border-bottom: 1px solid var(--rule); }
section:last-of-type { border-bottom: 0; }

/* Anchor target offset (sticky header + breathing room) */
:target,
[id="caspeco"],
[id="direkt"],
[id="formular"],
[id="tack"] { scroll-margin-top: 80px; }

.section { padding: var(--section-pad); }
@media (min-width: 900px) {
  .section--tight { padding: 88px 80px; }
  .section--split { padding: 96px 80px; }
}

.section--ink { background: var(--bg-ink); }
.section--raised { background: var(--bg-raised); }

.split {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
}

/* ===========================================================
   Header
   =========================================================== */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad-x);
}

.site-header__brand {
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg);
}

.site-nav { display: none; }
.site-header__right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-header__right > a:not(.site-header__cta) { display: none; }

.site-header__cta {
  display: inline-block;
  line-height: 1;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid var(--saffron);
  padding: 7px 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
/* !important forces dark text over the desktop-scoped .site-header__right a
   color rule which has higher static specificity than .site-header__cta:hover.
   Authorized by Welat after 3rd failed verification round. */
.site-header__cta:hover,
.site-header__cta:focus-visible {
  background-color: var(--saffron) !important;
  color: var(--bg) !important;
  border-color: var(--saffron) !important;
}
.site-header__cta:active {
  background-color: #c79238 !important;
  color: var(--bg) !important;
  transform: translateY(1px);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--fg);
  width: 40px; height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle__bars {
  display: block;
  width: 18px; height: 2px;
  background: var(--fg);
  position: relative;
}
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--fg);
}
.menu-toggle__bars::before { top: -6px; }
.menu-toggle__bars::after { top: 6px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--rule);
  padding: 8px var(--pad-x) 16px;
  background: var(--bg);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.mobile-nav li { border-bottom: 1px solid var(--rule); }
.mobile-nav li:last-child { border-bottom: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  transition: color 200ms ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a:active { color: var(--saffron); }
.mobile-nav a[aria-current="page"] { color: var(--saffron); }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 24px 80px;
  }
  .site-nav {
    display: flex;
    gap: 32px;
    align-items: baseline;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .site-nav a {
    color: var(--fg);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, color 200ms ease;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible { color: var(--saffron); border-bottom-color: var(--saffron); }
  .site-nav a[aria-current="page"] { color: var(--saffron); border-bottom-color: var(--saffron); }
  .site-header__brand { font-size: 26px; text-align: center; }
  .site-header__right {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    align-items: baseline;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .site-header__right > a:not(.site-header__cta) { display: inline-block; }
  /* Excludes the CTA so its border-bottom and padding shorthand aren't
     clobbered by the underline-pattern longhands meant for text-only links. */
  .site-header__right a:not(.site-header__cta) { color: var(--fg); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: border-color 200ms ease, color 200ms ease; }
  /* Excludes the saffron CTA so its dark hover text isn't overridden */
  .site-header__right a:not(.site-header__cta):hover,
  .site-header__right a:not(.site-header__cta):focus-visible { color: var(--saffron); border-bottom-color: var(--saffron); }
  .site-header__right a[aria-current="page"] { color: var(--saffron); border-bottom-color: var(--saffron); }
  .site-header__cta { font-size: 11px; letter-spacing: 0.18em; padding: 10px 20px; }
}

/* ===========================================================
   Hero
   =========================================================== */

.hero {
  background: var(--bg);
  padding: 24px var(--pad-x) 20px;
}
.hero__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.hero__meta-date {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0;
}
.hero__title em {
  color: var(--saffron);
  font-style: italic;
  font-weight: 600;
}
.hero__lead {
  font-family: var(--body);
  font-size: 15px;
  color: var(--fg-muted);
  margin: 14px 0 0;
  line-height: 1.5;
  max-width: 32em;
}
.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Hero fade-in on first paint. @starting-style is supported in Chromium 117+,
   Safari 17.5+, Firefox 129+. Older browsers see content immediately (no animation
   = graceful no-op). Wrapped in no-preference so reduced-motion users skip it. */
@media (prefers-reduced-motion: no-preference) {
  .hero__title {
    opacity: 1;
    transition: opacity 600ms ease-out;
  }
  .hero__meta,
  .hero__bottom {
    opacity: 1;
    transition: opacity 600ms ease-out 100ms;
  }

  @starting-style {
    .hero__title,
    .hero__meta,
    .hero__bottom {
      opacity: 0;
    }
  }
}

@media (min-width: 900px) {
  .hero { padding: 88px 80px 80px; }
  .hero__meta { margin-bottom: 36px; }
  .hero__meta-date { font-size: 10px; }
  .hero__title {
    font-size: clamp(82px, 13vw, 168px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    transform: scaleX(0.92);
    transform-origin: left center;
  }
  .hero__lead { font-size: 18px; line-height: 1.55; max-width: 520px; }
  .hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 56px;
    gap: 48px;
  }
  .hero__lead { margin: 0; }
  .hero__actions { margin-top: 0; gap: 14px; flex-wrap: nowrap; }
}

/* Hero variant — page heads (smaller, no scaleX) */
.page-hero {
  padding: 36px var(--pad-x) 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.page-hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0;
}
.page-hero__lead {
  font-family: var(--body);
  color: var(--fg-muted);
  font-size: 15px;
  margin: 12px 0 0;
  max-width: 36em;
}
@media (min-width: 900px) {
  .page-hero { padding: 88px 80px 64px; }
  .page-hero__title { font-size: clamp(64px, 7vw, 96px); }
  .page-hero__lead { font-size: 18px; }
}

/* ===========================================================
   Buttons
   =========================================================== */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 18px;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--fg);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 120ms ease;
  line-height: 1;
  white-space: nowrap;
}

/* Phone numbers should never break across lines (e.g. "040 — 12 34 56") */
a[href^="tel:"] { white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--saffron);
  color: var(--bg-ink);
  border-color: var(--saffron);
}
.btn--primary:hover,
.btn--primary:focus-visible { background: #c79238; border-color: #c79238; }
.btn--primary:active { background: #b58330; border-color: #b58330; }
.btn--ghost {
  border-color: var(--rule);
  color: var(--fg);
}
.btn--ghost:hover,
.btn--ghost:focus-visible { border-color: var(--saffron); color: var(--saffron); }
.btn--ghost:active { background: rgba(212, 160, 76, 0.10); border-color: var(--saffron); color: var(--saffron); }

@media (min-width: 900px) {
  .btn { font-size: 12px; letter-spacing: 0.18em; padding: 16px 32px; }
}

.text-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 4px;
  transition: color 200ms ease, transform 120ms ease;
}
.text-link:hover,
.text-link:focus-visible { color: var(--saffron); }
.text-link:active { color: var(--saffron); transform: translateY(1px); }

/* ===========================================================
   Veckomeny
   =========================================================== */

.veckomeny {
  padding: 24px var(--pad-x) 36px;
  border-top: 1px solid var(--rule);
}
.veckomeny__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.veckomeny__price-block-mobile { display: block; }
.veckomeny__price-block { display: none; }
.veckomeny__price {
  font-family: var(--display);
  font-size: 26px;
  color: var(--saffron);
  font-style: italic;
  line-height: 1;
}
.veckomeny__price-unit {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 8px;
  font-style: normal;
  vertical-align: middle;
}
.veckomeny__title {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  margin: 8px 0 22px;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.dish {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
}
.dish__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.dish__name {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.dish__meta {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dish__desc {
  font-family: var(--body);
  color: var(--fg-muted);
  font-size: 14px;
  margin: 6px 0 0;
  line-height: 1.5;
}
.veckomeny__foot {
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .veckomeny { padding: 120px 80px; border-top: 0; }
  .veckomeny__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .veckomeny__head { display: block; margin-bottom: 0; }
  .veckomeny__title { font-size: clamp(56px, 6vw, 80px); margin: 0 0 32px; line-height: 0.95; letter-spacing: -0.018em; }
  .veckomeny__price-block-mobile { display: none; }
  .veckomeny__price-block { display: block; margin-top: 32px; }
  .veckomeny__price { font-size: 64px; letter-spacing: -0.015em; }
  .veckomeny__price-unit { font-size: 14px; margin-left: 12px; }
  .veckomeny__price-note { margin-top: 14px; color: var(--fg-muted); font-family: var(--body); font-size: 15px; max-width: 280px; }
  .dish { padding: 32px 0; display: grid; grid-template-columns: 24px 1fr 60px; gap: 20px; align-items: baseline; }
  .dish__num {
    font-family: var(--display);
    font-size: 18px;
    color: var(--saffron);
    font-style: italic;
  }
  .dish__row { display: block; }
  .dish__row > .dish__meta { display: none; }
  .dish__name { font-size: 36px; }
  .dish__desc { font-size: 16px; margin-top: 8px; max-width: 480px; }
  .dish > .dish__meta { font-size: 10px; letter-spacing: 0.18em; text-align: right; color: var(--fg-dim); }
  .veckomeny__foot { display: none; }
  .veckomeny__bottom-rule { border-top: 1px solid var(--rule); }
}

/* Mobile-only: hide the desktop dish meta cell */
@media (max-width: 899px) {
  .dish > .dish__meta { display: none; }
}

.dish__num { display: none; }
@media (min-width: 900px) { .dish__num { display: block; } }

/* Menu groups (lunch klassiker, à la carte) */
.menu-group { padding: 40px var(--pad-x); border-top: 1px solid var(--rule); }
.menu-group__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.menu-group__list { list-style: none; padding: 0; margin: 0; }
.menu-group__item {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
}
.menu-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.menu-group__name { font-family: var(--display); font-size: 22px; font-weight: 500; }
.menu-group__price { font-family: var(--display); font-size: 20px; color: var(--saffron); font-style: italic; white-space: nowrap; }
.menu-group__desc { font-family: var(--body); color: var(--fg-muted); font-size: 14px; margin: 6px 0 0; line-height: 1.5; }
.menu-group__list > .menu-group__item:last-child { border-bottom: 1px solid var(--rule); }

@media (min-width: 900px) {
  .menu-group { padding: 96px 80px; }
  .menu-group__title { font-size: 56px; margin-bottom: 32px; }
  .menu-group__item { padding: 28px 0; }
  .menu-group__name { font-size: 32px; }
  .menu-group__price { font-size: 28px; }
  .menu-group__desc { font-size: 16px; max-width: 600px; }
}

/* ===========================================================
   Photo placeholder
   =========================================================== */

.photo-ph {
  margin: 0;
  width: 100%;
}
.photo-ph__frame {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,240,210,0.025) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212,160,76,0.04) 0, transparent 50%),
    linear-gradient(180deg, #2A231D 0%, #1F1A16 100%);
}
.photo-ph__frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  pointer-events: none;
}
.photo-ph__tag {
  position: relative;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 160, 76, 0.55);
  border: 1px solid rgba(212, 160, 76, 0.22);
  padding: 5px 10px;
}
.photo-ph__caption {
  margin-top: 12px;
}
.photo-ph__rule {
  width: 28px;
  height: 1px;
  background: var(--saffron);
  margin-bottom: 10px;
}
.photo-ph__text {
  font-family: var(--body);
  font-style: italic;
  font-size: 13px;
  color: rgba(242, 235, 221, 0.62);
  line-height: 1.5;
}
.photo-ph__text .pl { color: var(--saffron); font-style: italic; font-family: var(--body); }
.photo-ph__frame--photo { padding: 0; }
.photo-ph__frame--photo::before { display: none; }
.photo-ph__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Wine half-bottle image — full-width block with real presence */
.photo-ph--wine { width: 100%; }
.photo-ph--wine .photo-ph__frame { height: auto; aspect-ratio: 4 / 3; }

@media (min-width: 900px) {
  .photo-ph__frame { height: 520px; }
  .photo-ph--small .photo-ph__frame { height: 240px; }
  .photo-ph--inset { padding: 72px 160px 56px; }
}

.photo-section { padding: 0 var(--pad-x) 36px; }
@media (min-width: 900px) {
  .photo-section { padding: 72px 160px 56px; }
}

/* ===========================================================
   Fyra lägen
   =========================================================== */

.modes { padding: 40px var(--pad-x); background: var(--bg-ink); }
.modes__head { margin-bottom: 18px; }
.modes__title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.modes__list { display: grid; gap: 0; }
.mode {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: var(--fg);
}
.mode__num {
  font-family: var(--display);
  font-size: 16px;
  color: var(--saffron);
  font-style: italic;
  min-width: 22px;
  padding-top: 5px;
}
.mode__body { flex: 1; }
.mode__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.mode__name { font-family: var(--display); font-size: 26px; font-weight: 500; letter-spacing: -0.01em; }
.mode__price { font-family: var(--display); font-size: 18px; color: var(--saffron); font-style: italic; white-space: nowrap; }
.mode__hours {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}
.mode__desc { font-family: var(--body); color: var(--fg-muted); font-size: 14px; margin-top: 6px; line-height: 1.5; }

@media (min-width: 900px) {
  .modes { padding: 120px 80px; }
  .modes__head { text-align: center; margin-bottom: 80px; }
  .modes__eyebrow { letter-spacing: 0.32em; }
  .modes__title { font-size: clamp(56px, 6vw, 76px); line-height: 0.95; letter-spacing: -0.018em; }
  .modes__list { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); }
  .mode {
    display: block;
    padding: 56px;
    border-top: 0;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    transition: background-color 0.2s;
  }
  .mode:nth-child(2n) { border-right: 0; }
  .mode:nth-last-child(-n+2) { border-bottom: 0; }
  .mode:hover { background: rgba(212,160,76,0.04); }
  .mode__num { font-size: 22px; padding-top: 0; }
  .mode__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
  .mode__hours { margin-top: 0; font-size: 10px; letter-spacing: 0.18em; color: var(--fg-dim); }
  .mode__name { font-size: 56px; line-height: 1.0; }
  .mode__price { font-size: 28px; margin-top: 16px; display: block; }
  .mode__row { display: block; }
  .mode__desc { font-size: 16px; margin-top: 18px; line-height: 1.55; max-width: 440px; }
  .mode__more { margin-top: 24px; }
}

/* ===========================================================
   Take-away cards
   =========================================================== */

.takeaway-section { padding: 40px var(--pad-x); }
.takeaway-section__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.takeaway-cards {
  display: grid;
  gap: 12px;
}
.ta-card {
  display: block;
  padding: 18px;
  text-decoration: none;
  color: var(--fg);
  border: 1px solid var(--rule);
  background: var(--bg-raised);
  transition: border-color 0.2s, transform 0.2s;
}
.ta-card:hover { border-color: var(--saffron); }
.ta-card__logo {
  height: 28px;
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.ta-card__logo--wolt { color: #00C2E8; font-weight: 800; letter-spacing: -0.02em; }
.ta-card__logo--foodora { color: var(--fg); }
.ta-card__logo--foodora .dot { color: #D70F64; }
.ta-card__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-top: 14px;
}
.ta-card__desc {
  font-family: var(--body);
  font-size: 14px;
  color: var(--fg-muted);
  margin: 6px 0 12px;
  line-height: 1.5;
}
.ta-card__cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
  display: inline-block;
  padding-bottom: 4px;
}
.ta-card--direct {
  background: var(--saffron);
  color: var(--bg-ink);
  border-color: var(--saffron);
}
.ta-card--direct .ta-card__pre {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.ta-card--direct .ta-card__name { font-style: italic; font-weight: 600; font-size: 24px; margin-top: 8px; }
.ta-card--direct .ta-card__desc { color: rgba(15, 13, 11, 0.78); }
.ta-card--direct .ta-card__cta { font-weight: 700; border-bottom-color: var(--bg-ink); color: var(--bg-ink); }

@media (min-width: 900px) {
  .takeaway-section { padding: 96px 80px; }
  .takeaway-section__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .takeaway-section__title { font-size: 56px; line-height: 0.98; letter-spacing: -0.018em; }
  .takeaway-cards { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .ta-card { padding: 28px; }
  .ta-card__logo { height: 36px; }
  .ta-card__name { margin-top: 36px; }
  .ta-card--direct .ta-card__name { font-size: 26px; margin-top: 30px; }
  .ta-card__cta { margin-top: 24px; }
}

/* ===========================================================
   Gruppbokning / deposition
   =========================================================== */

.group-section { padding: 40px var(--pad-x); background: var(--bg-ink); }
.group-section__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.policy {
  border-top: 1px solid var(--rule);
  margin-top: 22px;
  padding-top: 18px;
}
.policy__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 12px;
}
.policy__line {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  color: var(--fg);
}
.policy__line + .policy__line { margin-top: 10px; }
.policy__amount { color: var(--saffron); font-style: italic; }

@media (min-width: 900px) {
  .group-section { padding: 96px 80px; }
  .group-section__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .group-section__title { font-size: 56px; line-height: 0.98; letter-spacing: -0.018em; }
  .policy { margin-top: 0; padding: 28px 0; border-top: 1px solid var(--rule); }
  .policy__label { font-size: 10px; }
  .policy__line { font-size: 30px; line-height: 1.25; }
  .policy__line + .policy__line { margin-top: 14px; }
  .policy__note {
    border-top: 1px solid var(--rule);
    padding-top: 28px;
    margin-top: 8px;
    font-family: var(--body);
    font-size: 15px;
    color: var(--fg-muted);
    line-height: 1.6;
    max-width: 580px;
  }
}

/* ===========================================================
   Caspeco widget mock
   =========================================================== */

.caspeco-section { padding: 40px var(--pad-x); }
.caspeco-section__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.caspeco-section__note { color: var(--fg-muted); font-size: 13px; margin: 8px 0 18px; font-family: var(--body); }
.caspeco-frame {
  border: 4px solid var(--rule);
  padding: 0;
  background: var(--bg-raised);
}
.caspeco {
  background: #fafafa;
  color: #1a1a1a;
  padding: 16px;
  font-family: var(--sans);
  font-size: 13px;
}
.caspeco__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 10px; color: #595959; }
.caspeco__head span:first-child { letter-spacing: 0.12em; text-transform: uppercase; }
.caspeco__cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.caspeco__dow { font-size: 11px; color: #595959; text-align: center; padding-bottom: 4px; font-weight: 600; }
.caspeco__day {
  aspect-ratio: 1;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  font-family: var(--sans);
}
.caspeco__day:hover { border-color: var(--saffron); }
.caspeco__day--avail { color: #1a1a1a; }
.caspeco__day--off {
  color: #595959;
  background: #f0f0f0;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.caspeco__day--sel {
  background: var(--saffron);
  color: var(--bg-ink);
  border-color: var(--saffron);
  font-weight: 600;
}
.caspeco__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.caspeco__cell { border: 1px solid #e2e2e2; padding: 8px 10px; font-size: 11px; color: #1a1a1a; background: #fff; }
.caspeco__submit {
  width: 100%;
  background: var(--saffron);
  color: var(--bg-ink);
  border: none;
  padding: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 200ms ease, transform 120ms ease;
}
.caspeco__submit:hover,
.caspeco__submit:focus-visible { background: #c79238; }
.caspeco__submit:active { background: #b58330; transform: translateY(1px); }

@media (min-width: 900px) {
  .caspeco-section { padding: 96px 80px; background: var(--bg-raised); }
}

/* Hugo + Caspeco split (desktop only differs) */
.hugo-caspeco { display: grid; gap: 0; }
.hugo-caspeco > * { padding: 40px var(--pad-x); }
.hugo-caspeco > * + * { border-top: 1px solid var(--rule); }
.hugo-caspeco__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.hugo-caspeco__lead { color: var(--fg-muted); margin: 12px 0 0; font-size: 15px; line-height: 1.55; max-width: 28em; }

@media (min-width: 900px) {
  .hugo-caspeco { grid-template-columns: 1fr 1fr; }
  .hugo-caspeco > * { padding: 96px 80px; }
  .hugo-caspeco > * + * { border-top: 0; border-left: 1px solid var(--rule); }
  .hugo-caspeco__caspeco { background: var(--bg-raised); }
  .hugo-caspeco__title { font-size: 56px; line-height: 0.98; letter-spacing: -0.018em; }
  .hugo-caspeco--wine .hugo-caspeco__title { font-size: 64px; }
  .hugo-caspeco__lead { font-size: 17px; max-width: 440px; margin-top: 24px; }
}

/* ===========================================================
   Hus-fakta
   =========================================================== */

.facts { padding: 40px var(--pad-x); }
.facts__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.facts__list { display: grid; }
.facts__row { padding: 14px 0; border-top: 1px solid var(--rule); }
.facts__row:last-child { border-bottom: 1px solid var(--rule); }
.facts__key {
  font-family: var(--body);
  font-style: italic;
  color: var(--fg-muted);
  font-size: 13px;
}
.facts__val { font-family: var(--display); font-size: 19px; font-weight: 500; margin-top: 2px; }

@media (min-width: 900px) {
  .facts { padding: 88px 80px; }
  .facts__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .facts__title { font-size: 48px; line-height: 0.98; letter-spacing: -0.018em; }
  .facts__intro { font-family: var(--body); font-size: 15px; color: var(--fg-muted); margin-top: 18px; line-height: 1.6; max-width: 380px; }
  .facts__row {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 16px 0;
    align-items: baseline;
  }
  .facts__key { font-size: 16px; }
  .facts__val { font-size: 22px; margin-top: 0; }
}

/* ===========================================================
   FAQ
   =========================================================== */

.faq { padding: 40px var(--pad-x); }
.faq__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.faq__list { list-style: none; padding: 0; margin: 0; }
.faq__item { border-top: 1px solid var(--rule); padding: 0; }
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 36px 18px 0;
  text-align: left;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  cursor: pointer;
  letter-spacing: -0.005em;
  line-height: 1.3;
  list-style: none;
  transition: color 200ms ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q:hover,
.faq__q:focus-visible { color: var(--saffron); }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 22px;
  color: var(--saffron);
  font-weight: 300;
  line-height: 1;
}
.faq details.is-open > .faq__q::after,
details[open] > .faq__q::after { content: "−"; }

/* Wrapper drives the height + opacity transition. JS sets inline max-height
   (px while animating, 'none' once open) and toggles .is-open on <details>.
   Gated on .js so no-JS users still see the answer when <details> is opened. */
.js .faq__answer-inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 350ms ease-out, opacity 250ms ease-out;
}
.js .faq details.is-open .faq__answer-inner { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .js .faq__answer-inner { transition: none; }
}

.faq__a {
  font-family: var(--body);
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 0 18px;
  margin: 0;
  max-width: 60ch;
}
.faq__q:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; }

@media (min-width: 900px) {
  .faq { padding: 96px 80px; }
  .faq__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .faq__title { font-size: 48px; line-height: 0.98; letter-spacing: -0.018em; }
  .faq__q { font-size: 24px; padding: 24px 48px 24px 0; }
  .faq__a { font-size: 16px; padding-bottom: 24px; }
}

/* ===========================================================
   Forms
   =========================================================== */

.form { display: grid; gap: 16px; }
.form__field { display: grid; gap: 6px; }
.form__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.form__input,
.form__textarea,
.form__select {
  background: var(--bg-raised);
  border: 1px solid var(--rule);
  color: var(--fg);
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 16px;
  border-radius: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form__textarea { min-height: 120px; resize: vertical; font-family: var(--body); }
.form__input:focus,
.form__textarea:focus,
.form__select:focus { border-color: var(--saffron); outline: none; }

/* Date/time/select inputs: 44px tap target, visible picker icon on dark bg */
.form__input[type="date"],
.form__input[type="time"],
.form__select { min-height: 44px; cursor: pointer; }
.form__input[type="date"]::-webkit-calendar-picker-indicator,
.form__input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.85);
  cursor: pointer;
  padding: 4px;
  margin-right: 0;
}
.form__input[type="date"]::-webkit-datetime-edit,
.form__input[type="time"]::-webkit-datetime-edit { color: var(--fg); }
.form__input[type="date"]::-webkit-datetime-edit-fields-wrapper { color: var(--fg); }
.form__input[type="date"]::-webkit-datetime-edit-text { color: var(--fg-muted); padding: 0 2px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 700px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__hint { font-family: var(--body); font-size: 13px; color: var(--fg-dim); }
.form__submit { justify-self: start; }

/* ===========================================================
   Bio & contact
   =========================================================== */

.bios { padding: 40px var(--pad-x); }
.bios__grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
.bio {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.bio__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}
.bio__body { padding: 18px 20px 22px; }
.bio__name { font-family: var(--display); font-size: 24px; font-weight: 500; margin: 0; letter-spacing: -0.01em; }
.bio__role { font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron); margin: 4px 0 12px; }
.bio__text { font-family: var(--body); color: var(--fg-muted); font-size: 15px; line-height: 1.6; margin: 0; }

@media (min-width: 620px) {
  .bios__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (min-width: 900px) {
  .bios { padding: 96px 80px; }
  .bios__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
}

.contact-info {
  padding: 40px var(--pad-x);
  background: var(--bg-ink);
}
.contact-info__inner { display: grid; gap: 32px; }
.contact-info__block dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}
.contact-info__block dd { margin: 0; font-family: var(--body); font-size: 16px; color: var(--fg); line-height: 1.6; }
.contact-info__block dd a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--saffron-line); }
.contact-info__block dd a:hover { color: var(--saffron); }

@media (min-width: 900px) {
  .contact-info { padding: 96px 80px; }
  .contact-info__inner { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 1px solid var(--rule);
  background: var(--bg-raised);
}

/* ===========================================================
   Wine list (à la carte)
   =========================================================== */

.wine-list { display: grid; gap: 0; margin-top: 24px; }
.wine {
  border-top: 1px solid var(--rule);
  padding: 16px 0;
}
.wine:last-child { border-bottom: 1px solid var(--rule); }
.wine__head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.wine__name { font-family: var(--display); font-size: 22px; font-weight: 500; }
.wine__price { font-family: var(--display); font-size: 20px; color: var(--saffron); font-style: italic; }
.wine__meta { font-family: var(--body); color: var(--fg-muted); font-size: 14px; margin-top: 4px; line-height: 1.5; }

/* ===========================================================
   Footer
   =========================================================== */

.site-footer {
  padding: 32px var(--pad-x);
  background: var(--bg);
  font-family: var(--body);
  font-size: 14px;
  border-top: 4px solid var(--saffron-line);
}
.site-footer__brand { font-family: var(--display); font-size: 22px; font-style: italic; color: var(--fg); margin-bottom: 14px; }
.site-footer__group + .site-footer__group { margin-top: 24px; }
.site-footer__title {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 14px;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { color: var(--fg-muted); margin-bottom: 4px; }
.site-footer__list a { color: var(--fg-muted); text-decoration: none; border-bottom: 1px solid transparent; transition: color 200ms ease, border-color 200ms ease; }
.site-footer__list a:hover,
.site-footer__list a:focus-visible { color: var(--saffron); border-bottom-color: var(--saffron); }
.site-footer__legal {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: var(--fg-dim);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.site-footer__legal a { color: var(--fg-dim); text-decoration: underline; text-decoration-color: var(--saffron-line); transition: color 200ms ease, text-decoration-color 200ms ease; }
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible { color: var(--saffron); text-decoration-color: var(--saffron); }

@media (min-width: 900px) {
  .site-footer { padding: 64px 80px 48px; }
  .site-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .site-footer__group + .site-footer__group { margin-top: 0; }
  .site-footer__brand { font-size: 32px; font-weight: 500; }
  .site-footer__lead { color: var(--fg-muted); font-size: 14px; margin-top: 14px; max-width: 320px; }
  .site-footer__legal { grid-column: 1 / -1; }
}

/* ===========================================================
   Page progress bar (paired with cross-document view transitions)
   =========================================================== */

#page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--saffron);
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: width 600ms cubic-bezier(0.1, 0.9, 0.2, 1), opacity 200ms ease-out;
}
#page-progress.is-loading {
  width: 90%;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  #page-progress { display: none; }
}

/* ===========================================================
   Cookie banner
   =========================================================== */

.cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--bg-ink);
  border: 1px solid var(--rule);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.cookie.is-visible { display: flex; }
.cookie__text {
  font-family: var(--body);
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.5;
}
.cookie__text a { color: var(--saffron); }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (min-width: 700px) {
  .cookie {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================================================
   Page-specific helpers
   =========================================================== */

.intro-grid {
  padding: 40px var(--pad-x);
  display: grid;
  gap: 24px;
}
.intro-grid__lead {
  font-family: var(--body);
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.intro-grid__lead em { color: var(--saffron); font-style: italic; }
@media (min-width: 900px) {
  .intro-grid { padding: 88px 80px; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .intro-grid__lead { font-size: 18px; }
}

.notice {
  border-left: 3px solid var(--saffron);
  background: var(--saffron-soft);
  padding: 18px 20px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
  margin: 24px 0;
}
.notice strong { font-family: var(--display); font-style: italic; color: var(--saffron); font-weight: 600; font-size: 18px; }

.legal {
  padding: 40px var(--pad-x);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  max-width: 760px;
}
.legal h2 { font-family: var(--display); font-size: 28px; font-weight: 500; margin: 32px 0 12px; letter-spacing: -0.01em; }
.legal h3 { font-family: var(--display); font-size: 20px; font-weight: 500; margin: 24px 0 8px; }
.legal p { color: var(--fg-muted); margin-bottom: 1em; }
.legal ul { color: var(--fg-muted); padding-left: 20px; }
.legal a { color: var(--saffron); }
@media (min-width: 900px) { .legal { padding: 88px 80px; } }

/* 404 */
.error-hero {
  padding: 80px var(--pad-x);
  text-align: left;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.error-hero__num {
  font-family: var(--display);
  font-size: clamp(140px, 24vw, 280px);
  line-height: 0.9;
  color: var(--saffron);
  font-style: italic;
  margin: 0;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.error-hero__title {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  margin: 12px 0;
  letter-spacing: -0.01em;
}
.error-hero__text { color: var(--fg-muted); font-size: 16px; max-width: 500px; }
.error-hero__actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

@media (min-width: 900px) {
  .error-hero { padding: 160px 80px; }
  .error-hero__title { font-size: 56px; }
}

/* ===========================================================
   Print
   =========================================================== */

@media print {
  .site-header, .cookie, .menu-toggle, .mobile-nav, .hero__actions, .modes a { display: none !important; }
  body { background: #fff; color: #000; }
  * { background: transparent !important; color: #000 !important; border-color: #ccc !important; }
}
