/* ═══════════════════════════════════════════════════════════════════════
   Tassen Hunddagis · skiffer-turkos, clinical-soft
   Signatur: dagsplanen. Två lodräta spår med hörnhöga block vars höjd är
   passets längd, mot en timlinjal 07 till 17 som ritas in vid scroll.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --bas: #1b2327;
  --alt: #1e272c;
  --yta: #253036;
  --yta2: #2a353b;
  --linje: #35454d;
  --linje-svag: #2c3a41;

  --accent: #4bb3a7;
  --accent-txt: #63c6ba;
  --pa-accent: #12191b;

  --text: #eef3f4;
  --dim: #b4c3c7;
  --dim2: #9fb2b7;

  --k-ute: #4bb3a7;
  --k-akt: #2f6a64;
  --k-vila: #222c31;
  --k-oms: #2a353b;

  --ram: 1180px;
  --skala-b: 46px;
  --lucka: 8px;
  --rad: 34px;

  --disp: "Krona One", "Trebuchet MS", sans-serif;
  --brod: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bas);
  color: var(--text);
  font-family: var(--brod);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
svg { display: block; }

h1, h2, h3 {
  font-family: var(--disp);
  font-weight: 400;
  margin: 0;
  overflow-wrap: break-word;
  hyphens: manual;
}

/* Krona One: Å-ringen når 0.995 em och g-staven 0.26 em under baslinjen.
   Mätt med measureText efter document.fonts.load. Två rader kolliderar
   under 1.26, därför ligger golvet på 1.32. */
h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.34; letter-spacing: -0.008em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.32; }
h3 { font-size: 1.05rem; line-height: 1.34; }

p { margin: 0; overflow-wrap: break-word; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; }

.ram {
  width: 100%;
  max-width: var(--ram);
  margin-inline: auto;
  padding-inline: clamp(18px, 4.6vw, 40px);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 90;
  background: var(--accent);
  color: var(--pa-accent);
  padding: 14px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent-txt); outline-offset: 3px; }

/* ── Toppen ─────────────────────────────────────────────────────────── */

.topp {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bas);
  border-bottom: 1px solid var(--linje-svag);
}

.topp-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
}

.marke {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  text-decoration: none;
  color: var(--text);
}
.marke-ikon { color: var(--text); flex: 0 0 auto; }
.marke-ord {
  font-family: var(--disp);
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.marke-sub {
  display: block;
  font-family: var(--brod);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--dim2);
  margin-top: 3px;
}

.meny-lista { display: flex; align-items: center; gap: 4px; }
.meny-lista a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dim);
  text-decoration: none;
}
.meny-lista a:hover { color: var(--text); background: var(--yta); }

.meny-tel { display: none; }

.topp-tel {
  display: none;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--linje);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.topp-tel:hover { border-color: var(--accent); }

.menyknapp {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: var(--yta);
  border: 1px solid var(--linje);
  border-radius: 12px;
  cursor: pointer;
}
.menyknapp span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.meny-oppen .menyknapp span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.meny-oppen .menyknapp span:nth-child(2) { opacity: 0; }
.meny-oppen .menyknapp span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .meny {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bas);
    border-bottom: 1px solid var(--linje);
    padding: 10px clamp(18px, 4.6vw, 40px) 20px;
    box-shadow: 0 24px 40px -28px #000;
  }
  .meny-oppen .meny { display: block; }
  .meny-lista { flex-direction: column; align-items: stretch; gap: 0; }
  .meny-lista li { width: 100%; }
  .meny-lista a {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding: 14px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--linje-svag);
    font-size: 1rem;
    color: var(--text);
  }
  .meny-tel {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 16px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--pa-accent);
    font-weight: 600;
    text-decoration: none;
  }
  body.meny-oppen { overflow: hidden; }
}

@media (min-width: 900px) {
  .menyknapp { display: none; }
  .topp-tel { display: inline-flex; }
}

/* ── Knappar ────────────────────────────────────────────────────────── */

.knapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--brod);
}
.knapp-fyll { background: var(--accent); color: var(--pa-accent); }
.knapp-fyll:hover { background: var(--accent-txt); }
.knapp-linje { border-color: var(--linje); color: var(--text); background: transparent; }
.knapp-linje:hover { border-color: var(--accent); }

/* ── Sektioner ──────────────────────────────────────────────────────── */

.sekt { padding-block: clamp(52px, 7.5vw, 100px); }
.sekt-dagen, .sekt-insk, .sekt-folk { background: var(--alt); }

.ogonbryn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent-txt);
  margin-bottom: 14px;
}

.sekthuvud { max-width: 46rem; margin-bottom: clamp(28px, 4vw, 44px); }
.ledtext {
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--dim);
  max-width: 44rem;
}

/* ── Hero ───────────────────────────────────────────────────────────── */

.hero-in {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  padding-block: clamp(40px, 6vw, 84px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-in { grid-template-columns: 1.06fr 0.94fr; }
}

.ingress {
  margin-top: 20px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: var(--dim);
  max-width: 34rem;
}

.hero-knappar { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-fakta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-fakta li {
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--yta);
  border: 1px solid var(--linje-svag);
  font-size: 0.85rem;
  color: var(--dim);
}

.hero-bild { display: flex; flex-direction: column; align-items: center; }
.blob {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
  border-radius: 64% 36% 55% 45% / 48% 58% 42% 52%;
  overflow: hidden;
  box-shadow: 0 40px 70px -40px #000;
}
.gard { width: 100%; height: 100%; }

.kamera {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--yta);
  border: 1px solid var(--linje-svag);
  font-size: 0.85rem;
  color: var(--text);
  text-align: left;
}
.kamera-punkt {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
  animation: puls 2.6s ease-in-out infinite;
}
@keyframes puls { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── SIGNATUR · dagsplanen ──────────────────────────────────────────── */

.summa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: clamp(26px, 3.5vw, 38px);
  padding-bottom: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid var(--linje-svag);
}
@media (min-width: 760px) { .summa { grid-template-columns: repeat(4, 1fr); } }
.summa li { font-size: 0.88rem; color: var(--dim); line-height: 1.45; }
.summa-tal {
  display: block;
  font-family: var(--disp);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.25;
  color: var(--accent-txt);
  margin-bottom: 4px;
}

.plan-topp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 18px;
}
.teckenlista { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.teckenlista li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--dim);
}
.tecken {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex: 0 0 auto;
}
.t-ute { background: var(--k-ute); }
.t-akt { background: var(--k-akt); }
.t-vila { background: var(--k-vila); border: 1px solid var(--linje); }
.t-oms { background: var(--k-oms); border: 1px solid var(--linje-svag); }

.nu-not { font-size: 0.82rem; color: var(--dim2); }

.plan { padding-bottom: 26px; }

.plan-rubriker,
.plan-kropp {
  display: grid;
  grid-template-columns: var(--skala-b) 1fr 1fr;
  gap: var(--lucka);
}

.plan-rubriker { align-items: end; margin-bottom: 10px; }
.plan-tidord {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim2);
}
.lane-rubrik {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.lane-rubrik span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--dim2);
  margin-top: 3px;
}

.plan-kropp { position: relative; }

.skala { position: relative; height: calc(var(--rad) * 20); }
.timmar {
  display: grid;
  grid-template-rows: repeat(10, calc(var(--rad) * 2));
}
.timmar li,
.timme-sist {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dim2);
  line-height: 1;
}
.timme-sist { position: absolute; left: 0; bottom: 0; transform: translateY(0.9em); }

.linjal {
  position: absolute;
  right: 0;
  top: 0;
  width: 22px;
  height: 100%;
}
.ld { fill: none; stroke: var(--linje); stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.ld-spine { stroke: var(--linje-svag); }

.js .ld { stroke-dasharray: 22; stroke-dashoffset: 22; }
.js .ld-spine { stroke-dasharray: 600; stroke-dashoffset: 600; }
.js .linjal.syns .ld { stroke-dashoffset: 0; transition: stroke-dashoffset 0.55s ease-out; }
.js .linjal.syns .ld-spine { transition: stroke-dashoffset 1.1s ease-out; }
.js .linjal.syns .ld:nth-child(2) { transition-delay: 0.10s; }
.js .linjal.syns .ld:nth-child(3) { transition-delay: 0.17s; }
.js .linjal.syns .ld:nth-child(4) { transition-delay: 0.24s; }
.js .linjal.syns .ld:nth-child(5) { transition-delay: 0.31s; }
.js .linjal.syns .ld:nth-child(6) { transition-delay: 0.38s; }
.js .linjal.syns .ld:nth-child(7) { transition-delay: 0.45s; }
.js .linjal.syns .ld:nth-child(8) { transition-delay: 0.52s; }
.js .linjal.syns .ld:nth-child(9) { transition-delay: 0.59s; }
.js .linjal.syns .ld:nth-child(10) { transition-delay: 0.66s; }
.js .linjal.syns .ld:nth-child(11) { transition-delay: 0.73s; }
.js .linjal.syns .ld:nth-child(12) { transition-delay: 0.80s; }
.js .linjal.syns .ld:nth-child(13) { transition-delay: 0.87s; }

.lane { position: relative; height: calc(var(--rad) * 20); }

.pass {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--f) * var(--rad) + 3px);
  height: calc((var(--t) - var(--f)) * var(--rad) - 6px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  margin: 0;
  padding: 8px 10px 8px 13px;
  border: 0;
  border-radius: 12px;
  background: var(--k-oms);
  color: var(--text);
  font-family: var(--brod);
  text-align: left;
  cursor: pointer;
  transition: filter 0.18s ease;
}
.pass:hover { filter: brightness(1.12); }

.pass::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: currentColor;
  opacity: 0.4;
  transform: scaleY(0);
  transform-origin: top center;
}
.js .plan-kropp.syns .pass::before { transform: scaleY(1); transition: transform 0.5s ease-out; }
.js .plan-kropp.syns .pass:nth-child(1)::before { transition-delay: 0.20s; }
.js .plan-kropp.syns .pass:nth-child(2)::before { transition-delay: 0.28s; }
.js .plan-kropp.syns .pass:nth-child(3)::before { transition-delay: 0.36s; }
.js .plan-kropp.syns .pass:nth-child(4)::before { transition-delay: 0.44s; }
.js .plan-kropp.syns .pass:nth-child(5)::before { transition-delay: 0.52s; }
.js .plan-kropp.syns .pass:nth-child(6)::before { transition-delay: 0.60s; }
.js .plan-kropp.syns .pass:nth-child(7)::before { transition-delay: 0.68s; }
.js .plan-kropp.syns .pass:nth-child(8)::before { transition-delay: 0.76s; }
.js .plan-kropp.syns .pass:nth-child(9)::before { transition-delay: 0.84s; }

.pass-tid {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.pass-namn {
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.25;
}
.pass-om { display: none; }

.k-ute { background: var(--k-ute); color: var(--pa-accent); }
.k-akt { background: var(--k-akt); color: var(--text); }
.k-vila { background: var(--k-vila); color: var(--text); box-shadow: inset 0 0 0 1px var(--linje); }
.k-oms { background: var(--k-oms); color: var(--text); }
.k-vila .pass-om, .k-oms .pass-om { color: var(--dim); }

.pass[aria-pressed="true"] { outline: 2px solid var(--text); outline-offset: 2px; }

.nu {
  position: absolute;
  left: calc(var(--skala-b) + var(--lucka) / 2);
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 3;
}
.nu-linje {
  display: block;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--text) 0 9px, rgba(18, 25, 27, 0.35) 9px 16px);
}
.nu-flagga {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-52%);
  background: var(--accent);
  color: var(--pa-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.panel {
  margin-top: 20px;
  background: var(--yta);
  border: 1px solid var(--linje);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
}
.panel-topp { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: baseline; }
.panel-tid {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-txt);
}
.panel-grupp { font-size: 0.82rem; color: var(--dim); }
.panel-namn { margin-top: 8px; font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
.panel-txt { margin-top: 12px; color: var(--dim); line-height: 1.65; max-width: 46rem; }

.panel-fakta {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--linje-svag);
}
@media (min-width: 620px) { .panel-fakta { grid-template-columns: repeat(2, 1fr); } }
.panel-fakta dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim2);
  margin-bottom: 4px;
}
.panel-fakta dd { font-size: 0.94rem; color: var(--text); }

.noter { margin-top: 24px; display: grid; gap: 10px; }
.noter li {
  position: relative;
  padding-left: 18px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--dim2);
}
.noter li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

@media (min-width: 700px) {
  :root { --skala-b: 62px; --lucka: 14px; --rad: 40px; }
  .pass-om { display: block; font-size: 0.78rem; line-height: 1.35; margin-top: 2px; }
  .pass-namn { font-size: 0.95rem; }
  .pass-tid { font-size: 0.74rem; }
  .lane-rubrik { font-size: 1rem; }
}
@media (min-width: 1000px) {
  :root { --skala-b: 76px; --lucka: 18px; --rad: 44px; }
  .pass { padding: 11px 14px 11px 18px; }
  .timmar li, .timme-sist { font-size: 0.78rem; }
}

/* ── Priser ─────────────────────────────────────────────────────────── */

.priskort { display: grid; gap: 16px; }
@media (min-width: 720px) { .priskort { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .priskort { grid-template-columns: 1.05fr 1fr 0.92fr; } }

.pris {
  background: var(--yta);
  border: 1px solid var(--linje);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}
.pris-stark { border-color: var(--accent); }
.pris-namn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-txt);
}
.pris-tal {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--dim);
}
.pris-tal span {
  display: block;
  font-family: var(--disp);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 2px;
}
.pris-under { margin-top: 10px; font-size: 0.9rem; color: var(--dim); }
.pris-lista {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--linje-svag);
  display: grid;
  gap: 10px;
}
.pris-lista li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dim);
}
.pris-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.villkor {
  display: grid;
  gap: 20px;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(26px, 3.5vw, 38px);
  border-top: 1px solid var(--linje-svag);
}
@media (min-width: 820px) { .villkor { grid-template-columns: repeat(3, 1fr); } }
.villkor-block h3 { font-size: 0.98rem; margin-bottom: 12px; }
.villkor-lista { display: grid; gap: 8px; }
.villkor-lista li { font-size: 0.9rem; line-height: 1.5; color: var(--dim); }
.villkor-lista li span {
  display: block;
  font-family: var(--brod);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-txt);
}

/* ── Inskolning ─────────────────────────────────────────────────────── */

.steg { display: grid; gap: 16px; }
@media (min-width: 820px) { .steg { grid-template-columns: repeat(3, 1fr); } }
.steg-kort {
  display: flex;
  flex-direction: column;
  background: var(--yta);
  border: 1px solid var(--linje);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
}
.steg-nr {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  font-family: var(--disp);
  font-size: 1.15rem;
  color: var(--accent-txt);
  margin-bottom: 18px;
}
.steg-kort h3 { margin-bottom: 12px; }
.steg-kort p { font-size: 0.94rem; line-height: 1.6; color: var(--dim); }
.steg-not {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--linje-svag);
  font-size: 0.84rem !important;
  color: var(--dim2) !important;
}

/* ── Krav ───────────────────────────────────────────────────────────── */

.krav-in { display: grid; gap: clamp(28px, 4vw, 54px); }
@media (min-width: 900px) { .krav-in { grid-template-columns: 0.86fr 1.14fr; align-items: start; } }

.krav-mejl { margin-top: 20px; }
.krav-mejl a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--accent-txt);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.kravlista li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--linje-svag);
}
.kravlista li:last-child { border-bottom: 1px solid var(--linje-svag); }
.bock {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--yta2);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.bock svg { width: 19px; height: 19px; }
.kravlista h3 { font-size: 0.98rem; margin-bottom: 5px; }
.kravlista p { font-size: 0.9rem; line-height: 1.55; color: var(--dim); }

/* ── Personalen ─────────────────────────────────────────────────────── */

.folk { display: grid; gap: 18px; }
@media (min-width: 760px) { .folk { grid-template-columns: repeat(3, 1fr); } }
.folkkort {
  background: var(--yta);
  border: 1px solid var(--linje);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
}
.folkbild {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--linje);
  margin-bottom: 18px;
}
.folkkort h3 { font-size: 1.08rem; }
.folkroll {
  margin-top: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-txt);
}
.folktext { margin-top: 12px; font-size: 0.92rem; line-height: 1.6; color: var(--dim); }

/* ── Kontakt ────────────────────────────────────────────────────────── */

.kontakt-in { display: grid; gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (min-width: 900px) { .kontakt-in { grid-template-columns: 1fr 1fr; } }

.kontakt-fakta {
  display: grid;
  gap: 4px 24px;
  margin-top: 28px;
}
@media (min-width: 560px) { .kontakt-fakta { grid-template-columns: repeat(2, 1fr); } }
.kontakt-fakta div { padding: 10px 0; border-top: 1px solid var(--linje-svag); }
.kontakt-fakta dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim2);
}
.kontakt-fakta dd { font-size: 1rem; color: var(--text); }
.kontakt-fakta dd a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--accent);
}
.kontakt-not {
  margin-top: 22px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--dim2);
}

.medtag {
  margin-top: 28px;
  padding: clamp(20px, 2.6vw, 26px);
  border: 1px solid var(--linje);
  border-radius: 18px;
}
.medtag h3 { font-size: 0.98rem; margin-bottom: 14px; }
.medlista { display: grid; gap: 9px; }
.medlista li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dim);
}
.medlista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.medtag-not {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--linje-svag);
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--dim2);
}

.form {
  background: var(--yta);
  border: 1px solid var(--linje);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
}
.form-rubrik {
  font-family: var(--disp);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.falt { margin-bottom: 14px; }
.falt label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim2);
  margin-bottom: 7px;
}
.falt input,
.falt select,
.falt textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  background: var(--yta2);
  border: 1px solid var(--linje);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--brod);
  font-size: 0.97rem;
  line-height: 1.4;
}
.falt textarea { min-height: 96px; resize: vertical; }
.falt input::placeholder, .falt textarea::placeholder { color: var(--dim2); }
.falt input:focus, .falt select:focus, .falt textarea:focus { border-color: var(--accent); }
.form-knapp { width: 100%; margin-top: 8px; }
.form-svar { margin-top: 14px; font-size: 0.82rem; color: var(--dim2); text-align: center; }
.form-svar.kvitto { color: var(--accent-txt); }

/* ── Foten ──────────────────────────────────────────────────────────── */

.fot { background: #171f23; border-top: 1px solid var(--linje-svag); padding-top: clamp(40px, 5vw, 64px); }
.fot-in { display: grid; gap: 28px; padding-bottom: 34px; }
@media (min-width: 760px) { .fot-in { grid-template-columns: 1.5fr 1fr 1fr; } }
.fot-ord { font-size: 1.05rem; }
.fot-brand p { margin-top: 14px; font-size: 0.9rem; line-height: 1.6; color: var(--dim); max-width: 26rem; }
.fot-lista { display: grid; gap: 4px; align-content: start; }
.fot-lista a, .fot-txt {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.9rem;
  color: var(--dim);
  text-decoration: none;
}
.fot-lista a:hover { color: var(--text); }
.fot-rad {
  border-top: 1px solid var(--linje-svag);
  padding: 20px clamp(18px, 4.6vw, 40px);
  font-size: 0.78rem;
  color: var(--dim2);
  text-align: center;
}

/* ── Scroll-reveal ──────────────────────────────────────────────────── */

.js .sekthuvud,
.js .pris,
.js .steg-kort,
.js .folkkort,
.js .kravlista li { opacity: 0; transform: translateY(16px); }

.js .sekthuvud.syns,
.js .pris.syns,
.js .steg-kort.syns,
.js .folkkort.syns,
.js .kravlista li.syns { opacity: 1; transform: none; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .sekthuvud,
  .js .pris,
  .js .steg-kort,
  .js .folkkort,
  .js .kravlista li,
  .js .syns { opacity: 1; transform: none; transition: none; }
  .js .ld, .js .ld-spine { stroke-dashoffset: 0; transition: none; }
  .js .plan-kropp .pass::before { transform: scaleY(1); transition: none; }
  .kamera-punkt { animation: none; }
  .menyknapp span { transition: none; }
  .pass { transition: none; }
}
