/* ====================================================================
   FUNKEY NUTRITION — editorial wellness magazine aesthetic
   Palette: deep forest green + warm cream + terracotta accent
   Type: Fraunces (display serif, funky) + Instrument Sans (body)
   ==================================================================== */

:root {
  /* Core palette */
  --ink:        #101814;   /* near-black deep green */
  --forest:     #1E3A2E;   /* dominant brand green */
  --moss:       #2d4a38;   /* lighter forest */
  --leaf:       #3D5D44;   /* softer green */
  --bone:       #F5EFE2;   /* warm cream (primary light bg) */
  --paper:      #FAF6ED;   /* lighter cream */
  --sand:       #E8D9B8;   /* tertiary warm */
  --terra:      #C96E47;   /* primary warm accent */
  --terra-dark: #8A3B1E;   /* deeper terra */
  --rule:       rgba(16, 24, 20, 0.15);
  --rule-light: rgba(245, 239, 226, 0.2);

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-italic:  "Instrument Serif", "Fraunces", serif;

  /* Scale */
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.italic { font-family: var(--font-italic); font-style: italic; font-weight: 400; }

/* Grain overlay (subtle noise) */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/></svg>");
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 226, 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  width: 46px; height: 46px;
  transition: transform 0.6s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-15deg) scale(1.05); }

.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.32em;
}
.brand-word-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.35em;
  margin-top: 4px;
  color: var(--moss);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-list a:hover::after { transform: scaleX(1); }

.chev { font-size: 10px; margin-left: 4px; display: inline-block; transition: transform 0.3s var(--ease); }
.has-drop.open .chev { transform: rotate(180deg); }

.drop-panel {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 320px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  box-shadow: 0 24px 60px -12px rgba(16,24,20,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.3s var(--ease);
  z-index: 10;
}
.has-drop.open .drop-panel,
.has-drop:hover .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drop-panel-inner { padding: 10px; display: flex; flex-direction: column; }
.drop-panel a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 14px;
  font-size: 14px;
  transition: background 0.2s var(--ease);
  border-radius: 2px;
}
.drop-panel a:hover { background: var(--sand); }
.drop-panel a::after { display: none; }
.drop-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--terra);
  font-size: 13px;
  min-width: 28px;
}
.drop-txt { font-weight: 500; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  padding: clamp(60px, 10vh, 120px) var(--gutter) clamp(80px, 10vh, 140px);
  overflow: hidden;
  color: var(--bone);
  background: var(--forest);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn.primary {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--bone);
}
.btn.primary:hover { background: var(--bone); border-color: var(--bone); color: var(--forest); }
.btn.primary.inverse {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}
.btn.primary.inverse:hover { background: var(--terra); border-color: var(--terra); color: var(--bone); }
.btn.ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone);
}
.btn.ghost:hover { background: var(--bone); color: var(--forest); }
.btn.ghost.light { color: var(--bone); border-color: var(--bone); }
.btn.ghost.light:hover { background: var(--bone); color: var(--forest); }

.hero .btn.ghost { color: var(--bone); border-color: rgba(245,239,226,0.5); }
.hero .btn.ghost:hover { background: var(--bone); border-color: var(--bone); color: var(--forest); }

/* ─── Hero (full-width editorial cover) ─── */
.hero-b {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  position: relative;
}

.hero-b-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  position: relative;
}

.hb-top {
  margin-bottom: 40px;
}
.hb-eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--rule-light);
  border-radius: 999px;
}

.hb-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hb-line {
  display: block;
  font-size: clamp(80px, 14vw, 240px);
}
.hb-line-a {
  color: var(--terra);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: -0.08em;
}
.hb-line-b {
  color: var(--bone);
}
.hb-italic {
  font-style: italic;
  color: var(--terra);
  font-variation-settings: "opsz" 144, "WONK" 1, "SOFT" 80;
}

.hb-lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(245, 239, 226, 0.8);
  max-width: 680px;
  margin: 0 auto 40px;
}
.hb-lead-sm {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}

.hb-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ========================================
   BELT (intro)
   ======================================== */
.belt {
  padding: 100px var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.belt-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.belt-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 36px;
}
.belt-body {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.belt-body em { font-style: italic; font-family: var(--font-italic); color: var(--terra); }
.belt-body strong { font-weight: 500; }
.belt-tag {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  margin-top: 48px;
  font-weight: 400;
  color: var(--forest);
}

/* ========================================
   SECTION PRIMITIVES
   ======================================== */
.section {
  padding: 140px var(--gutter);
  position: relative;
}

.section-header {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
}
.section-num {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  align-self: start;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.section-num.dark { color: var(--sand); border-top-color: var(--rule-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.section-title.light { color: var(--bone); }
.section-title .italic { color: var(--terra); }

.section-lead {
  grid-column: 2;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--moss);
  margin-top: 24px;
}
.section-lead.light { color: rgba(245, 239, 226, 0.8); }

/* ========================================
   MENU
   ======================================== */
.menu {
  background: var(--bone);
}

.menu-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.menu-card {
  background: var(--forest);
  color: var(--bone);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.menu-card:hover { background: var(--moss); }

.menu-card.feature { background: var(--paper); color: var(--ink); }
.menu-card.feature:hover { background: var(--sand); }

.menu-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-light);
}
.menu-card.feature .menu-card-head { border-bottom-color: var(--rule); }

.menu-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-icon svg { width: 100%; height: 100%; }

.menu-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
}

.menu-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-items li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
}
.menu-items .item {
  font-weight: 500;
  letter-spacing: 0.02em;
}
.menu-items .allergen {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 12px;
  color: rgba(245, 239, 226, 0.6);
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0;
}
.menu-card.feature .menu-items .allergen { color: var(--moss); }
.menu-items .dots {
  height: 1px;
  align-self: center;
  background-image: linear-gradient(to right, currentColor 33%, transparent 0%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.3;
}
.menu-items .price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  font-variant-numeric: oldstyle-nums;
}

.macro {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--sand);
  padding-top: 16px;
  border-top: 1px dashed var(--rule-light);
  margin-top: auto;
}
.menu-card.feature .macro { color: var(--moss); border-top-color: var(--rule); }

/* PDF menu gallery */
.menu-pdfs {
  max-width: var(--max);
  margin: 120px auto 0;
}
.pdf-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.pdf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pdf-row figure {
  background: var(--forest);
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(16,24,20,0.2);
  transition: transform 0.5s var(--ease);
}
.pdf-row figure:hover { transform: translateY(-6px) rotate(-1deg); }
.pdf-row figure:nth-child(2):hover { transform: translateY(-6px) rotate(1deg); }
.pdf-row img {
  width: 100%;
  height: auto;
  display: block;
}
.pdf-row figcaption {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sand);
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ========================================
   AVTALE
   ======================================== */
.avtale {
  background: var(--forest);
  color: var(--bone);
  padding-block: 160px;
}
.avtale-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: start;
}

.avtale-text .section-num { margin-bottom: 32px; display: inline-block; }
.avtale-text .section-title { margin-bottom: 32px; }
.avtale-text .section-lead { max-width: 520px; }
.avtale-text strong { color: var(--terra); font-weight: 500; }

.avtale-points {
  margin: 48px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.avtale-points li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-light);
  align-items: start;
}
.avtale-points li:last-child { border-bottom: 1px solid var(--rule-light); }
.bullet {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--terra);
  line-height: 1;
}

.avtale-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.avtale-note {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 239, 226, 0.6);
  max-width: 420px;
}

.avtale-card {
  background: var(--paper);
  color: var(--ink);
  padding: 48px 40px;
  border: 1px solid var(--ink);
  position: relative;
  box-shadow: 16px 16px 0 var(--ink);
}
.ac-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}
.ac-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 16px 0 32px;
  font-style: italic;
}
.ac-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 32px;
}
.day {
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.day.on { background: var(--terra); color: var(--bone); border-color: var(--terra); }
.day.off { opacity: 0.3; }

.ac-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.ac-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14px;
}
.ac-list span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--moss);
}
.ac-list em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}
.ac-tag {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  text-align: center;
}

/* ========================================
   VI TILBYR
   ======================================== */
.tilbyr { background: var(--bone); }

.tilbyr-stack {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.tilbyr-item {
  display: grid;
  grid-template-columns: 100px 400px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
  position: relative;
  transition: background 0.5s var(--ease);
}
.tilbyr-item:hover { background: linear-gradient(90deg, var(--paper), transparent); }
.tilbyr-item:last-child { border-bottom: 1px solid var(--rule); }

.tilbyr-item.alt {
  grid-template-columns: 1fr 400px 100px;
}
.tilbyr-item.alt .t-num { order: 3; text-align: right; }
.tilbyr-item.alt .t-body { order: 1; text-align: right; }
.tilbyr-item.alt .t-media { order: 2; }
.tilbyr-item.alt .t-body .t-link { justify-content: flex-end; }
.tilbyr-item.alt .t-body .t-list,
.tilbyr-item.alt .t-body .t-pills,
.tilbyr-item.alt .t-body .t-steps {
  justify-content: flex-end;
}

.t-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 80px;
  line-height: 0.8;
  color: var(--terra);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.t-media {
  background: var(--forest);
  aspect-ratio: 1;
  padding: 40px;
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.t-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--rule-light);
  pointer-events: none;
}
.t-media svg { width: 80%; height: auto; color: var(--bone); position: relative; z-index: 2; }

.t-body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.t-tag {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--terra);
  margin-bottom: 24px;
}
.t-body p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--moss);
  margin-bottom: 14px;
}
.tilbyr-item.alt .t-body p { margin-left: auto; }
.t-body .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  padding: 20px 24px;
  border-left: 2px solid var(--terra);
  margin-top: 20px;
  background: var(--paper);
}
.tilbyr-item.alt .t-body .quote {
  border-left: none;
  border-right: 2px solid var(--terra);
  margin-left: auto;
}

.t-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  margin: 20px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
}
.t-list li { display: flex; align-items: center; gap: 10px; }
.t-list li::before { content: "◦"; color: var(--terra); }

.t-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--terra);
  margin: 20px 0 8px;
  letter-spacing: -0.005em;
}
.tilbyr-item.alt .t-sub { text-align: right; }

.t-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.t-pills li {
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--paper);
}

.t-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}
.t-steps li {
  padding-left: 48px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--moss);
  counter-increment: step;
}
.t-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--terra);
}
.t-steps strong { color: var(--ink); font-weight: 600; }

/* Mirror step layout for right-aligned alt items (e.g., Coaching 4.2) */
.tilbyr-item.alt .t-steps li {
  padding-left: 0;
  padding-right: 48px;
  text-align: right;
}
.tilbyr-item.alt .t-steps li::before {
  left: auto;
  right: 0;
}

.t-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s var(--ease);
}
.t-link:hover { color: var(--terra); border-color: var(--terra); gap: 12px; }

/* ========================================
   NYHETER
   ======================================== */
.nyheter {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.nyheter .section-num { color: var(--terra); border-top-color: var(--rule-light); }
.nyheter .section-title { color: var(--bone); }
.nyheter .section-lead { color: rgba(245, 239, 226, 0.7); }

.nyheter-grid {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  position: relative;
  z-index: 2;
}

.news-card {
  background: var(--ink);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.4s var(--ease);
  min-height: 280px;
}
.news-card:hover { background: var(--forest); }

.news-kat {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 4px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--bone);
}
.news-when {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--sand);
}
.news-when em {
  font-style: italic;
  font-family: var(--font-italic);
  color: var(--terra);
}
.news-card p:not(.news-when) {
  font-size: 15px;
  color: rgba(245, 239, 226, 0.72);
  line-height: 1.5;
}
.news-card .t-link {
  margin-top: auto;
  color: var(--bone);
  border-bottom-color: var(--bone);
}
.news-card .t-link:hover { color: var(--terra); border-bottom-color: var(--terra); }

.nyheter-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--rule-light);
  position: relative;
  z-index: 2;
}
.nyheter-cta p {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--bone);
  margin-bottom: 28px;
}
.nyheter-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   OM OSS
   ======================================== */
.om {
  background: var(--paper);
  background-image:
    radial-gradient(circle at 90% 20%, rgba(201, 110, 71, 0.06), transparent 40%);
}
.om-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 96px;
  align-items: start;
}

.om-side {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.om-side .section-num { display: block; margin-bottom: 20px; }
.om-stat {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.os-n {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--terra);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.os-l {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--moss);
  display: block;
}

.om-article .section-title { margin-bottom: 56px; }
.om-article p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 640px;
}
.om-article strong { font-weight: 600; color: var(--terra-dark); }
.om-article em { font-family: var(--font-italic); font-style: italic; color: var(--moss); }

.om-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  font-variation-settings: "opsz" 36, "SOFT" 80;
  padding: 0 2px;
  letter-spacing: -0.005em;
}

.dropcap .dc {
  float: left;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 120px;
  line-height: 0.85;
  color: var(--terra);
  margin: 6px 16px 0 0;
  font-style: italic;
}

.pullquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  max-width: 700px;
}

.signoff {
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 2.6vw, 36px) !important;
  color: var(--forest) !important;
  margin-top: 48px !important;
  font-weight: 400;
}

/* ========================================
   GALLERI
   ======================================== */
.galleri { background: var(--forest); color: var(--bone); }
.galleri .section-title { color: var(--bone); }
.galleri .section-num { color: var(--sand); border-top-color: var(--rule-light); }
.galleri .section-lead { color: rgba(245, 239, 226, 0.75); }

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.g {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}
.g:hover { transform: scale(1.02); z-index: 2; }
.g-1, .g-5 { grid-row: span 2; }
.g-1 { grid-column: span 2; }

.g figcaption {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--bone);
  text-shadow: 0 2px 8px rgba(16, 24, 20, 0.4);
}
.g figcaption span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  opacity: 0.8;
}

.g-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery ART — stylized placeholders resembling food */
.g-art.acai { background: linear-gradient(135deg, #6b2f5a, #3d1e3d); }
.g-art.acai .bowl {
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #a84b8a, #4c1d3c 70%);
  border-radius: 50%;
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.4);
}
.g-art.acai .topping { position: absolute; border-radius: 50%; }
.g-art.acai .t1 { width: 24px; height: 24px; background: #8a3b1e; top: 38%; left: 40%; box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.g-art.acai .t2 { width: 18px; height: 18px; background: #c96e47; top: 46%; left: 52%; }
.g-art.acai .t3 { width: 28px; height: 28px; background: #3d5d44; top: 42%; left: 58%; }
.g-art.acai .t4 { width: 20px; height: 20px; background: #e8d9b8; top: 50%; left: 46%; }

.g-art.mango { background: linear-gradient(135deg, #f5a623, #d97a2c); }
.g-art.mango .bowl {
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #ffc15e, #d97a2c 70%);
  border-radius: 50%;
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.2);
}
.g-art.mango .topping { position: absolute; border-radius: 50%; }
.g-art.mango .t1 { width: 22px; height: 22px; background: #fff3d0; top: 42%; left: 45%; }
.g-art.mango .t2 { width: 16px; height: 16px; background: #c96e47; top: 48%; left: 54%; }
.g-art.mango .t3 { width: 18px; height: 18px; background: #3d5d44; top: 44%; left: 38%; }

.g-art.smoothie { background: linear-gradient(135deg, #d17a52, #8a3b1e); }
.g-art.smoothie .cup {
  width: 40%; height: 70%;
  background: linear-gradient(to bottom, #f5efe2 0%, #f5efe2 15%, #c96e47 15%, #8a3b1e 100%);
  clip-path: polygon(10% 0, 90% 0, 80% 100%, 20% 100%);
  position: relative;
}
.g-art.smoothie .straw {
  position: absolute;
  top: 12%;
  left: calc(50% - 4px);
  width: 8px; height: 18%;
  background: #101814;
}

.g-art.heart { background: linear-gradient(135deg, #fce4d6, #f5a623); }
.g-art.heart .heart-shape {
  width: 50%; aspect-ratio: 1;
  background: #c96e47;
  clip-path: polygon(50% 90%, 20% 68%, 6% 50%, 2% 32%, 10% 15%, 26% 8%, 40% 14%, 50% 30%, 60% 14%, 74% 8%, 90% 15%, 98% 32%, 94% 50%, 80% 68%);
  filter: drop-shadow(0 8px 20px rgba(138, 59, 30, 0.3));
}

.g-art.milkshake { background: linear-gradient(135deg, #3d2a1e, #6b4226); }
.g-art.milkshake .cup {
  width: 40%; height: 70%;
  background: linear-gradient(to bottom, #f5efe2 0%, #e8d9b8 20%, #c8956d 100%);
  clip-path: polygon(5% 10%, 95% 10%, 85% 100%, 15% 100%);
  position: relative;
}
.g-art.milkshake .swirl {
  position: absolute;
  top: 18%;
  left: calc(50% - 40px);
  width: 80px; height: 30px;
  background: radial-gradient(ellipse, #f5efe2 40%, transparent 60%);
  border-radius: 50%;
}
.g-art.milkshake .cherry {
  position: absolute;
  top: 15%;
  left: calc(50% - 8px);
  width: 16px; height: 16px;
  background: #8a3b1e;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.g-art.tea { background: linear-gradient(135deg, #f3e5a6, #d4a04f); }
.g-art.tea .cup {
  width: 40%; height: 70%;
  background: linear-gradient(to bottom, rgba(245,239,226,0.9) 0%, rgba(245,239,226,0.9) 10%, #f5a623 10%, #d97a2c 100%);
  clip-path: polygon(10% 0, 90% 0, 85% 100%, 15% 100%);
  position: relative;
}
.g-art.tea .ice {
  position: absolute;
  top: 22%;
  left: calc(50% - 30px);
  width: 60px; height: 30px;
  background:
    linear-gradient(45deg, rgba(255,255,255,0.6) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.6) 75%, transparent 75%);
  background-size: 14px 14px;
  border-radius: 4px;
}

.g-art.fluffy { background: linear-gradient(135deg, #2d1f1a, #5c3a2a); }
.g-art.fluffy .bowl {
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #4a2f22, #1c100b 70%);
  border-radius: 50%;
}
.g-art.fluffy .fluff {
  position: absolute;
  top: 30%;
  left: 25%;
  width: 50%; height: 30%;
  background:
    radial-gradient(circle at 20% 50%, #f5efe2 20%, transparent 22%),
    radial-gradient(circle at 50% 40%, #f5efe2 24%, transparent 26%),
    radial-gradient(circle at 80% 55%, #f5efe2 18%, transparent 20%);
}

.g-art.havre { background: linear-gradient(135deg, #d4a878, #a6794a); }
.g-art.havre .bowl {
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #e8d9b8, #a6794a 70%);
  border-radius: 50%;
}
.g-art.havre .fluff {
  position: absolute;
  top: 35%;
  left: 28%;
  width: 44%; height: 20%;
  background: radial-gradient(ellipse, #f5efe2 30%, transparent 60%);
  border-radius: 50%;
}
.g-art.havre .topping { position: absolute; border-radius: 50%; }
.g-art.havre .t1 { width: 18px; height: 18px; background: #8a3b1e; top: 44%; left: 42%; }
.g-art.havre .t2 { width: 14px; height: 14px; background: #3d5d44; top: 48%; left: 54%; }

/* ========================================
   KONTAKT
   ======================================== */
.kontakt {
  background: var(--ink);
  color: var(--bone);
  padding: 140px var(--gutter) 40px;
  min-height: 100%;
}
.kontakt-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.kontakt-tag, .site-footer { position: relative; z-index: 1; }

.kontakt-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 96px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.k-col { display: flex; flex-direction: column; gap: 12px; }
.k-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 12px;
}
.k-big {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.k-big a { transition: color 0.3s var(--ease); border-bottom: 1px solid transparent; }
.k-big a:hover { color: var(--terra); border-bottom-color: var(--terra); }
.k-meta {
  font-size: 14px;
  color: rgba(245, 239, 226, 0.65);
  line-height: 1.4;
}
.k-soc-tag {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.4);
  font-weight: 500;
  margin-left: 6px;
}

.kontakt-tag {
  padding: 96px 0 40px;
  text-align: center;
  position: relative;
}
.big-mark {
  width: min(1200px, 92vw);
  height: calc(min(1200px, 92vw) * 260 / 1400);
  margin: 0 auto;
  display: block;
  color: var(--terra);
  opacity: 0.85;
}
.kontakt-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  color: var(--bone);
  margin-top: 8px;
  line-height: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
  font-size: 13px;
  color: rgba(245, 239, 226, 0.6);
}
.sf-left { display: flex; align-items: center; gap: 12px; }
.sf-mark { width: 32px; height: 32px; color: var(--terra); }
.sf-right a { transition: color 0.3s var(--ease); }
.sf-right a:hover { color: var(--terra); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; }
  .section-lead { grid-column: 1; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .avtale-grid { grid-template-columns: 1fr; gap: 60px; }
  .om-grid { grid-template-columns: 1fr; gap: 60px; }
  .om-side { position: static; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .om-stat { flex: 1; min-width: 160px; }
  .kontakt-top { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .g-1, .g-5 { grid-column: span 1; grid-row: span 1; }
  .nyheter-grid { grid-template-columns: repeat(2, 1fr); }

  .tilbyr-item,
  .tilbyr-item.alt {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tilbyr-item.alt .t-body { text-align: left; }
  .tilbyr-item.alt .t-num { text-align: left; order: 1; }
  .tilbyr-item.alt .t-media { order: 2; }
  .tilbyr-item.alt .t-body { order: 3; }
  .tilbyr-item.alt .t-body p { margin-left: 0; }
  .tilbyr-item.alt .t-body .quote { margin-left: 0; border-left: 2px solid var(--terra); border-right: none; }
  .t-media { max-width: 320px; }

  .pdf-row { grid-template-columns: 1fr; }
}

/* ── Tablet + mobile: collapse nav to hamburger at ≤900px ── */
@media (max-width: 900px) {
  .header-inner { padding: 14px var(--gutter); gap: 16px; }
  .nav-list {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 64px);
    height: calc(100svh - 64px);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 64px;
    overflow-y: auto;
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
    z-index: 40;
  }
  .nav.open .nav-list {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.4s var(--ease), visibility 0s linear 0s;
  }
  .nav-list > li { border-bottom: 1px solid var(--rule); }
  .nav-list a {
    padding: 18px var(--gutter);
    font-size: 17px;
    min-height: 48px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
  }
  .nav-list a::after { display: none; }
  .has-drop > .drop-trigger { justify-content: space-between; width: 100%; }
  .has-drop > .drop-trigger .chev { font-size: 14px; color: var(--terra); margin-left: 12px; }
  .drop-panel {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    background: var(--sand);
    display: none;
  }
  .has-drop.open .drop-panel { display: block; }
  .drop-panel-inner { padding: 6px 0; }
  .drop-panel a {
    padding: 14px var(--gutter);
    min-height: 48px;
    font-size: 15px;
  }
  .nav-toggle { display: flex; padding: 12px; margin: -12px; }
  .nav-toggle span { width: 24px; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 720px) {
  :root { --gutter: clamp(22px, 5.6vw, 32px); }

  /* ── Global section rhythm */
  .section { padding: 72px var(--gutter); }
  .section-header { margin-bottom: 48px; }

  /* ── Hero — editorial mobile cover (no generic pill, asymmetric CTAs) */
  .hero-b { min-height: 88svh; padding: 40px var(--gutter) 56px; text-align: left; }
  .hero-b-inner { text-align: left; }
  .hb-top { margin-bottom: 40px; position: relative; padding-top: 20px; }
  .hb-top::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 56px; height: 1px;
    background: var(--terra);
  }
  .hb-eyebrow {
    font-size: 10px;
    letter-spacing: 0.34em;
    padding: 0;
    border: none;
    border-radius: 0;
    color: var(--sand);
    background: none;
    display: block;
    white-space: normal;
    text-transform: uppercase;
    line-height: 1.5;
  }
  .hb-title { margin-bottom: 36px; letter-spacing: -0.035em; text-align: left; }
  .hb-line { font-size: clamp(62px, 19.5vw, 88px); display: block; }
  .hb-line-a { margin-bottom: -0.04em; padding-left: 0.04em; }
  .hb-line-b { text-indent: -0.02em; }
  .hb-lead {
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 32px;
    text-align: left;
    max-width: 42ch;
    color: rgba(245, 239, 226, 0.86);
  }
  .hb-lead-sm {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    margin-top: 16px;
    line-height: 1.7;
    color: var(--terra);
    display: block;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 110, 71, 0.28);
    max-width: 30ch;
  }
  .hb-ctas { gap: 14px 20px; justify-content: flex-start; align-items: center; }
  .hb-ctas .btn.primary { padding: 15px 28px; }
  .hb-ctas .btn.ghost:first-of-type {
    /* "Bedriftsavtale" stays ghost pill */
    padding: 14px 22px;
  }
  /* Third CTA (phone) becomes an underlined text link, not a pill */
  .hb-ctas .btn.ghost:last-child {
    border: none;
    border-radius: 0;
    padding: 8px 0;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    color: var(--bone);
    border-bottom: 1px solid rgba(245, 239, 226, 0.6);
    min-height: 40px;
    flex-basis: 100%;
    margin-top: 4px;
    align-self: flex-start;
    display: inline-flex;
    width: auto;
  }
  .hb-ctas .btn.ghost:last-child:hover {
    background: transparent;
    color: var(--terra);
    border-bottom-color: var(--terra);
  }
  .btn { padding: 14px 22px; font-size: 12px; letter-spacing: 0.12em; min-height: 46px; }

  /* ── Belt intro */
  .belt { padding: 64px var(--gutter); }
  .belt-eyebrow { margin-bottom: 24px; font-size: 10.5px; letter-spacing: 0.32em; }
  .belt-body { font-size: clamp(19px, 5.3vw, 23px); line-height: 1.4; margin-bottom: 20px; }
  .belt-tag { font-size: clamp(24px, 7vw, 32px); margin-top: 32px; }

  /* ── Section heading — editorial mobile rhythm */
  .section-title { font-size: clamp(46px, 13.5vw, 66px); line-height: 0.9; letter-spacing: -0.038em; }
  .section-lead { font-size: 16px; margin-top: 18px; line-height: 1.55; max-width: 42ch; }
  .section-num {
    font-size: 10.5px;
    letter-spacing: 0.34em;
    padding-top: 14px;
    display: inline-block;
    position: relative;
  }
  .section-num::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--terra);
    border-radius: 0;
  }
  .section-num {
    border-top: none;
  }
  .section-header { gap: 18px; }

  /* ── Menu */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { padding: 32px 24px; gap: 18px; }
  .menu-card h3 { font-size: 34px; }
  .menu-items li { font-size: 15px; gap: 6px; }
  .menu-items .price { font-size: 17px; }
  .menu-items .allergen { font-size: 11px; }
  .menu-icon { width: 36px; height: 36px; }
  .macro { font-size: 13px; padding-top: 14px; }

  .menu-pdfs { margin-top: 64px; }
  .pdf-row { gap: 20px; }
  .pdf-row figure { padding: 16px; box-shadow: 0 18px 36px -14px rgba(16,24,20,0.2); }
  .pdf-row figure:hover,
  .pdf-row figure:nth-child(2):hover { transform: none; }
  .pdf-row figcaption { font-size: 13px; margin-top: 12px; }
  .pdf-eyebrow { margin-bottom: 22px; padding-bottom: 12px; }

  /* ── Avtale */
  .avtale { padding-block: 88px; }
  .avtale-grid { gap: 48px; }
  .avtale-text .section-title { margin-bottom: 24px; }
  .avtale-points { margin: 32px 0; gap: 14px; }
  .avtale-points li { grid-template-columns: 44px 1fr; gap: 14px; padding: 14px 0; }
  .bullet { font-size: 26px; }
  .avtale-ctas { gap: 10px; }
  .avtale-note { font-size: 13px; }
  .avtale-card {
    padding: 32px 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .ac-title { font-size: 40px; margin: 12px 0 24px; }
  .ac-days { gap: 3px; margin-bottom: 24px; }
  .day { font-size: 10px; letter-spacing: 0.08em; }
  .ac-list { margin-bottom: 22px; }
  .ac-list li { padding: 8px 0; font-size: 13px; }
  .ac-list em { font-size: 15px; }
  .ac-tag { font-size: 18px; padding-top: 18px; }

  /* ── Vi tilbyr */
  .tilbyr-item,
  .tilbyr-item.alt {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 0 48px;
  }
  .tilbyr-item.alt .t-body,
  .tilbyr-item.alt .t-body p,
  .tilbyr-item.alt .t-body .t-list,
  .tilbyr-item.alt .t-body .t-pills,
  .tilbyr-item.alt .t-body .t-steps,
  .tilbyr-item.alt .t-body .t-sub {
    text-align: left;
    justify-content: flex-start;
    margin-left: 0;
  }
  .tilbyr-item.alt .t-body .quote {
    margin-left: 0;
    border-right: none;
    border-left: 2px solid var(--terra);
  }
  .tilbyr-item.alt .t-body .t-link { justify-content: flex-start; }
  .tilbyr-item.alt .t-steps li {
    padding-left: 48px;
    padding-right: 0;
    text-align: left;
  }
  .tilbyr-item.alt .t-steps li::before { left: 0; right: auto; }

  .t-num {
    font-size: 56px;
    line-height: 0.85;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--rule);
  }
  .t-media { max-width: 100%; padding: 24px; }
  .t-media::before { inset: 8px; }
  .t-body h3 { font-size: clamp(34px, 9.5vw, 46px); line-height: 0.98; }
  .t-tag { font-size: 16px; margin-bottom: 18px; }
  .t-body p { font-size: 16px; margin-bottom: 12px; }
  .t-body .quote { font-size: 18px; padding: 16px 18px; margin-top: 16px; }
  .t-list { font-size: 17px; gap: 4px 16px; margin: 16px 0; }
  .t-sub { font-size: 18px; margin: 16px 0 6px; }
  .t-pills { gap: 6px; margin: 16px 0; }
  .t-pills li { padding: 7px 14px; font-size: 12px; }
  .t-steps { gap: 12px; margin: 16px 0; }
  .t-steps li { padding-left: 42px; font-size: 15px; }
  .t-steps li::before { font-size: 20px; }
  .t-link {
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 8px 0;
    min-height: 44px;
    box-sizing: content-box;
    align-items: flex-end;
    display: inline-flex;
  }

  /* ── Nyheter */
  .nyheter { padding: 80px var(--gutter); }
  .nyheter-grid { grid-template-columns: 1fr; margin-bottom: 48px; }
  .news-card { padding: 28px 24px; min-height: 0; gap: 12px; }
  .news-card h3 { font-size: 30px; }
  .news-when { font-size: 15px; }
  .news-card p:not(.news-when) { font-size: 14px; }
  .nyheter-cta { padding-top: 36px; }
  .nyheter-cta p { font-size: clamp(20px, 5.4vw, 24px); margin-bottom: 20px; }

  /* ── Om oss */
  .om { background-size: 100% 60%; }
  .om-grid { gap: 36px; }
  .om-side { flex-direction: column; gap: 22px; }
  .om-stat { flex: 0 0 auto; padding-top: 14px; }
  .os-n { font-size: 44px; }
  .os-l { font-size: 12px; }
  .om-article .section-title { margin-bottom: 32px; }
  .om-article p { font-size: 17px; margin-bottom: 18px; line-height: 1.55; }
  .dropcap .dc { font-size: 78px; margin: 4px 12px 0 0; line-height: 0.9; }
  .pullquote { font-size: clamp(26px, 7.2vw, 34px); margin: 32px 0; padding: 22px 0; line-height: 1.08; }
  .signoff { font-size: 22px !important; margin-top: 32px !important; }

  /* ── Galleri */
  .galleri { padding: 72px var(--gutter); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }
  .g-1 { grid-column: span 2; grid-row: span 1; }
  .g-5 { grid-column: span 1; grid-row: span 1; }
  .g figcaption { inset: auto 14px 12px 14px; font-size: 14px; gap: 8px; }
  .g figcaption span { font-size: 9.5px; letter-spacing: 0.22em; }

  /* ── Kontakt */
  .kontakt { padding: 80px var(--gutter) 32px; }
  .kontakt-top { gap: 24px; margin-bottom: 48px; }
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
  }
  .k-col { gap: 8px; }
  .k-label { margin-bottom: 6px; font-size: 10.5px; letter-spacing: 0.32em; }
  .k-big { font-size: 22px; line-height: 1.25; }
  .k-big a { display: inline-block; padding: 4px 0; min-height: 36px; }
  .k-meta { font-size: 13px; }
  .k-soc-tag { display: block; margin-left: 0; margin-top: 2px; font-size: 10.5px; letter-spacing: 0.12em; }

  .kontakt-tag { padding: 56px 0 32px; overflow: hidden; text-align: left; }
  .big-mark {
    /* Scale the outlined "Fuel your day." so it reads as signature headline on mobile.
       We let it extend past the inner gutter for editorial bleed and brighten it. */
    width: calc(100% + (var(--gutter) * 2));
    margin-left: calc(var(--gutter) * -1);
    height: auto;
    aspect-ratio: 1400 / 260;
    display: block;
    opacity: 1;
    color: var(--terra);
  }
  .kontakt-slogan {
    font-size: clamp(40px, 13.5vw, 60px);
    margin-top: 6px;
    line-height: 0.95;
    letter-spacing: -0.025em;
    text-align: left;
    padding-left: 4px;
  }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
    font-size: 12px;
  }
  .sf-left { justify-content: center; gap: 10px; }
  .sf-right a { padding: 8px 12px; display: inline-block; min-height: 36px; }

  /* Brand word */
  .brand-mark { width: 38px; height: 38px; }
  .brand { gap: 10px; }
  .brand-word-main { font-size: 13.5px; letter-spacing: 0.26em; }
  .brand-word-sub { font-size: 8.5px; letter-spacing: 0.3em; }
}

/* ─── Very narrow phones (iPhone SE, small Android) ─── */
@media (max-width: 400px) {
  .hb-line { font-size: clamp(52px, 17.5vw, 76px); }
  .hb-eyebrow { font-size: 9px; letter-spacing: 0.26em; padding: 8px 12px; }
  .hb-ctas .btn { padding: 13px 18px; font-size: 11.5px; letter-spacing: 0.1em; }
  .section-title { font-size: clamp(42px, 12.5vw, 58px); }
  .menu-card h3 { font-size: 30px; }
  .t-body h3 { font-size: clamp(30px, 9vw, 40px); }
  .ac-title { font-size: 34px; }
  .bullet { font-size: 22px; }
  .brand-word-sub { display: none; }
  .brand-word-main { font-size: 13px; letter-spacing: 0.24em; }
  .dropcap .dc { font-size: 68px; margin: 4px 10px 0 0; }
  .k-big { font-size: 20px; }
  .kontakt-slogan { font-size: clamp(28px, 9vw, 38px); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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