/* =========================================================
   KRS Sykkel — "Prislapp"
   Lyst og varmt verkstedpreg: runde former, klistremerker og
   prislapper, kondensert kursiv skrift som i logoen.

   Krem:     #FAF6F0  (sidebakgrunn)
   Sand:     #F2E9DD  (alternativ seksjon)
   Kull:     #1E1E1E  (tekst, mørke flater)
   Oransje:  #E56E08  (merkefarge fra logoen – flater, knapper med kull-tekst)
   Or. tekst:#A94F00  (oransje tekst på lys bakgrunn, AA-kontrast)
   Or. myk:  #FDE8D4  (bobler og merkelapper)
   ========================================================= */

:root {
  --cream: #faf6f0;
  --sand: #f2e9dd;
  --white: #ffffff;
  --charcoal: #1e1e1e;
  --charcoal-2: #2b2b2b;
  --orange: #e56e08;
  --orange-hover: #f5801c;
  --orange-text: #a94f00;
  --orange-soft: #fde8d4;
  --text: #1e1e1e;
  --muted: #5f5a54;
  --muted-dark: #b9b3ab;
  --line: #e7ddd0;
  --line-dark: rgba(255, 255, 255, 0.14);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 1px 2px rgba(30, 30, 30, 0.05), 0 8px 24px rgba(30, 30, 30, 0.07);
  --shadow-lg: 0 2px 6px rgba(30, 30, 30, 0.06), 0 22px 50px rgba(30, 30, 30, 0.14);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Flaten bak siden. Drar du forbi toppen eller bunnen på mobil, er den mørk
   som toppstripa og bunnteksten – ikke lys. */
html { background: var(--charcoal); }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--charcoal); color: var(--white);
  font-weight: 700; padding: 10px 18px; border-radius: 999px;
}
.skip-link:focus { top: 12px; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0;
}
h1, h2 { font-style: italic; }
h1 { font-weight: 900; }

.i { width: 1.15em; height: 1.15em; flex: none; }

.kicker {
  display: block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 14px;
}
.bg-dark .kicker { color: var(--orange); }
.bg-orange .kicker { color: var(--charcoal); }

.lede { font-size: 19px; color: var(--muted); max-width: 580px; margin-top: 18px; }
.bg-dark .lede { color: var(--muted-dark); }
.bg-orange .lede { color: var(--charcoal); }

.hl { color: var(--orange); }

.text-link { color: var(--orange-text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--charcoal); }
.bg-dark .text-link { color: var(--orange); }
.bg-dark .text-link:hover { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .i { transition: transform 0.2s ease; }
.btn:hover .i { transform: translateX(3px); }
.btn:hover .i.ext { transform: translate(2px, -2px); }

.btn-primary { background: var(--orange); color: var(--charcoal); }
.btn-primary:hover { background: var(--orange-hover); box-shadow: 0 10px 24px rgba(229, 110, 8, 0.35); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: #000; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-light { background: var(--white); color: var(--charcoal); }
.btn-light:hover { background: var(--cream); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600; font-size: 15px;
  box-shadow: var(--shadow);
}
.pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }

.tag-pill {
  display: inline-block;
  align-self: flex-start;
  background: var(--orange-soft);
  color: var(--orange-text);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

.icon-bubble {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-text);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.icon-bubble .i { width: 22px; height: 22px; }
.icon-bubble.lg { width: 56px; height: 56px; }
.icon-bubble.lg .i { width: 26px; height: 26px; }
.icon-bubble.dark { background: var(--charcoal); color: var(--orange); }

/* ---------- Top bar ---------- */
.topbar { background: var(--charcoal); color: #eeeae4; font-size: 14px; font-weight: 500; }
.topbar-inner { display: flex; gap: 8px 28px; align-items: center; justify-content: flex-end; flex-wrap: wrap; padding-top: 9px; padding-bottom: 9px; }
.topbar-inner > * { display: inline-flex; align-items: center; gap: 8px; }
.topbar .i { color: var(--orange); width: 16px; height: 16px; }
.topbar a:hover { color: var(--orange); }
.topbar .lead-item { margin-right: auto; }
@media (max-width: 760px) {
  .topbar .hide-sm { display: none; }
  .topbar-inner { justify-content: space-between; }
  .topbar .lead-item { margin-right: 0; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand span {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 30px; line-height: 1; letter-spacing: 0.01em; white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  display: block;
  font-weight: 600; font-size: 16px;
  padding: 9px 15px; border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--sand); }
.nav-links a[aria-current="page"] { background: var(--orange-soft); color: var(--orange-text); }
.nav-links a.nav-sale { background: var(--orange); color: var(--charcoal); font-weight: 700; margin: 0 4px; }
.nav-links a.nav-sale:hover { background: var(--orange-hover); }
.nav-links a.nav-sale[aria-current="page"] { background: var(--charcoal); color: var(--white); }
.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--line);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2.5px; border-radius: 2px;
  background: var(--charcoal); position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6.5px; }
.nav-toggle span::after { position: absolute; top: 6.5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 959px) {
  .nav-links {
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 13px 16px; border-radius: 12px; }
  .nav-links .nav-cta-mobile { display: block; padding: 8px 6px 4px; }
  .nav-links .nav-cta-mobile a { display: flex; justify-content: center; background: var(--charcoal); color: var(--white); border-radius: 999px; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--charcoal); color: var(--white); }
.bg-orange { background: var(--orange); color: var(--charcoal); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 40px; flex-wrap: wrap; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); }
.section-head .lede { margin-top: 14px; }

/* ---------- Home hero ---------- */
.hero { padding: 64px 0 110px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(3.2rem, 6.8vw, 6.1rem); margin-top: 22px; }
.hero .lede { font-size: 20px; }
.hero .btn-row { margin-top: 34px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 40px; }
.hero-facts li { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.hero-facts .icon-bubble { width: 38px; height: 38px; }
.hero-facts .icon-bubble .i { width: 19px; height: 19px; }

.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; z-index: 0;
  width: 78%; aspect-ratio: 1; right: -16%; top: -18%;
  border-radius: 50%; border: 30px solid var(--orange);
  opacity: 0.95;
}
.hero-photo {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.3; background: var(--charcoal);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.sticker { position: absolute; z-index: 2; left: -40px; top: -44px; width: 156px; height: 156px; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18)); }
.sticker svg { width: 100%; height: 100%; }
.sticker .spin { transform-origin: 80px 80px; animation: spin 22s linear infinite; }
.sticker text { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.08em; fill: var(--charcoal); }
.sticker .center-big { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 34px; fill: var(--charcoal); letter-spacing: 0; }
.sticker .center-small { font-family: var(--font-display); font-weight: 800; font-size: 13px; fill: var(--charcoal); letter-spacing: 0.12em; }
@keyframes spin { to { transform: rotate(360deg); } }

.hang-tag {
  position: absolute; z-index: 2; right: 28px; bottom: -34px;
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 16px 24px 16px 48px; transform: rotate(-4deg);
}
.hang-tag::before {
  content: ""; position: absolute; left: 18px; top: 50%; width: 14px; height: 14px; margin-top: -7px;
  border-radius: 50%; background: var(--cream); border: 2px solid var(--line);
}
.hang-tag small { display: block; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.hang-tag strong { display: block; font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 32px; line-height: 1.05; }

@media (max-width: 959px) {
  .hero { padding: 40px 0 96px; }
  .hero-grid { grid-template-columns: 1fr; gap: 72px; }
  .hero-grid > :first-child { position: relative; z-index: 3; }
  .hero-media { max-width: 620px; margin-left: 28px; }
  .hero-media::before { width: 60%; top: -10%; right: -12%; border-width: 22px; }
  .sticker { width: 118px; height: 118px; left: -28px; top: -40px; }
  .hang-tag { right: 12px; }
}

/* ---------- Bike cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bike-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bike-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bike-card .photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--charcoal); }
.bike-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bike-card:hover .photo img { transform: scale(1.05); }
.bike-card .body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.bike-card h3 { font-size: 2.1rem; margin-top: 14px; }
.bike-card p { color: var(--muted); margin-top: 10px; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 700; }
.card-link .i { color: var(--orange-text); transition: transform 0.2s ease; }
.bike-card:hover .card-link .i { transform: translateX(4px); }
.stretched::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
@media (max-width: 959px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- Why (orange) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 28px 26px 30px; }
.why-card h3 { font-size: 1.65rem; margin-top: 20px; }
.why-card p { color: var(--muted); margin-top: 8px; font-size: 16px; }
.bg-sand .why-card, .bg-cream .why-card { box-shadow: var(--shadow); }
.why-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1040px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .why-grid.three { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Workshop (dark) ---------- */
.bg-dark.has-ring { position: relative; overflow: hidden; }
.chainring { position: absolute; width: 520px; height: 520px; right: -170px; bottom: -190px; color: var(--orange); opacity: 0.14; pointer-events: none; }
.chainring svg { width: 100%; height: 100%; animation: spin 90s linear infinite; }
.workshop { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.workshop h2 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); }
.workshop .btn-row { margin-top: 32px; }
.check-list { display: grid; gap: 10px; margin-top: 26px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .i { color: var(--orange); margin-top: 4px; width: 18px; height: 18px; }
.check-list.two { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
@media (max-width: 600px) { .check-list.two { grid-template-columns: 1fr; } }
@media (max-width: 959px) { .workshop { grid-template-columns: 1fr; gap: 48px; } }

.price-card {
  background: var(--white); color: var(--charcoal);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px 32px 26px;
}
.price-card h3 { font-size: 1.7rem; display: flex; align-items: center; gap: 12px; }
.price-card h3 .i { color: var(--orange-text); }
.price-rows { margin-top: 10px; }
.price-rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 14px 0; border-bottom: 2px dashed var(--line); }
.price-rows li:last-child { border-bottom: none; }
.price-rows .name { font-weight: 600; }
.price-rows .name small { display: block; font-weight: 400; color: var(--muted); font-size: 14.5px; line-height: 1.4; margin-top: 2px; }
.price-rows .amount { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1; white-space: nowrap; }
.price-rows .amount small { font-size: 0.55em; font-weight: 700; color: var(--muted); margin-left: 2px; }
.price-rows .amount .from { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.price-card .foot { margin-top: 12px; padding-top: 14px; border-top: 2px solid var(--charcoal); font-size: 14.5px; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price-card .foot strong { color: var(--charcoal); }

/* ---------- Route steps ---------- */
.route { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.route::before {
  content: ""; position: absolute; top: 36px; left: 16.6%; right: 16.6%;
  border-top: 3px dashed var(--orange); z-index: 0;
}
.route li { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.route .num {
  width: 72px; height: 72px; margin: 0 auto; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 32px;
  box-shadow: 0 0 0 8px var(--cream);
}
.route li:last-child .num { background: var(--orange); color: var(--charcoal); }
.route h3 { font-size: 1.8rem; margin-top: 22px; }
.route p { color: var(--muted); margin: 10px auto 0; max-width: 320px; }
.route a { color: var(--orange-text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 800px) {
  .route { grid-template-columns: 1fr; gap: 36px; }
  .route::before { top: 10px; bottom: 10px; left: 35px; right: auto; border-top: none; border-left: 3px dashed var(--orange); }
  .route li { text-align: left; padding: 0 0 0 100px; min-height: 72px; }
  .route .num { position: absolute; left: 0; top: 0; margin: 0; }
  .route h3 { margin-top: 6px; }
  .route p { margin-left: 0; }
}

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 24px; }
.visit-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.visit-card h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.visit-card > p { color: var(--muted); margin-top: 16px; max-width: 520px; }
.contact-list { margin-top: 26px; display: grid; gap: 4px; }
.contact-list li { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.contact-list .label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-list .value { font-weight: 600; font-size: 18px; }
.contact-list a.value:hover { color: var(--orange-text); }
.visit-card .btn-row { margin-top: 26px; }
.hours-card { background: var(--charcoal); color: var(--white); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.hours-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; top: -90px; border-radius: 50%; border: 22px solid var(--orange); opacity: 0.9; }
.hours-card .kicker { color: var(--orange); }
.hours-card .days { font-family: var(--font-display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 2rem; line-height: 1; }
.hours-card .time { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(3.6rem, 7vw, 5.2rem); line-height: 0.95; color: var(--orange); margin-top: 6px; }
.hours-card p { color: var(--muted-dark); font-size: 16px; position: relative; }
@media (max-width: 900px) { .visit { grid-template-columns: 1fr; } .visit-card, .hours-card { padding: 30px 26px; } }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; overflow: hidden; padding: 52px 0 76px; border-bottom: 1px solid var(--line); }
.crumbs { display: flex; gap: 8px; font-weight: 600; font-size: 15px; color: var(--muted); }
.crumbs a:hover { color: var(--orange-text); }
.page-hero h1 { font-size: clamp(3rem, 7.4vw, 5.8rem); margin-top: 22px; max-width: 880px; position: relative; z-index: 1; }
.page-hero .lede { position: relative; z-index: 1; }
.page-hero .jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; position: relative; z-index: 1; }
.chip-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-weight: 600; font-size: 15px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.chip-link:hover { border-color: var(--orange); color: var(--orange-text); }
.page-wheel { position: absolute; width: 440px; height: 440px; right: -110px; top: 50%; margin-top: -220px; color: var(--orange); pointer-events: none; }
.page-wheel svg { width: 100%; height: 100%; animation: spin 60s linear infinite; }
@media (max-width: 900px) { .page-wheel { width: 300px; height: 300px; right: -150px; margin-top: -150px; opacity: 0.35; } }

/* ---------- Feature blocks (sykler) ---------- */
.feature-stack { display: grid; gap: 32px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow);
  scroll-margin-top: 110px;
}
.feature.flip .feature-photo { order: 2; }
.feature-photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--charcoal); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo .tag-pill { position: absolute; left: 16px; top: 16px; background: var(--white); box-shadow: var(--shadow); }
.feature-text { padding: 18px 22px 18px 4px; }
.feature.flip .feature-text { padding: 18px 4px 18px 22px; }
.feature h2 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); }
.feature-text p { color: var(--muted); margin-top: 14px; }
.feature-text .btn { margin-top: 26px; }
.brand-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.brand-list li { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; font-weight: 600; font-size: 15px; }
.mini-label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 22px; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
  .feature.flip .feature-photo { order: 0; }
  .feature-text, .feature.flip .feature-text { padding: 14px 12px 18px; }
}

/* ---------- Til salgs (FINN) ---------- */
.ad-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px 24px; flex-wrap: wrap; margin-bottom: 28px; }
.ad-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.ad-filters .chip-link { cursor: pointer; font-family: inherit; }
.ad-filters .chip-link[aria-pressed="true"] { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.ad-filters .n { font-size: 13px; font-weight: 700; background: var(--cream); color: var(--muted); border-radius: 999px; padding: 1px 8px; }
.ad-filters .chip-link[aria-pressed="true"] .n { background: var(--orange); color: var(--charcoal); }
.ad-sort { display: flex; align-items: center; gap: 12px; }
.ad-sort label { font-weight: 600; font-size: 15px; }
.ad-sort select {
  appearance: none; font: inherit; font-weight: 600; font-size: 15px; cursor: pointer;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 40px 9px 16px;
  background-image: linear-gradient(45deg, transparent 50%, var(--charcoal) 50%), linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
  background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%; background-size: 6px 6px; background-repeat: no-repeat;
}
.ad-count { font-weight: 700; color: var(--muted); }

.ad-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.ad-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ad-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ad-card .photo { aspect-ratio: 4 / 3; background: var(--sand); overflow: hidden; }
.ad-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ad-card:hover .photo img { transform: scale(1.05); }
.ad-card .body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.ad-card h3 { font-size: 1.45rem; line-height: 1.02; margin-top: 12px; }
.ad-card .specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.ad-card .specs li { font-size: 13.5px; font-weight: 600; color: var(--muted); background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 2px 10px; }
.ad-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-top: auto; padding-top: 18px; }
.ad-price { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 2rem; line-height: 1; }
.ad-card .card-link { margin-top: 0; font-size: 15px; color: var(--orange-text); }

.skeleton { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.skeleton::before { content: ""; display: block; aspect-ratio: 4 / 3; background: var(--sand); }
.skeleton::after { content: ""; display: block; height: 120px; margin: 18px 20px; border-radius: 10px; background: linear-gradient(90deg, var(--cream), var(--sand), var(--cream)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
#finn-app:not(.ready) .ad-toolbar { visibility: hidden; }

.finn-frame { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 12px; overflow: hidden; }
.finn-frame iframe { display: block; width: 100%; height: 1500px; border: 0; border-radius: var(--radius); background: var(--white); }
@media (max-width: 700px) { .finn-frame { padding: 6px; } .finn-frame iframe { height: 1100px; } }
.finn-note { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: space-between; margin-top: 22px; color: var(--muted); font-size: 15px; }
.finn-note .btn { padding: 11px 18px; font-size: 15px; }

/* ---------- Pricing (verksted) ---------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.tier { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.tier::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--orange); }
.tier h3 { font-size: 1.7rem; margin-top: 18px; }
.tier .price { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 4rem; line-height: 1; margin-top: 12px; }
.tier .price small { font-size: 0.4em; font-style: normal; font-weight: 700; color: var(--muted); margin-left: 4px; }
.tier p { color: var(--muted); margin-top: 6px; font-size: 15px; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }

.includes { background: var(--white); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); margin-top: 20px; }
.includes h3 { font-size: 1.5rem; }
.includes .check-list .i { color: var(--orange-text); }

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.price-grid .price-card { box-shadow: var(--shadow); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.rate-banner {
  margin-top: 24px; background: var(--orange); color: var(--charcoal);
  border-radius: var(--radius); padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap;
}
.rate-banner h3 { font-size: 1.9rem; }
.rate-banner p { font-weight: 500; margin-top: 4px; }
.rate-banner .rate { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(2.8rem, 6vw, 3.8rem); line-height: 1; white-space: nowrap; }

/* ---------- Priskalkulator ---------- */
.calc { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 28px; align-items: start; }
.calc-form { display: grid; gap: 20px; }
.calc-step { border: 0; margin: 0; padding: 0; }
.calc-step legend {
  display: flex; align-items: center; gap: 12px; padding: 0 0 14px;
  font-family: var(--font-display); font-weight: 800; font-style: italic; text-transform: uppercase;
  font-size: 1.6rem; line-height: 1;
}
.calc-step .step-no {
  width: 34px; height: 34px; border-radius: 50%; background: var(--charcoal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 19px; font-style: normal; flex: none;
}
.calc-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.calc-option { position: relative; display: block; cursor: pointer; }
.calc-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.calc-option-body {
  display: block; height: 100%; background: var(--cream); border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; transition: border-color 0.15s ease, background 0.15s ease;
}
.calc-option:hover .calc-option-body { border-color: var(--orange); }
.calc-option input:checked + .calc-option-body { border-color: var(--orange); background: var(--orange-soft); }
.calc-option input:focus-visible + .calc-option-body { outline: 3px solid var(--orange); outline-offset: 2px; }
.calc-option-name { display: block; font-weight: 700; }
.calc-option-price { display: block; margin-top: 2px; color: var(--muted); font-size: 15px; }
.calc-option input:checked + .calc-option-body .calc-option-price { color: var(--orange-text); font-weight: 600; }

.calc-group { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px 12px; }
.calc-group + .calc-group { margin-top: 14px; }
.calc-group h3 { font-size: 1.25rem; font-style: normal; margin-bottom: 6px; }
.calc-check {
  display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 2px dashed var(--line); cursor: pointer;
}
.calc-group .calc-check:last-child { border-bottom: 0; }
.calc-check input { width: 22px; height: 22px; accent-color: var(--orange); cursor: pointer; }
.calc-check-name { font-weight: 500; }
.calc-check-price { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; white-space: nowrap; color: var(--muted); }
.calc-check input:checked ~ .calc-check-name { font-weight: 700; }
.calc-check input:checked ~ .calc-check-price { color: var(--charcoal); }

.calc-summary-inner {
  position: sticky; top: 96px;
  background: var(--charcoal); color: var(--white);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.calc-summary .kicker { color: var(--orange); }
.calc-total {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.8rem, 5vw, 3.8rem); line-height: 1; color: var(--orange);
}
.calc-lines { margin: 18px 0 0; display: grid; gap: 8px; max-height: 320px; overflow: auto; }
.calc-lines li { display: flex; justify-content: space-between; gap: 14px; font-size: 15px; color: var(--muted-dark); border-bottom: 1px solid var(--line-dark); padding-bottom: 7px; }
.calc-lines li span:last-child { white-space: nowrap; color: var(--white); font-weight: 600; }
.calc-note { margin-top: 16px; font-size: 14.5px; color: var(--muted-dark); }
.calc-summary .btn-row { margin-top: 20px; }
.calc-summary .btn-outline { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.calc-summary .btn-outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
@media (max-width: 960px) {
  .calc { grid-template-columns: 1fr; }
  .calc-summary-inner { position: sticky; bottom: 0; top: auto; }
}

/* ---------- Bestill time ---------- */
.booking { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 28px; align-items: start; }
.booking-main { display: grid; gap: 22px; }
.booking-main .calc-step { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 24px 24px; }
.booking-main .calc-step legend { float: left; width: 100%; }
.booking-hint { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.booking-main .field { margin-bottom: 16px; }
.booking-main .field:last-child { margin-bottom: 0; }

.day-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.booking-loading { color: var(--muted); }
.day-option { position: relative; display: block; cursor: pointer; }
.day-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.day-body {
  display: block; background: var(--cream); border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color 0.15s ease, background 0.15s ease;
}
.day-option:hover .day-body { border-color: var(--orange); }
.day-option input:checked + .day-body { border-color: var(--orange); background: var(--orange-soft); }
.day-option input:focus-visible + .day-body { outline: 3px solid var(--orange); outline-offset: 2px; }
.day-option input:disabled + .day-body { opacity: 0.45; cursor: not-allowed; }
.day-name { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; text-transform: uppercase; line-height: 1.05; }
.day-left { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }
.day-option input:checked + .day-body .day-left { color: var(--orange-text); font-weight: 600; }

.booking-summary-inner {
  position: sticky; top: 96px;
  background: var(--charcoal); color: var(--white);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.booking-summary .kicker { color: var(--orange); }
.booking-day {
  font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase;
  font-size: clamp(1.8rem, 3.4vw, 2.3rem); line-height: 1; color: var(--orange);
}
.booking-facts { display: grid; gap: 10px; margin: 20px 0 22px; }
.booking-facts li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--muted-dark); }
.booking-facts .i { color: var(--orange); margin-top: 3px; }
.booking-summary .btn { width: 100%; justify-content: center; }
.booking-summary .form-note { color: var(--muted-dark); }
.booking-summary .form-note a { color: var(--orange); }
.booking-foot { margin-top: 26px; color: var(--muted); }
@media (max-width: 960px) {
  .booking { grid-template-columns: 1fr; }
  .booking-summary-inner { position: static; }
}

/* ---------- Timeregistrering for ansatte ---------- */
.ansatt-body { background: var(--charcoal); color: var(--white); }
#ansatt-app { max-width: 720px; margin: 0 auto; padding: 20px 20px 40px; }
.ansatt-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 0 22px; }
.ansatt-header .brand span { color: var(--white); font-size: 24px; }
.ansatt-header .brand img { height: 34px; }
.ansatt-who { display: flex; align-items: center; gap: 14px; }
.ansatt-name { font-weight: 700; }
.ansatt-header .btn { padding: 9px 16px; font-size: 14px; border-color: rgba(255,255,255,0.45); color: var(--white); }
.ansatt-header .btn:hover { background: var(--white); color: var(--charcoal); }

.ansatt-login h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
.ansatt-login .lede { color: var(--muted-dark); }
.ansatt-login form { margin-top: 26px; }
#pin {
  width: 100%; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; letter-spacing: 0.3em;
  text-align: center; color: var(--white); background: var(--charcoal-2);
  border: 2px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 14px;
}
#pin:focus { outline: none; border-color: var(--orange); }
.keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.keypad button {
  font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--white);
  background: var(--charcoal-2); border: 2px solid rgba(255,255,255,0.14); border-radius: var(--radius-sm);
  padding: 16px 0; cursor: pointer;
}
.keypad button:hover { border-color: var(--orange); }
.keypad button.wide { font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.ansatt-login .btn-primary { width: 100%; justify-content: center; }

.clock-card { background: var(--charcoal-2); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; }
.clock-card .kicker { color: var(--muted-dark); }
.clock-card.running .kicker { color: var(--orange); }
.clock-time {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(3.4rem, 14vw, 5.4rem); line-height: 1; font-variant-numeric: tabular-nums;
}
.clock-card.running .clock-time { color: var(--orange); }
.clock-since { color: var(--muted-dark); margin-top: 8px; font-size: 15px; }
.clock-card .field { margin: 20px 0 0; text-align: left; }
.clock-card label { color: var(--muted-dark); }
.clock-card input {
  background: var(--charcoal); color: var(--white); border-color: rgba(255,255,255,0.18);
}
.clock-card input:focus { background: var(--charcoal); box-shadow: none; border-color: var(--orange); }
.clock-card .btn { width: 100%; justify-content: center; margin-top: 20px; font-size: 18px; padding: 18px; }
.clock-card.running .btn { background: var(--white); color: var(--charcoal); }

.totals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.total-card { background: var(--charcoal-2); border-radius: var(--radius); padding: 16px 18px; }
.total-card .kicker { color: var(--muted-dark); margin-bottom: 4px; }
.total-card strong { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.9rem; }

.ansatt-panel { background: var(--charcoal-2); border-radius: var(--radius); padding: 20px 22px; margin-top: 16px; }
.ansatt-panel > summary { cursor: pointer; font-weight: 700; }
.ansatt-panel-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.ansatt-panel h2 { font-size: 1.6rem; }
.ansatt-tools { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.ansatt-tools .btn { padding: 9px 16px; font-size: 14px; border-color: rgba(255,255,255,0.45); color: var(--white); }
.ansatt-tools .btn:hover { background: var(--white); color: var(--charcoal); }
.ansatt-panel .field { margin-top: 14px; }
.ansatt-panel label { color: var(--muted-dark); }
.ansatt-panel input { background: var(--charcoal); color: var(--white); border-color: rgba(255,255,255,0.18); }
.ansatt-panel input:focus { background: var(--charcoal); box-shadow: none; border-color: var(--orange); }
.ansatt-panel .btn-outline { border-color: rgba(255,255,255,0.45); color: var(--white); margin-top: 14px; }
.ansatt-panel .btn-outline:hover { background: var(--white); color: var(--charcoal); }

.entry-list { display: grid; gap: 2px; }
.entry-list li { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.entry-list li:last-child { border-bottom: 0; }
.entry-main { min-width: 0; }
.entry-when { font-weight: 600; }
.entry-note { color: var(--muted-dark); font-size: 14.5px; margin-top: 2px; overflow-wrap: anywhere; }
.entry-hours { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; white-space: nowrap; }
.entry-del { background: none; border: 0; color: var(--muted-dark); cursor: pointer; font-size: 20px; line-height: 1; padding: 4px 6px; border-radius: 8px; }
.entry-del:hover { color: var(--orange); background: rgba(255,255,255,0.06); }
.entry-empty { color: var(--muted-dark); padding: 12px 0; }

.deler-add { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.deler-add input { margin: 0; }
.deler-add .btn { margin-top: 0; white-space: nowrap; }
.deler-count { color: var(--muted-dark); font-size: 15px; }
.deler-list { display: grid; gap: 2px; margin-top: 12px; }
.deler-list li { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.deler-list li:last-child { border-bottom: 0; }
.deler-text { overflow-wrap: anywhere; }
.deler-by { display: block; color: var(--muted-dark); font-size: 13.5px; margin-top: 2px; }
.deler-done {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: none; border: 2px solid rgba(255,255,255,0.3); color: var(--white);
  cursor: pointer; font-size: 15px; line-height: 1;
}
.deler-done:hover { border-color: var(--orange); color: var(--orange); }
.deler-empty { color: var(--muted-dark); padding: 12px 0; }
.ansatt-links { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ansatt-links h2 { font-size: 1.6rem; margin-right: 6px; }
.ansatt-links .btn { margin-top: 0; }
@media (max-width: 460px) { .deler-add { grid-template-columns: 1fr; } .ansatt-links .btn { flex: 1; justify-content: center; } }

.ansatt-foot { color: var(--muted-dark); font-size: 14px; text-align: center; margin-top: 26px; }
.ansatt-foot a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.ansatt-body .form-error { background: rgba(255, 90, 70, 0.14); color: #ffb3a7; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.prose p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.prose p + p { margin-top: 16px; }
.prose .big { font-family: var(--font-display); font-weight: 800; font-style: italic; text-transform: uppercase; color: var(--charcoal); font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.05; margin-bottom: 26px; }
.facts-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 32px; box-shadow: var(--shadow); }
.facts-card h2 { font-size: 1.9rem; margin-bottom: 8px; }
.facts-card dl { margin: 0; }
.facts-card dl div { padding: 13px 0; border-bottom: 2px dashed var(--line); }
.facts-card dl div:last-child { border-bottom: none; }
.facts-card dt { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.facts-card dd { margin: 2px 0 0; font-weight: 600; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; display: grid; gap: 12px; }
.faq details { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 22px 76px 22px 28px;
  font-weight: 700; font-size: 19px; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; margin-top: -18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 500; line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq summary:hover::after { transform: rotate(90deg); }
.faq details[open] summary::after { content: "–"; background: var(--orange); color: var(--charcoal); transform: none; }
.faq .answer { padding: 0 28px 24px; color: var(--muted); }
.faq .answer p + p { margin-top: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: start; }
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.info-card .contact-list { margin-top: 0; }
.info-card .contact-list li { border-bottom: 2px dashed var(--line); padding: 16px 0; align-items: flex-start; }
.info-card .contact-list li:last-child { border-bottom: none; }
.info-card .contact-list .value { font-size: 17px; }
.info-card .contact-list small { display: block; color: var(--muted); font-size: 15px; margin-top: 4px; }
.social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.social a { font-weight: 600; font-size: 15px; background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; }
.social a:hover { border-color: var(--orange); color: var(--orange-text); }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(2rem, 3.6vw, 2.6rem); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 7px; }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none; cursor: pointer; padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, var(--charcoal) 50%), linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
  background-position: calc(100% - 22px) 52%, calc(100% - 16px) 52%;
  background-size: 6px 6px; background-repeat: no-repeat;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); background-color: var(--white); box-shadow: 0 0 0 4px var(--orange-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-card .btn { margin-top: 6px; }
.form-note { margin-top: 16px; font-size: 14.5px; color: var(--muted); }
.form-note a { color: var(--orange-text); text-decoration: underline; text-underline-offset: 2px; }
.form-success { display: none; margin-top: 18px; padding: 16px 18px; border-radius: var(--radius-sm); background: #e9f5e9; color: #1d4d20; font-weight: 500; }
.form-success.show { display: block; }
.form-error { margin-top: 18px; padding: 16px 18px; border-radius: var(--radius-sm); background: #fdecea; color: #8a1c12; font-weight: 500; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } .form-card, .info-card { padding: 26px 22px; } }

/* ---------- Legal ---------- */
.legal-card { max-width: 880px; background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow); }
.legal-card h2 { font-style: normal; font-size: 1.75rem; margin: 44px 0 12px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }
.legal-card p + p { margin-top: 14px; }
.legal-card ul { list-style: disc; padding-left: 22px; margin-top: 12px; }
.legal-card li + li { margin-top: 8px; }
.legal-card strong { color: var(--charcoal); }
.legal-card a { color: var(--orange-text); text-decoration: underline; text-underline-offset: 2px; }
.legal-card table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 15.5px; }
.legal-card th, .legal-card td { text-align: left; padding: 12px 14px; border-bottom: 2px dashed var(--line); vertical-align: top; }
.legal-card th { font-weight: 700; }
.legal-card td { color: var(--muted); }
.legal-card .callout { background: var(--orange-soft); color: var(--charcoal); border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 14px; font-weight: 500; }
.legal-card .updated { margin-top: 48px; padding-top: 18px; border-top: 2px solid var(--charcoal); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 600px) {
  .legal-card table, .legal-card thead, .legal-card tbody, .legal-card tr, .legal-card th, .legal-card td { display: block; }
  .legal-card thead { display: none; }
  .legal-card tr { padding: 12px 0; border-bottom: 2px dashed var(--line); }
  .legal-card td { border: 0; padding: 4px 0; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--white); padding-top: 72px; overflow: hidden; }
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px 40px; flex-wrap: wrap; padding-bottom: 52px; border-bottom: 1px solid var(--line-dark); }
.footer-cta h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1fr; gap: 40px; padding: 52px 0; }
.footer-grid img { height: 92px; width: auto; }
.footer-grid .about { color: var(--muted-dark); margin-top: 18px; max-width: 290px; font-size: 16px; }
.footer-grid h3 { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 14px; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 16px; }
.footer-grid a, .footer-grid p { display: block; color: #eeeae4; margin-bottom: 9px; font-size: 16px; }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; padding: 22px 0; border-top: 1px solid var(--line-dark); font-size: 14px; color: var(--muted-dark); }
.footer-bottom .links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--orange); }
.footer-wordmark {
  font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase;
  font-size: clamp(4rem, 17vw, 15rem); line-height: 1; letter-spacing: -0.01em;
  color: var(--orange); text-align: center; white-space: nowrap;
  padding-bottom: 0.18em; user-select: none;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 90px 0 110px; }
.notfound .big { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(8rem, 26vw, 17rem); line-height: 0.85; color: var(--orange); }
.notfound h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-top: 16px; }
.notfound .lede { margin: 16px auto 0; }
.notfound .btn-row { justify-content: center; margin-top: 32px; }

/* ---------- Reveal (JS-gated so content is safe without JS) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.3,1); }
html.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 700px) {
  body { font-size: 16.5px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .brand span { font-size: 26px; }
  .brand img { height: 36px; }
  .nav { min-height: 68px; }
}

html:not(.js) #finn-app { display: none; }

#kalkulator { scroll-margin-top: 90px; }
