/* Klarhem Städ : No Frame demosajt
   A8 soft-organic, fräsch tappning. Färgplattor, squircles, handritade bockar. */

:root {
  --vit: #ffffff;
  --yta: #eef3f0;
  --eu: #3e8e7e;        /* ytor och grafik, aldrig text */
  --eu-ink: #2c6a5c;    /* text och mörka plattor, 6.3:1 mot vitt */
  --eu-mork: #23564a;   /* hover */
  --gul: #f4d35e;
  --gul-mork: #eac93d;  /* hover */
  --ink: #253430;
  --ink-2: #4b5f59;
  --ink-3: #5a6c65;
  --pa-mork: #ffffff;
  --pa-mork-2: #e6f2ee; /* 5.5:1 mot --eu-ink */

  --topp-h: 68px;
  --wrap: 1180px;
  --sido: clamp(18px, 5vw, 40px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Albert Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--vit);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }
h1, h2, h3 { margin: 0; overflow-wrap: break-word; text-wrap: balance; }
p { margin: 0; overflow-wrap: break-word; }
ul, ol, dl, dd { margin: 0; padding: 0; }
a { color: inherit; }
[hidden] { display: none; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

:focus-visible {
  outline: 3px solid var(--eu-ink);
  outline-offset: 3px;
  border-radius: 8px;
}
.tj-mork :focus-visible,
.gar-stor :focus-visible,
.boka-info :focus-visible { outline-color: var(--gul); }

.skip {
  position: absolute;
  left: 12px;
  top: -70px;
  z-index: 100;
  background: var(--eu-ink);
  color: var(--vit);
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top .18s ease;
}
.skip:focus { top: 12px; }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sido);
}

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

/* ---------- Typografi ---------- */

h1 {
  font-size: clamp(2.05rem, 5.6vw, 3.55rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.028em;
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.022em;
}

h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }

.etikett {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--eu-ink);
}
.etikett-ljus { color: var(--pa-mork-2); }

.ingress {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 60ch;
}
.ingress-smal { max-width: 50ch; }

/* Gult överstrykningssvep bakom nyckelord */
.mark { position: relative; isolation: isolate; }
.mark::before {
  content: "";
  position: absolute;
  left: -.16em;
  right: -.16em;
  bottom: .18em;
  height: .33em;
  background: var(--gul);
  border-radius: .34em .5em .28em .46em;
  transform: rotate(-.7deg);
  z-index: -1;
}
.mark-tat::before { left: -.1em; right: -.1em; }

.squircle { border-radius: 30%; object-fit: cover; width: 100%; }

/* ---------- Knappar ---------- */

.knapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 26px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.knapp-stor { min-height: 56px; padding: 12px 30px; }
.knapp-bred { width: 100%; }
.knapp .ikon { width: 20px; height: 20px; flex: 0 0 auto; }

.knapp-fyll { background: var(--eu-ink); color: var(--vit); }
.knapp-fyll:hover { background: var(--eu-mork); }

.knapp-tom { background: var(--vit); color: var(--eu-ink); }
.knapp-tom:hover { background: #e2ece8; }

.knapp-gul { background: var(--gul); color: var(--ink); }
.knapp-gul:hover { background: var(--gul-mork); }

/* ---------- Header ---------- */

.topp {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--vit);
}

.topp-inre {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sido);
  min-height: var(--topp-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -.012em;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 30%;
  background: var(--gul);
  color: var(--eu-ink);
  display: grid;
  place-items: center;
}
.brand-mark svg {
  width: 22px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-tunn { font-weight: 500; color: var(--eu-ink); }

.meny {
  display: none;
  position: fixed;
  top: var(--topp-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--yta);
  padding: 20px var(--sido) 44px;
  overflow-y: auto;
  flex-direction: column;
}
body.meny-oppen { overflow: hidden; }
body.meny-oppen .meny { display: flex; }

.meny-lista { list-style: none; display: grid; gap: 2px; }
.meny-lista a {
  display: flex;
  align-items: center;
  min-height: 56px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.meny-slut { margin-top: 24px; display: grid; gap: 12px; }
.meny-tel {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--eu-ink);
  text-decoration: none;
}

.hamburgare {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 4px;
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
}
.hamburgare-streck { width: 22px; display: grid; gap: 5px; }
.hamburgare-streck i {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
body.meny-oppen .hamburgare-streck i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.meny-oppen .hamburgare-streck i:nth-child(2) { opacity: 0; }
body.meny-oppen .hamburgare-streck i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sektioner ---------- */

.sektion { padding-block: clamp(54px, 8vw, 104px); }
/* sektioner vars innehåll redan sitter i en färgplatta behöver mindre luft utanför */
.sektion-platta { padding-block: clamp(28px, 4vw, 56px); }
.sektion-yta { background: var(--yta); }
.sektion-topp { display: grid; gap: 14px; max-width: 62ch; }

/* ---------- Hero ---------- */

.hero { padding-block: clamp(16px, 2.6vw, 30px) clamp(10px, 2vw, 24px); }

.hero-platta {
  background: var(--yta);
  border-radius: clamp(28px, 4vw, 44px);
  padding: clamp(26px, 5vw, 60px);
  display: grid;
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
}

.pillar { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pillar li {
  background: var(--vit);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .8125rem;
  font-weight: 600;
}

.hero-copy .ingress { margin-top: 20px; max-width: 46ch; }

.prisruta {
  margin-top: 26px;
  background: var(--vit);
  border-radius: 24px;
  padding: 20px 24px;
  max-width: 30rem;
}
.prisruta-etikett {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.prisruta-tal {
  margin-top: 8px;
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.prisruta-not { margin-top: 10px; font-size: .875rem; color: var(--ink-2); line-height: 1.5; }

.knapprad { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-fot { margin-top: 20px; font-size: .875rem; color: var(--ink-2); }

.hero-bild { position: relative; }
.hero-bild img { aspect-ratio: 4 / 3; height: auto; }
.hero-plupp {
  position: absolute;
  left: 6%;
  bottom: -14px;
  background: var(--gul);
  color: var(--ink);
  border-radius: 18px;
  padding: 11px 18px;
  font-size: .875rem;
  font-weight: 600;
  max-width: 88%;
}

/* ---------- Tjänstepaneler ---------- */

.tj-lista { margin-top: clamp(28px, 4vw, 48px); display: grid; gap: clamp(16px, 2.4vw, 24px); }

.tj {
  border-radius: clamp(26px, 3.4vw, 40px);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  gap: clamp(22px, 3vw, 44px);
  align-items: stretch;
}
.tj-ljus { background: var(--yta); }
.tj-mork { background: var(--eu-ink); color: var(--pa-mork); }

.tj-nr {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--eu-ink);
  margin-bottom: 10px;
}
.tj-mork .tj-nr { color: var(--pa-mork-2); }

.tj h3 { font-size: clamp(1.45rem, 3vw, 1.95rem); font-weight: 700; letter-spacing: -.02em; }
.tj-kropp > p { margin-top: 14px; color: var(--ink-2); max-width: 42ch; }
.tj-mork .tj-kropp > p { color: var(--pa-mork-2); }

.tj-pris { margin-top: 20px; font-size: 1rem; }
.tj-pris strong { display: block; font-size: clamp(1.3rem, 2.6vw, 1.6rem); font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.tj-mork .tj-pris strong { color: var(--pa-mork); }
.tj-kropp .knapp { margin-top: 22px; }

.tj-ingar {
  background: var(--vit);
  border-radius: clamp(20px, 2.6vw, 30px);
  padding: clamp(20px, 3vw, 32px);
  color: var(--ink);
}
.tj-mork .tj-ingar { background: var(--yta); }

.tj-ingar-rubrik {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eu-ink);
  margin-bottom: 16px;
}
.tj-extra { margin-top: 18px; font-size: .9375rem; color: var(--ink-2); }
.tj-mork .tj-extra { color: var(--ink-2); }

/* Handritade bockar */
.bockar { list-style: none; display: grid; gap: 13px; }
.bockar li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink);
  line-height: 1.5;
}
.bock {
  width: 26px;
  height: 22px;
  margin-top: 3px;
  fill: none;
  stroke: var(--eu);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bockar li:nth-child(2n) .bock { transform: rotate(-5deg); }
.bockar li:nth-child(3n) .bock { transform: rotate(4deg) scale(1.04); }
.bockar li:nth-child(5n) .bock { transform: rotate(-2deg) scale(.96); }
.bockar-tat { margin-top: 26px; gap: 11px; }

/* ---------- Före och efter ---------- */

.ba {
  --pos: 50%;
  position: relative;
  margin-top: clamp(26px, 4vw, 44px);
  border-radius: clamp(24px, 3.2vw, 36px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dde7e3;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(1.05) contrast(1.03);
}
.ba-lager {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-fore { filter: saturate(.36) brightness(.72) contrast(.94) sepia(.16); }

.ba-etikett {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-etikett-v { left: 14px; background: var(--vit); color: var(--ink); }
.ba-etikett-h { right: 14px; background: var(--gul); color: var(--ink); }

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  background: transparent;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba-range::-webkit-slider-runnable-track { height: 100%; background: transparent; }
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 2px; height: 100%; background: transparent; border: 0; }
.ba-range::-moz-range-track { height: 100%; background: transparent; border: 0; }
.ba-range::-moz-range-thumb { width: 2px; height: 100%; background: transparent; border: 0; border-radius: 0; }

.ba-handtag {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 4;
  width: 3px;
  margin-left: -1.5px;
  background: var(--vit);
  pointer-events: none;
}
.ba-grepp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 30%;
  background: var(--gul);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.ba-grepp svg { width: 30px; height: 20px; }
.ba-range:focus-visible ~ .ba-handtag .ba-grepp { outline: 3px solid var(--ink); outline-offset: 4px; }

.ba-not { margin-top: 16px; font-size: .875rem; color: var(--ink-2); }

/* ---------- Så funkar det ---------- */

.steg-rad {
  --steg-gap: 34px;
  list-style: none;
  margin-top: clamp(30px, 4vw, 52px);
  display: grid;
  gap: var(--steg-gap);
}
.steg { position: relative; padding-left: 74px; }
.steg-nr {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 30%;
  background: var(--gul);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
}
.steg:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 62px;
  bottom: calc(-1 * var(--steg-gap) + 6px);
  width: 2px;
  background-image: repeating-linear-gradient(180deg, var(--eu) 0 7px, transparent 7px 16px);
}
.steg h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); font-weight: 700; letter-spacing: -.015em; }
.steg p { margin-top: 8px; color: var(--ink-2); max-width: 42ch; }

/* ---------- RUT ---------- */

.rut-platta {
  background: var(--yta);
  border-radius: clamp(28px, 4vw, 44px);
  padding: clamp(26px, 5vw, 60px);
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.rut-text h2 { margin-top: 12px; }
.rut-text > p { margin-top: 16px; color: var(--ink-2); max-width: 52ch; }

.kvitto {
  background: var(--vit);
  border-radius: clamp(22px, 3vw, 30px);
  padding: clamp(24px, 3.4vw, 36px);
}
.kvitto-rubrik {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eu-ink);
}
.kvitto-vad { margin-top: 8px; font-size: 1.25rem; font-weight: 700; letter-spacing: -.015em; }
.kvitto-rader { margin-top: 20px; display: grid; gap: 2px; }
.kvitto-rad {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 16px;
  padding: 13px 2px;
  color: var(--ink-2);
}
.kvitto-rad dd {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.kvitto-rad dd.kvitto-minus { color: var(--eu-ink); }
.kvitto-total {
  margin-top: 10px;
  background: var(--gul);
  border-radius: 18px;
  padding: 16px 20px;
  color: var(--ink);
}
.kvitto-total dt { font-weight: 700; }
.kvitto-total dd { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.kvitto-not { margin-top: 16px; font-size: .875rem; color: var(--ink-2); line-height: 1.5; }

/* ---------- Garantier ---------- */

.gar-grid { display: grid; gap: clamp(18px, 2.6vw, 26px); }

.gar-stor {
  background: var(--eu-ink);
  color: var(--pa-mork);
  border-radius: clamp(26px, 3.4vw, 40px);
  padding: clamp(26px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.gar-rubrik {
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.022em;
}
.gar-text { color: var(--pa-mork-2); max-width: 40ch; }
.gar-stor .knapp { align-self: start; margin-top: 6px; }

.gar-lista { list-style: none; display: grid; gap: clamp(14px, 2vw, 18px); }
.gar-lista li {
  background: var(--yta);
  border-radius: clamp(20px, 2.6vw, 28px);
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.gar-ikon {
  width: 52px;
  height: 52px;
  border-radius: 30%;
  background: var(--vit);
  color: var(--eu-ink);
  display: grid;
  place-items: center;
}
.gar-ikon svg { width: 26px; height: 26px; }
.gar-lista h3 { font-size: 1.125rem; font-weight: 700; }
.gar-lista p { margin-top: 6px; color: var(--ink-2); font-size: .9875rem; }

/* ---------- Omdömen ---------- */

.omd-par { margin-top: clamp(28px, 4vw, 44px); display: grid; gap: clamp(18px, 2.6vw, 26px); }

.omd {
  margin: 0;
  background: var(--vit);
  border-radius: clamp(24px, 3vw, 34px);
  padding: clamp(24px, 3.6vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.omd blockquote { margin: 0; }
.omd blockquote::before {
  content: "\201D";
  display: block;
  font-size: 3.4rem;
  line-height: .62;
  color: var(--eu-ink);
  margin-bottom: 10px;
}
.omd blockquote p { font-size: clamp(1.02rem, 1.9vw, 1.2rem); line-height: 1.55; color: var(--ink); }
.omd figcaption { margin-top: auto; display: flex; align-items: center; gap: 14px; }
/* Portratten kom som 1:1, samma proportion som ramen, sa object-fit har inget
   att beskara och ansiktena blir sma. Bilden ritas darfor 80 px och beskars med
   clip-path till 60 px. De negativa marginalerna ar exakt insets-varden, sa
   layouten ser fortfarande en 60x60-ruta. */
.omd figcaption img {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  margin: -6px -9px -14px -11px;
  clip-path: inset(6px 9px 14px 11px round 30%);
}
.omd-namn { display: flex; flex-direction: column; font-weight: 600; color: var(--ink); }
.omd-ort { font-weight: 400; font-size: .875rem; color: var(--ink-2); margin-top: 2px; }

/* ---------- Boka ---------- */

.boka-platta {
  background: var(--eu-ink);
  color: var(--pa-mork);
  border-radius: clamp(28px, 4vw, 44px);
  padding: clamp(26px, 5vw, 56px);
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.boka-info h2 { margin-top: 12px; }
.boka-lead { margin-top: 16px; color: var(--pa-mork-2); max-width: 42ch; }

.boka-fakta { margin-top: 30px; display: grid; gap: 18px; }
.boka-fakta dt {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--pa-mork-2);
  margin-bottom: 5px;
}
.boka-fakta dd { color: var(--pa-mork); line-height: 1.5; }
.boka-fakta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--pa-mork);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.boka-kort {
  background: var(--vit);
  color: var(--ink);
  border-radius: clamp(22px, 3vw, 32px);
  padding: clamp(22px, 3.4vw, 36px);
}
.boka-form { display: grid; gap: 16px; }
.falt { display: grid; gap: 7px; }
.falt label { font-size: .9375rem; font-weight: 600; }
.falt-valfri { font-weight: 400; font-size: .875rem; color: var(--ink-3); }

.boka-form input,
.boka-form select,
.boka-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 0;
  border-radius: 14px;
  background: var(--yta);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.boka-form textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.boka-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23253430' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 8 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
}

.formsvar {
  margin-top: 2px;
  background: var(--gul);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-not { font-size: .8125rem; color: var(--ink-3); line-height: 1.5; }

/* ---------- Footer ---------- */

.fot { background: var(--yta); padding-top: clamp(44px, 6vw, 68px); }
.fot-inre { display: grid; gap: 30px; padding-bottom: 34px; }
.fot-text { margin-top: 16px; font-size: .9375rem; color: var(--ink-2); max-width: 38ch; }
.fot-rubrik {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eu-ink);
  margin-bottom: 8px;
}
.fot-nav ul, .fot-kontakt ul { list-style: none; display: grid; gap: 2px; }
.fot-nav li, .fot-kontakt li {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-2);
  font-size: .9875rem;
}
.fot-nav a, .fot-kontakt a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  color: var(--ink);
  text-decoration: none;
}
.fot-nav a:hover, .fot-kontakt a:hover { color: var(--eu-ink); }

.fot-rad {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  padding-block: 24px 28px;
  font-size: .8125rem;
  color: var(--ink-3);
}

/* ---------- Motion ---------- */

html.js .reveal { opacity: 0; transform: translateY(16px); }
html.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, .7, .3, 1);
}

/* ---------- Breakpoints ---------- */

@media (max-width: 559px) {
  .knapprad { display: grid; }
  .knapprad .knapp { width: 100%; }
}

@media (min-width: 560px) {
  .ba { aspect-ratio: 3 / 2; }
  .boka-fakta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 26px; }
}

@media (min-width: 760px) {
  .gar-lista li { align-items: center; }
  .omd-par { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fot-inre { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 40px; }
}

@media (min-width: 900px) {
  :root { --topp-h: 78px; }

  .meny {
    display: flex;
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    gap: clamp(16px, 2.2vw, 32px);
    background: none;
    padding: 0;
    overflow: visible;
  }
  .meny-lista { display: flex; gap: clamp(10px, 1.4vw, 20px); }
  .meny-lista a { min-height: 44px; min-width: 44px; justify-content: center; font-size: .9875rem; font-weight: 500; }
  .meny-lista a:hover { color: var(--eu-ink); }
  .meny-slut { margin-top: 0; display: flex; align-items: center; gap: 16px; }
  .meny-tel { min-height: 44px; font-size: .9375rem; }
  .meny-slut .knapp { min-height: 46px; padding: 8px 22px; font-size: .9375rem; }
  .hamburgare { display: none; }
  body.meny-oppen { overflow: auto; }

  .hero-platta { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); }
  .hero-bild img { aspect-ratio: 4 / 5; }

  .tj { grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); }
  .tj-mork { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); }
  .tj-mork .tj-kropp { order: 2; }
  .tj-mork .tj-ingar { order: 1; }

  .ba { aspect-ratio: 16 / 9; }

  .steg-rad { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--steg-gap); }
  .steg { padding-left: 0; padding-top: 72px; }
  .steg:not(:last-child)::before {
    left: 64px;
    right: calc(-1 * var(--steg-gap));
    top: 26px;
    bottom: auto;
    width: auto;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, var(--eu) 0 7px, transparent 7px 16px);
  }

  .rut-platta { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
  .gar-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .boka-platta { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; }
}

@media (min-width: 900px) and (max-width: 1069px) {
  .meny-tel { display: none; }
}

@media (min-width: 1100px) {
  .hero-plupp { left: 8%; bottom: -18px; }
}

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