/* Nuovo Skin & Mind
   Designsystem: bone-bakgrunn, varm svart, gull i små doser. Se DESIGN.md. */

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-v1.woff2") format("woff2");
  font-weight: 300 560;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-italic-v1.woff2") format("woff2");
  font-weight: 300 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/hanken-grotesk-v1.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}
/* Metrikk-tilpassede reserver, så fontbyttet ikke flytter layouten */
@font-face {
  font-family: "Newsreader Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 96%;
  ascent-override: 88%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Hanken Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
  size-adjust: 99%;
  ascent-override: 100%;
  descent-override: 29%;
  line-gap-override: 0%;
}

:root {
  --ink: #1A1816;
  --ink-2: #24211E;
  --bone: #F4F0E8;
  --sand: #E6DFD2;
  --gold: #92835D;
  --gold-deep: #6A5E40;   /* justert fra #6F6344: 4.47:1 mot sand var under AA */
  --gold-soft: #B5A782;   /* gull som tekst på mørk bunn */
  --muted: #5F594F;       /* justert fra #6B655C: holder AA også på sand */
  --on-ink: #EDE8DE;
  --on-ink-muted: #ADA597;
  --line: rgba(146, 131, 93, 0.36);
  --line-strong: rgba(146, 131, 93, 0.6);
  --line-on-ink: rgba(181, 167, 130, 0.28);

  --serif: "Newsreader", "Newsreader Fallback", Georgia, serif;
  --sans: "Hanken Grotesk", "Hanken Fallback", Arial, sans-serif;

  --fs-small: 0.875rem;
  --fs-body: 1.0625rem;
  --fs-lede: clamp(1.125rem, 1rem + 0.45vw, 1.3125rem);
  --fs-h3: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --fs-h2: clamp(2.125rem, 1.5rem + 2.6vw, 3.75rem);
  --fs-h1: clamp(2.875rem, 1.7rem + 5vw, 6.25rem);

  --wrap: 1320px;
  --gutter: clamp(20px, 4.2vw, 64px);
  --col-gap: clamp(16px, 2.2vw, 32px);
  --section: clamp(88px, 11vw, 168px);
  --header-h: 76px;
  --radius: 2px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--ink); color: var(--sand); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
  font-variant-numeric: lining-nums;
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; line-height: 0.98; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.15; letter-spacing: -0.012em; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color 0.2s, color 0.2s;
}
a:hover { text-decoration-color: currentColor; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 1px;
}
.on-ink :focus-visible { outline-color: var(--gold-soft); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 18px;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: var(--col-gap);
}
@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}
.section { padding-block: var(--section); }
/* To lyse seksjoner etter hverandre deler én luftmengde */
.section:not(.tint):not(.dark) + .section:not(.tint):not(.dark),
.page-hero + .section:not(.tint):not(.dark) { padding-top: 0; }
.tint { background: var(--sand); }
.dark { background: var(--ink); color: var(--on-ink); }

.measure { max-width: 68ch; }

/* ---------- Typografiske detaljer ---------- */

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.4rem;
}
.dark .eyebrow { color: var(--gold-soft); }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--ink);
  max-width: 44ch;
}
.muted { color: var(--muted); }
.dark .muted { color: var(--on-ink-muted); }
.num {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.dark .num { color: var(--gold-soft); }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Knapper og lenker ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  min-height: 48px;
  padding: 0.8em 1.45em;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--light { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--light:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn .ext { width: 11px; height: 11px; flex: none; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-weight: 500;
  text-decoration: none;
  padding-top: 0.4em;
  padding-bottom: 0.2em;
  border-bottom: 1px solid var(--line-strong);
}
.textlink:hover { border-bottom-color: currentColor; }
.textlink .arrow { transition: transform 0.3s var(--ease); }
.textlink:hover .arrow { transform: translateX(4px); }

.arrow { width: 18px; height: 10px; flex: none; }

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; margin-top: 2.2rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 232, 0);
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.is-solid,
.site-header.has-open {
  background: var(--bone);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}
.brand { display: block; flex: none; text-decoration: none; }
.brand img { width: 132px; height: auto; }
@media (min-width: 1100px) { .brand img { width: 148px; } }

.nav { margin-left: auto; display: none; }
@media (min-width: 1024px) { .nav { display: block; } }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: none;
  border: 0;
  font-size: 0.9375rem;
  font-weight: 450;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-link:hover { color: var(--gold-deep); }
.nav-link[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--gold); }
.nav-link .chev { width: 9px; height: 6px; transition: transform 0.25s var(--ease); }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav-link[aria-expanded="true"] { color: var(--gold-deep); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; margin-left: 12px; min-height: 44px; padding-block: 0.65em; } }

/* Mega-meny */
.mega {
  position: fixed;
  left: 0; right: 0;
  top: var(--header-h);
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 44px 52px;
}
.mega[hidden], .drop[hidden] { display: none; }
.mega-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); }
.mega-group { grid-column: span 3; }
.mega-group:first-child { grid-column: span 4; }
.mega-group h2 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mega-group ul { list-style: none; margin: 0; padding: 0; }
.mega-group.cols-2 ul { columns: 2; column-gap: var(--col-gap); }
.mega-group a {
  display: block;
  padding: 7px 0;
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.3;
  text-decoration: none;
  break-inside: avoid;
}
.mega-group a:hover { color: var(--gold-deep); }
.mega-aside { grid-column: 11 / span 2; align-self: end; font-size: var(--fs-small); color: var(--muted); }
.mega-aside a { font-family: var(--sans); font-size: var(--fs-small); display: inline; padding: 0; text-decoration: underline; text-decoration-color: var(--line-strong); }

.drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 10px 0;
}
.drop ul { list-style: none; margin: 0; padding: 0; }
.drop a { display: block; padding: 9px 20px; text-decoration: none; font-size: 0.9375rem; }
.drop a:hover { color: var(--gold-deep); }

/* Mobilmeny */
.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 2px 8px 12px;
  background: none;
  border: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
}
.menu-toggle .bars { position: relative; width: 22px; height: 9px; }
.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.menu-toggle .bars::before { top: 0; }
.menu-toggle .bars::after { top: 7.5px; }
.menu-toggle[aria-expanded="true"] .bars::before { top: 4px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars::after { top: 4px; transform: rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 49;
  background: var(--bone);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px var(--gutter) 120px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu h2 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 30px 0 6px;
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  text-decoration: none;
}
.mobile-menu .small a { font-size: 1.1875rem; padding: 11px 0; }
.mobile-menu .mm-contact { margin-top: 36px; font-size: var(--fs-small); color: var(--muted); }
.mobile-menu .mm-contact a { display: inline; font-family: var(--sans); font-size: inherit; padding: 0; text-decoration: underline; }
body.menu-open { overflow: hidden; }

/* Sticky bunnlinje på mobil */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: var(--ink);
  border-top: 1px solid var(--line-on-ink);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  color: var(--on-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.mobile-bar a + a { background: var(--bone); color: var(--ink); }
@media (min-width: 1024px) { .mobile-bar { display: none; } }
@media (max-width: 1023.98px) { body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); } }

/* ---------- Bilder ---------- */

.media { margin: 0; position: relative; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.frame > picture { width: 100%; height: 100%; }
.media figcaption,
.caption {
  margin-top: 12px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}
.dark .media figcaption { color: var(--on-ink-muted); }

/* ---------- Forside: helt ---------- */

.hero { padding-top: clamp(28px, 5vw, 72px); padding-bottom: clamp(56px, 8vw, 120px); }
.hero-text { grid-column: 1 / -1; align-self: center; }
.hero-text h1 { margin-bottom: clamp(24px, 3vw, 40px); }
.hero-text h1 .line { display: block; }
.hero-text h1 em { font-style: italic; font-weight: 340; color: var(--gold-deep); }
.hero-media {
  grid-column: 1 / -1;
  margin-top: 48px;
  max-width: 460px;
}
.hero-media .frame { overflow: hidden; aspect-ratio: 405 / 532; background: var(--sand); }
@media (min-width: 900px) {
  .hero-text { grid-column: 1 / span 7; padding-bottom: 40px; }
  .hero-media { grid-column: 9 / span 4; margin-top: 0; justify-self: end; width: 100%; max-width: 420px; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-media .frame img { animation: settle 1.6s var(--ease) both; }
  @keyframes settle { from { transform: scale(1.07); } to { transform: scale(1); } }
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust li { display: flex; align-items: center; }
.trust li:not(:last-child)::after {
  content: "";
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  margin-inline: 18px;
}
@media (max-width: 699.98px) {
  .trust ul { flex-direction: column; gap: 0; padding: 6px 0; }
  .trust li { padding: 10px 0; }
  .trust li + li { border-top: 1px solid var(--line); }
  .trust li::after { display: none; }
}

/* ---------- Skin & Mind ---------- */

.idea-label { grid-column: 1 / -1; }
.idea-statement { grid-column: 1 / -1; }
.idea-statement p.big {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 3.125rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  font-weight: 350;
  text-wrap: balance;
  margin-bottom: 0;
}
.idea-cols { grid-column: 1 / -1; display: grid; gap: 36px; margin-top: 56px; }
.idea-cols h3 { font-size: 1.5rem; margin-bottom: 12px; }
.idea-cols h3 span { font-style: italic; color: var(--gold-deep); }
@media (min-width: 900px) {
  .idea-label { grid-column: 1 / span 3; padding-top: 14px; }
  .idea-statement { grid-column: 4 / span 9; }
  .idea-cols { grid-column: 4 / span 9; grid-template-columns: 1fr 1fr; column-gap: var(--col-gap); margin-top: 72px; }
  .idea-cols > div { padding-top: 22px; border-top: 1px solid var(--line); }
  .idea-cols > div:last-child { margin-top: 64px; }
}
@media (max-width: 899.98px) {
  .idea-cols > div { padding-top: 22px; border-top: 1px solid var(--line); }
}

/* ---------- Behandlingsmeny ---------- */

.section-head { grid-column: 1 / -1; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head h2 { margin-bottom: 20px; }
.section-head p { color: var(--muted); max-width: 46ch; }
@media (min-width: 900px) {
  .section-head.split { display: grid; grid-template-columns: subgrid; align-items: end; }
  .section-head.split > :first-child { grid-column: 1 / span 7; }
  .section-head.split > :last-child { grid-column: 9 / span 4; }
}

.menu-lists { grid-column: 1 / -1; }
.menu-preview { display: none; }
@media (min-width: 1024px) and (hover: hover) {
  .menu-lists { grid-column: 1 / span 8; }
  .menu-preview { display: block; grid-column: 10 / span 3; }
  .menu-preview .sticky { position: sticky; top: calc(var(--header-h) + 40px); }
  .preview-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
  .preview-frame picture { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s var(--ease); }
  .preview-frame picture.is-active { opacity: 1; }
  .preview-frame img { width: 100%; height: 100%; object-fit: cover; }
}

.menu-group + .menu-group { margin-top: clamp(48px, 6vw, 80px); }
.menu-group-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-strong);
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-lists > .menu-list:first-child { border-top: 1px solid var(--line-strong); }
.menu-list li { border-bottom: 1px solid var(--line); }
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 20px;
  padding: 20px 0;
  text-decoration: none;
}
.menu-name {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 1.2rem + 0.7vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  transition: color 0.25s;
}
.menu-line { grid-column: 1; font-size: 0.9375rem; color: var(--muted); margin-top: 4px; }
.menu-item .arrow { grid-column: 2; grid-row: 1 / span 2; color: var(--gold-deep); transition: transform 0.35s var(--ease); }
.menu-item:hover .menu-name,
.menu-item:focus-visible .menu-name { color: var(--gold-deep); }
.menu-item:hover .arrow { transform: translateX(6px); }
@media (min-width: 700px) {
  .menu-item { grid-template-columns: minmax(0, 17rem) minmax(0, 1fr) auto; padding: 22px 0; }
  .menu-line { grid-column: 2; margin-top: 0; }
  .menu-item .arrow { grid-column: 3; grid-row: 1; }
}
.dark .menu-line { color: var(--on-ink-muted); }

/* ---------- Personer ---------- */

.person-photo { grid-column: 1 / -1; max-width: 500px; }
.person-photo .frame { aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.person-text { grid-column: 1 / -1; margin-top: 40px; }
@media (min-width: 900px) {
  .person-photo { grid-column: 1 / span 5; }
  .person-text { grid-column: 7 / span 6; margin-top: 0; align-self: center; }
}
.person-text h2 { margin-bottom: 22px; }
.person-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5625rem);
  line-height: 1.4;
  margin: 0 0 36px;
  max-width: 34ch;
  hanging-punctuation: first;
}

.facts { margin: 0; border-top: 1px solid var(--line); }
.facts > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.facts dt { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep); padding-top: 3px; }
.facts dd { margin: 0; }
@media (min-width: 600px) { .facts > div { grid-template-columns: 9.5rem minmax(0, 1fr); } }
.dark .facts, .dark .facts > div { border-color: var(--line-on-ink); }
.dark .facts dt { color: var(--gold-soft); }

.colleague {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: clamp(64px, 8vw, 112px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.colleague .frame { aspect-ratio: 1; overflow: hidden; }
.colleague h3 { font-size: 1.625rem; margin-bottom: 4px; }
.colleague p { color: var(--muted); max-width: 52ch; }
@media (min-width: 900px) {
  .person-photo { grid-row: 1; }
  .person-text { grid-row: 1 / span 2; }
  .colleague { grid-column: 1 / span 5; grid-row: 2; align-self: start; grid-template-columns: 150px minmax(0, 1fr); gap: 28px; margin-top: 56px; max-width: 500px; }
}
@media (max-width: 519.98px) {
  .colleague { grid-template-columns: minmax(0, 1fr); }
  .colleague .frame { width: 140px; }
}

/* ---------- Omtaler ---------- */

.reviews-side { grid-column: 1 / -1; margin-bottom: 28px; }
@media (max-width: 899.98px) {
  .reviews-side { display: contents; }
  .reviews-side > div:first-child { order: 0; margin-bottom: 24px; }
  .reviews-main { order: 1; }
  .quote-controls { order: 2; }
}
.reviews-main { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .reviews-side { grid-column: 1 / span 3; display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 0; }
  .reviews-main { grid-column: 4 / span 9; }
}
.quotes { list-style: none; margin: 0; padding: 0; }
.quotes > li + li { margin-top: 56px; }
.js .quotes { display: grid; }
.js .quotes > li { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s; }
.js .quotes > li.is-active { opacity: 1; visibility: visible; }
.quote-text {
  margin: 0;
  font-family: var(--serif);
  font-weight: 330;
  font-size: clamp(1.625rem, 1.2rem + 1.7vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
  hanging-punctuation: first;
}
.quote-text p { margin: 0; text-indent: -0.42em; }
@supports (hanging-punctuation: first) { .quote-text p { text-indent: 0; } }
.quote-cite { margin-top: 28px; font-size: 0.9375rem; color: var(--muted); }
.quote-cite strong { color: var(--ink); font-weight: 500; }
.quote-controls { display: none; align-items: center; gap: 12px; margin-top: 32px; }
.js .quote-controls { display: flex; }
.quote-controls button {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s;
}
.quote-controls button:hover { border-color: var(--ink); }
.quote-controls .count { font-variant-numeric: tabular-nums; font-size: 0.875rem; letter-spacing: 0.08em; min-width: 5.5ch; text-align: center; }

/* ---------- Produkter / delt blokk ---------- */

.split-media { grid-column: 1 / -1; }
.split-text { grid-column: 1 / -1; margin-top: 40px; align-self: center; }
.split-text h2 { margin-bottom: 24px; }
@media (min-width: 900px) {
  .split-media { grid-column: 1 / span 6; }
  .split-text { grid-column: 8 / span 5; margin-top: 0; }
  .split--flip .split-media { grid-column: 7 / span 6; grid-row: 1; }
  .split--flip .split-text { grid-column: 1 / span 5; grid-row: 1; }
}
.split-media.narrow { max-width: 560px; }

/* ---------- Nyhetsbrev og skjema ---------- */

.newsletter-intro { grid-column: 1 / -1; }
.newsletter-form { grid-column: 1 / -1; margin-top: 36px; }
@media (min-width: 900px) {
  .newsletter-intro { grid-column: 1 / span 5; }
  .newsletter-form { grid-column: 7 / span 6; margin-top: 8px; }
}
.form { display: grid; gap: 20px; }
.form .row { display: grid; gap: 20px; }
@media (min-width: 600px) { .form .row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; }
.field label .opt { color: var(--muted); font-weight: 400; }
.site-footer .field label .opt { color: var(--on-ink-muted); }
.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.2s;
}
.tint .field input, .tint .field textarea { background: #F7F4EE; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--gold-deep); }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 0; border-color: var(--gold-deep); }
.field input[aria-invalid="true"] { border-color: #8A2E1F; }

.check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; font-size: 0.9375rem; line-height: 1.5; }
.check input {
  appearance: none;
  width: 22px; height: 22px;
  margin: 1px 0 0;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  background: var(--bone);
  display: grid; place-items: center;
  cursor: pointer;
}
.check input::after { content: ""; width: 11px; height: 6px; border-left: 1.75px solid var(--bone); border-bottom: 1.75px solid var(--bone); transform: translateY(-1.5px) rotate(-45deg); opacity: 0; }
.check input:checked { background: var(--ink); border-color: var(--ink); }
.check input:checked::after { opacity: 1; }
.form-note { font-size: 0.875rem; color: var(--muted); }
.form-status { font-size: 0.9375rem; min-height: 1.6em; margin: 0; }
.form-status[data-state="ok"] { color: #2F5134; }
.form-status[data-state="error"] { color: #8A2E1F; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { justify-self: start; }

/* Nyhetsbrev i footer */
.footer-news .form { gap: 14px; }
.footer-news .field input { background: transparent; border-color: var(--line-on-ink); color: var(--on-ink); min-height: 48px; }
.footer-news .field input::placeholder { color: var(--on-ink-muted); }
.footer-news .field input:focus-visible { outline-color: var(--gold-soft); border-color: var(--gold-soft); }
.footer-news .check input { background: transparent; border-color: var(--gold-soft); }
.footer-news .check input:checked { background: var(--bone); border-color: var(--bone); }
.footer-news .check input::after { border-color: var(--ink); }
.footer-news .check { font-size: 0.8125rem; color: var(--on-ink-muted); }
.footer-news .form-status[data-state="ok"] { color: #B9CDB3; }
.footer-news .form-status[data-state="error"] { color: #E7B3A6; }

/* ---------- Besøk oss ---------- */

.visit-text { grid-column: 1 / -1; }
.visit-media { grid-column: 1 / -1; margin-top: 48px; max-width: 600px; }
@media (min-width: 900px) {
  .visit-text { grid-column: 1 / span 5; align-self: center; }
  .visit-media { grid-column: 7 / span 6; margin-top: 0; justify-self: end; width: 100%; }
}
.visit-text h2 { margin-bottom: 24px; }
.dark a { text-decoration-color: var(--line-on-ink); }
.dark a:hover { text-decoration-color: currentColor; }
.dark .textlink { border-bottom-color: var(--line-on-ink); }
.dark .textlink:hover { border-bottom-color: currentColor; }

/* ---------- FAQ ---------- */

.faq-head { grid-column: 1 / -1; margin-bottom: 36px; }
.faq-list { grid-column: 1 / -1; border-top: 1px solid var(--line-strong); }
@media (min-width: 900px) {
  .faq-head { grid-column: 1 / span 4; margin-bottom: 0; }
  .faq-list { grid-column: 6 / span 7; }
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.1875rem, 1.1rem + 0.35vw, 1.4375rem);
  line-height: 1.3;
  letter-spacing: -0.008em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus { position: relative; width: 14px; height: 14px; justify-self: end; }
.faq-list summary .plus::before,
.faq-list summary .plus::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform 0.3s var(--ease); }
.faq-list summary .plus::before { left: 0; right: 0; top: 6.5px; height: 1px; }
.faq-list summary .plus::after { top: 0; bottom: 0; left: 6.5px; width: 1px; }
.faq-list details[open] summary .plus::after { transform: scaleY(0); }
.faq-list summary:hover { color: var(--gold-deep); }
.faq-list .answer { padding: 0 44px 26px 0; color: var(--muted); max-width: 62ch; }

/* ---------- Undersider ---------- */

.crumbs { font-size: 0.8125rem; color: var(--muted); margin-bottom: 36px; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--gold); }
.crumbs a { text-decoration-color: transparent; }
.crumbs a:hover { text-decoration-color: currentColor; }

.page-hero { padding-top: clamp(24px, 4vw, 56px); padding-bottom: clamp(64px, 8vw, 120px); }
.page-hero-text { grid-column: 1 / -1; }
.page-hero-text h1 { margin-bottom: 28px; font-size: clamp(2.625rem, 1.6rem + 3.8vw, 5.25rem); hyphens: manual; }
.page-hero-media { grid-column: 1 / -1; margin-top: 44px; }
.page-hero-media .frame { overflow: hidden; background: var(--sand); aspect-ratio: 4 / 5; }
.page-hero-media .frame img { object-position: var(--pos, 50% 50%); }
.page-hero-media.wide .frame { aspect-ratio: 3 / 2; }
@media (min-width: 900px) {
  .page-hero-text { grid-column: 1 / span 6; align-self: center; }
  .page-hero-media { grid-column: 8 / span 5; margin-top: 0; }
  .page-hero.text-only .page-hero-text { grid-column: 1 / span 9; }
}
.page-hero-media.native { justify-self: start; }
@media (min-width: 900px) { .page-hero-media.native { justify-self: end; width: 100%; } }

.notice {
  margin-top: 36px;
  padding: 20px 22px;
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--gold);
  background: rgba(230, 223, 210, 0.55);
  max-width: 52ch;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.notice strong { display: block; font-weight: 600; margin-bottom: 4px; }

.body-aside { grid-column: 1 / -1; margin-bottom: 20px; }
.body-main { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .body-aside { grid-column: 1 / span 3; }
  .body-main { grid-column: 4 / span 8; }
  .body-aside .sticky { position: sticky; top: calc(var(--header-h) + 32px); }
}
@media (max-width: 899.98px) { .toc-aside { display: none; } }
.body-main > h2 { margin-bottom: 28px; }
.body-main .prose { max-width: 64ch; }
.block { margin-top: clamp(56px, 7vw, 96px); }
.block > h2,
.block > h3 {
  font-size: clamp(1.625rem, 1.35rem + 1.1vw, 2.25rem);
  margin-bottom: 24px;
}
.toc { list-style: none; margin: 0; padding: 0; font-size: 0.875rem; border-top: 1px solid var(--line); }
.toc li { border-bottom: 1px solid var(--line); }
.toc a { display: block; padding: 10px 0; text-decoration: none; color: var(--muted); }
.toc a:hover { color: var(--ink); }

.offer-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); max-width: 44rem; }
.offer-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.offer-list .name { font-family: var(--serif); font-size: 1.3125rem; line-height: 1.3; }
.offer-list .desc { color: var(--muted); }
@media (min-width: 700px) { .offer-list li.has-desc { grid-template-columns: 15rem minmax(0, 1fr); align-items: baseline; } }
.offer-list.inline { display: flex; flex-wrap: wrap; align-items: baseline; border-top: 0; font-family: var(--serif); font-size: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem); line-height: 1.35; max-width: 40rem; }
.offer-list.inline li { display: inline; padding: 0; border: 0; }
.offer-list.inline li:not(:last-child)::after { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin: 0 0.6em; vertical-align: 0.3em; }

.ticks { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); max-width: 44rem; }
.ticks li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 1.45em; width: 14px; height: 1px; background: var(--gold); }

.steps { list-style: none; margin: 0; padding: 0; max-width: 44rem; }
.steps li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 8px 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps .num { padding-top: 0.45em; }
.steps h3 { font-size: 1.375rem; margin-bottom: 6px; }
.steps p { color: var(--muted); max-width: 58ch; }

.why-head { grid-column: 1 / -1; margin-bottom: 36px; }
.why-list { grid-column: 1 / -1; list-style: none; margin: 0; padding: 0; }
@media (min-width: 900px) {
  .why-head { grid-column: 1 / span 4; margin-bottom: 0; }
  .why-list { grid-column: 6 / span 7; }
}
.why-list li { display: grid; grid-template-columns: 3.25rem minmax(0, 1fr); gap: 16px; padding: 24px 0; border-top: 1px solid var(--line-strong); }
.why-list li:last-child { border-bottom: 1px solid var(--line-strong); }
.why-list h3 { font-size: 1.5rem; margin-bottom: 8px; }
.why-list .num { padding-top: 0.5em; }
.why-list p { color: var(--muted); max-width: 58ch; }

.cta-band .grid { align-items: end; }
.cta-band h2 { grid-column: 1 / -1; font-size: clamp(2.25rem, 1.5rem + 3.2vw, 4.5rem); }
.cta-band .cta-side { grid-column: 1 / -1; margin-top: 28px; }
@media (min-width: 900px) {
  .cta-band h2 { grid-column: 1 / span 7; }
  .cta-band .cta-side { grid-column: 9 / span 4; margin-top: 0; }
}
.cta-band .actions { margin-top: 22px; }

.two-col { display: grid; gap: 48px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; column-gap: calc(var(--col-gap) * 2); } }

.numbered { list-style: none; margin: 0; padding: 0; display: grid; column-gap: calc(var(--col-gap) * 2); }
@media (min-width: 900px) { .numbered.cols-2 { grid-template-columns: 1fr 1fr; } }
.numbered li { padding: 26px 0 30px; border-top: 1px solid var(--line-strong); }
.numbered .num { display: block; margin-bottom: 14px; }
.numbered h2,
.numbered h3 { font-size: clamp(1.5rem, 1.3rem + 0.7vw, 1.875rem); margin-bottom: 12px; }
.numbered p { color: var(--muted); max-width: 54ch; }

.prose h2 { font-size: clamp(1.625rem, 1.35rem + 1.1vw, 2.25rem); margin: 64px 0 20px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.3125rem; margin: 32px 0 10px; letter-spacing: -0.005em; }
.prose ul { padding-left: 1.1em; margin: 0 0 1em; }
.prose li { margin-bottom: 0.4em; }
.prose li::marker { color: var(--gold); }

.contact-list { margin: 0; }
.contact-list > div { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-list > div:last-child { border-bottom: 1px solid var(--line); }
.contact-list dt { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 2px; }
.contact-list dd { margin: 0; font-size: 1.125rem; }
.dark .contact-list > div { border-color: var(--line-on-ink); }
.dark .contact-list dt { color: var(--gold-soft); }

.team { list-style: none; margin: 0; padding: 0; display: grid; gap: 48px; }
@media (min-width: 700px) { .team { grid-template-columns: 1fr 1fr; column-gap: var(--col-gap); } }
.team a { text-decoration: none; display: block; }
.team .frame { aspect-ratio: 1; overflow: hidden; max-width: 500px; margin-bottom: 20px; background: var(--sand); }
.team h3 { font-size: 1.75rem; margin-bottom: 4px; }
.team p { color: var(--muted); }
.team a:hover h3 { color: var(--gold-deep); }

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

.site-footer { background: var(--ink); color: var(--on-ink); padding-top: clamp(72px, 9vw, 128px); font-size: 0.9375rem; }
.footer-top { display: grid; gap: 48px; padding-bottom: clamp(56px, 7vw, 96px); }
.footer-brand img { width: 190px; }
.footer-brand p { margin-top: 26px; color: var(--on-ink-muted); max-width: 32ch; }
.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { text-decoration-color: transparent; }
.site-footer a:hover { text-decoration-color: currentColor; }
.site-footer address { font-style: normal; }
.site-footer address p { margin-bottom: 10px; }
.footer-cols { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) {
  .footer-top { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); }
  .footer-brand { grid-column: 1 / span 3; }
  .footer-cols { grid-column: 4 / span 6; grid-template-columns: 1.1fr 1fr 1fr; column-gap: var(--col-gap); }
  .footer-news { grid-column: 10 / span 3; }
}
@media (max-width: 599.98px) { .footer-cols > :first-child { grid-column: 1 / -1; } }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: space-between;
  padding-block: 26px;
  border-top: 1px solid var(--line-on-ink);
  font-size: 0.8125rem;
  color: var(--on-ink-muted);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-bottom li { margin: 0; }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: flex; align-items: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

@media print {
  .site-header, .mobile-bar, .mobile-menu, .site-footer .footer-news { display: none !important; }
  body { padding: 0; background: #fff; }
}
