/* ==========================================================================
   /om/ - Om UdstillerGuide
   Narrative landing-page. Varm, ikke selvhøjtidelig. Bemandet skranke som
   visuelt anker. Sektioner skifter mellem standard, --subtle, --contrast
   (mørk modlag) og --proof (kunde-bevis) for at give rytme og pause-mønster.

   Bruger token-systemet i tokens.css - undgår hardkodede farver så dark
   mode virker via auto-flip i stedet for manuelle overrides.
   ========================================================================== */

.om-page {
  --om-skranke-color: var(--brand-primary);
}

/* ── Breadcrumb ───────────────────────────────────────────────────────── */

/* ── Hero - copy + skranke side om side på desktop ────────────────────── */
.om-hero {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-2xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184,90,58,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(127,168,182,0.06) 0%, transparent 60%);
}
.om-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.om-hero__copy {
  max-width: 600px;
}
.om-hero__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(184,90,58,0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-l);
}
.om-hero__title {
  font-family: var(--font);
  font-size: var(--fs-hero-title);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-l);
}
.om-hero__title-light {
  display: block;
  font-weight: var(--fw-light);
  color: var(--brand-primary);
}
.om-hero__title-bold {
  display: block;
  font-weight: var(--fw-bold);
  color: var(--accent);
}
.om-hero__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 0 var(--space-m);
}
.om-hero__pitch {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--text);
  max-width: 60ch;
  margin: 0 0 var(--space-xl);
  padding: var(--space-m) var(--space-l);
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.om-hero__pitch strong { color: var(--brand-primary); font-weight: var(--fw-bold); }
.om-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
}
.om-hero__actions .btn {
  min-height: 44px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.om-hero__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(49,79,89,0.18);
}

/* ── Hero status-card - "Skranken er åben"-widget ─────────────────────────
   Produkt-UI-stil (ikke metafor-tegning). Antyder skranken via en LED-status,
   viser hvem der svarer (Sandra + Johannes med presence-dot), og lader
   brugeren ringe direkte. Dark-mode aware via tokens. */
.om-hero__status-card {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-l);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 18px 40px -22px rgba(49,79,89,0.32),
    0 6px 14px -10px rgba(49,79,89,0.18);
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  position: relative;
  isolation: isolate;
}
.om-hero__status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse at 100% 0%, rgba(0,136,60,0.06) 0%, transparent 55%);
  z-index: -1;
}

/* Header - LED + "Skranken er åben" + åbningstider */
.om-hero__status-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--border);
}
.om-hero__status-led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-success);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--brand-success) 22%, transparent),
    0 0 8px color-mix(in srgb, var(--brand-success) 60%, transparent);
  animation: omStatusLed 1.6s ease-in-out infinite;
  flex: 0 0 auto;
}
@keyframes omStatusLed {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-success) 22%, transparent), 0 0 6px  color-mix(in srgb, var(--brand-success) 50%, transparent); }
  50%      { box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand-success) 10%, transparent), 0 0 12px color-mix(in srgb, var(--brand-success) 75%, transparent); }
}
.om-hero__status-text {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--text);
  letter-spacing: -0.005em;
}
.om-hero__status-hours {
  margin-left: auto;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Team - to personer med presence-indikator */
.om-hero__status-card-team {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.om-hero__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}
.om-hero__person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  font-family: var(--font);
  font-size: 18px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  color: white;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.18),
    0 6px 14px -8px rgba(49,79,89,0.45);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
/* Brand-differentieret bg så de to personer er visuelt distinkte */
.om-hero__person-avatar--sandra {
  background: linear-gradient(135deg, var(--brand-accent) 0%, color-mix(in srgb, var(--brand-accent) 70%, black) 100%);
}
.om-hero__person-avatar--johannes {
  background: linear-gradient(135deg, var(--brand-primary) 0%, color-mix(in srgb, var(--brand-primary) 65%, black) 100%);
}
.om-hero__person:hover .om-hero__person-avatar {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.24),
    0 10px 22px -8px rgba(49,79,89,0.55),
    0 0 0 4px color-mix(in srgb, var(--brand-accent) 18%, transparent);
}
.om-hero__person-initials {
  position: relative;
  z-index: 1;
}
/* Når en <img> tilføjes inde i .om-hero__person-avatar, dækker den initials */
.om-hero__person-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
/* Presence-dot (Slack-style) - fast grøn ring + blød pulse */
.om-hero__person-presence {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-success);
  border: 2px solid var(--surface);
  z-index: 3;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-success) 55%, transparent);
  animation: omPresencePulse 2.4s ease-out infinite;
}
@keyframes omPresencePulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-success) 55%, transparent); }
  60%  { box-shadow: 0 0 0 7px color-mix(in srgb, var(--brand-success) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-success) 0%, transparent); }
}
.om-hero__person-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.om-hero__person-name {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--text);
  letter-spacing: -0.005em;
}
.om-hero__person-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  line-height: 1.35;
}
.om-hero__person-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-success);
  flex: 0 0 auto;
}

/* Phone-row - stor klikbar tel:-link */
.om-hero__status-card-phone {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "label cta"
    "number cta";
  align-items: center;
  gap: 2px 14px;
  padding: var(--space-m) var(--space-m);
  background: linear-gradient(135deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 88%, var(--brand-accent)) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.om-hero__status-card-phone:hover,
.om-hero__status-card-phone:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-accent) 55%, transparent);
  box-shadow: 0 10px 22px -14px rgba(184,90,58,0.55);
  outline: none;
}
.om-hero__status-card-phone:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-accent) 35%, transparent);
}
.om-hero__status-phone-label {
  grid-area: label;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.om-hero__status-phone-number {
  grid-area: number;
  font-family: var(--font);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.om-hero__status-phone-cta {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  flex: 0 0 auto;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 18px -10px rgba(184,90,58,0.6);
}
.om-hero__status-phone-cta svg {
  width: 20px;
  height: 20px;
}
.om-hero__status-card-phone:hover .om-hero__status-phone-cta {
  transform: scale(1.05) rotate(-6deg);
  box-shadow: 0 10px 22px -10px rgba(184,90,58,0.75);
}

/* ── Sections - generelt. Trimmet padding ift. iter 2 så total side-højde
   holdes under ~3.5 viewports. Hver sektion er nu ~80-96px top/bund i
   stedet for de tidligere ~96-128px. ───────────────────────────────────── */
.om-section {
  padding: var(--space-xl) 0;
}
/* --subtle: tydeligt anderledes baggrund så sektionsskift læses */
.om-section--subtle {
  background: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 92%, var(--brand-primary)) 100%);
  background: var(--bg);
  position: relative;
}
.om-section--subtle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(49,79,89,0.07) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}
.om-section--subtle > * { position: relative; z-index: 1; }

.om-section--contrast {
  background: var(--brand-primary);
  color: white;
  position: relative;
  overflow: hidden;
}
.om-section--contrast::before {
  content: "";
  position: absolute;
  inset: -50% 0 -50% 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,90,58,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.om-section--contrast > * { position: relative; z-index: 1; }
.om-section--contrast .om-section__head { color: white; }
.om-section--contrast .om-section__lead { color: rgba(255,255,255,0.92); }

/* om-section--proof er fjernet i iter 3 - proof er nu indlejret i team-sektionen
   så vi får færre bg-skift og bedre visuel rytme (lys → subtle → contrast → subtle → CTA). */

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-l);
}

.om-section__head {
  font-family: var(--font);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-l);
  color: var(--text);
}
.om-section__head--center { text-align: center; }
.om-section__head em {
  font-style: italic;
  color: var(--accent);
}

.om-section__lead {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text);
  max-width: 60ch;
  margin: 0 0 var(--space-l);
}
.om-section__lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.om-section__body {
  font-size: var(--fs-lg);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 60ch;
}

/* ── Vores løfte til arrangøren - 3 nummererede løfter ────────────────── */
.om-promise {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.om-promise__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-m);
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.om-promise__item:hover {
  transform: translateX(4px);
  border-color: rgba(184,90,58,0.42);
  box-shadow: 0 6px 18px rgba(49,79,89,0.06);
}
.om-promise__num {
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.om-promise__title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin: 0 0 6px;
  color: var(--text);
  line-height: 1.35;
}
.om-promise__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.om-promise__body a {
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.om-promise__body a:hover { color: var(--accent); }

.om-link-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  padding: 10px 18px;
  background: rgba(184,90,58,0.12);
  color: var(--accent);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: gap .2s, background .2s, transform .2s;
}
.om-link-pill:hover {
  gap: 14px;
  background: rgba(184,90,58,0.20);
  transform: translateY(-1px);
}
.om-link-pill span { transition: transform .2s; }
.om-link-pill:hover span { transform: translateX(2px); }

/* ── "Hvad vi IKKE gør" - kontrast-sektion ───────────────────────────── */
.om-not-list {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0 0;
}
.om-not-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--space-m);
  padding: var(--space-l) 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  align-items: flex-start;
}
.om-not-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
.om-not-list__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(184,90,58,0.22);
  color: rgb(255, 196, 170);
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1;
}
.om-not-list strong {
  display: block;
  color: white;
  font-size: 17px;
  font-weight: var(--fw-bold);
  margin-bottom: 4px;
}
.om-not-list li > div {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Proof-blok - indlejret i team-sektionen, sidder under team-grid ──── */
.om-proof {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}
.om-proof__label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 var(--space-l);
}
.om-proof__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-s);
}
.om-proof__list li {
  font-family: var(--font);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: var(--fw-semibold);
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color .18s, color .18s, transform .18s;
}
.om-proof__list li:hover {
  border-color: rgba(184,90,58,0.5);
  color: var(--accent);
  transform: translateY(-1px);
}

.om-proof__quote {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.om-proof__quote blockquote {
  margin: 0 0 var(--space-m);
  padding: 0;
}
.om-proof__quote p {
  font-family: var(--font);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: var(--fw-medium);
  line-height: 1.45;
  color: var(--text);
  margin: 0;
  font-style: italic;
}
.om-proof__quote figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-s);
  font-size: 13px;
}
.om-proof__author {
  font-weight: var(--fw-bold);
  color: var(--text);
}
.om-proof__role {
  color: var(--text-muted);
}

/* ── Team ─────────────────────────────────────────────────────────────── */
.om-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  scroll-margin-top: 80px;
}
.om-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.om-team-card--lead {
  text-align: left;
}
.om-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(49,79,89,0.12);
  border-color: rgba(184,90,58,0.32);
}
.om-team-card__avatar {
  width: 88px;
  height: 88px;
  margin: 0 0 var(--space-m);
  background: var(--brand-primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: box-shadow .3s;
}
.om-team-card:hover .om-team-card__avatar {
  box-shadow: 0 0 0 4px rgba(184,90,58,0.20), 0 0 24px rgba(184,90,58,0.35);
}
.om-team-card__initials {
  font-family: var(--font);
  font-size: 32px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
}
.om-team-card__name {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin: 0 0 4px;
  color: var(--text);
}
.om-team-card__role {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-m);
}
.om-team-card__bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 var(--space-m);
}
.om-team-card__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.om-team-card__contact a {
  font-size: var(--fs-base);
  color: var(--brand-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  display: inline-block;
}
.om-team-card__contact a:hover {
  color: var(--accent);
  border-bottom-style: solid;
}

/* Network-card - sidebar-agtig variant */
.om-team-card--network {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  border-style: dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.om-team-card__net-label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--space-s);
}
.om-team-card__net-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 var(--space-m);
}
.om-team-card__net-cta a {
  font-size: var(--fs-base);
  color: var(--accent);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: padding-right .2s;
}
.om-team-card__net-cta a:hover { padding-right: 4px; }

/* ── Hvor finder du os ───────────────────────────────────────────────── */
.om-where {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: var(--space-l) var(--space-xl);
  margin-top: var(--space-l);
}
.om-where__label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 6px;
}
.om-where__value {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.om-where__value a {
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .15s;
}
.om-where__value a:hover { color: var(--accent); }

/* ── CTA - slut-zone, mørk gradient så det føles som afslutning ───── */
.om-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, color-mix(in srgb, var(--brand-primary) 70%, black) 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}
.om-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(214,228,240,0.20) 0%, transparent 60%);
  pointer-events: none;
}
/* om-cta__pulse erstattet af inline skranke-SVG i iter 3 - motivet genbruges
   så CTA'en føles som "skranken i miniature" og loopet til hero lukkes. */
.om-cta__skranke {
  width: clamp(140px, 18vw, 220px);
  margin: 0 auto var(--space-m);
  color: rgba(255,255,255,0.82);
}
.om-cta__skranke svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px var(--shadow-color));
}
.om-cta__skranke-pulse {
  transform-origin: center;
  animation: omPulse 2.4s ease-in-out infinite;
}
.om-cta__head {
  position: relative;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: var(--fw-bold);
  margin: var(--space-m) 0 var(--space-m);
  color: white;
  letter-spacing: -0.01em;
}
.om-cta__lede {
  position: relative;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
  line-height: 1.55;
}
.om-cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}
.om-cta__actions .btn { min-height: 44px; }
.om-cta__btn-light {
  border-color: rgba(255,255,255,0.45);
  color: white;
  background: transparent;
}
.om-cta__btn-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: white;
  color: white;
}

/* ── Scroll-reveal - content er altid synligt; transition kun ved is-revealed ─
   FIX (R5): tidligere skjulte vi sektioner med opacity:0 indtil IO triggede,
   men det forårsagede tomme hvide zoner hvis IO ikke nåede at fyre. Nu vises
   alt content fra første paint. */
html.js [data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
html.js .om-promise__item {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease-out, transform .5s ease-out;
}
html.js .om-section.is-revealed .om-promise__item { opacity: 1; transform: none; }
html.js .om-section.is-revealed .om-promise__item:nth-child(1) { transition-delay: .15s; }
html.js .om-section.is-revealed .om-promise__item:nth-child(2) { transition-delay: .30s; }
html.js .om-section.is-revealed .om-promise__item:nth-child(3) { transition-delay: .45s; }

/* ── Mobil tilpasninger ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .om-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  /* Status-card under copy på smalle skærme - copy/CTA forbliver above-the-fold */
  .om-hero__status-card { max-width: 460px; order: 2; }
}

@media (max-width: 768px) {
  .om-hero { padding: var(--space-2xl) 0 var(--space-l); }
  .om-hero__title { font-size: clamp(30px, 7vw, 44px); }
  .om-hero__status-card { max-width: 100%; padding: var(--space-m); }
  .om-hero__person-avatar { width: 48px; height: 48px; font-size: 16px; }
  .om-hero__status-phone-number { font-size: 22px; }
  .om-hero__actions { flex-direction: column; align-items: stretch; }
  .om-hero__actions .btn { width: 100%; justify-content: center; }
  .om-section { padding: var(--space-xl) 0; }
  .om-team { grid-template-columns: 1fr; gap: var(--space-l); }
  .om-team-card { padding: var(--space-l); }
  .om-not-list li { grid-template-columns: 32px 1fr; gap: var(--space-s); }
  .om-promise__item { grid-template-columns: 48px 1fr; padding: var(--space-m); }
  .om-promise__num { font-size: 28px; }
  .om-cta__actions { flex-direction: column; align-items: stretch; }
  .om-cta__actions .btn { width: 100%; justify-content: center; }
  .om-proof__list { gap: var(--space-s) var(--space-l); }
  .om-proof__list li::after { right: calc(-1 * var(--space-l) / 2 - 4px); }
  .om-proof__quote { padding: var(--space-l); }
}

@media (max-width: 540px) {
  /* Pak åbnings-tid om på linje 2 hvis pladsen er trang */
  .om-hero__status-card-header { flex-wrap: wrap; }
  .om-hero__status-hours { margin-left: 0; }
}

@media (max-width: 480px) {
  .om-hero__kicker { font-size: 12px; padding: 5px 12px; }
  .om-section__head { font-size: 26px; }
  .om-where { gap: var(--space-l); grid-template-columns: 1fr 1fr; }
  /* Forkort breadcrumb til 1 niveau på smal mobil - undgår wrap til 3 linjer
     og giver hver tap-target plads. */
}

/* ── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .om-hero__status-led,
  .om-hero__person-presence,
  .om-cta__skranke-pulse { animation: none; }
  .om-hero__person-avatar,
  .om-hero__status-card-phone,
  .om-hero__status-phone-cta,
  .om-team-card,
  .om-promise__item,
  .om-hero__actions .btn,
  .om-link-pill { transition: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .om-promise__item { opacity: 1; transform: none; transition: none; }
}

/* ── Dark mode - automatic via tokens hvor muligt ────────────────────── */
[data-theme="dark"] .om-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184,90,58,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(127,168,182,0.06) 0%, transparent 60%);
}
[data-theme="dark"] .om-hero__pitch { background: var(--surface); }
[data-theme="dark"] .om-section--subtle { background: color-mix(in srgb, var(--surface) 70%, var(--bg)); }
[data-theme="dark"] .om-section--subtle::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
}
[data-theme="dark"] .om-section--contrast {
  background: color-mix(in srgb, var(--brand-primary) 35%, black);
}
[data-theme="dark"] .om-promise__item { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .om-promise__item:hover { border-color: rgba(184,90,58,0.5); }
[data-theme="dark"] .om-team-card--network {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
}
[data-theme="dark"] .om-proof__quote { background: var(--bg); }
[data-theme="dark"] .om-cta {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 50%, black) 0%, color-mix(in srgb, var(--brand-primary) 15%, black) 100%);
}

/* Status-card i dark - surface har lavere kontrast til bg, så vi løfter
   border og box-shadow, og presence-ringen får en mørk border så den ikke
   forsvinder i avataren. */
[data-theme="dark"] .om-hero__status-card {
  background: color-mix(in srgb, var(--surface) 88%, black);
  border-color: color-mix(in srgb, var(--border) 70%, white);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 20px 44px -22px rgba(0,0,0,0.55),
    0 6px 14px -10px rgba(0,0,0,0.4);
}
[data-theme="dark"] .om-hero__status-card::before {
  background: radial-gradient(ellipse at 100% 0%, rgba(0,136,60,0.12) 0%, transparent 55%);
}
[data-theme="dark"] .om-hero__person-presence {
  border-color: color-mix(in srgb, var(--surface) 88%, black);
}
[data-theme="dark"] .om-hero__status-card-phone {
  background: linear-gradient(135deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 75%, var(--brand-accent)) 100%);
  border-color: color-mix(in srgb, var(--border) 60%, white);
}
[data-theme="dark"] .om-hero__status-phone-number { color: white; }
