/* ==========================================================================
   MADE IN BERGEN — v2 «Fersk vare fra Bergen»
   Organic shapes · Fraunces + Instrument Sans · palett fra boksene
   ========================================================================== */

/* ---------- Tokens ---------- */

:root {
  /* Palett — hentet fra FRIPA / Radler / SKVIZ */
  --krem: #f7f2e3;
  --krem-dyp: #efe7d0;
  --petrol: #0e3a38;
  --petrol-dyp: #092826;
  --turkis: #2ec0b2;
  --turkis-dyp: #0e7268; /* mørk nok for AA-kontrast som tekst på krem */
  --turkis-lys: #aee6de;
  --gul: #f0e84d;
  --gul-dyp: #dfd52c;
  --oransje: #e8521d;
  --oransje-dyp: #b93d10; /* oransje som tekst på krem (AA-kontrast) */
  --indigo: #2e3192;

  --blekk: var(--petrol);
  --blekk-myk: color-mix(in oklab, var(--petrol) 78%, var(--krem));
  --line: color-mix(in oklab, var(--petrol) 16%, transparent);
  --line-lys: color-mix(in oklab, var(--krem) 18%, transparent);

  /* Typografi */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Instrument Sans", "Helvetica Neue", sans-serif;

  --step-hero: clamp(3.2rem, 9.5vw, 8rem);
  --step-h2: clamp(2.1rem, 4.8vw, 4rem);
  --step-h3: clamp(1.35rem, 2.4vw, 1.9rem);
  --step-lede: clamp(1.1rem, 1.6vw, 1.35rem);
  --step-body: clamp(1rem, 1.2vw, 1.0625rem);
  --step-label: 0.8125rem;

  /* Rytme */
  --space-section: clamp(5rem, 12vw, 10rem);
  --space-block: clamp(2.5rem, 5vw, 4.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 76rem;

  /* Organiske radier */
  --blob-a: 58% 42% 55% 45% / 53% 46% 54% 47%;
  --blob-b: 42% 58% 47% 53% / 55% 44% 56% 45%;
  --blob-c: 51% 49% 61% 39% / 44% 57% 43% 56%;
  --blob-d: 63% 37% 44% 56% / 49% 62% 38% 51%;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---------- Grunnlag ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  color: var(--blekk);
  background: var(--krem);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 640;
  color: var(--turkis-dyp);
}

p {
  margin: 0 0 1em;
  max-width: 62ch;
}

a {
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

::selection {
  background: var(--gul);
  color: var(--petrol);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--petrol);
  color: var(--krem);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  width: min(100% - 2 * var(--gutter), var(--maxw));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

/* Etikett over overskrifter */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.label::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  border-radius: var(--blob-a);
  background: var(--turkis);
  flex: none;
}

.lede {
  font-size: var(--step-lede);
  line-height: 1.55;
  max-width: 46ch;
}

/* ---------- Knapper ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  border: 2px solid var(--petrol);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: rotate(-1.5deg) scale(1.03);
}

.btn-primary {
  background: var(--petrol);
  color: var(--krem);
}

.btn-primary:hover {
  background: var(--oransje);
  border-color: var(--oransje);
}

.btn-ghost {
  background: transparent;
  color: var(--petrol);
}

.btn-ghost:hover {
  background: var(--gul);
}

/* På mørk bakgrunn */
.btn-sol {
  background: var(--gul);
  border-color: var(--gul);
  color: var(--petrol);
}

.btn-sol:hover {
  background: var(--turkis);
  border-color: var(--turkis);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--turkis);
  padding-bottom: 0.15em;
  transition: gap 0.25s var(--ease-out), border-color 0.2s;
}

.link-arrow:hover {
  gap: 0.7em;
  border-color: var(--oransje);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--krem) 92%, transparent);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}

.brand img {
  height: 30px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.site-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--turkis);
  transition: right 0.3s var(--ease-out);
}

.site-nav a:not(.btn):hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.site-nav .btn {
  padding: 0.6em 1.3em;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--petrol);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-weight: 600;
  color: var(--petrol);
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--krem);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.25rem;
  }

  .site-nav.is-open {
    display: flex;
  }
}

/* ---------- Hero (forside) ---------- */

.hero {
  padding-block: clamp(3.5rem, 8vw, 7rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-block);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: var(--step-hero);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.hero h1 .squiggle-word {
  position: relative;
  white-space: nowrap;
}

.hero h1 .squiggle-word svg {
  position: absolute;
  left: 2%;
  bottom: -0.18em;
  width: 96%;
  height: 0.22em;
}

.hero .lede {
  margin-top: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

/* Organisk hero-figur */
.hero-figure {
  position: relative;
  aspect-ratio: 0.92;
  max-width: 480px;
  justify-self: end;
  width: 100%;
}

@media (max-width: 900px) {
  .hero-figure {
    justify-self: start;
    max-width: 340px;
  }
}

.hero-figure .blob-main {
  position: absolute;
  inset: 6% 4% 4% 6%;
  background: var(--turkis);
  border-radius: var(--blob-a);
  display: grid;
  place-items: center;
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.hero-figure .blob-main img {
  width: 58%;
  transform: rotate(-4deg);
}

.hero-figure .blob-gul {
  position: absolute;
  right: -2%;
  top: -3%;
  width: 34%;
  aspect-ratio: 1;
  background: var(--gul);
  border-radius: var(--blob-c);
  z-index: -1;
  animation: blob-drift 11s ease-in-out infinite alternate-reverse;
}

.hero-figure .blob-oransje {
  position: absolute;
  left: -4%;
  bottom: 8%;
  width: 22%;
  aspect-ratio: 1;
  background: var(--oransje);
  border-radius: var(--blob-d);
  animation: blob-drift 17s ease-in-out infinite alternate;
}

@keyframes blob-drift {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-10px) rotate(2.5deg);
  }
}

/* ---------- Varedeklarasjon — nøkkelfakta som boks-etikett ---------- */

.deklarasjon {
  position: relative;
  max-width: 42rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding: 1.5rem 1.75rem 1.6rem;
  background: var(--krem);
  border: 2px solid var(--petrol);
  border-radius: 22px 26px 20px 28px / 26px 20px 28px 22px;
  rotate: -0.8deg;
  box-shadow: 6px 7px 0 var(--gul);
}

.deklarasjon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line);
  border-radius: 16px 20px 14px 22px / 20px 14px 22px 16px;
  pointer-events: none;
}

.dekl-title {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--step-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.dekl-title::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  border-radius: var(--blob-c);
  background: var(--oransje);
  flex: none;
}

.deklarasjon p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.deklarasjon b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15em;
}

/* ---------- Tjenestestempler — snarveier etter hero ---------- */

.stamp-band {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.stamp-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.stamp {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85em 1.5em;
  border: 2.5px solid currentColor;
  transition: rotate 0.3s var(--ease-out), scale 0.3s var(--ease-out), background-color 0.2s, color 0.2s;
}

.stamp:nth-child(1) { color: var(--turkis-dyp); rotate: -2.5deg; border-radius: var(--blob-a); }
.stamp:nth-child(2) { color: var(--oransje-dyp); rotate: 1.8deg; border-radius: var(--blob-b); }
.stamp:nth-child(3) { color: var(--indigo); rotate: -1.5deg; border-radius: var(--blob-c); }
.stamp:nth-child(4) { color: var(--petrol); rotate: 2.2deg; border-radius: var(--blob-d); }

.stamp:hover {
  rotate: 0deg;
  scale: 1.05;
  color: var(--krem);
}

.stamp:nth-child(1):hover { background: var(--turkis-dyp); }
.stamp:nth-child(2):hover { background: var(--oransje-dyp); }
.stamp:nth-child(3):hover { background: var(--indigo); }
.stamp:nth-child(4):hover { background: var(--petrol); }

/* ---------- Seksjonshoder ---------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: var(--space-block);
}

.section-head h2 {
  font-size: var(--step-h2);
  margin: 0;
}

.section-head .link-arrow {
  flex: none;
  margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Utvalgt arbeid ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

@media (min-width: 761px) {
  .work-card:nth-child(even) {
    transform: translateY(clamp(1.5rem, 4vw, 3.5rem));
  }
}

@media (max-width: 760px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-card {
  text-decoration: none;
  display: block;
}

.work-media {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-radius 0.5s var(--ease-out);
}

.work-card:hover .work-media {
  border-radius: var(--blob-b);
}

.work-media .blob-inner {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: var(--blob-c);
  opacity: 0.5;
  transition: transform 0.6s var(--ease-out);
}

.work-card:hover .blob-inner {
  transform: scale(1.12) rotate(4deg);
}

.work-media .dummy-note {
  position: relative;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.work-media.tone-turkis { background: var(--turkis); color: var(--petrol); }
.work-media.tone-turkis .blob-inner { background: var(--turkis-lys); }
.work-media.tone-gul { background: var(--gul); color: var(--petrol); }
.work-media.tone-gul .blob-inner { background: var(--krem); }
.work-media.tone-indigo { background: var(--indigo); color: var(--krem); }
.work-media.tone-indigo .blob-inner { background: color-mix(in oklab, var(--indigo) 60%, var(--krem)); }
.work-media.tone-oransje { background: var(--oransje); color: var(--krem); }
.work-media.tone-oransje .blob-inner { background: color-mix(in oklab, var(--oransje) 65%, var(--gul)); }

.work-meta {
  padding-top: 1.25rem;
}

.work-meta .kicker {
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turkis-dyp);
}

.work-meta h3 {
  font-size: var(--step-h3);
  margin: 0.35rem 0 0.25rem;
}

.work-meta .client {
  color: var(--blekk-myk);
  font-size: 0.95rem;
}

/* ---------- Kurvede skiller + mørk seksjon ---------- */

.divider {
  line-height: 0;
}

.divider svg {
  width: 100%;
  height: clamp(42px, 7vw, 90px);
}

.section-dark {
  background: var(--petrol);
  color: var(--krem);
}

.section-dark .label::before {
  background: var(--gul);
}

.section-dark h2 em {
  color: var(--turkis);
}

/* ---------- Tjenesteliste ---------- */

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-lys);
}

.service-list li a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0.5rem;
  border-bottom: 1px solid var(--line-lys);
  text-decoration: none;
  transition: background-color 0.25s, padding-left 0.35s var(--ease-out);
}

.service-list li a:hover {
  background: color-mix(in oklab, var(--krem) 6%, transparent);
  padding-left: 1.25rem;
}

.service-list .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--turkis);
}

.service-list .name {
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 700;
}

.service-list .blurb {
  display: block;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  color: color-mix(in oklab, var(--krem) 78%, var(--turkis));
  margin-top: 0.3rem;
  max-width: 52ch;
}

.service-list .arrow {
  font-size: 1.4rem;
  color: var(--gul);
  transition: transform 0.3s var(--ease-out);
}

.service-list li a:hover .arrow {
  transform: translateX(6px) rotate(-8deg);
}

/* ---------- Om-seksjon (forside) ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-block);
  align-items: center;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-figure {
  position: relative;
  aspect-ratio: 0.95;
  max-width: 420px;
  width: 100%;
}

.about-figure .blob-portrait {
  position: absolute;
  inset: 0;
  background: var(--turkis-lys);
  border-radius: var(--blob-d);
  display: grid;
  place-items: center;
}

.about-figure .blob-accent {
  position: absolute;
  right: -5%;
  bottom: -4%;
  width: 30%;
  aspect-ratio: 1;
  background: var(--gul);
  border-radius: var(--blob-a);
}

.dummy-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  opacity: 0.65;
  text-align: center;
  padding: 1rem;
}

/* ---------- Testimonial ---------- */

.quote-panel {
  background: var(--gul);
  border-radius: var(--blob-b);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 7vw, 6rem);
  transform: rotate(-0.8deg);
}

.quote-panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 640;
  font-style: italic;
  line-height: 1.25;
  max-width: 28em;
}

.quote-panel figcaption {
  margin-top: 1.75rem;
  font-weight: 600;
}

.quote-panel figcaption span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ---------- CTA-panel ---------- */

.cta-panel {
  position: relative;
  background: var(--petrol);
  color: var(--krem);
  border-radius: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(2rem, 6vw, 5rem);
  overflow: hidden;
}

.cta-panel h2 {
  font-size: var(--step-h2);
  max-width: 14em;
}

.cta-panel .lede {
  color: color-mix(in oklab, var(--krem) 80%, var(--turkis));
}

.cta-panel .watermark {
  position: absolute;
  right: -4%;
  bottom: -18%;
  width: clamp(180px, 26vw, 320px);
  opacity: 0.14;
  transform: rotate(-8deg);
  pointer-events: none;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-actions .mail {
  font-weight: 600;
  text-decoration-color: var(--turkis);
  text-underline-offset: 4px;
}

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

.site-footer {
  background: var(--petrol-dyp);
  color: var(--krem);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  margin-top: var(--space-section);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-block);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-lys);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer .brand img {
  height: 34px;
}

.site-footer .footer-tag {
  margin-top: 1.25rem;
  color: color-mix(in oklab, var(--krem) 70%, var(--turkis));
  font-size: 0.95rem;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turkis);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gul);
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: color-mix(in oklab, var(--krem) 65%, var(--turkis));
}

/* ---------- Undersider: hero ---------- */

.page-hero {
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

/* ---------- Om oss ---------- */

.bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-block);
  align-items: center;
}

@media (max-width: 860px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.tag {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45em 1em;
  border: 2px solid var(--petrol);
  border-radius: 999px;
}

.tag:nth-child(2n) {
  transform: rotate(-2deg);
  background: var(--gul);
  border-color: var(--gul);
}

.tag:nth-child(3n) {
  transform: rotate(1.5deg);
  background: var(--turkis);
  border-color: var(--turkis);
}

.story {
  max-width: 62ch;
}

.story p {
  font-size: 1.0625rem;
}

.story .pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 640;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.3;
  border-left: 5px solid var(--turkis);
  border-radius: 3px;
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

/* Tidslinje */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--line);
}

.timeline li {
  position: relative;
  padding: 0 0 2.25rem 3rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--turkis);
  border-radius: var(--blob-a);
}

.timeline li:nth-child(2n)::before { background: var(--gul); border-radius: var(--blob-c); }
.timeline li:nth-child(3n)::before { background: var(--oransje); border-radius: var(--blob-d); }
.timeline li:last-child { padding-bottom: 0; }

.timeline .year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 640;
  font-size: 1.15rem;
  color: var(--turkis-dyp);
}

.section-dark .timeline::before {
  background: var(--line-lys);
}

.section-dark .timeline .year {
  color: var(--turkis);
}

.section-dark .timeline p {
  color: color-mix(in oklab, var(--krem) 76%, var(--turkis));
}

.timeline h3 {
  font-size: 1.3rem;
  margin: 0.15rem 0 0.35rem;
}

.timeline p {
  margin: 0;
  color: var(--blekk-myk);
}

/* Verdier + prosess */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem);
}

@media (max-width: 760px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

.value h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--step-h3);
}

.value h3::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  border-radius: var(--blob-b);
  background: var(--turkis);
}

.value:nth-child(2) h3::before { background: var(--gul); border-radius: var(--blob-a); }
.value:nth-child(3) h3::before { background: var(--oransje); border-radius: var(--blob-c); }
.value:nth-child(4) h3::before { background: var(--indigo); border-radius: var(--blob-d); }

.value p {
  margin: 0;
  color: var(--blekk-myk);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}

@media (max-width: 900px) {
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--turkis-lys);
  border-radius: var(--blob-c);
}

.step:nth-child(2)::before { background: var(--gul); border-radius: var(--blob-a); }
.step:nth-child(3)::before { background: color-mix(in oklab, var(--oransje) 45%, var(--krem)); border-radius: var(--blob-b); }
.step:nth-child(4)::before { background: color-mix(in oklab, var(--indigo) 30%, var(--krem)); border-radius: var(--blob-d); }

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.step p {
  margin: 0;
  color: var(--blekk-myk);
  font-size: 0.98rem;
}

.section-dark .step p {
  color: color-mix(in oklab, var(--krem) 76%, var(--turkis));
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--blekk);
  background: color-mix(in oklab, var(--krem-dyp) 55%, var(--krem));
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 0.85em 1em;
  transition: border-color 0.2s, background-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--turkis);
  background: var(--krem);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

fieldset.form-field {
  border: 0;
  padding: 0;
  margin-inline: 0;
}

fieldset.form-field legend {
  font-weight: 600;
  padding: 0;
  margin-bottom: 0.6rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  position: relative;
}

.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.chip span {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border: 2px solid var(--petrol);
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s, transform 0.25s var(--ease-out);
}

.chip input:checked + span {
  background: var(--petrol);
  color: var(--krem);
  transform: rotate(-1.5deg);
}

.chip input:focus-visible + span {
  outline: 3px solid var(--oransje);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--blekk-myk);
  margin-top: 0.9rem;
}

.form-success {
  background: var(--turkis-lys);
  border-radius: var(--blob-b);
  padding: 2.5rem;
  font-weight: 600;
}

/* Direkte kontakt-kolonne */
.contact-aside {
  display: grid;
  gap: 2rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--gul);
  padding: 0.6em 1.2em;
  border-radius: 999px;
  transform: rotate(-1.2deg);
  justify-self: start;
}

.availability::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background: var(--petrol);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

.contact-line {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.contact-line .hint {
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turkis-dyp);
}

.contact-line a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.3rem;
}

.contact-line a:hover {
  color: var(--oransje);
}

.contact-line address {
  font-style: normal;
  margin-top: 0.3rem;
}

.map-dummy {
  aspect-ratio: 1.4;
  background: var(--turkis-lys);
  border-radius: var(--blob-a);
  display: grid;
  place-items: center;
}

/* FAQ */
.faq {
  max-width: 46rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.5rem 0.25rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  background: var(--gul);
  border-radius: var(--blob-c);
  transition: transform 0.35s var(--ease-out);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  background: var(--turkis);
}

.faq details p {
  padding: 0 0.25rem 1.5rem;
  margin: 0;
  color: var(--blekk-myk);
  max-width: 58ch;
}

/* ---------- Scroll-reveal ---------- */

[data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 0.8s var(--ease-out), translate 0.8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}

[data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.4em;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--turkis-dyp);
  margin-bottom: 1.5rem;
}

.breadcrumb:hover {
  color: var(--oransje);
}

/* ---------- Sjekkliste ---------- */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
}

.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
}

.checklist li::before {
  content: "✓";
  flex: none;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--turkis);
  color: var(--petrol);
  border-radius: var(--blob-b);
  transform: translateY(0.2em);
}

.checklist li:nth-child(2n)::before { background: var(--gul); border-radius: var(--blob-a); }
.checklist li:nth-child(3n)::before { background: var(--turkis-lys); border-radius: var(--blob-d); }

/* ---------- Typiske prosjekter / minikort ---------- */

.minicase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: var(--space-block);
}

@media (max-width: 860px) {
  .minicase-grid {
    grid-template-columns: 1fr;
  }
}

.minicase {
  background: var(--krem-dyp);
  border-radius: 1.5rem 1.5rem 1.5rem 0.25rem;
  padding: 1.75rem;
}

.minicase:nth-child(2) { border-radius: 0.25rem 1.5rem 1.5rem 1.5rem; }
.minicase:nth-child(3) { border-radius: 1.5rem 0.25rem 1.5rem 1.5rem; }

.minicase h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.minicase p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--blekk-myk);
}

/* ---------- Passer for / passer ikke ---------- */

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (max-width: 760px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

.fit-grid h3 {
  font-size: 1.25rem;
}

.fit-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.fit-grid li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.fit-grid li::before {
  flex: none;
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--blob-c);
  transform: translateY(0.15em);
}

.fit-yes li::before {
  content: "+";
  background: var(--turkis);
  color: var(--petrol);
}

.fit-no li::before {
  content: "−";
  background: var(--krem-dyp);
  color: var(--blekk-myk);
}

.fit-no li {
  color: var(--blekk-myk);
}

.section-dark .fit-no li {
  color: color-mix(in oklab, var(--krem) 74%, var(--turkis));
}

.section-dark .fit-no li::before {
  background: color-mix(in oklab, var(--krem) 16%, transparent);
  color: var(--krem);
}

/* ---------- Samarbeidsformer (planer) ---------- */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

@media (max-width: 860px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

.plan {
  position: relative;
  border: 2px solid var(--line);
  border-radius: 1.75rem;
  padding: 2rem 1.75rem;
}

.plan.featured {
  background: var(--petrol);
  color: var(--krem);
  border-color: var(--petrol);
  transform: rotate(-1deg);
}

.plan .badge {
  position: absolute;
  top: -0.9rem;
  right: 1.25rem;
  background: var(--gul);
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  transform: rotate(2deg);
}

.plan h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.plan .terms {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--turkis-dyp);
}

.plan.featured .terms {
  color: var(--turkis);
}

.plan p {
  margin: 0.9rem 0 0;
  font-size: 0.97rem;
}

.plan.featured p {
  color: color-mix(in oklab, var(--krem) 82%, var(--turkis));
}

/* ---------- Sektorliste ---------- */

.sector-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem clamp(2rem, 5vw, 4rem);
}

@media (max-width: 760px) {
  .sector-list {
    grid-template-columns: 1fr;
  }
}

.sector-list h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.sector-list h3 .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 640;
  font-size: 0.95rem;
  color: var(--turkis-dyp);
}

.sector-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--blekk-myk);
}

/* ---------- Tjenesteoversikt: tiles ---------- */

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

@media (max-width: 760px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }
}

.tile {
  display: block;
  text-decoration: none;
  background: var(--krem-dyp);
  border-radius: 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transition: border-radius 0.5s var(--ease-out), background-color 0.25s;
}

.tile:hover {
  border-radius: var(--blob-b);
}

.tile:nth-child(1):hover { background: var(--turkis-lys); }
.tile:nth-child(2):hover { background: color-mix(in oklab, var(--gul) 45%, var(--krem)); }
.tile:nth-child(3):hover { background: color-mix(in oklab, var(--oransje) 20%, var(--krem)); }
.tile:nth-child(4):hover { background: color-mix(in oklab, var(--indigo) 14%, var(--krem)); }

.tile h3 {
  font-size: var(--step-h3);
  margin: 0.4rem 0 0.5rem;
}

.tile p {
  color: var(--blekk-myk);
  margin-bottom: 1.25rem;
}

.tile .tags {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--turkis-dyp);
}

.tile .go {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease-out);
}

.tile:hover .go {
  transform: translateX(6px);
}

/* Problemkort — kjøperens smertepunkt i egne ord */
.pain .q {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 640;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

/* Resultatlinje på prosjektkort — markert med tusj-gul */
.work-meta .result {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 700;
  background: linear-gradient(transparent 58%, var(--gul) 58%);
  padding: 0 0.15em;
}

/* ---------- Casestudie ---------- */

.meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-block: 1px solid var(--line);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

@media (max-width: 760px) {
  .meta-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.meta-row .hint {
  display: block;
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turkis-dyp);
  margin-bottom: 0.3rem;
}

.case-visual {
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
  margin-top: var(--space-block);
}

.case-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.case-prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

@media (max-width: 760px) {
  .case-prose {
    grid-template-columns: 1fr;
  }
}

.case-prose h2 {
  font-size: var(--step-h3);
}

.logo-sheet {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 760px) {
  .logo-sheet {
    grid-template-columns: 1fr;
  }
}

.logo-sheet .panel {
  border-radius: 1.75rem;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  min-height: 240px;
}

.logo-sheet svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.swatch {
  flex: 1 1 8rem;
  min-width: 8rem;
}

.swatch .chipx {
  aspect-ratio: 1.15;
  border-radius: var(--blob-a);
  margin-bottom: 0.65rem;
}

.swatch:nth-child(2) .chipx { border-radius: var(--blob-b); }
.swatch:nth-child(3) .chipx { border-radius: var(--blob-c); }
.swatch:nth-child(4) .chipx { border-radius: var(--blob-d); }

.swatch b {
  display: block;
  font-size: 0.95rem;
}

.swatch span {
  font-size: 0.85rem;
  color: var(--blekk-myk);
}

.type-sample {
  border: 2px solid var(--line);
  border-radius: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.type-sample .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.type-sample .small {
  margin: 0;
  color: var(--blekk-myk);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

@media (max-width: 760px) {
  .mockup-grid {
    grid-template-columns: 1fr;
  }
}

.mockup-grid figure {
  margin: 0;
}

.mockup-grid .frame {
  border-radius: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
}

.mockup-grid .frame svg {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-grid figcaption {
  font-size: 0.9rem;
  color: var(--blekk-myk);
  padding-top: 0.75rem;
}

.result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 44rem;
}

.result-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: var(--step-lede);
  font-family: var(--font-display);
  font-weight: 640;
}

.result-list li::before {
  content: "→";
  color: var(--oransje);
  flex: none;
}

/* ---------- Designsystem-side (internt dokument) ---------- */

.ds-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.ds-toc a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.45em 1.1em;
  border: 2px solid var(--line);
  border-radius: 999px;
  transition: background-color 0.2s, border-color 0.2s;
}

.ds-toc a:hover {
  background: var(--gul);
  border-color: var(--gul);
}

.ds-section {
  padding-block: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 5.5rem; /* sticky header skal ikke dekke ankerpunkt */
}

.ds-section > .wrap > h2 {
  font-size: var(--step-h2);
}

.ds-note {
  font-size: 0.92rem;
  color: var(--blekk-myk);
  max-width: 62ch;
}

.ds-note strong {
  color: var(--blekk);
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85em;
  background: var(--krem-dyp);
  padding: 0.15em 0.45em;
  border-radius: 6px;
}

.section-dark code,
.ds-demo.dark code {
  background: color-mix(in oklab, var(--krem) 14%, transparent);
}

/* Fargekort */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ds-swatch {
  border: 2px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
}

.ds-swatch .fill {
  height: 104px;
}

.ds-swatch .info {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  display: grid;
  gap: 0.25rem;
}

.ds-swatch .info b {
  font-size: 1rem;
}

.ds-swatch .info .use {
  color: var(--blekk-myk);
}

/* Typografi-spesimen */
.ds-type-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 2rem;
  align-items: baseline;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 700px) {
  .ds-type-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.ds-type-row .meta {
  font-size: 0.85rem;
  color: var(--blekk-myk);
}

.ds-type-row .meta code {
  display: inline-block;
  margin-top: 0.25rem;
}

.ds-font-card {
  border: 2px solid var(--line);
  border-radius: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.ds-font-card .glyphs {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  overflow-wrap: anywhere;
}

/* Demoflater */
.ds-demo {
  border: 2px dashed var(--line);
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.ds-demo.block {
  display: block;
}

.ds-demo.dark {
  background: var(--petrol);
  border-style: solid;
  border-color: var(--petrol);
  color: var(--krem);
}

.ds-demo-name {
  font-family: var(--font-body);
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turkis-dyp);
  margin: 2.5rem 0 0;
}

.ds-demo-name:first-of-type {
  margin-top: 2rem;
}

/* Blob-oversikt */
.ds-blob-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.ds-blob-row .item {
  text-align: center;
  font-size: 0.85rem;
}

.ds-blob-row .blob {
  width: 110px;
  aspect-ratio: 1;
  margin: 0 auto 0.75rem;
}

/* Token-tabell */
.ds-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.ds-table th {
  text-align: left;
  font-size: var(--step-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turkis-dyp);
  padding: 0.6rem 1rem 0.6rem 0;
  border-bottom: 2px solid var(--line);
}

.ds-table td {
  padding: 0.85rem 1rem 0.85rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

/* ---------- Redusert bevegelse ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    translate: none;
    transition: none;
  }

  .hero-figure .blob-main,
  .hero-figure .blob-gul,
  .hero-figure .blob-oransje,
  .availability::before {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }

  .stamp {
    transition: background-color 0.2s, color 0.2s;
  }

  .stamp:hover {
    scale: none;
  }
}
