/* ===========================================
   HECHT:RIGAS — style.css
   Palette: Serie I · Amber · Klassisk Autoritet
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;700&display=swap');


/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; font-weight: 400; color: var(--body-text); background: var(--linen); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* === TOKENS === */
:root {
  --accent:      #C47030;
  --accent-rgb:  196, 112, 48; /* same as --accent — bruges i rgba() */
  --dark:        #1A2B3C;
  --dark-rgb:    26, 43, 60;
  --forest:      #162723;
  --forest-rgb:  22, 39, 35;
  --void:        #09090A;
  --grey:        #3A3835;
  --grey-light:  #D8D4CC;
  --cream:       #EAE6DE;
  --linen:       #F4F1EB;
  --off-white:   #F5F3EE;
  --body-text:   #111110;
  --muted:       #666660;
  --footer-bg:   #09090A;
  --wrap:        1200px;
  --pad:         clamp(24px, 5vw, 80px);
}

/* === TYPOGRAPHY === */
h1 { font-weight: 300; line-height: 1.0; letter-spacing: -0.03em; }
h2 { font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-weight: 400; line-height: 1.2; }
p  { font-weight: 300; line-height: 1.7; }

/* === UTILITIES === */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.accent { color: var(--accent); }

.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: .38em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); opacity: .6; }

/* Centered divider-label — flanking lines on both sides */
.section-label--rule {
  justify-content: center;
}
.section-label--rule::before,
.section-label--rule::after {
  content: ''; flex: 1; height: 1px;
  background: currentColor; opacity: .18; width: auto;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === BUTTONS === */
.btn-primary {
  display: inline-block; padding: 14px 32px;
  background: var(--accent); color: var(--cream);
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .5s ease, letter-spacing .5s ease, background .5s ease;
}
.btn-primary:hover {
  background: #b3652b;
  letter-spacing: .19em;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block; padding: 13px 32px;
  background: transparent; color: var(--accent);
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(var(--accent-rgb),.5); cursor: pointer;
  transition: border-color .5s ease, background .5s ease, transform .5s ease, letter-spacing .5s ease;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb),.05);
  letter-spacing: .19em;
  transform: translateY(-2px);
}

.btn-ghost-dark {
  display: inline-block; padding: 13px 32px;
  background: transparent; color: var(--accent);
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(var(--accent-rgb),.4); cursor: pointer;
  transition: border-color .5s ease, background .5s ease, transform .5s ease, letter-spacing .5s ease;
}
.btn-ghost-dark:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb),.05);
  letter-spacing: .19em;
  transform: translateY(-2px);
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  padding: 0 var(--pad);
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(9,9,10,.92);
  border-bottom: 1px solid rgba(var(--accent-rgb),.15);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: var(--wrap); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(234,230,222,.75); transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }

/* === MEGAMENU === */
.nav-has-dropdown { position: static; }
.nav-has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 5px; height: 5px; margin-left: 6px; margin-bottom: 1px;
  border-right: 1px solid rgba(234,230,222,.5); border-bottom: 1px solid rgba(234,230,222,.5);
  transform: rotate(45deg); vertical-align: middle;
  transition: transform 320ms ease;
}
/* Chevron og megamenu åbnes via JS .megamenu-open klasse */
.nav-has-dropdown.megamenu-open > a::after { transform: rotate(-135deg); }

.nav-megamenu {
  position: fixed; top: 72px; left: 0; right: 0;
  background:
    radial-gradient(ellipse 55% 80% at 68% 50%, rgba(196,112,48,.03) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10,15,13,.98) 0%, rgba(6,10,8,.99) 100%);
  border-top: 1px solid rgba(196,112,48,.3);
  border-bottom: 1px solid rgba(234,230,222,.06);
  backdrop-filter: blur(24px);
  padding: 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(12px);
  transition: opacity 360ms cubic-bezier(0.22,1,0.36,1),
              transform 360ms cubic-bezier(0.22,1,0.36,1),
              visibility 360ms ease;
  z-index: 99;
}
.nav-has-dropdown.megamenu-open .nav-megamenu,
.nav-has-dropdown:focus-within .nav-megamenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}

.megamenu-inner {
  max-width: 1100px; margin: 0 auto; padding: 80px 80px;
  display: grid; grid-template-columns: 290px 1px 1fr;
  gap: 0 64px; align-items: center;
}
.megamenu-left {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  max-width: 270px; padding: 0 0 0 20px;
  border-left: 1px solid rgba(196,112,48,.18);
  box-shadow: -8px 0 24px -12px rgba(196,112,48,.22);
}
.megamenu-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .42em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.megamenu-intro {
  font-size: 17px; font-weight: 300; line-height: 1.3;
  color: rgba(234,230,222,.96); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .02em;
}
.megamenu-sub {
  font-size: 11px; font-weight: 300; line-height: 1.55;
  color: rgba(234,230,222,.32); margin-bottom: 36px;
  text-transform: uppercase; letter-spacing: .08em;
}
.megamenu-all {
  font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(234,230,222,.38); text-decoration: none;
  transition: color 300ms ease, letter-spacing 360ms cubic-bezier(0.22,1,0.36,1);
}
.megamenu-all:hover { color: var(--accent); letter-spacing: .38em; }

/* Divider: dark green fade */
.megamenu-divider {
  width: 1px; align-self: stretch;
  background: linear-gradient(180deg, transparent 0%, rgba(100,160,120,.18) 30%, rgba(100,160,120,.18) 70%, transparent 100%);
}

/* Fix #4 — Grid lines: dark green tone */
.megamenu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(80,130,100,.18);
}

/* Fix #5 — Hover timing: 120ms delay + cubic-bezier */
.megamenu-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 32px 28px 32px 16px;
  border-bottom: 1px solid rgba(80,130,100,.15);
  border-left: 2px solid transparent;
  text-decoration: none; position: relative;
  transition: transform 380ms cubic-bezier(0.22,1,0.36,1),
              border-color 300ms cubic-bezier(0.22,1,0.36,1),
              background 300ms cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0ms;
}
.megamenu-item:nth-child(odd) { border-right: 1px solid rgba(80,130,100,.15); }

/* Fix #3 — Hover: orange title + green glow + scale */
.megamenu-item:hover {
  transform: translateX(4px) scale(1.005);
  border-left-color: var(--accent);
  background: radial-gradient(ellipse 100% 100% at 20% 50%, rgba(22,39,35,.7) 0%, rgba(22,39,35,.25) 100%);
  transition-delay: 80ms;
}

/* Fix #2 — Primary items (rows 1): higher contrast */
.megamenu-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); opacity: .75;
  transition: opacity 300ms ease;
}
.megamenu-item:hover .megamenu-tag { opacity: 1; }

/* Row 1 (primary items): full brightness */
.megamenu-item:nth-child(-n+2) .megamenu-title { color: rgba(234,230,222,.96); }
.megamenu-item:nth-child(-n+2) .megamenu-desc  { color: rgba(234,230,222,.38); }

/* Title — heavier, larger, high contrast */
.megamenu-title {
  font-size: 17px; font-weight: 300; line-height: 1.2;
  color: rgba(234,230,222,.82);
  letter-spacing: -.01em;
  transition: color 280ms cubic-bezier(0.22,1,0.36,1);
}
.megamenu-item:hover .megamenu-title { color: var(--accent); }

/* Desc — brutally faded, clearly secondary */
.megamenu-desc {
  font-size: 11px; font-weight: 300; line-height: 1.55;
  color: rgba(234,230,222,.32);
  transition: color 280ms cubic-bezier(0.22,1,0.36,1);
}
/* Fix #3 — Hover desc → lighter */
.megamenu-item:hover .megamenu-desc { color: rgba(234,230,222,.68); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-lang {
  font-size: 10px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(234,230,222,.5);
}
.nav-lang a { transition: color .2s; }
.nav-lang a:hover { color: var(--cream); }
.nav-lang span { margin: 0 4px; }
.nav-cta {
  padding: 9px 22px;
  background: var(--accent); color: var(--cream);
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap; transition: opacity .2s;
}
.nav-cta:hover { opacity: .88; }

/* Mobile menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--void); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px; font-weight: 300; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream); transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .colon { color: var(--accent); }
.mobile-sub-links {
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  margin-top: -24px;
  border-top: 1px solid rgba(234,230,222,.08);
  padding-top: 20px;
}
.mobile-sub-links a {
  font-size: 13px !important; font-weight: 300; letter-spacing: .14em;
  color: rgba(234,230,222,.55) !important;
}

/* === HERO === */
.hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--void);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(9,9,10,.82);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(9,9,10,.7) 100%);
}
/* SVG grain */
.hero-grain {
  position: absolute; inset: 0; opacity: .045; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
/* Letterbox bars */
.hero-bar-top, .hero-bar-bottom {
  position: absolute; left: 0; right: 0; height: 4vh;
  background: var(--void); z-index: 3;
}
.hero-bar-top { top: 0; }
.hero-bar-bottom { bottom: 0; }


/* Hero content */
.hero-content {
  position: relative; z-index: 5;
  padding: 0 var(--pad) clamp(120px, 16vh, 180px);
  max-width: var(--wrap); margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 9px; font-weight: 400; letter-spacing: .38em;
  color: var(--accent); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--accent); opacity: .55; }
.hero-h1 {
  font-size: clamp(80px, 15vw, 210px); font-weight: 300;
  color: var(--cream); line-height: 1.0; letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-rule { display: none; }
.hero-manchet {
  font-size: clamp(14px, 1.5vw, 18px); font-weight: 300;
  color: rgba(234,230,222,.72); letter-spacing: .02em;
  max-width: 480px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: clamp(30px, 5vh, 56px); right: var(--pad);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-line {
  width: 1px; height: 48px; background: var(--accent); opacity: .5;
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-label {
  font-size: 8px; font-weight: 400; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(234,230,222,.4); writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .2; transform: scaleY(.6); transform-origin: top; }
  50%       { opacity: .6; transform: scaleY(1);  transform-origin: top; }
}

/* === INTRO BRIDGE === */
.intro-bridge {
  background: var(--off-white);
  padding: clamp(120px, 14vh, 160px) 0;
  border-top: 1px solid rgba(0,0,0,.05);
}
.intro-bridge-inner {
  display: flex; align-items: center; gap: clamp(48px, 8vw, 120px);
}
.intro-bridge-left { flex: 0 0 auto; max-width: 440px; }
.intro-bridge-inner h2 {
  font-size: clamp(26px, 3vw, 40px); font-weight: 300;
  color: var(--body-text); line-height: 1.2;
  letter-spacing: -0.02em; margin-top: 16px;
}
.intro-bridge-text {
  flex: 1; display: flex; flex-direction: column; gap: 16px;
  border-left: 2px solid var(--accent); padding-left: 32px;
}
.intro-bridge-text p {
  font-size: clamp(14px, 1.1vw, 15px); font-weight: 300;
  color: var(--body-text); line-height: 1.75;
}
@media (max-width: 760px) {
  .intro-bridge-inner { flex-direction: column; gap: 36px; }
  .intro-bridge-left { max-width: none; }
}

/* === SITUATIONER === */
.situationer {
  background: var(--cream);
  padding: clamp(120px, 14vh, 160px) 0;
  border-top: 1px solid rgba(0,0,0,.05);
}
.situationer-header {
  text-align: center;
  margin-bottom: 40px;
}
.situationer-header .section-label { justify-content: center; }
.situationer-header h2 {
  font-size: clamp(28px, 3.2vw, 44px); font-weight: 300;
  color: var(--body-text); line-height: 1.15;
  letter-spacing: -0.02em; margin-top: 16px;
}
.situationer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,.09);
}
.situation-block {
  padding: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(0,0,0,.09);
  display: flex;
  gap: 28px;
  position: relative;
  transition: background .3s ease;
}
.situation-block:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.09); }
.situation-block:hover { background: rgba(196,112,48,.03); }
.situation-number {
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  color: var(--accent); opacity: .7;
  min-width: 28px; padding-top: 3px;
  flex-shrink: 0;
}
.situation-content h3 {
  font-size: clamp(14px, 1.1vw, 16px); font-weight: 600;
  color: var(--body-text); letter-spacing: .01em;
  margin-bottom: 12px;
}
.situation-content p {
  font-size: clamp(13px, 1vw, 15px); font-weight: 300;
  color: var(--muted); line-height: 1.75;
}
@media (max-width: 680px) {
  .situationer-grid { grid-template-columns: 1fr; }
  .situation-block:nth-child(odd) { border-right: none; }
}

/* === YDELSER === */
.ydelser { padding: clamp(120px, 14vh, 180px) 0; background: var(--linen); border-top: 1px solid rgba(0,0,0,.05); }
.ydelser-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 5vh, 64px);
  padding-bottom: 28px; border-bottom: 1px solid rgba(0,0,0,.08);
  flex-wrap: wrap; gap: 20px;
}
.ydelser-header h2 { font-size: clamp(28px, 3.5vw, 48px); color: var(--body-text); }
.ydelser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.service-card {
  padding: clamp(28px, 2.8vw, 40px);
  border: 1px solid var(--grey-light);
  border-top: 2px solid var(--accent);
  position: relative; overflow: hidden;
  transition: background .6s ease, transform .6s ease, box-shadow .6s ease;
  will-change: transform;
}
.service-card:hover {
  background: rgba(var(--accent-rgb),.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  z-index: 2;
}
/* Growing amber bottom line */
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; height: 1px;
  width: 0; background: var(--accent); opacity: .45;
  transition: width .65s ease;
}
.service-card:hover::after { width: 100%; }
.service-num {
  font-size: clamp(48px, 7vw, 90px); font-weight: 300;
  color: var(--body-text); opacity: .07;
  position: absolute; top: 12px; right: 16px;
  line-height: 1; letter-spacing: -0.04em; pointer-events: none; user-select: none;
}
.card-colon-label {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: .2em; color: var(--accent);
  margin-bottom: 10px; position: relative; z-index: 1;
}
.service-card h3 {
  font-size: clamp(14px, 1.4vw, 18px); font-weight: 600;
  letter-spacing: .04em; color: var(--body-text);
  margin-bottom: 14px; position: relative; z-index: 1;
}
.service-card p {
  font-size: clamp(13px, 1.1vw, 15px); color: var(--muted);
  line-height: 1.65; margin-bottom: 24px; position: relative; z-index: 1;
}
.service-link {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); transition: letter-spacing .2s;
}
.service-card:hover .service-link { letter-spacing: .24em; }

/* === CITAT === */
.citat {
  padding: clamp(120px, 14vh, 180px) 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.citat-grain {
  position: absolute; inset: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.citat-inner { position: relative; z-index: 1; text-align: center; max-width: 840px; margin: 0 auto; }
.citat-mark {
  font-size: clamp(60px, 8vw, 100px); font-weight: 700;
  color: var(--accent); opacity: .35; line-height: .8;
  display: block; margin-bottom: 16px;
}
.citat blockquote {
  font-size: clamp(18px, 2.4vw, 30px); font-weight: 300;
  color: var(--cream); line-height: 1.5; letter-spacing: .01em;
  font-style: normal; margin-bottom: 32px;
}
.citat-attr {
  font-size: 11px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent);
}

/* === OM OS === */
.om-os { padding: clamp(120px, 14vh, 180px) 0; background: var(--off-white); border-top: 1px solid rgba(0,0,0,.05); }
.om-os-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px); align-items: center;
}
.om-os-text .section-label { color: var(--accent); }
.om-os-text h2 { font-size: clamp(26px, 3vw, 42px); color: var(--body-text); margin-bottom: 24px; }
.om-os-text p { font-size: clamp(14px, 1.2vw, 16px); color: var(--muted); margin-bottom: 16px; max-width: 520px; }
.om-os-credentials {
  font-size: 10px !important; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent) !important; opacity: .75;
  margin-top: 8px !important; margin-bottom: 0 !important;
}
.om-os-text a { margin-top: 16px; display: inline-block; }
.om-os-photo { position: relative; border-bottom: 1px solid var(--accent); }
.om-os-photo img { width: 100%; height: clamp(400px, 55vw, 620px); object-fit: cover; object-position: top; display: block; }
.om-os-photo::before {
  content: ''; position: absolute; top: -12px; left: -12px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--accent); border-left: 2px solid var(--accent);
  z-index: 2;
}
.om-os-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--off-white) 0%, transparent 32%),
    linear-gradient(to right, rgba(9,9,10,.10) 0%, transparent 20%);
  pointer-events: none; z-index: 1;
}

/* === TESTIMONIALS === */
.testimonials { padding: clamp(120px, 14vh, 180px) 0; background: var(--linen); border-top: 1px solid rgba(0,0,0,.05); }
.testimonials-header { margin-bottom: clamp(40px, 5vh, 64px); }
.testimonials-header h2 { font-size: clamp(26px, 3vw, 40px); color: var(--body-text); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.testimonials-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; }
.testimonial-card {
  padding: clamp(28px, 2.8vw, 40px);
  border: 1px solid var(--grey-light);
  border-top: 2px solid var(--accent);
  position: relative; overflow: hidden;
  transition: transform .6s ease, box-shadow .6s ease;
  will-change: transform;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  z-index: 2;
}
.testimonial-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; height: 1px;
  width: 0; background: var(--accent); opacity: .35;
  transition: width .65s ease;
}
.testimonial-card:hover::after { width: 100%; }
.t-corner {
  position: absolute; top: clamp(16px, 2vw, 24px); right: clamp(16px, 2vw, 24px);
}
.testimonial-card blockquote {
  font-size: clamp(13px, 1.1vw, 15px); font-weight: 300;
  color: var(--body-text); line-height: 1.7; font-style: italic;
  margin-bottom: 28px;
}
.t-name {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--body-text); margin-bottom: 4px;
}
.t-meta {
  font-size: 10px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
}

/* Carousel — grid overlay: begge sider i flow samtidig, ingen højde-hop */
.testimonials-carousel { display: grid; }
.testimonials-page {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .7s ease, visibility .7s ease;
}
.testimonials-page.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Dots */
.testimonials-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 40px;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 0;
  background: rgba(0,0,0,.15);
  border: none; cursor: pointer; padding: 0;
  transition: background .4s ease, transform .4s ease;
}
.t-dot.active {
  background: var(--accent);
  transform: scaleX(2.5);
  transform-origin: center;
}

/* === ADVOKATSAMFUNDET === */
.advokat-section { padding: clamp(120px, 14vh, 180px) 0; background: var(--off-white); }
.advokat-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 640px; margin: 0 auto; gap: 0;
}
.advokat-inner .section-label { justify-content: center; margin-bottom: 20px; }
.advokat-inner h2 { font-size: clamp(24px, 2.8vw, 38px); color: var(--body-text); margin-bottom: 24px; }
.advokat-inner p { font-size: clamp(13px, 1.1vw, 15px); color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.advokat-inner .btn-primary { margin-top: 32px; }
.advokat-badge { margin-bottom: 48px; }
.advokat-badge img { width: 148px; opacity: 1; margin: 0 auto; }
.advokat-badge img:hover { opacity: 1; }

/* === INSIGHTS === */
.insights { padding: clamp(120px, 14vh, 180px) 0; background: linear-gradient(180deg, #1f3a32 0%, #162a24 100%); }
.insights-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 5vh, 64px);
  padding-bottom: 28px; border-bottom: 1px solid rgba(234,230,222,.12);
  flex-wrap: wrap; gap: 20px;
}
.insights-header h2 { font-size: clamp(26px, 3vw, 40px); color: var(--cream); margin-bottom: 8px; }
.insights-header p { font-size: clamp(13px, 1.1vw, 15px); color: rgba(234,230,222,.55); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 48px; }
.insight-card {
  padding: clamp(24px, 2.5vw, 36px);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--accent);
  position: relative; overflow: hidden;
  transition: background .6s ease, transform .6s ease, box-shadow .6s ease;
  will-change: transform;
}
.insight-card:hover {
  background: rgba(234,230,222,.05);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
  z-index: 2;
}
.insight-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; height: 1px;
  width: 0; background: var(--accent); opacity: .45;
  transition: width .65s ease;
}
.insight-card:hover::after { width: 100%; }
.insight-meta {
  font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.insight-card h3 {
  font-size: clamp(14px, 1.3vw, 17px); font-weight: 600;
  color: var(--cream); margin-bottom: 12px; line-height: 1.3;
}
.insight-card p { font-size: 13px; color: rgba(234,230,222,.55); margin-bottom: 24px; line-height: 1.65; }
.insight-link { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); transition: letter-spacing .2s; }
.insight-card:hover .insight-link { letter-spacing: .24em; }
.insight-link--muted { color: rgba(234,230,222,.30); cursor: default; }
.insight-card-h2 { font-size: clamp(14px, 1.3vw, 17px); font-weight: 600; color: var(--cream); margin-bottom: 12px; line-height: 1.3; }
.insights-cta { text-align: center; }

/* :InSights listing page */
.insights-page-intro { padding: clamp(40px, 5vh, 64px) 0 0; background: var(--linen); }
.insights-page-intro-inner {
  max-width: 680px;
  border-left: 2px solid var(--accent); padding-left: 24px;
}
.insights-page-intro-inner p { font-size: clamp(14px, 1.2vw, 16px); color: var(--muted); line-height: 1.75; }
.insights-page-grid { padding: clamp(48px, 6vh, 80px) 0; background: var(--linen); }
.insights-grid--full { margin-bottom: 0; }

/* :InSights — kompakt page-header */
.page-header--compact {
  padding-top: clamp(60px, 8vh, 96px);
  padding-bottom: clamp(40px, 5vh, 64px);
}
/* Insights hero: grøn atmosfærebund — bro til lyst content */
.page-header.page-header--insights {
  background: linear-gradient(
    180deg,
    var(--void) 0%,
    var(--void) 55%,
    rgba(22,39,35,.72) 82%,
    rgba(22,39,35,.38) 100%
  );
}

/* :InSights — lyst editorial artikelgrid */
.insights-editorial {
  padding: clamp(64px, 8vh, 100px) 0;
  background: linear-gradient(160deg, var(--linen) 0%, var(--off-white) 100%);
}
.insights-editorial-headline {
  font-size: clamp(11px, 1vw, 13px); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: clamp(32px, 4vh, 48px);
}
.insights-editorial-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.1);
}
.insight-card-light {
  background: var(--linen);
  padding: clamp(20px, 2vw, 28px);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  border-left: 3px solid transparent;
  transition: background .25s, transform .25s ease, box-shadow .3s, border-color .2s;
  cursor: pointer;
}
.insight-card-light:hover {
  background: #ede9e0;
  transform: translateY(-3px);
  border-left-color: var(--accent);
  /* orange border + grøn dybde-skygge — kombinerer begge brand-farver */
  box-shadow: -5px 0 20px rgba(22,39,35,.16), 0 8px 28px rgba(0,0,0,.09);
  z-index: 1;
}
/* Featured — spænder begge rækker */
.insight-card-light--featured {
  grid-column: 1;
  grid-row: 1 / 3;
  justify-content: flex-end;
  padding: clamp(36px, 4vw, 56px);
  /* grøn undertone — bro til forsidens univers */
  background: linear-gradient(145deg, rgba(22,39,35,.07) 0%, var(--cream) 55%);
  border-left: none;
  border-top: none;
  position: relative;
  gap: 18px;
}
/* gradient top-line — signatur */
.insight-card-light--featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--accent) 0%, rgba(196,112,48,.15) 100%);
}
.insight-card-light--featured:hover {
  background: linear-gradient(145deg, rgba(22,39,35,.13) 0%, var(--cream) 65%);
  border-left: none;
  box-shadow: 0 12px 40px rgba(22,39,35,.18), 0 4px 16px rgba(0,0,0,.08);
}
/* fix 5: titel større + mere luftig line-height */
.insight-card-light--featured .insight-card-light-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.38;
}
/* fix 4: label mere kontrastfuld, kortere tracking */
.insight-card-light-featured-label {
  font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(196,112,48,.75); margin-bottom: 2px;
}
.insight-card-light-cat {
  font-size: 9px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent);
}
/* fix 3: sekundære kort — hover er nu tydeligt */
.insight-card-light-title {
  font-size: clamp(13px, 1.2vw, 16px); font-weight: 400;
  color: var(--body-text); line-height: 1.45;
}
.insight-card-light-desc {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
  max-width: 48ch;
}
.insights-page-cta {
  padding: clamp(120px, 14vh, 180px) 0;
  background: var(--void);
  border-top: 1px solid rgba(var(--accent-rgb),.2);
}
.insights-page-cta-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.insights-page-cta-inner h2 {
  font-size: clamp(22px, 2.5vw, 34px); font-weight: 300; letter-spacing: .04em;
  color: var(--cream); margin-bottom: 12px;
}
.insights-page-cta-inner p {
  font-size: clamp(13px, 1.1vw, 15px); color: rgba(234,230,222,.55); line-height: 1.7; max-width: 480px;
}
.insights-page-cta-inner p a { color: var(--accent); }
.insights-page-cta-inner p a:hover { text-decoration: underline; }
.insights-signup-form { flex-shrink: 0; }
.insights-signup-row {
  display: flex; align-items: stretch; gap: 0;
}
.insights-signup-row input[type="email"] {
  width: 260px; padding: 12px 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(234,230,222,.2);
  border-right: none;
  color: var(--cream); font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: .04em;
  outline: none; transition: border-color .2s;
}
.insights-signup-row input[type="email"]::placeholder { color: rgba(234,230,222,.3); }
.insights-signup-row input[type="email"]:focus { border-color: rgba(var(--accent-rgb),.6); }
.insights-signup-row button {
  padding: 12px 22px;
  background: var(--accent); border: none; cursor: pointer;
  color: var(--cream); font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  transition: opacity .2s; white-space: nowrap;
}
.insights-signup-row button:hover { opacity: .88; }
.insights-signup-legal {
  margin-top: 10px; font-size: 10px; letter-spacing: .04em;
  color: rgba(234,230,222,.3) !important; max-width: none !important;
}
.insights-signup-legal a { color: rgba(234,230,222,.45) !important; }
.insights-signup-legal a:hover { color: var(--accent) !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === KONTAKT STRIP === */
.kontakt-strip { padding: 0; background: var(--accent); }
.kontakt-inner {
  display: grid; grid-template-columns: 0.55fr 1fr;
  gap: 0; align-items: stretch;
}
.kontakt-left {
  padding: clamp(100px, 13vh, 160px) clamp(40px, 5vw, 80px) clamp(100px, 13vh, 160px) 0;
  display: flex; flex-direction: column; justify-content: center;
}
.kontakt-left h2 {
  font-size: clamp(24px, 3vw, 40px); font-weight: 300;
  color: var(--void); margin-bottom: 48px; line-height: 1.2;
}
.kontakt-info { display: flex; flex-direction: column; gap: 16px; }
.kontakt-info-item {
  display: flex; align-items: baseline; gap: 16px;
  font-size: 13px; font-weight: 300; color: rgba(9,9,10,.8);
}
.kontakt-info-item strong { font-weight: 600; color: var(--void); min-width: 84px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; flex-shrink: 0; }
.kontakt-info-item a { color: rgba(9,9,10,.8); text-decoration: none; transition: color .3s; }
.kontakt-info-item a:hover { color: var(--void); }

/* Kontakt form — lifted card */
.kontakt-right {
  background: #EFECE7;
  padding: clamp(100px, 13vh, 160px) clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
}
.kontakt-form { display: flex; flex-direction: column; gap: 32px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 9px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(9,9,10,.45);
}
.form-group input,
.form-group textarea {
  background: #fff; border: 1px solid rgba(9,9,10,.12);
  padding: 12px 16px; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300; color: var(--void);
  outline: none; transition: border-color .3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(9,9,10,.3); }
.form-group--consent { gap: 0; }
.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 11px; letter-spacing: .04em; color: rgba(9,9,10,.65);
  line-height: 1.6; cursor: pointer;
}
.form-group--consent .consent-label input[type="checkbox"] {
  appearance: none !important; -webkit-appearance: none !important;
  display: inline-block;
  width: 14px !important; height: 14px !important;
  min-width: 14px; max-width: 14px; min-height: 14px; max-height: 14px;
  padding: 0 !important; margin: 0; margin-top: 3px;
  flex-shrink: 0; box-sizing: border-box !important;
  border: 1.5px solid rgba(9,9,10,.35); border-radius: 0; background: transparent;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.form-group--consent .consent-label input[type="checkbox"]:checked {
  background: var(--void); border-color: var(--void);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23F5F0E8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.form-group--consent .consent-label input[type="checkbox"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.consent-label a { color: inherit; text-decoration: underline; }
.consent-label a:hover { color: var(--accent); }
.btn-send {
  padding: 14px 32px; background: var(--void); color: var(--cream);
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; border: none; cursor: pointer;
  align-self: flex-start;
  transition: transform .5s ease, letter-spacing .5s ease, background .5s ease;
}
.btn-send:hover {
  background: #111110;
  letter-spacing: .23em;
  transform: translateY(-2px);
}

/* === FOOTER === */
.footer { padding: clamp(64px, 8vh, 100px) 0 0; background: var(--footer-bg); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px); padding-bottom: clamp(48px, 6vh, 72px);
  border-bottom: 1px solid rgba(var(--accent-rgb),.15);
}
.footer-logo {
  font-size: 16px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 6px; display: block;
}
.footer-type {
  font-size: 9px; font-weight: 300; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(234,230,222,.35); margin-bottom: 20px;
}
.footer-logo .colon { color: var(--accent); }
.footer-tagline {
  font-size: 11px; font-weight: 300; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(234,230,222,.35); margin-bottom: 24px;
}
.footer-tagline .colon { color: var(--accent); }
.footer-addr {
  font-size: 12px; font-weight: 300; color: rgba(234,230,222,.5);
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 9px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-nav a {
  font-size: 12px; font-weight: 300; color: rgba(234,230,222,.55);
  transition: color .2s; letter-spacing: .04em;
}
.footer-nav a:hover { color: var(--cream); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  font-size: 12px; font-weight: 300; color: rgba(234,230,222,.55);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--cream); }
.footer-badge { margin-top: 24px; }
.footer-badge img { width: 56px; opacity: .35; filter: grayscale(100%) invert(1); }
.footer-social { margin-top: 20px; display: flex; gap: 10px; }
.footer-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(234,230,222,.15);
  color: rgba(234,230,222,.45);
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.footer-social-link svg { width: 14px; height: 14px; flex-shrink: 0; fill: currentColor; }
.footer-social-link:hover { border-color: var(--accent); color: var(--cream); }

.footer-legal {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-legal p {
  font-size: 10px; font-weight: 300; letter-spacing: .06em;
  color: rgba(234,230,222,.25); line-height: 1.6;
}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a {
  font-size: 10px; font-weight: 300; letter-spacing: .08em;
  color: rgba(234,230,222,.3); transition: color .2s;
}
.footer-legal-links a:hover { color: rgba(234,230,222,.6); }
.footer-legal-links a[aria-current="page"] { color: var(--accent); }

/* === INNER PAGES — PAGE HEADER === */
.page-header {
  padding: clamp(120px, 16vh, 180px) 0 clamp(60px, 8vh, 96px);
  background: var(--void);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent 60%);
}
.page-header-inner { max-width: 720px; }
.page-header .section-label {
  margin-bottom: 20px;
  color: var(--accent);
  justify-content: flex-start;
}
.page-header h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-header h1 .accent { color: var(--accent); }
.page-header-tagline {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: rgba(234,230,222,.65);
  letter-spacing: -.01em;
  line-height: 1.55;
  margin-bottom: 20px;
}
.page-header-meta {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(234,230,222,.3);
}

/* === OM OS PAGE === */
.ompage-bio { padding: clamp(120px, 14vh, 180px) 0; background: var(--off-white); }
.ompage-bio-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 96px); align-items: center;
}
.ompage-photo {
  position: relative; border-bottom: 1px solid var(--accent);
}
.ompage-photo img {
  width: 100%; height: clamp(420px, 55vw, 600px);
  object-fit: cover; object-position: top center; display: block;
}
.ompage-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(245,240,232,.7) 100%),
              linear-gradient(to right, rgba(245,240,232,.06) 0%, transparent 30%);
  z-index: 1; pointer-events: none;
}
.ompage-photo::after {
  content: ''; position: absolute; top: -12px; left: -12px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--accent); border-left: 2px solid var(--accent);
  z-index: 2;
}
.ompage-text { padding-top: 8px; }
.ompage-text p {
  font-size: clamp(14px, 1.2vw, 16px); color: var(--muted);
  line-height: 1.85; margin-bottom: 20px;
}
.ompage-credentials-inline {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(9,9,10,.1);
}
.ompage-credentials-inline span {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}

/* Rådgivningsområder */
.ompage-areas {
  padding: clamp(60px, 8vh, 80px) 0; background: var(--linen);
  border-top: 1px solid rgba(196,112,48,.15);
}
.ompage-areas-inner { max-width: 760px; }
.ompage-areas-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 64px;
}
.ompage-areas-list li {
  font-size: 13px; letter-spacing: .06em; color: var(--body-text);
  padding-left: 16px; position: relative;
}
.ompage-areas-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 6px; height: 1px; background: var(--accent);
}

/* Undervisning */
.ompage-teaching { padding: clamp(120px, 14vh, 180px) 0; background: var(--void); }
.ompage-teaching-headline {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; color: var(--cream);
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px;
}
.ompage-teaching-intro {
  font-size: clamp(14px, 1.2vw, 15px); color: rgba(234,230,222,.55);
  line-height: 1.8; max-width: 600px; margin-bottom: 56px;
}
.ompage-teaching-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ompage-teaching-card {
  background: rgba(234,230,222,.05); padding: 36px 28px;
  border-top: 1px solid rgba(196,112,48,.4);
}
.ompage-teaching-card-label {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 4px;
}
.ompage-teaching-card-sub {
  font-size: 10px; letter-spacing: .1em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 20px;
}
.ompage-teaching-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ompage-teaching-card ul li {
  font-size: 13px; font-weight: 300; color: rgba(234,230,222,.6); letter-spacing: .04em;
}

/* Credentials */
.ompage-creds {
  padding: clamp(48px, 6vh, 72px) 0; background: var(--off-white);
  border-top: 1px solid rgba(9,9,10,.08);
}
.ompage-creds-inner { display: flex; align-items: center; }
.ompage-creds-items { display: flex; gap: 56px; flex-wrap: wrap; }
.ompage-creds-item { display: flex; flex-direction: column; gap: 5px; }
.ompage-creds-label {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
}
.ompage-creds-value { font-size: 13px; color: var(--body-text); letter-spacing: .04em; }

/* CTA */
.ompage-cta {
  padding: clamp(120px, 14vh, 180px) 0;
  background: var(--linen); text-align: center;
  border-top: 1px solid rgba(9,9,10,.08);
}
.ompage-cta-text {
  font-size: clamp(20px, 2.8vw, 36px); font-weight: 300; color: var(--body-text);
  letter-spacing: -.02em; margin-bottom: 36px;
}
.ompage-cta-btn {
  display: inline-block; padding: 14px 44px; background: var(--accent); color: var(--cream);
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  transition: opacity .2s;
}
.ompage-cta-btn:hover { opacity: .82; }

/* === YDELSESSIDE — SIGNALS (Hvornår kontakter man os) === */
.ydelse-signals { padding: clamp(80px, 10vh, 120px) 0; background: var(--void); }
.ydelse-signals-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.ydelse-signals-headline { font-size: clamp(24px, 3vw, 38px); font-weight: 300; color: var(--cream); letter-spacing: -.02em; line-height: 1.2; }
.ydelse-signals-list { list-style: none; border-top: 1px solid rgba(234,230,222,.1); }
.ydelse-signal-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(234,230,222,.07); align-items: baseline; }
.ydelse-signal-dash { color: var(--accent); font-size: 14px; font-weight: 400; flex-shrink: 0; line-height: 1; }
.ydelse-signal-item p { font-size: 14px; font-weight: 300; color: rgba(234,230,222,.68); line-height: 1.65; }

/* === YDELSESSIDE — INSIGHTS TEASER === */
.ydelse-insights-teaser { padding: clamp(80px, 10vh, 120px) 0; background: var(--linen); }
.ydelse-insights-headline { font-size: clamp(30px, 3.8vw, 48px); font-weight: 300; color: var(--body-text); letter-spacing: -.03em; margin-bottom: 40px; }
.ydelse-insights-links { display: flex; flex-direction: column; border-top: 1px solid rgba(9,9,10,.09); }
.ydelse-insights-link {
  display: flex; align-items: center; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid rgba(9,9,10,.08); text-decoration: none;
  transition: padding-left 320ms ease;
}
.ydelse-insights-link:hover { padding-left: 8px; }
.ydelse-insights-tag { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); flex-shrink: 0; min-width: 76px; }
.ydelse-insights-title { font-size: 15px; font-weight: 300; color: var(--body-text); flex: 1; line-height: 1.4; transition: color 280ms ease; }
.ydelse-insights-link:hover .ydelse-insights-title { color: var(--accent); }
.ydelse-insights-arrow { font-size: 16px; color: rgba(9,9,10,.25); transition: transform 280ms ease, color 280ms ease; flex-shrink: 0; }
.ydelse-insights-link:hover .ydelse-insights-arrow { transform: translateX(5px); color: var(--accent); }

/* === YDELSESSIDE — TYPISKE PROBLEMSTILLINGER === */
.ydelse-problems { padding: clamp(100px, 12vh, 150px) 0; background: var(--off-white); }
.ydelse-problems-headline {
  font-size: clamp(30px, 3.8vw, 48px); font-weight: 300; color: var(--body-text);
  letter-spacing: -.03em; margin-bottom: 14px;
}
.ydelse-problems-intro {
  font-size: 14px; font-weight: 300; color: rgba(17,17,16,.52);
  line-height: 1.75; margin-bottom: 56px;
}
.ydelse-problems-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(9,9,10,.07);
}
.ydelse-problem-item {
  display: flex; gap: 20px; padding: 22px 48px 22px 0;
  border-bottom: 1px solid rgba(9,9,10,.05); align-items: baseline;
}
.ydelse-problem-item:nth-child(even) { padding-right: 0; }
.ydelse-problem-dash { color: var(--accent); font-size: 13px; flex-shrink: 0; line-height: 1.65; }
.ydelse-problem-text { font-size: 14px; font-weight: 300; color: rgba(17,17,16,.70); line-height: 1.65; }

/* === YDELSESSIDE — METHOD (Intelligence layer) === */
.ydelse-method { padding: clamp(100px, 12vh, 150px) 0; background: var(--forest); }
.ydelse-method-inner {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(48px, 8vw, 112px); align-items: start;
}
.ydelse-method-headline {
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 300; color: var(--cream);
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 24px;
}
.ydelse-method-intro {
  font-size: 14px; font-weight: 300; color: rgba(234,230,222,.55);
  line-height: 1.85; max-width: 260px;
}
.ydelse-method-pillars { border-top: 1px solid rgba(234,230,222,.08); }
.ydelse-method-pillar {
  display: flex; gap: 32px; padding: 30px 0;
  border-bottom: 1px solid rgba(234,230,222,.06); align-items: baseline;
}
.ydelse-method-num {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  color: var(--accent); flex-shrink: 0; min-width: 24px;
}
.ydelse-method-content { display: flex; flex-direction: column; gap: 10px; }
.ydelse-method-label {
  font-size: 17px; font-weight: 300; color: rgba(234,230,222,.90);
  letter-spacing: -.01em; line-height: 1;
}
.ydelse-method-desc {
  font-size: 13px; font-weight: 300; color: rgba(234,230,222,.50); line-height: 1.75;
}

/* === YDELSESSIDE === */
.ydelse-intro { padding: clamp(120px, 14vh, 180px) 0; background: var(--off-white); }
.ydelse-intro-inner { max-width: 820px; }
.ydelse-lead {
  font-size: clamp(17px, 2vw, 22px); font-weight: 300; color: var(--body-text);
  letter-spacing: -.01em; line-height: 1.7; margin-bottom: 20px;
}
.ydelse-lead-secondary {
  font-size: clamp(14px, 1.5vw, 16px); font-weight: 300; color: rgba(17,17,16,.65);
  letter-spacing: 0; line-height: 1.8; margin-bottom: 16px;
}
.ydelse-lead-secondary:last-child { margin-bottom: 0; }
.ydelse-services { padding: clamp(120px, 14vh, 180px) 0; background: var(--linen); }
.ydelse-services-headline {
  font-size: clamp(30px, 3.8vw, 48px); font-weight: 300; color: var(--body-text);
  letter-spacing: -.03em; margin-bottom: 16px;
}
.ydelse-services-intro {
  font-size: 14px; font-weight: 300; color: rgba(17,17,16,.55);
  line-height: 1.75; max-width: 560px; margin-bottom: 48px;
}
.ydelse-services-intro strong { font-weight: 300; color: var(--body-text); }
.ydelse-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(9,9,10,.08); }
.ydelse-service-item {
  padding: 36px 32px 36px 0;
  border-right: 1px solid rgba(9,9,10,.08);
  border-bottom: 1px solid rgba(9,9,10,.08);
  position: relative;
  transition: background .3s;
}
.ydelse-service-item:nth-child(3n) { border-right: none; padding-right: 0; }
.ydelse-service-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.ydelse-service-item:hover::before { transform: scaleX(1); }
.ydelse-service-num {
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.ydelse-service-title {
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--body-text); margin-bottom: 12px;
}
.ydelse-service-desc {
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8;
}
.ydelse-process { padding: clamp(120px, 14vh, 180px) 0; background: var(--void); }
.ydelse-process-headline {
  font-size: clamp(22px, 2.5vw, 34px); font-weight: 300; color: var(--cream);
  letter-spacing: -.02em; margin-bottom: 12px;
}
.ydelse-process-intro {
  font-size: 13px; color: rgba(234,230,222,.45); letter-spacing: .04em;
  line-height: 1.7; margin-bottom: 64px; max-width: 560px;
}
.ydelse-process-steps { display: flex; align-items: flex-start; }
.ydelse-process-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; padding: 0 8px;
}
.ydelse-process-step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 19px; left: calc(50% + 22px); right: calc(-50% + 22px);
  height: 1px; background: rgba(196,112,48,.3);
}
.ydelse-process-dot {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(196,112,48,.5); background: rgba(196,112,48,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: var(--accent);
  position: relative; z-index: 1; flex-shrink: 0;
}
.ydelse-process-label {
  font-size: 11px; font-weight: 300; color: rgba(234,230,222,.55);
  letter-spacing: .04em; line-height: 1.5; margin-top: 14px;
}
.ydelse-why { padding: clamp(80px, 10vh, 120px) 0; background: var(--cream); }
.ydelse-why-headline {
  font-size: clamp(30px, 3.8vw, 48px); font-weight: 300; color: var(--body-text);
  letter-spacing: -.03em; margin-bottom: 48px;
}
.ydelse-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(9,9,10,.1); }
.ydelse-why-grid > div { padding: 36px 40px 36px 0; border-right: 1px solid rgba(9,9,10,.1); }
.ydelse-why-grid > div:last-child { border-right: none; }
.ydelse-why-label {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.ydelse-why-text { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; }
.ydelse-related { padding: clamp(40px, 5vh, 56px) 0; background: var(--linen); border-top: 1px solid rgba(9,9,10,.08); }
.ydelse-related-label {
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.ydelse-related-links { display: flex; gap: 8px; flex-wrap: wrap; }
.ydelse-related-link {
  display: inline-block; padding: 10px 20px; border: 1px solid rgba(9,9,10,.2);
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--body-text); text-decoration: none; transition: border-color .15s, color .15s;
}
.ydelse-related-link:hover { border-color: var(--accent); color: var(--accent); }
.ydelse-cta { padding: clamp(80px, 10vh, 120px) 0; background: var(--accent); }
.ydelse-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.ydelse-cta-heading {
  font-size: clamp(22px, 2.8vw, 38px); font-weight: 300; color: var(--void);
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 24px;
}
.ydelse-cta-contacts { display: flex; flex-direction: column; gap: 6px; }
.ydelse-cta-contacts a {
  font-size: 13px; font-weight: 300; color: rgba(9,9,10,.75);
  text-decoration: none; transition: color .2s;
}
.ydelse-cta-contacts a:hover { color: var(--void); }
.ydelse-cta-btn {
  display: inline-block; padding: 16px 44px; background: var(--void); color: var(--cream);
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  flex-shrink: 0; transition: background .3s;
}
.ydelse-cta-btn:hover { background: rgba(9,9,10,.82); }

/* === INNER PAGES — POLICY === */
.policy-main {
  padding: clamp(60px, 8vh, 100px) 0 clamp(80px, 10vh, 120px);
  background: var(--off-white);
}
.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* TOC sidebar */
.policy-toc {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(196,112,48,.25) transparent;
}
.policy-toc-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.policy-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.policy-toc ol li { counter-increment: toc; }
.policy-toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.6;
  padding: 5px 0;
  border-left: 1px solid rgba(196,112,48,.15);
  padding-left: 14px;
  transition: color .2s, border-color .2s;
}
.policy-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 9px;
  letter-spacing: .06em;
  color: rgba(196,112,48,.4);
  flex-shrink: 0;
}
.policy-toc ol li a:hover {
  color: var(--body-text);
  border-left-color: var(--accent);
}
/* ul-links i TOC (persondatapolitik, privatlivspolitik, cookiepolitik) */
.policy-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.policy-toc ul li a {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.6;
  padding: 5px 0 5px 14px;
  border-left: 1px solid rgba(196,112,48,.15);
  transition: color .2s, border-color .2s;
}
.policy-toc ul li a:hover {
  color: var(--body-text);
  border-left-color: var(--accent);
}
/* Dokument-skille-labels i TOC */
.policy-toc-doc-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 22px 0 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(196,112,48,.18);
}
.policy-toc-doc-label:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Prose */
.policy-prose {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.policy-prose section {
  display: flex; flex-direction: column; gap: 16px;
  scroll-margin-top: 96px; /* kompenserer for fast nav (72px) + luft */
}
.policy-prose h2 {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  color: var(--body-text);
  letter-spacing: -.01em;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196,112,48,.2);
}
.policy-prose h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-top: 8px;
}
.policy-prose p {
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}
.policy-prose p a, .policy-prose .policy-entity a {
  color: var(--accent);
  border-bottom: 1px solid rgba(var(--accent-rgb), .25);
  transition: border-color .2s;
}
.policy-prose p a:hover, .policy-prose .policy-entity a:hover {
  border-bottom-color: var(--accent);
}
.policy-prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.policy-prose ul li {
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}
.policy-prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(var(--accent-rgb), .5);
  font-weight: 300;
}

/* Entity block */
.policy-entity {
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 300;
  color: var(--body-text);
  line-height: 2;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  background: rgba(196,112,48,.04);
}
.policy-entity strong { font-weight: 600; }
.policy-entity--muted { color: var(--muted); border-left-color: rgba(196,112,48,.3); background: transparent; }

/* Cookie table */
.policy-table-wrap { overflow-x: auto; }
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  font-weight: 300;
}
.policy-table th {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(196,112,48,.3);
  white-space: nowrap;
}
.policy-table td {
  padding: 12px 16px;
  color: var(--muted);
  border-bottom: 1px solid rgba(196,112,48,.1);
  line-height: 1.6;
  vertical-align: top;
}
.policy-table td:first-child { white-space: nowrap; }
.policy-table code {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  background: rgba(196,112,48,.08);
  color: var(--body-text);
  padding: 2px 6px;
  letter-spacing: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; border-bottom: 1px solid rgba(196,112,48,.15); padding-bottom: 32px; margin-bottom: 8px; }
  .policy-toc ol { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .policy-toc ol li a { border-left: none; border-bottom: 1px solid rgba(196,112,48,.15); padding-left: 0; padding-right: 16px; }
  .policy-toc ol li a:hover { border-bottom-color: var(--accent); }
}

/* === KLIENTINFORMATION — META GRID === */
.klinfo-meta {
  padding: clamp(48px, 6vh, 72px) 0;
  background: var(--linen);
  border-bottom: 1px solid rgba(var(--accent-rgb), .12);
}
.klinfo-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.klinfo-meta-card {
  padding: 28px 32px;
  background: var(--off-white);
  border-top: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.klinfo-meta-card h3 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.klinfo-meta-card p {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}
.klinfo-meta-card a {
  color: var(--body-text);
  transition: color .2s;
}
.klinfo-meta-card a:hover { color: var(--accent); }
.klinfo-data-table { border-collapse: collapse; width: 100%; margin-top: 4px; }
.klinfo-data-table td {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  padding: 4px 0;
  vertical-align: top;
  line-height: 1.6;
}
.klinfo-data-table td:first-child {
  font-weight: 400;
  color: var(--body-text);
  width: 68px;
  padding-right: 12px;
  white-space: nowrap;
}
.klinfo-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(var(--accent-rgb), .15);
}
.klinfo-updated {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(22,39,35,.6);
  text-transform: uppercase;
}

/* Nav active state */
.nav-links a[aria-current="page"] { color: var(--accent); }

@media (max-width: 900px) {
  .klinfo-meta-grid { grid-template-columns: 1fr 1fr; }
  .klinfo-meta-grid .klinfo-meta-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .klinfo-meta-grid { grid-template-columns: 1fr; }
  .klinfo-meta-grid .klinfo-meta-card:last-child { grid-column: auto; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .ydelser-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero-h1 { font-size: clamp(48px, 14vw, 80px); }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  /* === Section padding reduction on mobile === */
  .intro-bridge { padding: clamp(72px, 10vh, 100px) 0; }
  .situationer { padding: clamp(72px, 10vh, 100px) 0; }
  .ydelser { padding: clamp(72px, 10vh, 100px) 0; }
  .om-os { padding: clamp(72px, 10vh, 100px) 0; }
  .citat-strip { padding: clamp(64px, 9vh, 96px) 0; }
  .testimonials { padding: clamp(72px, 10vh, 100px) 0; }
  .advokat-section { padding: clamp(72px, 10vh, 100px) 0; }
  .insights { padding: clamp(72px, 10vh, 100px) 0; }

  /* === Om os === */
  .om-os-inner { grid-template-columns: 1fr; }
  .om-os-photo { order: -1; }
  .om-os-photo img { height: clamp(260px, 70vw, 380px); }

  /* === Underside — Om os === */
  .ompage-bio-inner { grid-template-columns: 1fr; }
  .ompage-photo { order: -1; }
  .ompage-photo img { height: clamp(260px, 70vw, 380px); }
  .ompage-teaching-grid { grid-template-columns: 1fr; gap: 1px; }
  .ompage-areas-list { grid-template-columns: 1fr; }
  .ompage-creds-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .ompage-creds-items { gap: 24px; }

  /* === Underside — Ydelsesside === */
  .ydelse-services-grid { grid-template-columns: 1fr; }
  .ydelse-signals-inner { grid-template-columns: 1fr; gap: 40px; }
  .ydelse-insights-link { gap: 12px; }
  .ydelse-insights-tag { min-width: 56px; }
  .ydelse-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .ydelse-problems-grid { grid-template-columns: 1fr; }
  .ydelse-problem-item { padding-right: 0; }
  .ydelse-method-inner { grid-template-columns: 1fr; }
  .ydelse-method-intro { max-width: none; }
  .ydelse-process-steps { flex-direction: column; gap: 0; }
  .ydelse-process-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; padding: 0 0 32px; }
  .ydelse-process-step:not(:last-child)::after { top: 40px; left: 19px; right: auto; width: 1px; height: calc(100% - 8px); }
  .ydelse-process-label { margin-top: 0; padding-top: 8px; }
  .ydelse-related-links { flex-direction: column; align-items: flex-start; }

  /* === Advokatsamfundet === */
  .advokat-badge { margin-bottom: 32px; }
  .advokat-badge img { width: 120px; }

  /* === Kontakt === */
  .kontakt-inner { grid-template-columns: 1fr; }
  .kontakt-left { padding: clamp(60px, 9vh, 100px) 0 40px; }
  .kontakt-right { padding: clamp(48px, 7vh, 80px) clamp(24px, 5vw, 48px); }

  /* === Grids === */
  .ydelser-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; gap: 1px; }

  /* === :InSights header — stack på mobil === */
  .insights-header { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 24px; }
  .insights-header > a { align-self: flex-start; }

  /* === Footer === */
  .footer-grid { grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px); }
  .footer-legal { flex-direction: column; align-items: flex-start; }

  /* === :InSights listing === */
  .insights-page-cta-inner { flex-direction: column; align-items: flex-start; }
  .insights-signup-form { width: 100%; }
  .insights-signup-row { width: 100%; }
  .insights-signup-row input[type="email"] { width: 0; flex: 1; min-width: 0; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(42px, 16vw, 64px); }
  /* Yderligere padding-reduktion på meget små skærme */
  .intro-bridge, .situationer, .ydelser, .om-os, .testimonials,
  .advokat-section, .insights { padding: clamp(56px, 9vh, 80px) 0; }
  .citat-strip { padding: clamp(48px, 8vh, 72px) 0; }
  /* Mobile menu */
  .mobile-menu { gap: 28px; }
}


