/* ═══════════════════════════════════════════════════
   BURGER MANSION — Lycka i smaken
   Oswald · Inter · Mansion Gold + Charcoal
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

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

:root {
  /* ── Brand palette v2 (black + gold) ──────────────────
     Premium craft burger expression — black + gold for
     an elevated, luxurious feel. */
  --gold:        #d9ab2c;     /* primary accent — warm gold */
  --gold-bright: #D4B06A;     /* slightly punchier for hover */
  --gold-hover:  #A8884A;
  --gold-soft:   rgba(200, 164, 92, 0.12);

  --navy:        #111111;     /* primary dark — deep black */
  --navy-deep:   #0a0a0a;     /* deeper variant for depth / hovers */
  --navy-soft:   rgba(17, 17, 17, 0.10);

  --charcoal:    #3C3C3C;
  --black:       #1a1a1a;
  --black-deep:  #111111;
  --white:       #ffffff;
  --off-white:   #fafafa;
  --cream:       #f7f1e3;     /* reverted to spec value — toned down warmth */
  --cream-dk:    #ecdcb1;
  --line:        rgba(60, 60, 60, 0.12);
  --line-dark:   rgba(255, 255, 255, 0.10);
  --text:        #2a2a2a;
  --text-soft:   rgba(42, 42, 42, 0.62);
  --text-dim:    rgba(42, 42, 42, 0.45);

  /* ── Editorial accent red ───────────────────────────
     For italic emphasis words (.h-mix em) and small
     accent moments (quote-band heart icon). The original
     burgermansion.se used a tomato red on emphasis; we
     keep that pop here while the rest of the brand sits
     on navy + gold. Saturated but not playful — reads as
     "burger red", not "diner red". */
  --accent-red:  #D7372D;

  /* ── Legacy aliases (DEPRECATED) ────────────────────
     Class names like .btn--tomato, .cta-block--tomato,
     .sticker--lime, .marquee--lime exist throughout the
     HTML. Rather than rename them in a single risky sweep,
     the legacy tokens alias the new brand palette:
     tomato → navy, lime → gold. A future cleanup pass
     should rename the classes too. */
  --tomato:      #111111;
  --tomato-dk:   #0a0a0a;
  --tomato-soft: rgba(17, 17, 17, 0.10);
  --lime:        #d9ab2c;
  --lime-dk:     #A8884A;

  --serif:  'Oswald', 'Bebas Neue', system-ui, sans-serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:  82px;
  --max:    1240px;
  --g:      clamp(1.25rem, 4vw, 2.75rem);
  --pad:    clamp(4.5rem, 10vw, 8.5rem);
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--charcoal); }

/* ── Type ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.5rem, 7vw, 4.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.85rem); font-weight: 600; letter-spacing: 0.005em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; }

p { font-size: 1rem; line-height: 1.7; color: var(--text-soft); }
p.lead { font-size: 1.075rem; line-height: 1.75; color: var(--text); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 22px; height: 1px; background: var(--gold);
  vertical-align: middle; margin-right: 0.7rem;
}

/* ── Layout ───────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--g); }
.section { padding: var(--pad) 0; }
.section--cream { background: var(--cream); }
.section--off { background: var(--off-white); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--gold { background: var(--gold); color: var(--charcoal); }
.section--gold p { color: rgba(60,60,60,0.78); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head .eyebrow { color: var(--gold); }
.section-head h2 { color: var(--charcoal); margin-bottom: 0.85rem; }
.section--dark .section-head h2 { color: var(--white); }
.section-head p { color: var(--text-soft); }
.section--dark .section-head p { color: rgba(255,255,255,0.72); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 1.85rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--gold      { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); box-shadow: 0 14px 32px -12px rgba(221,170,45,0.55); }
.btn--outline   { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: var(--charcoal); }
.btn--dark      { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn--dark:hover { background: var(--black); border-color: var(--black); }
.btn--ghost     { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn--sm        { padding: 0.7rem 1.3rem; font-size: 0.7rem; }

.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.97);  /* black with alpha */
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  box-shadow: 0 6px 30px -10px rgba(0,0,0,0.5);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--g);
  height: 100%;
  /* Three-zone grid: logo (anchor left) · centered link group · CTA (anchor right).
     The burger button is a 4th cell that collapses on desktop and shows on mobile. */
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}
.nav__inner > .nav__logo  { justify-self: start; }
.nav__inner > .nav__links { justify-self: center; }
.nav__inner > .nav__cta   { justify-self: end; }
.nav__logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav__logo img { height: 60px; width: auto; }
.nav__logo .nav__logo-mark {
  font-family: var(--serif); font-weight: 700; font-size: 1.25rem;
  color: var(--gold); letter-spacing: 0.04em; line-height: 1; text-transform: uppercase;
}

.nav__links {
  display: flex; gap: 1.85rem; align-items: center;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.nav__links a {
  position: relative; padding: 0.4rem 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none; flex-direction: column; gap: 6px; padding: 6px; background: transparent; border: none;
}
.nav__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); transition: all .3s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mob-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(17,17,17,0.65); backdrop-filter: blur(2px);
  z-index: 200; opacity: 0; transition: opacity .3s var(--ease);
}
.mob-backdrop.open { display: block; opacity: 1; }
.mob-menu {
  position: fixed; top: 0; right: -100%; width: 86%; max-width: 360px; height: 100%;
  background: var(--navy); color: var(--white); z-index: 201;
  display: flex; flex-direction: column;
  transition: right .4s var(--ease-out);
  box-shadow: -10px 0 40px rgba(0,0,0,0.45);
}
.mob-menu.open { right: 0; }
.mob-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mob-menu__top img { height: 38px; width: auto; }
.mob-menu__close {
  font-size: 1.5rem; line-height: 1;
  color: var(--gold); padding: 0.3rem 0.5rem;
}
.mob-menu__nav {
  flex: 1; display: flex; flex-direction: column;
  padding: 1.5rem 1.5rem;
}
.mob-menu__nav a {
  display: block;
  padding: 1.05rem 0;
  font-family: var(--serif); font-size: 1.45rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mob-menu__nav a.is-active { color: var(--gold); }
.mob-menu__nav a.order {
  margin-top: 1.5rem;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.16em;
  padding: 1rem 1.2rem;
  text-align: center; border: none;
}
.mob-menu__foot {
  padding: 1.4rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; gap: 0.45rem;
}
.mob-menu__foot a { color: rgba(255,255,255,0.7); }
.mob-menu__foot a:hover { color: var(--gold); }

/* ── Main offset ──────────────────────────────────── */
main { padding-top: 0; }

/* ── Hero — light cream bg, big charcoal type, burger as visual partner ── */
.hero {
  position: relative;
  background: var(--cream);
  color: var(--charcoal);
  padding: calc(var(--nav-h) + clamp(1.5rem, 4vw, 3rem)) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
  display: flex; align-items: center;
  min-height: clamp(640px, 92vh, 900px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(17,17,17,0.07) 0, transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(218,172,44,0.10) 0, transparent 35%);
  pointer-events: none;
}
.hero__bg, .hero__overlay { display: none; }

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--g);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  text-align: left;
}
.hero__text { max-width: 600px; }

.hero__estd { display: none; }

.hero__welcome {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 1.3rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border-radius: 999px;
  border: 1.5px solid var(--charcoal);
  box-shadow: 2px 2px 0 var(--charcoal);
}

.hero__title {
  font-size: clamp(3.4rem, 13vw, 8.5rem);
  color: var(--charcoal);
  letter-spacing: -0.025em;
  line-height: 0.92;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--serif);
  animation: estdGlow 0s;
}
.hero__title em {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--tomato);
  letter-spacing: -0.025em;
  font-size: 0.96em;
  margin-top: -0.05em;
}

.hero__tagline {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
  position: relative;
  padding-left: 2.5rem;
}
.hero__tagline::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 32px; height: 2px; background: var(--gold);
  transform: translateY(-50%);
}
.hero__tagline::after { display: none; }

.hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(60,60,60,0.7);
  margin: 0 0 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  justify-content: flex-start;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
}
.hero__visual::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.94);
  box-shadow:
    0 30px 60px -20px rgba(221,170,45,0.5),
    inset 0 4px 0 rgba(255,255,255,0.25);
}
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  border: 2px dashed var(--charcoal);
  border-radius: 50%;
  transform: scale(1.02) rotate(0);
  animation: ringSpin 32s linear infinite;
}
@keyframes ringSpin { from { transform: scale(1.02) rotate(0); } to { transform: scale(1.02) rotate(360deg); } }
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.25));
}

/* Hero floating sticker on burger */
.hero__visual-sticker {
  position: absolute;
  top: 8%; right: -4%;
  z-index: 2;
}

/* Hide old elements */
.hero__scroll { display: none; }
.page-hero__cue { display: none; }

/* Compact page hero (sub-pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(4.5rem, 9vw, 7rem)) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--charcoal); color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold); opacity: 0.5;
}
.page-hero__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--g); position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  color: var(--white); margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Order locations grid (Beställ för avhämtning) ─── */
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.order-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.order-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -30px rgba(60,60,60,0.35);
}
.order-card__img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--cream);
}
.order-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.order-card:hover .order-card__img img { transform: scale(1.05); }
.order-card__body { padding: 1.5rem 1.5rem 1.75rem; }
.order-card__city {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.55rem;
}
.order-card__title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 0.85rem; line-height: 1.1;
}
.order-card__cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal); padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}
.order-card__cta .arrow { transition: transform .25s var(--ease); color: var(--gold); }
.order-card:hover .order-card__cta .arrow { transform: translateX(4px); }

/* ── Pillars (3 värdepelare) ──────────────────────── */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.pillar {
  text-align: left;
  padding: 2.25rem 0;
  border-top: 2px solid var(--gold);
}
.pillar__num {
  font-family: var(--serif); font-size: 0.85rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.pillar h3 {
  color: var(--charcoal); margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
}
.pillar p { color: var(--text-soft); font-size: 0.97rem; }

/* ── Destinations (4 platser teaser-grid) ──────────── */
.destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  color: var(--white);
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .8s var(--ease);
}
.dest-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,17,0.05) 0%, rgba(17,17,17,0.85) 100%);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card__body { padding: 1.6rem 1.4rem; width: 100%; }
.dest-card__num {
  font-family: var(--serif); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--gold);
  margin-bottom: 0.5rem;
}
.dest-card__city {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}
.dest-card__sub {
  font-family: var(--sans); font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}

/* ── Stories — 4 alternerande teman (Whole/Upplevelse/Hantverk/Du först) ── */
.stories { display: flex; flex-direction: column; gap: clamp(3.5rem, 6vw, 5.5rem); }
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.story:nth-child(even) .story__img { order: 2; }
.story__img {
  aspect-ratio: 5/4; overflow: hidden;
  position: relative;
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__img::after {
  content: attr(data-num);
  position: absolute; right: 1.2rem; bottom: 1rem;
  font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700; color: var(--gold);
  letter-spacing: -0.02em; line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.story__text { max-width: 480px; }
.story__text .eyebrow { color: var(--gold); }
.story__text h3 {
  color: var(--charcoal);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1.1rem;
}
.story__text p { font-size: 1.025rem; color: var(--text-soft); }

/* ── CTA-block (gold) ─────────────────────────────── */
.cta-block {
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) var(--g);
  background: var(--gold);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.cta-block::before, .cta-block::after {
  content: ""; position: absolute;
  width: 240px; height: 240px;
  border: 2px solid rgba(60,60,60,0.18);
  border-radius: 50%;
  z-index: 0;
}
.cta-block::before { top: -120px; left: -120px; }
.cta-block::after  { bottom: -140px; right: -140px; width: 320px; height: 320px; }
.cta-block__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-block .eyebrow { color: var(--charcoal); }
.cta-block .eyebrow::before { background: var(--charcoal); }
.cta-block h2 { color: var(--charcoal); margin-bottom: 1rem; font-size: clamp(2rem, 4.5vw, 3.25rem); }
.cta-block p { color: rgba(60,60,60,0.78); margin-bottom: 2.2rem; font-size: 1.05rem; }

/* ── Socials row ──────────────────────────────────── */
.socials {
  display: flex; justify-content: center; gap: 1rem; align-items: center;
  flex-wrap: wrap;
}
.socials a {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  color: var(--charcoal);
  transition: all .25s var(--ease);
}
.socials a:hover {
  background: var(--gold); border-color: var(--gold); color: var(--charcoal);
  transform: translateY(-3px);
}
.socials svg { width: 20px; height: 20px; }
.section--dark .socials a { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.78); }
.section--dark .socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* ── About-page intro ─────────────────────────────── */
.about-quote {
  max-width: 820px; margin: 0 auto;
  text-align: center;
  padding: 0 var(--g);
}
.about-quote .quote-mark {
  display: block;
  font-family: var(--serif); font-size: 4rem;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.5rem;
}
.about-quote p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic; line-height: 1.6;
  color: var(--charcoal);
}
.about-quote cite {
  display: block; margin-top: 1.5rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-dim); font-style: normal;
}

.about-split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.about-split__img { aspect-ratio: 4/5; overflow: hidden; }
.about-split__img img { width: 100%; height: 100%; object-fit: cover; }
.about-split__text h2 { color: var(--charcoal); margin-bottom: 1.4rem; }
.about-split__text p + p { margin-top: 1rem; }

.promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.promise-card {
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.promise-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.promise-card h3 {
  color: var(--gold); font-size: 1.2rem; margin-bottom: 0.75rem;
}
.promise-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ── Restauranger-page (full lokationskort) ──────── */
.location-list { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4rem); }
.location-card-full {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  background: var(--white);
}
.location-card-full:nth-child(even) .location-card-full__img { order: 2; }
.location-card-full__img {
  aspect-ratio: 5/4; overflow: hidden;
  position: relative;
}
.location-card-full__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.location-card-full:hover .location-card-full__img img { transform: scale(1.04); }
.location-card-full__text { padding: 0 0.5rem; }
.location-card-full__city {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.65rem;
}
.location-card-full__title {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 1.1rem; line-height: 1.05;
}
.location-card-full address {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.95rem; color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.location-card-full__desc {
  font-style: italic; color: var(--text);
  margin-bottom: 1.8rem;
  padding-left: 1rem; border-left: 2px solid var(--gold);
  font-size: 1.025rem; line-height: 1.65;
}
.location-card-full__actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }

/* ── Meny-page ────────────────────────────────────── */
.menu-cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.menu-cat {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--gold);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.menu-cat:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.18); }
.menu-cat h4 {
  font-family: var(--serif); font-size: 1.15rem; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.menu-cat p { font-size: 0.9rem; color: var(--text-soft); }

.menu-list { max-width: 820px; margin: 0 auto; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 0.25rem; line-height: 1.15;
}
.menu-item__desc { color: var(--text-soft); font-size: 0.93rem; }
.menu-item__price {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--gold); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.menu-note {
  text-align: center; margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 0.92rem; color: var(--text-soft); font-style: italic;
}

/* ── Event & catering-page ────────────────────────── */
.event-cases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.event-case {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.event-case:hover { transform: translateY(-4px); border-color: var(--gold); }
.event-case__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-soft); color: var(--gold);
  border-radius: 50%; margin-bottom: 1.1rem;
}
.event-case__icon svg { width: 26px; height: 26px; }
.event-case h4 {
  font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.event-case p { font-size: 0.93rem; color: var(--text-soft); }

.event-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 980px; margin: 0 auto;
}
.event-feature h4 { color: var(--gold); font-size: 1.15rem; margin-bottom: 0.55rem; }
.event-feature p { font-size: 0.95rem; color: rgba(255,255,255,0.72); }

/* ── Forms ────────────────────────────────────────── */
.form-card {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3rem);
}
.section--cream .form-card { background: var(--white); }
.section--dark .form-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 0.45rem;
}
.section--dark .form-group label { color: rgba(255,255,255,0.55); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans); font-size: 0.95rem;
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--line);
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.section--dark .form-group input,
.section--dark .form-group select,
.section--dark .form-group textarea {
  background: rgba(255,255,255,0.06); color: var(--white);
  border-color: rgba(255,255,255,0.12);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.section--dark .form-group input:focus,
.section--dark .form-group select:focus,
.section--dark .form-group textarea:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem; color: var(--text-soft);
  cursor: pointer;
}
.section--dark .form-checkbox { color: rgba(255,255,255,0.7); }
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.form-checkbox a { color: var(--gold); border-bottom: 1px solid currentColor; }
.form-actions {
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.form-status {
  font-size: 0.82rem; color: var(--text-soft);
}
.form-submit {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  padding: 0.95rem 1.85rem;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.form-submit:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(221,170,45,0.55); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Contact info card ────────────────────────────── */
.contact-card {
  background: var(--charcoal); color: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
}
.contact-card h3 { color: var(--gold); margin-bottom: 1.4rem; font-size: 1.4rem; }
.contact-card__list { display: flex; flex-direction: column; gap: 1rem; font-size: 1rem; }
.contact-card__row {
  display: flex; align-items: flex-start; gap: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.contact-card__row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.contact-card__row a { color: rgba(255,255,255,0.85); border-bottom: 1px solid transparent; transition: border-color .2s var(--ease); }
.contact-card__row a:hover { border-color: var(--gold); }
.contact-card__map { aspect-ratio: 4/3; overflow: hidden; background: var(--black); }
.contact-card__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.4) contrast(1.1); }

.locations-mini {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.locations-mini__card {
  padding: 1.4rem 1.25rem;
  background: var(--white); border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
}
.locations-mini__city {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.locations-mini__addr { font-size: 0.92rem; color: var(--text-soft); line-height: 1.55; }

/* ── Credits-page (bildrättigheter) ───────────────── */
.credits-table {
  width: 100%; max-width: 720px; margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.credits-table th,
.credits-table td {
  text-align: left; padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.credits-table th {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); background: var(--cream);
}
.credits-table td a { color: var(--charcoal); border-bottom: 1px solid var(--gold); }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 1.75rem;
  border-top: 4px solid var(--black);
}
.footer__grid {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--g);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand img {
  height: 120px; width: auto;
  margin-bottom: 1.2rem;
}
.footer__tag {
  font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.65;
  max-width: 280px;
}
.footer__heading {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a, .footer__col p {
  font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.55;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: all .25s var(--ease);
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer__social svg { width: 16px; height: 16px; }
.footer__bottom {
  max-width: var(--max); margin: 1.75rem auto 0; padding: 0 var(--g);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.footer__bottom-links { display: flex; gap: 1.4rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.5); transition: color .2s var(--ease); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ── Cookie banner ────────────────────────────────── */
.cookie {
  position: fixed; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: 90;
  background: var(--charcoal); color: var(--white);
  padding: 1.1rem 1.5rem;
  display: flex; gap: 1.25rem; align-items: center; justify-content: space-between;
  border-left: 3px solid var(--gold);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
  transform: translateY(150%);
  transition: transform .5s var(--ease-out);
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.cookie.show { transform: translateY(0); }
.cookie p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin: 0; }
.cookie p a { color: var(--gold); border-bottom: 1px solid currentColor; }
.cookie button {
  background: var(--gold); color: var(--charcoal);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.7rem 1.4rem; border: none; cursor: pointer;
  transition: background .2s var(--ease);
  flex-shrink: 0;
}
.cookie button:hover { background: var(--gold-hover); }

/* ── Reveal animation ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--left  { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--scale { transform: scale(.94); }
.reveal--left.in, .reveal--right.in, .reveal--scale.in { transform: none; }

/* ── Split text hero animation ────────────────────── */
/* Default: synligt — om JS inte kör är text alltid läsbar */
.split-word { display: inline-block; }

/* När JS har splittat (sätter data-split-done="1") aktiveras animationen */
[data-split-done] .split-word {
  opacity: 0;
  transform: translateY(0.6em) rotateX(-30deg);
  transform-origin: bottom center;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}
[data-split-done].in .split-word { opacity: 1; transform: none; }

/* ── Page-hero parallax + decorative gold lines ───── */
.page-hero { isolation: isolate; }
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
  opacity: 0.18;
}
.page-hero__bg::before, .page-hero__bg::after {
  content: ""; position: absolute;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.page-hero__bg::before {
  top: -30vw; left: -20vw;
  animation: floatSlow 14s ease-in-out infinite;
}
.page-hero__bg::after {
  bottom: -34vw; right: -18vw;
  animation: floatSlow 16s ease-in-out infinite reverse;
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, 30px) scale(1.04); }
}

/* ── Magnetic CTA ─────────────────────────────────── */
.btn-magnet {
  display: inline-block;
  position: relative;
  transition: transform .35s var(--ease-out);
  will-change: transform;
}

/* ── Animated SVG draw-in icons ───────────────────── */
.icon-draw {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}
.icon-draw path,
.icon-draw circle,
.icon-draw line,
.icon-draw rect,
.icon-draw polyline {
  fill: none;
  stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.6s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.icon-draw.in path,
.icon-draw.in circle,
.icon-draw.in line,
.icon-draw.in rect,
.icon-draw.in polyline { stroke-dashoffset: 0; }

/* ── Contact card upgraded rows ───────────────────── */
.contact-card__row { position: relative; padding-left: 0; }
.contact-card__row a { position: relative; transition: color .25s var(--ease); }
.contact-card__row a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.contact-card__row a:hover { color: var(--gold); }
.contact-card__row a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── Map section ──────────────────────────────────── */
.map-section { position: relative; }
.map-chips {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.map-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.65rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.map-chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); transition: background .25s var(--ease), transform .35s var(--ease-out);
}
.map-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.map-chip.is-active {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}
.map-chip.is-active::before { background: var(--gold); transform: scale(1.4); box-shadow: 0 0 0 4px rgba(221,170,45,0.18); }

.map-canvas {
  position: relative;
  height: clamp(420px, 55vh, 620px);
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  z-index: 1;
}
.map-canvas .leaflet-container {
  font-family: var(--sans);
  background: #efe7d2;
}
.map-canvas .leaflet-tile-pane {
  filter: grayscale(0.55) contrast(1.05) sepia(0.18) saturate(0.85);
}
.map-canvas .leaflet-control-attribution {
  background: rgba(255,255,255,0.85);
  font-size: 10px;
  color: var(--text-soft);
}
.map-canvas .leaflet-control-zoom a {
  background: var(--charcoal);
  color: var(--gold);
  border: 1px solid var(--charcoal);
  width: 32px; height: 32px;
  line-height: 30px;
  font-weight: 700;
  transition: background .2s var(--ease);
}
.map-canvas .leaflet-control-zoom a:hover { background: var(--black); }
.map-canvas .leaflet-control-zoom a:first-child { border-bottom-color: rgba(255,255,255,0.1); }

/* Custom marker */
.bm-marker {
  width: 36px; height: 48px;
  position: relative;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
  cursor: pointer;
  animation: markerDrop .7s var(--ease-out) backwards;
}
.bm-marker::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 32px; height: 32px;
  background: var(--gold);
  border: 2px solid var(--charcoal);
  transform: translateX(-50%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.bm-marker::after {
  content: attr(data-label);
  position: absolute; left: 50%; top: 6px;
  transform: translateX(-50%);
  font-family: var(--serif); font-size: 12px; font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 2;
}
.bm-marker:hover::before { transform: translateX(-50%) rotate(-45deg) scale(1.12); }
.bm-marker.is-active::before {
  background: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(221,170,45,0.25);
}
.bm-marker.is-active::after { color: var(--gold); }
@keyframes markerDrop {
  0%   { opacity: 0; transform: translateY(-30px) scale(0.6); }
  60%  { opacity: 1; transform: translateY(4px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Leaflet popup styling */
.map-canvas .leaflet-popup-content-wrapper {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 0;
  padding: 0;
  border-left: 3px solid var(--gold);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
}
.map-canvas .leaflet-popup-tip { background: var(--charcoal); }
.map-canvas .leaflet-popup-content { margin: 1.1rem 1.4rem; line-height: 1.55; }
.bm-popup__city {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.35rem;
}
.bm-popup__title {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--white); margin-bottom: 0.45rem;
  line-height: 1.1;
}
.bm-popup__addr { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-bottom: 0.85rem; }
.bm-popup__cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold) !important;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none !important;
}
.map-canvas .leaflet-popup-close-button {
  color: var(--white) !important;
  font-size: 22px; padding: 6px 10px 0 0;
}

/* Locations-mini upgraded interaction */
.locations-mini__card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.locations-mini__card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.locations-mini__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -24px rgba(60,60,60,0.25);
}
.locations-mini__card:hover::before { transform: scaleX(1); }
.locations-mini__card.is-active {
  border-color: var(--gold);
  box-shadow: 0 24px 48px -24px rgba(221,170,45,0.4);
}
.locations-mini__card.is-active::before { transform: scaleX(1); }

/* Floating labels for form */
.form-group--float { position: relative; }
.form-group--float input,
.form-group--float select,
.form-group--float textarea {
  padding-top: 1.4rem;
  padding-bottom: 0.55rem;
}
.form-group--float label {
  position: absolute; left: 1rem; top: 1.05rem;
  margin: 0; padding: 0;
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dim);
  pointer-events: none;
  transition: top .25s var(--ease), font-size .25s var(--ease), color .25s var(--ease), letter-spacing .25s var(--ease), text-transform .25s var(--ease);
  background: transparent;
}
.form-group--float.is-filled label,
.form-group--float input:focus + label,
.form-group--float select:focus + label,
.form-group--float textarea:focus + label,
.form-group--float input:not(:placeholder-shown) + label,
.form-group--float textarea:not(:placeholder-shown) + label {
  top: 0.45rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.form-group--float input,
.form-group--float select,
.form-group--float textarea { background: var(--off-white); border-bottom: 2px solid var(--line); border-top: none; border-left: none; border-right: none; }
.form-group--float input:focus,
.form-group--float select:focus,
.form-group--float textarea:focus { background: var(--white); border-color: var(--gold); }

/* SVG icon-circle decorative */
.icon-pulse {
  position: absolute; left: -2px; top: -2px;
  width: calc(100% + 4px); height: calc(100% + 4px);
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0; pointer-events: none;
}
.contact-card__row:hover .icon-pulse { animation: pulseRing 1.4s ease-out; }
@keyframes pulseRing {
  0%   { opacity: 0.6; transform: scale(0.85); }
  100% { opacity: 0;   transform: scale(1.6); }
}

/* Hero scroll cue refined */
.page-hero__cue {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.5rem;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.page-hero__cue::after {
  content: ""; width: 1px; height: 22px; background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite; transform-origin: top;
}

/* ═══════════════════════════════════════════════════
   STREET FOOD ENERGY — stickers · marquees · badges
═══════════════════════════════════════════════════ */

/* ── Sticker (rund, roterad, EST-2018-stil) ──────── */
.sticker {
  display: inline-flex; align-items: center; justify-content: center;
  flex-direction: column;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--serif); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.15;
  border: 2px dashed var(--charcoal);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.35);
  position: relative;
  flex-shrink: 0;
}
.sticker--lg { width: 140px; height: 140px; font-size: 0.92rem; }
.sticker--sm { width: 84px; height: 84px; font-size: 0.66rem; border-width: 1.5px; }
.sticker--tomato { background: var(--tomato); color: var(--white); border-color: var(--white); }
.sticker--charcoal { background: var(--charcoal); color: var(--gold); border-color: var(--gold); }
.sticker--lime { background: var(--lime); color: var(--charcoal); border-color: var(--charcoal); }
.sticker--tilt { transform: rotate(-12deg); }
.sticker--tilt-r { transform: rotate(8deg); }
.sticker--spin { animation: stickerSpin 22s linear infinite; }
.sticker--bounce { animation: stickerBounce 4s var(--ease-out) infinite; }
@keyframes stickerSpin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
@keyframes stickerBounce {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-12deg) translateY(-6px); }
}
.sticker__big { font-family: var(--serif); font-size: 1.85em; font-weight: 700; line-height: 1; margin: 0.15em 0; letter-spacing: -0.02em; }

/* ── Sticker float (positionerad absolut over hero) ── */
.sticker-float {
  position: absolute;
  z-index: 5;
}
.sticker-float--tr { top: clamp(5rem, 10vw, 7rem); right: clamp(1rem, 5vw, 3.5rem); }
.sticker-float--tl { top: clamp(5rem, 10vw, 7rem); left:  clamp(1rem, 5vw, 3.5rem); }
.sticker-float--br { bottom: clamp(2rem, 6vw, 5rem); right: clamp(1rem, 5vw, 3.5rem); }
.sticker-float--bl { bottom: clamp(2rem, 6vw, 5rem); left:  clamp(1rem, 5vw, 3.5rem); }

/* ── Badge (liten roterad, för meny/kort) ────────── */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--tomato); color: var(--white);
  transform: rotate(-4deg);
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--charcoal);
  white-space: nowrap;
  line-height: 1.2;
}
.badge--gold     { background: var(--gold-bright); color: var(--charcoal); }
.badge--lime     { background: var(--lime); color: var(--charcoal); }
.badge--white    { background: var(--white); color: var(--charcoal); }
.badge--tilt-r   { transform: rotate(5deg); }
.badge--corner   { position: absolute; top: 0.85rem; right: 0.85rem; z-index: 3; }
.badge--corner-l { position: absolute; top: 0.85rem; left:  0.85rem; z-index: 3; }
.badge--inline   { vertical-align: middle; margin-left: 0.5rem; }

/* ── Marquee (scrollande textband) ───────────────── */
.marquee {
  background: var(--tomato);
  color: var(--white);
  overflow: hidden;
  padding: 1.05rem 0;
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  position: relative;
}
.marquee--gold     { background: var(--gold); color: var(--charcoal); }
.marquee--charcoal { background: var(--charcoal); color: var(--gold); }
.marquee--lime     { background: var(--lime); color: var(--charcoal); }
.marquee__track {
  display: inline-flex; align-items: center; gap: 2.2rem;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  padding-left: 2.2rem;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex-shrink: 0;
  font-family: var(--serif); font-size: 1.55rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.marquee__diamond {
  color: inherit; font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.85;
}
.marquee--gold .marquee__diamond     { color: var(--tomato); }
.marquee--charcoal .marquee__diamond { color: var(--gold); opacity: 0.7; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hand-drawn scribble underline ──────────────── */
.scribble {
  display: block; margin: 0.5rem auto 0;
  width: clamp(140px, 35%, 240px);
  color: var(--gold);
}
.scribble--tomato { color: var(--tomato); }
.scribble path {
  fill: none; stroke: currentColor; stroke-width: 4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 280; stroke-dashoffset: 280;
  transition: stroke-dashoffset 1.5s var(--ease-out) 0.3s;
}
.in .scribble path,
.section-head.in .scribble path { stroke-dashoffset: 0; }

/* ── Tomato CTA-knapp ────────────────────────────── */
.btn--tomato { background: var(--tomato); color: var(--white); border-color: var(--tomato); }
.btn--tomato:hover { background: var(--tomato-dk); border-color: var(--tomato-dk); box-shadow: 0 14px 32px -12px rgba(17,17,17,0.55); }
.btn--lime { background: var(--lime); color: var(--charcoal); border-color: var(--lime); }
.btn--lime:hover { background: var(--lime-dk); border-color: var(--lime-dk); }

/* ── Bouncy hover för knappar ────────────────────── */
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }

/* ── Diagonal stripe-pattern (för CTA-block) ─────── */
.cta-block--stripes {
  background: var(--gold);
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 48px,
      rgba(60,60,60,0.06) 48px,
      rgba(60,60,60,0.06) 96px
    );
}
.cta-block--tomato {
  background: var(--tomato); color: var(--white);
}
.cta-block--tomato .eyebrow,
.cta-block--tomato h2 { color: var(--white); }
.cta-block--tomato .eyebrow::before { background: var(--white); }
.cta-block--tomato p { color: rgba(255,255,255,0.85); }
.cta-block--tomato::before, .cta-block--tomato::after { border-color: rgba(255,255,255,0.2); }

/* ── Pillar number now in tomato ─────────────────── */
.pillar__num { color: var(--tomato); font-weight: 700; }

/* ── Story numbers more dramatic ─────────────────── */
.story__img::after {
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--tomato);
  text-shadow: 4px 4px 0 var(--gold), 0 4px 30px rgba(0,0,0,0.4);
}

/* ── Order-card with playful tilt on hover ────────── */
.order-card { position: relative; }
.order-card:hover { transform: translateY(-6px) rotate(-0.6deg); }
.order-card:nth-child(even):hover { transform: translateY(-6px) rotate(0.6deg); }

/* ── Menu-item with tomato hover ─────────────────── */
.menu-item { transition: background .25s var(--ease), padding .25s var(--ease); }
.menu-item:hover { background: var(--tomato-soft); padding-left: 0.75rem; }
.menu-item:hover .menu-item__name { color: var(--tomato); }
.menu-item__name { transition: color .25s var(--ease); }
.menu-item__name-row {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.menu-item__name-row .menu-item__name { margin-bottom: 0; }

/* ── Hero EST-sticker float (specifik för index hero) ── */
.hero .sticker-float { z-index: 5; }
.hero__estd { animation: estdGlow 3.5s ease-in-out infinite; }
@keyframes estdGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%      { text-shadow: 0 0 20px rgba(221,170,45,0.5); }
}

/* ── Cookie banner — energi ──────────────────────── */
.cookie { border-left-color: var(--tomato); }
.cookie button { background: var(--tomato); color: var(--white); }
.cookie button:hover { background: var(--tomato-dk); }

/* ═══════════════════════════════════════════════════
   PANEL STACK — homepage 10-section design
═══════════════════════════════════════════════════ */

/* Animated gradient background behind all panels */
.panels {
  position: relative;
  background:
    linear-gradient(135deg,
      #FFF1D6 0%,
      #FFE0B0 25%,
      #FFD49A 50%,
      #FFE9C0 75%,
      #FFF1D6 100%
    );
  background-size: 300% 300%;
  animation: panelGradient 18s ease-in-out infinite;
  padding: 0.85rem 0.85rem 0;
  display: flex; flex-direction: column;
  gap: 0.85rem;
}
@keyframes panelGradient {
  0%, 100% { background-position: 0% 50%; }
  33%      { background-position: 50% 100%; }
  66%      { background-position: 100% 0%; }
}
.panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}
.panel--cream    { background: var(--cream); }
.panel--white    { background: var(--white); }
.panel--off      { background: var(--off-white); }
.panel--charcoal { background: var(--charcoal); color: var(--white); }
.panel--charcoal h1, .panel--charcoal h2, .panel--charcoal h3, .panel--charcoal h4 { color: var(--white); }
.panel--charcoal p { color: rgba(255,255,255,0.78); }

/* Wrapper-paper variant — navy bg with the gold BURGER MANSION wordmark
   tiled at ~6% opacity. Echoes the actual food-wrapper paper. h2 uses
   .h-mix em (italic, gold) for the accent word; rest of headlines + body
   render white over the navy. */
.panel--wrapper {
  position: relative;
  background-color: var(--navy);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.panel--wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/logo-gold.png");
  background-repeat: repeat;
  background-size: 140px auto;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  /* Slight rotation gives the tiled wrapper a real-paper feel rather than
     a perfectly orthogonal CSS grid. */
  transform: rotate(-8deg) scale(1.4);
  transform-origin: center;
}
.panel--wrapper > * { position: relative; z-index: 1; }
.panel--wrapper h1,
.panel--wrapper h2,
.panel--wrapper h3,
.panel--wrapper h4 { color: var(--white); }
.panel--wrapper h1 em,
.panel--wrapper h2 em,
.panel--wrapper h3 em,
.panel--wrapper .h-mix em { color: var(--gold); }
.panel--wrapper p { color: rgba(255, 255, 255, 0.82); }
.panel--wrapper .panel__eyebrow {
  background: rgba(218, 172, 44, 0.12);
  border-color: rgba(218, 172, 44, 0.45);
  color: var(--gold);
}
/* Pillar numbers / large numeric stats go gold */
.panel--wrapper .pillar-num,
.panel--wrapper [class*="num"] { color: var(--gold); }
/* Menu cards on the wrapper-paper section: title + description + price
   readable over the navy + tile pattern. The .menu-card h3 default
   (var(--charcoal)) was unreadable on navy — promote to gold + brighten
   body copy. Price was aliased to navy via --tomato → also gold. */
.panel--wrapper .menu-card h3 { color: var(--gold); }
.panel--wrapper .menu-card p  { color: rgba(255, 255, 255, 0.78); }
.panel--wrapper .menu-card__price { color: var(--gold-bright); }
.panel--gold     { background: var(--gold); color: var(--charcoal); }
.panel--tomato   { background: var(--tomato); color: var(--white); }
.panel--tomato h1, .panel--tomato h2, .panel--tomato h3, .panel--tomato h4 { color: var(--white); }
.panel--tomato p { color: rgba(255,255,255,0.85); }
.panel--lime     { background: var(--lime); color: var(--charcoal); }

.panel__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.25rem);
  position: relative;
}
.panel__head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 720px;
}
.panel__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tomato);
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--charcoal);
  margin-bottom: 1.4rem;
}
.panel--charcoal .panel__eyebrow,
.panel--tomato .panel__eyebrow { background: var(--white); border-color: var(--charcoal); color: var(--tomato); }

/* ── Mixed italic/roman headline (signature) ───── */
.h-mix {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: var(--charcoal);
}
.panel--charcoal .h-mix,
.panel--tomato .h-mix { color: var(--white); }
.h-mix em, .h-mix__italic {
  font-style: italic;
  color: var(--accent-red);
  font-weight: 600;
}
.panel--charcoal .h-mix em,
.panel--tomato .h-mix em { color: var(--gold); }
.panel--gold .h-mix em { color: var(--white); }

.h-mix--xl { font-size: clamp(3rem, 9vw, 6.5rem); }
.h-mix--lg { font-size: clamp(2.6rem, 7vw, 5rem); }
.h-mix--md { font-size: clamp(2rem, 5vw, 3.5rem); }

/* ── Letter wave-in (signature animation) ──────── */
/* .ltr-word is the per-word atom — keeps a single word from breaking
   mid-character (avoids "sy/ns" or "foodtru/ck" line breaks) while
   still letting each letter inside animate independently. */
.letter-wave .ltr-word {
  display: inline-block;
  white-space: nowrap;
}
.letter-wave .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotate(-3deg);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1),
              transform .8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 35ms);
  will-change: transform, opacity;
}
.letter-wave.in .ltr {
  opacity: 1;
  transform: translateY(var(--y, 0px)) rotate(0);
}

/* ── Pill button with arrow chip (signature CTA) ── */
.btn-pill {
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.45rem 0.4rem 1.6rem;
  background: var(--charcoal); color: var(--white);
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out), transform .25s var(--ease-out);
  text-decoration: none;
}
.btn-pill:hover { transform: translateY(-2px); background: var(--black); }
.btn-pill__chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  margin-left: 0.95rem;
  background: var(--gold); color: var(--charcoal);
  border-radius: 50%;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
  flex-shrink: 0;
}
.btn-pill__chip svg {
  width: 16px; height: 16px;
  transition: transform .3s var(--ease-out);
}
.btn-pill:hover .btn-pill__chip { transform: scale(1.08); background: var(--gold-bright); }
.btn-pill:hover .btn-pill__chip svg { transform: translateX(3px); }

.btn-pill--gold   { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-pill--gold .btn-pill__chip { background: var(--charcoal); color: var(--gold); }
.btn-pill--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-pill--gold:hover .btn-pill__chip { background: var(--charcoal); }

/* Sized-down pill for the navbar — same look, smaller padding + chip so it
   fits inside the 82px nav-h without dominating the link row. */
.btn-pill--sm {
  padding: 0.32rem 0.4rem 0.32rem 1.1rem;
  font-size: 0.82rem;
}
.btn-pill--sm .btn-pill__chip {
  width: 30px; height: 30px;
  margin-left: 0.7rem;
}
.btn-pill--sm .btn-pill__chip svg { width: 13px; height: 13px; }

.btn-pill--tomato { background: var(--tomato); color: var(--white); border-color: var(--tomato); }
.btn-pill--tomato .btn-pill__chip { background: var(--white); color: var(--tomato); }
.btn-pill--tomato:hover { background: var(--tomato-dk); border-color: var(--tomato-dk); }

.btn-pill--cream  { background: var(--white); color: var(--charcoal); border-color: var(--charcoal); }
.btn-pill--cream .btn-pill__chip { background: var(--tomato); color: var(--white); }
.btn-pill--cream:hover { background: var(--cream); }

/* CTA pulse (final CTA section) */
.btn-pill--pulse { animation: pillPulse 2.4s ease-in-out infinite; }
@keyframes pillPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

/* ── Sunburst badge (12-point starburst) ──────── */
.sunburst {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 130px; height: 130px;
  flex-shrink: 0;
  animation: sunburstSpin 24s linear infinite;
}
.sunburst::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  clip-path: polygon(
    50% 0%, 56% 18%, 71% 8%, 70% 28%, 88% 22%, 78% 40%, 96% 42%, 80% 55%,
    96% 70%, 78% 64%, 88% 80%, 71% 76%, 70% 96%, 50% 90%, 30% 96%, 29% 76%,
    12% 80%, 22% 64%, 4% 70%, 20% 55%, 4% 42%, 22% 40%, 12% 22%, 30% 28%,
    29% 8%, 44% 18%
  );
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}
.sunburst__text {
  position: relative; z-index: 2;
  text-align: center;
  font-family: var(--serif); font-weight: 700;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--charcoal);
  padding: 0 1rem;
}
.sunburst__big {
  display: block;
  font-size: 1.8em;
  margin: 0.1em 0;
  letter-spacing: -0.02em;
}
@keyframes sunburstSpin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
.sunburst--tomato::before { background: var(--tomato); }
.sunburst--tomato .sunburst__text { color: var(--white); }
.sunburst--charcoal::before { background: var(--charcoal); }
.sunburst--charcoal .sunburst__text { color: var(--gold); }

/* ── Photo cutout (starburst clip on photo) ───── */
.photo-cutout {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  clip-path: polygon(
    50% 0%, 56% 18%, 71% 8%, 70% 28%, 88% 22%, 78% 40%, 96% 42%, 80% 55%,
    96% 70%, 78% 64%, 88% 80%, 71% 76%, 70% 96%, 50% 90%, 30% 96%, 29% 76%,
    12% 80%, 22% 64%, 4% 70%, 20% 55%, 4% 42%, 22% 40%, 12% 22%, 30% 28%,
    29% 8%, 44% 18%
  );
}

/* ═══════════════════════════════════════════════════
   SECTION-SPECIFIC LAYOUTS
═══════════════════════════════════════════════════ */

/* ── Section 2: Hero (overhead-spread photo + navy scrim) ── */
.hero-intro {
  position: relative;
  /* Full viewport height (capped at 880 for huge desktop monitors). The
     720px cap was making the inner stack — h1 + sub + CTA + padding —
     fill ~70% of the hero, which forced the headline to ~32% down even
     with flex-end. With ~900px of room the headline lands at ~52%. */
  min-height: min(100vh, 880px);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  margin-top: calc(var(--nav-h) * -1);
  /* Tighter bottom padding (was 12vh) so flex-end pulls the headline far
     enough down to land at ~52% instead of ~45%. */
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem clamp(2rem, 6vh, 5rem);
  isolation: isolate;
  /* Round the bottom corners so the hero reads as a contained card and
     the section below it (navy wrapper or cream cards) shows the page
     bg in the gutter under the rounded edge. overflow:hidden is critical
     here so the absolutely-positioned bg <picture> respects the radius. */
  border-bottom-left-radius: clamp(16px, 2vw, 28px);
  border-bottom-right-radius: clamp(16px, 2vw, 28px);
  overflow: hidden;
}
.hero-intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Slow Ken Burns zoom adds life to the static photo. */
  animation: kb-zoom 14s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes kb-zoom {
  from { transform: scale(1);    }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-intro__bg img { animation: none; }
}
.hero-intro::before {
  /* Navy gradient scrim: heavier at top + bottom (for headline + CTA
     legibility), lighter in the middle (so the food still reads).
     Scrim sits ABOVE the bg img but BELOW the content. */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.55) 0%,
    rgba(17, 17, 17, 0.35) 40%,
    rgba(17, 17, 17, 0.78) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-intro__inner {
  position: relative;
  z-index: 2;
  /* Vertical anchoring is now handled by .hero-intro { align-items: flex-end }
     + padding-bottom on the section, so the inner doesn't need its own
     padding-top to push the headline down. */
}
@media (max-width: 768px) {
  .hero-intro { min-height: 80vh; }
}
.hero-intro__inner {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-intro__title {
  color: var(--white);
  font-size: clamp(3rem, 10vw, 6.8rem);
  margin-bottom: 1.4rem;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 0.96;
}
.hero-intro__title em { color: var(--gold); font-style: italic; font-family: var(--serif); font-weight: 600; }
.hero-intro__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 2.4rem;
}
/* ── Hantverk section + scroll-driven burger build ──
   The Hantverk section uses .panel--scrub: outer is 220vh tall to
   give the user scroll distance, .panel__pin sticky-pins the inner
   .split-cta at top:0 so the headline + CTA stay visible while the
   canvas inside .split-cta__stage scrubs from assembled to
   deconstructed. Studio bg img + canvas both inset:0 inside the
   stage; canvas clears per-tick so bg shows through ingredient gaps. */
.panel--scrub {
  position: relative;
  height: 220vh;
  padding-top: 0;
  padding-bottom: 0;
  /* Override .panel { overflow: hidden }: position:sticky on .panel__pin
     fails when an ancestor uses overflow:hidden on the same axis. clip
     contains the bg image's rounded corners without breaking sticky. */
  overflow: visible;
  overflow: clip;
}
.panel__pin {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.panel--scrub .panel__inner {
  width: 100%;
}
.split-cta__stage {
  position: relative;
  aspect-ratio: 1244 / 1664;
  width: 100%;
  max-width: min(480px, 100%);
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.45);
}
.split-cta__stage .hero-scrub__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.split-cta__stage .hero-scrub__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
}
@media (max-width: 900px) {
  .panel--scrub { height: 180vh; }
}
@media (max-width: 720px) {
  .panel--scrub { height: 130vh; }
  .split-cta__stage { max-width: 100%; max-height: none; border-radius: 0; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  .panel--scrub { height: auto; }
  .panel__pin { position: relative; height: auto; }
}

/* ── (Legacy hero-scrub styles — retained for the bg + canvas children
   inside .split-cta__stage; the standalone .hero-scrub section was
   removed when the scrub moved into the Hantverk panel.) ── */
.hero-scrub {
  position: relative;
  height: 220vh;
  background: var(--navy);
  /* Tells the navy panel to bleed under the fixed nav at top */
  margin-top: calc(var(--nav-h) * -1);
  padding-top: var(--nav-h);
}
.hero-scrub__pin {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  background: var(--navy);
  background:
    radial-gradient(ellipse 60% 70% at 30% 38%, rgba(218, 172, 44, 0.10) 0%, transparent 70%),
    var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
/* Stage: locks the bg + canvas to the source frame's portrait ratio.
   Capped on desktop so the hero doesn't overwhelm the page; fills the
   column on mobile. Both children sit absolute inset:0 so the canvas's
   transparent gaps reveal the studio bg behind. */
.hero-scrub__stage {
  position: relative;
  aspect-ratio: 1244 / 1664;
  width: 100%;
  max-width: min(520px, 100%);
  max-height: 86vh;
  margin: 0 auto;
  place-self: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
}
.hero-scrub__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-scrub__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  z-index: 1;
  /* Burger drawn via per-tick clearRect + drawImage in main.js — the
     transparent gaps between ingredients reveal .hero-scrub__bg. */
}
@media (max-width: 900px) {
  .hero-scrub__stage {
    max-width: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
}
.hero-scrub__content {
  padding: 0 clamp(2rem, 6vw, 6rem);
  max-width: 620px;
  z-index: 2;
  text-align: left;
}
.hero-scrub__content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  line-height: 0.96;
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero-scrub__content h1 em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 600;
}
.hero-scrub__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(218, 172, 44, 0.35);
}
.hero-scrub__title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  text-transform: none;
}
.hero-scrub__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36ch;
  margin: 0 0 2.2rem;
}
.hero-scrub__cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
  pointer-events: none;
}
.hero-scrub__cue::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.hero-scrub__cue::after {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
@media (max-width: 900px) {
  .hero-scrub { height: 200vh; }
  .hero-scrub__pin {
    grid-template-columns: 1fr;
    grid-template-rows: 0.55fr 0.45fr;
  }
  .hero-scrub__content {
    padding: 1.5rem 1.5rem 5rem;
    text-align: center;
    max-width: 100%;
  }
  .hero-scrub__sub { margin-inline: auto; }
}
/* Small mobile (<720px): the 121-frame scrub is heavy on small screens.
   Halve the pin range so the scrub completes in a single viewport-height
   of scroll, reducing main-thread time during fling-scroll. main.js also
   lowers the frame target rate at this width via prefers-reduced-data. */
@media (max-width: 720px) {
  .hero-scrub { height: 130vh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scrub { height: 100vh; }
  .hero-scrub__pin { position: relative; height: 100vh; }
}

/* ── Section 3: 3-card grid ───────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cat-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  display: block;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out), filter .4s var(--ease-out);
}
.cat-card:hover img { transform: scale(1.04); filter: brightness(1.05); }
.cat-card__label {
  position: absolute; left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  padding: 0.7rem 1.4rem;
  background: var(--white); color: var(--charcoal);
  border-radius: 999px;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.3);
  border: 1.5px solid var(--charcoal);
}

/* Card reveal (fade + scale) */
.card-reveal { opacity: 0; transform: translateY(24px) scale(0.96); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--cd, 0ms); }
.card-reveal.in { opacity: 1; transform: none; }

/* ── Section 4: Quote band ────────────────────── */
.quote-band {
  text-align: center;
  max-width: 760px; margin: 0 auto;
}
.quote-band p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.45;
  color: var(--charcoal);
  font-weight: 500;
}
.panel--charcoal .quote-band p { color: var(--white); }
.quote-band__icon {
  color: var(--accent-red);
  display: inline-block;
  margin: 0 0.5rem;
  vertical-align: -0.05em;
  width: 28px; height: 28px;
}
.quote-band__icon svg { width: 100%; height: 100%; fill: currentColor; }

/* ── Section 5: Split 2-col with rating + CTA ──── */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-cta__text { max-width: 520px; }
.split-cta__photo {
  aspect-ratio: 5/6;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.split-cta__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.split-cta__photo:hover img { transform: scale(1.03); }

.rating-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal);
  box-shadow: 2px 2px 0 var(--charcoal);
}
.rating-badge__avatars {
  display: flex;
}
.rating-badge__avatars img {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.rating-badge__avatars img:first-child { margin-left: 0; }
.rating-badge__stars { color: var(--gold); letter-spacing: -0.05em; font-size: 0.95rem; }

/* ── Section 6: 4-card menu showcase ──────────── */
.menu-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.menu-card {
  text-align: left;
  display: block;
  transition: transform .35s var(--ease-out);
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card__img {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .4s var(--ease-out); }
.menu-card:hover .menu-card__img img { transform: scale(1.06); filter: brightness(1.05); }
.menu-card h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  text-transform: none; letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
  line-height: 1.15;
}
.menu-card p { color: var(--text-soft); font-size: 0.88rem; line-height: 1.45; }
.menu-card__price {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--serif); font-size: 0.95rem; font-weight: 700;
  color: var(--tomato);
}
.menu-showcase__cta { text-align: center; }

/* ── Section 7: Promo with feature-cards + sunburst ── */
.promo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.promo__text { max-width: 520px; }
.promo__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}
.promo__photo img { width: 100%; height: 100%; object-fit: cover; }
.promo__sunburst {
  position: absolute; right: -28px; top: 24%;
  z-index: 3;
}
.feature-list {
  display: flex; flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.feature-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.05rem 1.3rem;
  background: var(--white);
  border-radius: 18px;
  border: 1.5px solid var(--line);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.feature-card:hover { transform: translateX(6px); border-color: var(--gold); }
.feature-card__icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--charcoal);
  border-radius: 12px;
  flex-shrink: 0;
}
.feature-card__icon svg { width: 20px; height: 20px; }
.feature-card h4 {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  text-transform: none; letter-spacing: 0;
  color: var(--charcoal); margin-bottom: 0.15rem;
  line-height: 1.2;
}
.feature-card p { font-size: 0.85rem; color: var(--text-soft); margin: 0; line-height: 1.4; }

.feature-reveal { opacity: 0; transform: translateX(-30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--fd, 0ms); }
.feature-reveal.in { opacity: 1; transform: none; }

/* ── Section 8: Testimonial carousel ──────────── */
.tcarousel {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}
.tcarousel__viewport { overflow: hidden; }
.tcarousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform .65s cubic-bezier(0.16, 1, 0.3, 1);
}
.tcarousel__card {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 0;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 1.85rem;
  transition: transform .5s var(--ease-out), background .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.tcarousel__card.is-active {
  background: var(--gold);
  border-color: var(--charcoal);
  transform: scale(1.03);
  box-shadow: 0 24px 48px -16px rgba(60,60,60,0.3);
}
.tcarousel__head {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.tcarousel__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
  border: 2px solid var(--charcoal);
}
.tcarousel__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcarousel__name {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.tcarousel__role {
  font-size: 0.78rem; color: var(--text-dim);
  margin-top: 0.2rem;
}
.tcarousel__quote-mark {
  font-family: var(--serif); font-size: 3rem; line-height: 0.5;
  color: var(--tomato);
  margin-bottom: 0.5rem;
  display: block;
}
.tcarousel__card.is-active .tcarousel__quote-mark { color: var(--charcoal); }
.tcarousel__quote {
  font-family: var(--serif);
  font-size: 1rem; line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.tcarousel__stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.tcarousel__card.is-active .tcarousel__stars { color: var(--charcoal); }
.tcarousel__nav {
  display: flex; justify-content: center; gap: 0.85rem;
  margin-top: 2.2rem;
}
.tcarousel__btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  transition: all .25s var(--ease-out);
}
.tcarousel__btn--next { background: var(--charcoal); color: var(--white); }
.tcarousel__btn:hover { transform: translateY(-2px); }
.tcarousel__btn:hover.tcarousel__btn--prev { background: var(--charcoal); color: var(--white); }
.tcarousel__btn:hover.tcarousel__btn--next { background: var(--black); }
.tcarousel__btn svg { width: 18px; height: 18px; }

/* ── Section 9: Online order / app section ────── */
.appsec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.appsec__text { max-width: 500px; }
.appsec__buttons {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.app-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.3rem;
  background: var(--charcoal); color: var(--white);
  border-radius: 999px;
  border: 1.5px solid var(--charcoal);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  transition: all .3s var(--ease-out);
  text-decoration: none;
}
.app-btn:hover { transform: translateY(-2px); background: var(--black); }
.app-btn small { display: block; font-size: 0.65rem; font-weight: 400; opacity: 0.7; letter-spacing: 0.06em; text-transform: uppercase; }
.app-btn strong { font-size: 0.95rem; font-weight: 700; }
.app-btn__icon { width: 22px; height: 22px; flex-shrink: 0; }
.appsec__phone {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin-left: auto;
}
.appsec__phone img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px;
  transition: transform .8s var(--ease-out);
}

/* ── Section 10: Final CTA with photo cutouts ── */
.final-cta {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.final-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.final-cta__inner h2 { color: var(--charcoal); margin-bottom: 1.2rem; }
.final-cta__inner p { font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta__cutout {
  position: absolute;
  width: clamp(160px, 22vw, 220px);
  aspect-ratio: 1;
  top: 50%;
  z-index: 1;
}
.final-cta__cutout--left  {
  left: 1.5%;
  transform: translateY(-50%) rotate(-8deg);
  animation: cutoutWiggle 6s ease-in-out infinite;
}
.final-cta__cutout--right {
  right: 1.5%;
  transform: translateY(-50%) rotate(8deg);
  animation: cutoutWiggle 6s ease-in-out infinite reverse;
}
@keyframes cutoutWiggle {
  0%, 100% { transform: translateY(-50%) rotate(-8deg); }
  50%      { transform: translateY(-50%) rotate(-3deg) translateX(8px); }
}
.final-cta__cutout--right { animation-name: cutoutWiggleR; }
@keyframes cutoutWiggleR {
  0%, 100% { transform: translateY(-50%) rotate(8deg); }
  50%      { transform: translateY(-50%) rotate(3deg) translateX(-8px); }
}
.final-cta__cutout::before {
  content: ""; position: absolute; inset: -8%;
  background: var(--gold);
  clip-path: polygon(
    50% 0%, 56% 18%, 71% 8%, 70% 28%, 88% 22%, 78% 40%, 96% 42%, 80% 55%,
    96% 70%, 78% 64%, 88% 80%, 71% 76%, 70% 96%, 50% 90%, 30% 96%, 29% 76%,
    12% 80%, 22% 64%, 4% 70%, 20% 55%, 4% 42%, 22% 40%, 12% 22%, 30% 28%,
    29% 8%, 44% 18%
  );
  z-index: -1;
}
.final-cta__cutout img {
  width: 100%; height: 100%; object-fit: cover;
  clip-path: polygon(
    50% 0%, 56% 18%, 71% 8%, 70% 28%, 88% 22%, 78% 40%, 96% 42%, 80% 55%,
    96% 70%, 78% 64%, 88% 80%, 71% 76%, 70% 96%, 50% 90%, 30% 96%, 29% 76%,
    12% 80%, 22% 64%, 4% 70%, 20% 55%, 4% 42%, 22% 40%, 12% 22%, 30% 28%,
    29% 8%, 44% 18%
  );
}

/* Wavy divider on top of final-cta panel */
.wavy-top {
  position: absolute; top: -1px; left: 0; right: 0;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}
.wavy-top svg { display: block; width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════
   PANEL RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .panels { padding: 0.6rem 0.6rem 0; gap: 0.6rem; }
  .panel { border-radius: 22px; }
  .panel__inner { padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2rem); }
  .cat-grid { grid-template-columns: 1fr; gap: 1rem; }
  .split-cta, .promo, .appsec { grid-template-columns: 1fr; gap: 2rem; }
  .promo__photo, .split-cta__photo { order: -1; max-width: 480px; margin: 0 auto; }
  .promo__sunburst { right: 5%; top: 5%; width: 100px; height: 100px; }
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .tcarousel__card { flex: 0 0 calc(100% - 0rem); padding: 1.5rem; }
  .final-cta__cutout { display: none; }
  .panel-hero h1 { font-size: clamp(2.6rem, 13vw, 5rem); }
}
@media (max-width: 560px) {
  .menu-showcase { grid-template-columns: 1fr; }
  .panels { padding: 0.45rem 0.45rem 0; gap: 0.45rem; }
  .panel { border-radius: 18px; }
  .sunburst { width: 100px; height: 100px; }
  .sunburst__text { font-size: 0.6rem; }
  .feature-card { padding: 0.85rem 1rem; gap: 0.75rem; }
  .feature-card__icon { width: 36px; height: 36px; }
  .h-mix { font-size: clamp(2.2rem, 9vw, 3.5rem); }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1080px) {
  .destinations { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  /* ── MOBILE NAV — heritage minimal ───────────────────────
     Layout: [Logo left] · · · · [Beställ ghost-pill] [Hamburger ghost-circle]
     `margin-right: auto` on the logo pushes both right-side elements as a
     paired group to the far edge. Both flanking elements share one visual
     language (1px gold outline, transparent fill). */
  .nav__inner {
    display: flex;
    align-items: center;
    grid-template-columns: none;
    gap: 8px;
    padding: 0 1rem;
  }
  .nav__links { display: none; }
  .nav__logo { margin-right: auto; }

  /* Beställ: ghost pill — 1px gold outline on transparent navy. */
  .nav__cta {
    display: inline-flex !important;
    align-items: center;
    height: 36px;
    padding: 0 14px !important;
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 999px;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    gap: 0 !important;
    transition: background .2s ease, color .2s ease;
  }
  .nav__cta:hover, .nav__cta:active {
    background: var(--gold) !important;
    color: var(--charcoal, #3C3C3C) !important;
  }
  .nav__cta .btn-pill__chip { display: none !important; }

  /* Logo: anchored left, dominant. */
  .nav__logo img { height: 48px !important; width: auto !important; }

  /* Hamburger: matching ghost-circle. */
  .nav__burger {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    transition: background .2s ease;
    flex-shrink: 0;
  }
  .nav__burger:hover, .nav__burger:active { background: rgba(221, 170, 45, 0.12); }
  .nav__burger span { width: 16px; height: 1.5px; background: var(--gold); border-radius: 1px; }

  /* Hairline divider so the navy nav reads as a defined header, not floating. */
  .nav { border-bottom: 1px solid rgba(221, 170, 45, 0.18); }

  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero__text { max-width: 100%; }
  .hero__sub { margin: 0 auto 1.8rem; }
  .hero__actions { justify-content: center; flex-wrap: nowrap; }
  .hero__tagline { padding-left: 0; }
  .hero__tagline::before { display: none; }
  .hero__visual { max-width: 340px; margin: 0 auto; order: -1; }
  .hero__title { font-size: clamp(2.8rem, 14vw, 5.5rem); }

  .pillars { grid-template-columns: 1fr; gap: 0; }
  .pillar { padding: 1.75rem 0; border-top: 2px solid var(--gold); }
  .pillar:not(:first-child) { border-top: 1px solid var(--line); padding-top: 2rem; }

  .story, .about-split, .location-card-full {
    grid-template-columns: 1fr; gap: 1.75rem;
  }
  .story:nth-child(even) .story__img { order: 0; }
  .location-card-full:nth-child(even) .location-card-full__img { order: 0; }

  .promise-grid, .menu-cats, .event-cases, .event-features, .locations-mini { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card__map { aspect-ratio: 16/9; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero__actions {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 0.55rem;
  }
  .hero__actions .btn {
    flex: 1 1 0;
    padding: 0.85rem 0.7rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .destinations, .menu-cats, .event-cases, .event-features, .locations-mini { grid-template-columns: 1fr; }
  /* Mobile footer: single column with everything centered. */
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__tag { max-width: none; }
  .footer__col { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 0.65rem; text-align: center; }
  .cookie { flex-direction: column; align-items: stretch; gap: 0.85rem; left: 0.85rem; right: 0.85rem; bottom: 0.85rem; }
  .cookie button { width: 100%; }
  .credits-table th:nth-child(2), .credits-table td:nth-child(2) { display: none; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(2.2rem, 13vw, 3.4rem); }
  .hero__actions .btn {
    flex: 1 1 0;
    font-size: 0.66rem;
    padding: 0.78rem 0.5rem;
    letter-spacing: 0.08em;
  }
}

/* ── Print / utility ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__bg img { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}

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