/* ==========================================================================
   Amundrud Lagerutleie – stilark
   Farger og mål styres av variablene under :root.
   ========================================================================== */

/* ---------- Skrifter (lokale filer, ingen Google-oppslag) ---------- */
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  /* Grafitt – som kledningen på hallene */
  --ink: #15171a;
  --ink-2: #1c1f23;
  --ink-3: #2a2e33;
  --text: #25282c;
  --muted: #5b6269;
  /* Lyse flater */
  --paper: #f5f3ee;
  --paper-2: #ebe7df;
  --card: #fff;
  --line: #e2ddd3;
  --line-strong: #cfc9bd;
  /* Merkefarge fra logoen */
  --red: #a31600;
  --red-hover: #851200;
  /* På mørk bakgrunn */
  --on-dark: #f1f2f3;
  --on-dark-muted: #a9b0b8;
  --line-dark: rgb(255 255 255 / .12);
  /* Status */
  --ok: #146534;  --ok-bg: #dff1e5;
  --few: #874a00; --few-bg: #fbecd2;
  --wait: #4a5057; --wait-bg: #e6e8ea;

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

  --wrap: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 2px rgb(21 23 26 / .06), 0 10px 28px -12px rgb(21 23 26 / .18);
  --shadow-lg: 0 2px 6px rgb(21 23 26 / .08), 0 30px 60px -20px rgb(21 23 26 / .35);
  --header-h: 78px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Grunnlag ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.005em;
  color: var(--ink);
  text-wrap: balance;
}
h2 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.75rem); line-height: 1.1; }
p { margin: 0 0 1em; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
strong { font-weight: 600; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .site-header:not(.is-solid) :focus-visible { outline-color: #fff; }
::selection { background: var(--red); color: #fff; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nowrap { white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 200; padding: .75rem 1rem; background: var(--ink); color: #fff; border-radius: var(--radius); font-weight: 600; }
.skip-link:focus { top: 1rem; }

.icon { width: 1.25em; height: 1.25em; flex: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Knapper ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 50px; padding: .8rem 1.4rem;
  border: 2px solid transparent; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; line-height: 1.1;
  letter-spacing: .05em; text-transform: uppercase; text-decoration: none; text-align: center;
  cursor: pointer; transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--paper-2); }
.btn-ghost { border-color: rgb(255 255 255 / .6); color: #fff; background: rgb(255 255 255 / .04); }
.btn-ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn-lg { min-height: 56px; padding: .95rem 1.7rem; font-size: 1.2rem; }
.btn-sm { min-height: 44px; padding: .6rem 1rem; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--red); text-decoration: none; }
.link-arrow .icon { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Småelementer ---------- */
.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  margin: 0 0 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--red); flex: none; }
.on-dark .eyebrow, .eyebrow.is-light { color: var(--on-dark-muted); }
.lead { font-size: clamp(1.125rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--muted); }

.checks { display: grid; gap: .45rem; }
.checks li { display: flex; gap: .6rem; align-items: flex-start; }
.checks .icon { width: 1.05em; height: 1.05em; margin-top: .3em; color: var(--red); }

.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3rem .7rem .3rem .6rem; border-radius: 999px;
  font-size: .875rem; font-weight: 600; line-height: 1.2; white-space: nowrap;
  background: var(--wait-bg); color: var(--wait);
}
.badge::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: currentColor; }
.badge.is-ok { background: var(--ok-bg); color: var(--ok); }
.badge.is-few { background: var(--few-bg); color: var(--few); }
.badge.is-wait { background: var(--wait-bg); color: var(--wait); }

/* Stålkledning-tekstur til mørke flater */
.ribbed { background-image: repeating-linear-gradient(90deg, rgb(255 255 255 / .028) 0 2px, transparent 2px 30px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: absolute; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  color: #fff;
  transition: background-color .3s, color .3s, box-shadow .3s, transform .35s var(--ease);
}
.js .site-header { position: fixed; }
.site-header.is-solid {
  color: var(--ink);
  background: rgb(255 255 255 / .94);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px -16px rgb(21 23 26 / .35);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 100%; }

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; margin-right: auto; }
.brand img { width: 52px; height: auto; transition: filter .3s; }
.site-header:not(.is-solid) .brand img { filter: brightness(0) invert(1); }
.brand-text { display: grid; line-height: .95; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; }
.brand-text span:first-child { font-size: 1.45rem; letter-spacing: .03em; }
.brand-text span:last-child { font-size: .9rem; letter-spacing: .235em; font-weight: 600; opacity: .8; }

.main-nav ul { display: flex; gap: .25rem; }
.main-nav li > a {
  position: relative; display: block; padding: .6rem .8rem;
  font-weight: 500; font-size: 1.02rem; text-decoration: none;
}
.main-nav li > a::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .3rem; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.main-nav li > a:hover::after, .main-nav li > a[aria-current="page"]::after { transform: scaleX(1); }
.site-header:not(.is-solid) .main-nav li > a::after { background: #fff; }
.main-nav .nav-extra { display: none; }

.header-call { min-height: 46px; padding: .6rem 1.1rem; }
.site-header:not(.is-solid) .header-call { background: rgb(255 255 255 / .12); border-color: rgb(255 255 255 / .55); }
.site-header:not(.is-solid) .header-call:hover { background: #fff; color: var(--ink); }

.nav-toggle {
  display: none; position: relative; width: 48px; height: 48px; margin-right: -8px;
  border: 0; background: none; color: inherit; cursor: pointer; border-radius: var(--radius);
}
.nav-toggle span:not(.sr-only), .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: currentColor;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle::before { top: 16px; }
.nav-toggle span:not(.sr-only) { top: 23px; }
.nav-toggle::after { top: 30px; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:not(.sr-only) { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.call-icon { display: none; }

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .brand img { width: 44px; }
  .brand-text span:first-child { font-size: 1.25rem; }
  .brand-text span:last-child { font-size: .78rem; }
  .header-call { display: none; }
  .js .nav-toggle { display: block; }
  .call-icon {
    display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
    background: var(--red); color: #fff;
  }
  .call-icon .icon { width: 20px; height: 20px; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto; z-index: 99;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    padding: .5rem var(--gutter) 1.5rem;
    background: #fff; color: var(--ink);
    box-shadow: 0 24px 40px -20px rgb(21 23 26 / .45);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .3s var(--ease); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li + li { border-top: 1px solid var(--line); }
  .main-nav li > a { padding: 1rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; }
  .main-nav li > a::after { display: none; }
  .main-nav li > a[aria-current="page"] { color: var(--red); }
  .main-nav .nav-extra { display: grid; gap: .75rem; margin-top: 1rem; }
  /* Når menyen er åpen skal headeren være solid */
  .site-header.menu-open { color: var(--ink); background: #fff; }
  .site-header.menu-open .brand img { filter: none; }
}
@media (max-width: 400px) {
  .brand-text span:last-child { letter-spacing: .16em; }
}

/* ==========================================================================
   Hero (forsiden)
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  display: flex; align-items: center;
  min-height: clamp(600px, 94vh, 900px);
  padding-block: calc(var(--header-h) + 3rem) 8.5rem;
  color: #fff; background: var(--ink);
}
.hero-media, .page-hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { object-position: 62% 60%; }
.hero-media::after, .page-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgb(12 14 17 / .6) 0%, rgb(12 14 17 / 0) 26%),
    linear-gradient(90deg, rgb(12 14 17 / .86) 0%, rgb(12 14 17 / .62) 38%, rgb(12 14 17 / .12) 72%, rgb(12 14 17 / 0) 100%),
    linear-gradient(0deg, rgb(12 14 17 / .55) 0%, rgb(12 14 17 / 0) 35%);
}
.hero-content { position: relative; }
.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8.4vw, 7rem); line-height: .9; letter-spacing: .002em;
  text-transform: uppercase; color: #fff;
}
.hero h1 .dot { color: var(--red); }
.hero-lead { max-width: 33rem; margin-bottom: 2.25rem; font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.55; color: rgb(255 255 255 / .88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

@media (max-width: 700px) {
  .hero { align-items: flex-end; min-height: 100svh; padding-bottom: 7.5rem; }
  .hero-media img { object-position: 72% 50%; }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgb(12 14 17 / .55) 0%, rgb(12 14 17 / .1) 30%, rgb(12 14 17 / .55) 55%, rgb(12 14 17 / .92) 100%);
  }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* Faktastripe som overlapper heroen */
.facts {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: -4.25rem;
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.facts li { display: flex; flex-direction: column; justify-content: center; padding: 1.5rem 1.75rem; }
.facts li + li { border-left: 1px solid var(--line); }
.facts strong { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1; color: var(--ink); }
.facts span { margin-top: .35rem; color: var(--muted); font-size: .98rem; }
@media (max-width: 800px) {
  .facts { grid-template-columns: repeat(2, 1fr); margin-top: -3.5rem; }
  .facts li { padding: 1.15rem 1.25rem; }
  .facts li:nth-child(3) { border-left: 0; }
  .facts li:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ==========================================================================
   Sidetopp (undersider)
   ========================================================================== */
.page-hero {
  position: relative; isolation: isolate;
  display: flex; align-items: flex-end;
  min-height: clamp(380px, 52vh, 520px);
  padding-block: calc(var(--header-h) + 3rem) clamp(2.5rem, 6vw, 4.5rem);
  color: #fff; background: var(--ink);
}
.page-hero h1 { margin-bottom: .75rem; font-size: clamp(2.9rem, 7vw, 5.5rem); line-height: .92; text-transform: uppercase; color: #fff; }
.page-hero .lead { max-width: 36rem; margin: 0; color: rgb(255 255 255 / .86); }
.page-hero .eyebrow { color: rgb(255 255 255 / .8); }
.page-hero-media::after {
  background:
    linear-gradient(180deg, rgb(12 14 17 / .6) 0%, rgb(12 14 17 / 0) 30%),
    linear-gradient(0deg, rgb(12 14 17 / .85) 0%, rgb(12 14 17 / .35) 55%, rgb(12 14 17 / .15) 100%),
    linear-gradient(90deg, rgb(12 14 17 / .5) 0%, rgb(12 14 17 / 0) 70%);
}

/* ==========================================================================
   Seksjoner
   ========================================================================== */
.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-white { background: var(--card); }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: var(--on-dark); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--on-dark-muted); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p:last-child { margin-bottom: 0; }
.section-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 3rem; }
.section-head-row .section-head { margin-bottom: 0; }
.section-head-row + * { margin-top: clamp(2.5rem, 5vw, 3.75rem); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split-60 { grid-template-columns: 1.15fr .85fr; }
.split > * { min-width: 0; }
@media (max-width: 900px) {
  .split, .split-60 { grid-template-columns: 1fr; }
  .split .order-first-mobile { order: -1; }
}

.prose p { color: inherit; }
.prose > :last-child { margin-bottom: 0; }

.frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--paper-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-43 { aspect-ratio: 4 / 3; }
.frame-54 { aspect-ratio: 5 / 4; }

/* ==========================================================================
   Enheter og priser
   ========================================================================== */
.units { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1100px) { .units { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .units { grid-template-columns: 1fr; } }

.unit {
  display: flex; flex-direction: column;
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.unit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.unit-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.unit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.unit:hover .unit-media img { transform: scale(1.04); }
.unit-no {
  position: absolute; left: 0; top: 0;
  padding: .45rem .75rem .35rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .06em; line-height: 1;
  background: var(--ink); color: #fff; border-bottom-right-radius: var(--radius);
}
.unit-media .badge { position: absolute; right: .75rem; top: .75rem; box-shadow: 0 2px 8px rgb(0 0 0 / .18); }
.unit-body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.4rem 1.5rem; }
.unit h3 { margin-bottom: .2rem; }
.unit-size { margin-bottom: 1rem; font-weight: 600; color: var(--red); }
.unit .checks { margin-bottom: 1.4rem; font-size: .98rem; }
.unit-foot { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.price { display: grid; margin-bottom: 1rem; line-height: 1.15; }
.price-label { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.price-value { margin-top: .25rem; font-family: var(--font-display); font-weight: 700; font-size: 1.65rem; color: var(--ink); }
.price-value.is-empty { font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--muted); }
.price-note { margin-top: .25rem; font-size: .9rem; color: var(--muted); }
.units-note { margin-top: 1.5rem; font-size: .95rem; color: var(--muted); }

/* Detaljerte enheter (Lokalene-siden) */
.unit-rows { display: grid; gap: clamp(3.5rem, 8vw, 6.5rem); }
.unit-row { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.unit-row:nth-child(even) .unit-row-media { order: 2; }
/* Bildemosaikk: stort bilde til venstre, ett eller to mindre til høyre */
.unit-row-media { position: relative; display: grid; grid-template-columns: 1.55fr 1fr; grid-template-rows: 1fr 1fr; gap: .75rem; aspect-ratio: 16 / 11; }
.unit-row-media .frame:first-child { grid-row: 1 / 3; }
.unit-row-media .frame:nth-child(2):last-child { grid-row: 1 / 3; }
.unit-row-media .unit-no { z-index: 1; font-size: 1.4rem; padding: .6rem 1rem .5rem; border-top-left-radius: var(--radius-lg); }
.unit-row-media .badge { position: absolute; right: 1rem; top: 1rem; z-index: 1; font-size: .95rem; box-shadow: 0 2px 8px rgb(0 0 0 / .2); }
.unit-row h3 { font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: .25rem; }
.unit-row .unit-size { font-size: 1.15rem; }
.unit-row .checks { margin: 1.25rem 0 1.75rem; }
.unit-row .price { padding: 1.1rem 1.25rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.unit-row-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (max-width: 900px) {
  .unit-row { grid-template-columns: 1fr; }
  .unit-row:nth-child(even) .unit-row-media { order: 0; }
}
@media (max-width: 560px) {
  .unit-row-actions .btn { flex: 1 1 100%; }
}

.updated { margin: 0; font-size: .95rem; color: var(--muted); }
.updated::before { content: ""; display: inline-block; width: .55rem; height: .55rem; margin-right: .5rem; border-radius: 50%; background: var(--ok); }

/* Faktaliste (Lokalene) */
.spec-list { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: .5rem 1.75rem; }
.spec-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 0; }
.spec-list li + li { border-top: 1px solid var(--line); }
.spec-list span { color: var(--muted); }
.spec-list strong { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); text-align: right; }

/* ==========================================================================
   Fordeler (mørk seksjon)
   ========================================================================== */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.25rem; margin-top: 2.5rem; }
.feature { display: grid; grid-template-columns: auto 1fr; gap: .15rem 1rem; align-content: start; }
.feature-icon {
  grid-row: span 2; display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--radius); background: rgb(255 255 255 / .06); border: 1px solid var(--line-dark); color: #fff;
}
.feature-icon .icon { width: 22px; height: 22px; }
.feature h3 { margin: .1rem 0 0; font-size: 1.4rem; }
.feature p { margin: 0; font-size: 1rem; }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Sommer/vinter-collage */
.seasons { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(12, minmax(0, 1fr)); aspect-ratio: 1 / 1; }
.seasons figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.seasons img { width: 100%; height: 100%; object-fit: cover; }
.seasons figure:first-child { grid-column: 1 / 10; grid-row: 1 / 9; }
.seasons figure:last-child { grid-column: 5 / 13; grid-row: 6 / 13; outline: 8px solid var(--ink); box-shadow: var(--shadow-lg); }
.seasons figcaption {
  position: absolute; left: .9rem; bottom: .9rem;
  padding: .35rem .7rem .3rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgb(12 14 17 / .72); color: #fff;
}

/* ==========================================================================
   Bruksområder
   ========================================================================== */
.uses { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.75rem 0 2.25rem; }
.use {
  display: flex; align-items: center; gap: .9rem;
  padding: .8rem 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  font-weight: 600; line-height: 1.25;
}
.use-icon { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: var(--radius); background: var(--ink); color: #fff; }
.use-icon .icon { width: 22px; height: 22px; }
@media (max-width: 460px) { .uses { grid-template-columns: 1fr; } }

/* ==========================================================================
   Kart / beliggenhet
   ========================================================================== */
.map { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-decoration: none; aspect-ratio: 14 / 9; background: var(--paper-2); }
.map img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.map:hover img { transform: scale(1.03); }
.map-open {
  position: absolute; right: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: .5rem; padding: .6rem .9rem;
  border-radius: var(--radius); background: #fff; color: var(--ink); font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow);
}
.map-open .icon { width: 1em; height: 1em; }
.map-credit { position: absolute; left: .5rem; bottom: .4rem; font-size: .72rem; color: #3b3f44; background: rgb(255 255 255 / .75); padding: 0 .35rem; border-radius: 2px; }

.address-block { display: grid; gap: 1rem; margin: 1.75rem 0 2rem; }
.address-line { display: flex; gap: .9rem; align-items: flex-start; }
.address-line .icon { margin-top: .2em; color: var(--red); }
.address-line a { text-decoration: none; }
.address-line a:hover { text-decoration: underline; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ==========================================================================
   Steg
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 0; padding: 0; list-style: none; counter-reset: steg; }
.step { position: relative; padding: 2rem 1.75rem 1.75rem; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.step::before {
  counter-increment: steg; content: "0" counter(steg);
  display: block; margin-bottom: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; color: var(--red);
}
.step h3 { margin-bottom: .4rem; }
.step p { margin: 0; color: var(--muted); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 2rem 1.75rem; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.contact-card .card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 1rem; border-radius: var(--radius); background: var(--red); color: #fff; }
.contact-card .card-icon .icon { width: 24px; height: 24px; }
.contact-card h2 { font-size: 1.6rem; margin-bottom: .1rem; }
.contact-card .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.9rem); line-height: 1.15; color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
.contact-card .big:hover { color: var(--red); }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card .btn { margin-top: auto; }
.contact-card .spacer { flex: 1; min-height: 1.25rem; }

.person { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.person-avatar {
  display: grid; place-items: center; width: 72px; height: 72px; flex: none; border-radius: 50%;
  background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; letter-spacing: .04em;
}
.person h3 { margin: 0 0 .15rem; font-size: 1.5rem; }
.person p { margin: 0; color: var(--muted); }
.person a { color: var(--ink); font-weight: 600; text-decoration: none; }
.person a:hover { color: var(--red); text-decoration: underline; }

.tips { padding: clamp(1.75rem, 4vw, 2.5rem); background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.tips h2 { font-size: clamp(1.9rem, 3.2vw, 2.4rem); }
.tips .checks { margin: 1.25rem 0 1.75rem; }

.social-link { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; text-decoration: none; }
.social-link:hover { text-decoration: underline; }

/* ==========================================================================
   Galleri + lysbilde
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.gallery a { position: relative; display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1 / 1; background: var(--paper-2); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .3s; }
.gallery a::after {
  content: ""; position: absolute; inset: 0; background: rgb(12 14 17 / 0); transition: background-color .3s;
}
.gallery a:hover img { transform: scale(1.05); }
.gallery a:hover::after { background: rgb(12 14 17 / .15); }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: .5rem; } }

.lb-open { overflow: hidden; }
.lightbox {
  width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0;
  border: 0; background: rgb(10 11 13 / .96); color: #fff;
}
.lightbox::backdrop { background: rgb(10 11 13 / .6); }
.lightbox[open] { display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
.lb-figure { grid-column: 2; display: grid; justify-items: center; gap: .9rem; margin: 0; padding: 4.5rem 0 1.5rem; height: 100dvh; grid-template-rows: 1fr auto; }
.lb-figure img { max-width: 100%; max-height: 100%; min-height: 0; object-fit: contain; border-radius: var(--radius); align-self: center; }
.lb-figure figcaption { font-size: 1rem; color: rgb(255 255 255 / .8); text-align: center; padding-inline: 1rem; }
.lb-btn {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 .75rem;
  border: 1px solid rgb(255 255 255 / .25); border-radius: 50%; background: rgb(255 255 255 / .06); color: #fff; cursor: pointer;
  transition: background-color .2s;
}
.lb-btn:hover { background: rgb(255 255 255 / .18); }
.lb-btn .icon { width: 24px; height: 24px; }
.lb-close { position: absolute; top: 1rem; right: .25rem; }
.lb-count { position: absolute; top: 1.6rem; left: 1.5rem; font-family: var(--font-display); font-weight: 600; letter-spacing: .1em; color: rgb(255 255 255 / .7); }
@media (max-width: 700px) {
  .lightbox[open] { grid-template-columns: 1fr; }
  .lb-figure { grid-column: 1; padding-inline: .5rem; }
  .lb-prev, .lb-next { position: absolute; bottom: 1.25rem; z-index: 1; }
  .lb-prev { left: calc(50% - 64px); }
  .lb-next { right: calc(50% - 64px); }
  .lb-figure { padding-bottom: 5.5rem; }
}

/* ==========================================================================
   CTA-bånd
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--red); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgb(0 0 0 / .07) 0 2px, transparent 2px 30px);
}
.cta-inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem 3rem; padding-block: clamp(3rem, 7vw, 5rem); }
.cta-band h2 { margin-bottom: .35rem; color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
.cta-band p { margin: 0; max-width: 34rem; font-size: 1.15rem; color: rgb(255 255 255 / .88); }
.cta-band .btn-ghost { border-color: rgb(255 255 255 / .75); }
.cta-band .btn-ghost:hover { color: var(--red); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (max-width: 560px) { .cta-actions, .cta-actions .btn { width: 100%; } }

/* ==========================================================================
   Bunntekst
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--on-dark-muted); font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .8fr .8fr; gap: 2.5rem; padding-block: clamp(3.5rem, 7vw, 5rem) 3rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1.25rem; }
.footer-brand .brand img { filter: none; }
.footer-brand p { max-width: 22rem; }
.footer-h { margin-bottom: 1rem; font-size: 1rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; font-weight: 600; }
.footer-list { display: grid; gap: .6rem; }
.footer-list a { text-decoration: none; color: var(--on-dark); overflow-wrap: anywhere; }
.footer-list a:hover { color: #fff; text-decoration: underline; }
.footer-list .address-line .icon { color: var(--on-dark-muted); width: 1.1em; height: 1.1em; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem;
  padding-block: 1.5rem; border-top: 1px solid var(--line-dark); font-size: .9rem;
}
.footer-bottom p { margin: 0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   404
   ========================================================================== */
.notfound { min-height: 70vh; display: grid; align-content: center; padding-block: calc(var(--header-h) + 4rem) 5rem; }
.notfound .big-no { font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 20vw, 12rem); line-height: .85; color: var(--red); margin-bottom: 1rem; }

/* ---------- Redusert bevegelse ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
