/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SPIRE ULTRALYD · nyspire4.css
   Vårrengjøring april 2026

   INNHOLD:
    1.  Fargevariabler
    2.  Reset & base
    3.  Navigasjon (topp)
    4.  Seksjoner — bakgrunn & rammeverk
    5.  S1 — Hero (Pust ut)
    6.  S2 — Om oss
    7.  S3 — Walk & Talk
    8.  S4 — Tjenester & Priser
    9.  S5 — Anmeldelser / Spirefamilien
   10.  S6 — Finn oss / Kontakt
   11.  S7 — Bestill time
   12.  S8 — Footer
   13.  Bunnmeny
   14.  Kortvifte (fan)
   15.  Video-pill & overlay
   16.  Scroll reveal
   17.  Animasjoner
   18.  Tilgjengelighet (prefers-reduced-motion)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


/* ── 1. FARGEVARIABLER ──────────────────────────────────── */
:root {
  /* Blå */
  --spire-blue-light: #dbedff;
  --spire-blue-mid:   #a8ccf0;
  --spire-blue-deep:  #2c5f8a;
  --spire-blue-dark:  #1a3a54;

  /* Rosa */
  --spire-rose-light: #ffdbed;
  --spire-rose-mid:   #f0a8c8;
  --spire-rose-deep:  #b87a9a;
  --spire-rose-dark:  #7a3a5a;

  /* Nøytrale */
  --spire-cream:      #f9f6f2;
  --spire-neutral:    #ede8f0;
  --spire-text-muted: #5a4a52;
  --spire-text:       #2c1f2e;
  --spire-text-dark:  #2c1f2e;
}


/* ── 2. RESET & BASE ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 0px; /* kompenser for fast toppmeny */
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--spire-cream);
  color: var(--spire-text-dark);
}

h1, h2, h3, h4, p {
  margin: 0;
}

h1 em, h2 em, h3 em, h4 em {
  color: var(--spire-rose-deep);
}

a {
  text-decoration: none;
}

/* Fjern standard list-stil der ul/li brukes semantisk */
ul.j-punkter {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* ── 3. NAVIGASJON (TOPP) ───────────────────────────────── */
.spire-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.6rem;
  background: transparent;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.spire-nav.filled {
  background: rgba(253, 249, 245, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(184, 122, 154, 0.15);
}

.spire-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spire-text-dark);
  line-height: 1;
}

.spire-nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spire-rose-deep);
  padding: 7px 16px;
  border: 1px solid rgba(184, 122, 154, 0.4);
  border-radius: 99px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease,
              background 0.25s ease, color 0.25s ease;
}

.spire-nav-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.spire-nav-cta:hover {
  background: #fff0f5;
  color: var(--spire-rose-dark);
}


/* ── 4. SEKSJONER — BAKGRUNN & RAMMEVERK ───────────────── */
.spire-s1 {
  background: linear-gradient(180deg,
    var(--spire-blue-light) 0%,
    var(--spire-blue-mid) 60%,
    var(--spire-neutral) 100%);
  min-height: 100svh;
  padding-top: calc(56px + 0.8rem);
  padding-bottom: 1.5rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spire-s2 {
  background: linear-gradient(180deg,
    var(--spire-neutral) 0%,
    var(--spire-neutral) 80%,
    var(--spire-cream) 100%);
  padding: 48px 0 52px;
  position: relative;
  overflow: visible;
}

.spire-s3 {
  background: linear-gradient(180deg,
    var(--spire-rose-light) 0%,
    var(--spire-rose-light) 90%,
    var(--spire-blue-light) 100%);
  padding: 44px 0 52px;
  position: relative;
  overflow: hidden;
}

.spire-s3::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.spire-s4 {
  background: linear-gradient(180deg,
    var(--spire-blue-light) 0%,
    var(--spire-blue-light) 60%,
    var(--spire-rose-light) 100%);
  padding-top: calc(56px + 1.5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: visible;
}

.spire-s5 {
  background: linear-gradient(180deg,
    var(--spire-cream) 0%,
    var(--spire-rose-light) 100%);
  padding: 40px 0 52px;
}

.spire-s6 {
  background: linear-gradient(180deg,
    var(--spire-rose-light) 0%,
    var(--spire-rose-light) 60%,
    var(--spire-blue-dark) 100%);
  padding-top: calc(56px + 1.5rem);
  padding-bottom: 2rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}

.spire-s7 {
  background: var(--spire-blue-dark);
  padding: 5rem 1.8rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spire-s8 {
  background: var(--spire-blue-dark);
  padding: 2rem 1.8rem 2.5rem;
}


/* ── 5. S1 — HERO (PUST UT) ─────────────────────────────── */

/* Blob */
.spire-s1-blob-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.6rem;
  width: 100vw;
  position: relative;
}

.spire-s1-blob {
  width: 100%;
  max-width: 800px;
  border-radius: 50%;
  overflow: visible;
  position: relative;
}

.spire-s1-blob img {
  width: 100%;
  border: 2px solid rgba(196, 121, 138, 0.18);
  object-fit: cover;
  border-radius: inherit;
  transform-origin: center center;
  animation: s1-sway 16s ease-in-out infinite;
}

/* Pulserende ringer */
.womb-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(196, 121, 138, 0.18);
  animation: ring-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}

.womb-ring:nth-child(2) {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-color: rgba(196, 121, 138, 0.10);
  animation-delay: 0.6s;
}

.womb-ring:nth-child(3) {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-color: rgba(196, 121, 138, 0.05);
  animation-delay: 1.2s;
}

/* Hero-tekst */
.spire-s1-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 300;
  color: var(--spire-blue-dark);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.spire-s1-h1 em {
  font-style: italic;
  color: var(--spire-rose-deep);
}

.spire-s1-h1.visible {
  opacity: 1;
  transform: translateY(0);
}

.spire-s1-desc {
  font-size: 0.9rem;
  color: var(--spire-text-muted);
  line-height: 1.8;
  text-align: center;
  max-width: 300px;
  margin: 0 auto 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.spire-s1-desc.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 6. S2 — OM OSS ─────────────────────────────────────── */

/* Intro */
.om-intro {
  padding: 30px 24px 28px;
}

.om-intro .section-tag {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spire-rose-mid);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.om-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--spire-text-dark);
  margin-bottom: 16px;
}

.om-title em {
  font-style: italic;
  color: var(--spire-rose-mid);
}

.om-body {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--spire-text-muted);
}

.om-body strong {
  color: var(--spire-text-dark);
  font-weight: 500;
}

/* Statistikk */
.stats-rad {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 24px 10px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196, 121, 138, 0.08);
}

.stat {
  padding: 10px 8px 10px;
  text-align: center;
  border-right: 1px solid rgba(196, 121, 138, 0.1);
}

.stat-tall {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--spire-rose-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--spire-text-muted);
  letter-spacing: 0.06em;
}

/* Verdier 2×2 */
.verdier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 24px 36px;
}

.verdi-kort {
  background: white;
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid rgba(196, 121, 138, 0.08);
}

.verdi-tittel {
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.verdi-tekst {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--spire-text-muted);
  line-height: 1.55;
}

/* Jordmødre — header */
.jordmor-header {
  padding: 0 24px 14px;
}

.jordmor-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--spire-text-dark);
}

.jordmor-header h3 em {
  font-style: italic;
  color: var(--spire-rose-mid);
}

/* Jordmødre — kort */
.j-kort {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  border: none;
  box-shadow: 0 2px 16px rgba(42, 31, 36, 0.06);
}

.j-foto {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--spire-blue-light) 0%, var(--spire-rose-light) 100%);
}

.j-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.j-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--spire-neutral);
  mix-blend-mode: multiply;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.j-kort.active .j-foto::after {
  opacity: 0.5;
}

.j-info {
  padding: 16px 18px 20px;
}

.j-navn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--spire-text-dark);
  margin-bottom: 2px;
}

.j-tittel {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spire-rose-mid);
  font-weight: 600;
  margin-bottom: 14px;
}

.j-punkter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.j-punkt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--spire-text-muted);
  line-height: 1.45;
}

.j-punkt::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--spire-rose-light);
  flex-shrink: 0;
  margin-top: 7px;
}


/* ── 7. S3 — WALK & TALK ────────────────────────────────── */

/* Intro */
.wt-intro {
  padding: 30px 24px 26px;
  position: relative;
}

.wt-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spire-rose-mid);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.spire-s3-photo {
  position: absolute;
  top: 0; right: 24px;
  width: 124px; height: 124px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.spire-s3-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.wt-tittel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--spire-text-dark);
  padding-right: 140px;
  margin-bottom: 18px;
}

.wt-tittel em {
  font-style: italic;
  color: rgba(42, 31, 36, 0.62);
  display: block;
  padding-right: 0;
}

.wt-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(42, 31, 36, 0.55);
  margin-bottom: 14px;
}

.wt-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(42, 31, 36, 0.55);
  margin-bottom: 16px;
  clear: both;
}

.wt-body em {
  font-style: italic;
  color: rgba(42, 31, 36, 0.88);
  font-weight: 400;
}

.wt-for-hvem {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 121, 138, 0.12);
  border: 1px solid rgba(196, 121, 138, 0.25);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--spire-text-dark);
  font-weight: 500;
}

/* Datokort */
.wt-datokort {
  margin: 0 24px 28px;
  background: white;
  border: 1px solid rgba(196, 121, 138, 0.25);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wt-dato-tall {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--spire-text-dark);
  line-height: 1;
  opacity: 0.7;
  flex-shrink: 0;
}

.wt-dato-info { flex: 1; }

.wt-dato-mnd {
  font-size: 1rem;
  font-weight: 500;
  color: var(--spire-text-dark);
  margin-bottom: 2px;
}

.wt-dato-detalj {
  font-size: 0.75rem;
  color: rgba(42, 31, 36, 0.55);
  font-weight: 300;
  margin-bottom: 8px;
}

.wt-plasser-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(42, 31, 36, 0.1);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.62rem;
  color: var(--spire-text-dark);
  font-weight: 500;
}

.wt-plasser-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--spire-text-dark);
  opacity: 0.5;
  animation: wtBlink 2s ease-in-out infinite;
}

/* Chips */
.wt-chips-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42, 31, 36, 0.55);
  padding: 0 24px 10px;
  display: block;
}

.wt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 28px;
}

.wt-chip {
  background: rgba(196, 121, 138, 0.12);
  border: 1px solid rgba(196, 121, 138, 0.25);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--spire-text-dark);
}

.wt-chip.pris {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* CTA-knapp */
.wt-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 24px 0;
  background: var(--spire-rose-mid);
  border-radius: 16px;
  padding: 16px 20px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(196, 121, 138, 0.3);
  transition: transform 0.2s ease;
}

.wt-cta:active { transform: scale(0.98); }

.wt-cta-tekst {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

.wt-cta-arrow { color: white; font-size: 1rem; }


/* ── 8. S4 — TJENESTER & PRISER ─────────────────────────── */

/* Intro */
.tjenester-intro {
  padding: 0 24px 28px;
}

.tjenester-intro .section-tag {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spire-rose-mid);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.tjenester-intro .intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--spire-text);
  margin-bottom: 16px;
}

.tjenester-intro .intro-title em {
  font-style: italic;
  color: var(--spire-rose-mid);
}

.tjenester-intro .intro-body {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--spire-text-muted);
}

.tjenester-intro .intro-body strong {
  color: var(--spire-text);
  font-weight: 500;
}

/* Swipe hint (delt mellom S2/S3/S4/S5) */
.swipe-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px 10px;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--spire-text-muted);
  text-transform: uppercase;
}

.swipe-hint svg {
  width: 13px; height: 13px;
  stroke: var(--spire-text-muted);
  fill: none;
  stroke-width: 1.8;
  animation: nudge 2.2s ease-in-out infinite;
}

/* Swipe track (delt mellom S2/S4/S5) */
.swipe-track {
  display: flex;
  gap: 14px;
  overflow-x: scroll;
  padding: 6px 0 20px;
  margin-left: 24px;
  scroll-padding-left: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: flex-start;
}

.swipe-track::-webkit-scrollbar { display: none; }

.swipe-track::before,
.swipe-track::after {
  content: '';
  min-width: 10px;
  flex-shrink: 0;
}

/* Swipe dots (delt) */
.swipe-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding-top: 6px;
}

.swipe-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
  opacity: 0.4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swipe-dot.active {
  opacity: 1;
  background: var(--spire-rose-mid);
  width: 18px;
  border-radius: 3px;
}

/* Tjeneste-kort */
.k-kort {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(196, 121, 138, 0.1);
  box-shadow: 0 2px 16px rgba(42, 31, 36, 0.06);
}

.k-header {
  position: relative;
  padding: 20px 18px 18px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.k-tidlig    .k-header { background: linear-gradient(135deg, #deeaf5 0%, #eddadf 100%); }
.k-underveis .k-header { background: linear-gradient(135deg, #ead9e0 0%, #f0e8d8 100%); }
.k-slutten   .k-header { background: linear-gradient(135deg, #dce8d5 0%, #e8ddd5 100%); }

.k-bilde {
  position: absolute;
  top: 14px; right: 14px;
  width: 80px; height: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(42, 31, 36, 0.15);
}

.k-bilde img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.k-fase {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spire-rose-mid);
  font-weight: 600;
}

.k-tittel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--spire-text);
  padding-right: 92px;
}

.k-tittel em {
  font-style: italic;
  color: var(--spire-rose-mid);
}

.k-sub {
  font-size: 0.72rem;
  color: var(--spire-text-muted);
  font-weight: 300;
  padding-right: 92px;
}

/* Tjeneste-rader */
.k-tjenester { background: white; }

.t-item {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(196, 121, 138, 0.07);
  text-decoration: none;
  transition: background 0.15s ease;
}

.t-item:last-child { border-bottom: none; }
.t-item:active { background: #f5e6e9; }

.t-rad {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
}

.t-navn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--spire-text);
  line-height: 1.3;
}

.t-pris {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--spire-rose-mid);
  white-space: nowrap;
  flex-shrink: 0;
}

.t-pris::after {
  content: ' →';
  color: #e8b4be;
  font-size: 0.75rem;
}

.t-detalj {
  font-size: 0.7rem;
  color: var(--spire-text-muted);
  font-weight: 400;
  margin-bottom: 5px;
}

.t-beskrivelse {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--spire-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Tjenester — footer */
.tjenester-footer {
  padding: 28px 24px 0;
  text-align: center;
}

.tjenester-footer .footer-note {
  font-size: 0.76rem;
  color: var(--spire-text-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* Akutt-kort */
.akutt-kort {
  margin: 24px 24px 12px;
  background: var(--spire-blue-dark);
  border-radius: 18px;
  padding: 20px;
}

.akutt-tittel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  margin-bottom: 8px;
}

.akutt-tekst {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 16px;
}

.akutt-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--spire-rose-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Info-rad */
.tjenester-info-rad {
  margin: 0 24px;
  background: rgba(196, 121, 138, 0.06);
  border: 1px solid rgba(196, 121, 138, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
}

.tjenester-info-linje {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--spire-text-muted);
  line-height: 1.5;
}


/* ── 9. S5 — ANMELDELSER / SPIREFAMILIEN ────────────────── */
.spire-s5 .section-tag {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spire-rose-mid);
  font-weight: 500;
  display: block;
  padding: 0 24px 16px;
}

/* Hoved-sitat */
.hero-sitat {
  padding: 0 24px 32px;
}

.hero-sitat-tekst {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--spire-text-dark);
  margin-bottom: 10px;
}

.hero-sitat-tekst em {
  color: var(--spire-rose-mid);
}

.hero-sitat-attr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--spire-text-muted);
}

.hero-sitat-attr .stjerner {
  color: var(--spire-rose-mid);
  letter-spacing: 1px;
}

/* Anmeldelser swipe-track */
.anm-track {
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  padding: 4px 0 16px;
  margin-left: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: flex-start;
}

.anm-track::-webkit-scrollbar { display: none; }

.anm-track::after {
  content: '';
  min-width: 24px;
  flex-shrink: 0;
}

/* Anmeldelseskort */
.anm-kort {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: white;
  border-radius: 18px;
  padding: 16px 14px;
  border: 1px solid rgba(196, 121, 138, 0.1);
  box-shadow: 0 2px 12px rgba(42, 31, 36, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.anm-stjerner {
  color: var(--spire-rose-mid);
  font-size: 0.78rem;
  letter-spacing: 2px;
}

.anm-tekst {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--spire-text-dark);
  flex: 1;
  margin: 0;
}

.anm-tekst em {
  color: var(--spire-rose-mid);
}

.anm-attr {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--spire-text-muted);
  padding-top: 6px;
  border-top: 1px solid rgba(196, 121, 138, 0.1);
}

/* Kortvifte — hint-tekst */
.fan-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--spire-text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}


/* ── 10. S6 — FINN OSS / KONTAKT ────────────────────────── */
.spire-s6-whisper {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--spire-rose-deep);
  margin-bottom: 1.4rem;
  opacity: 0.75;
}

.spire-s6-voice {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--spire-text-dark);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.spire-s6-voice em {
  font-style: italic;
  color: var(--spire-rose-deep);
}

.spire-s6-voice.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Adressekort */
.spire-s6-card {
  background: white;
  border: 1px solid var(--spire-neutral);
  border-radius: 14px;
  padding: 1.0rem 1.1rem;
  margin-bottom: 10px;
  font-style: normal;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.spire-s6-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.spire-s6-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.spire-s6-address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.spire-s6-address-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--spire-text-dark);
}

.spire-s6-address-detail {
  font-size: 0.76rem;
  color: var(--spire-text-muted);
  line-height: 1.6;
}

.spire-s6-open {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #5a9e5c;
  font-weight: 400;
}

.spire-s6-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5a9e5c;
  flex-shrink: 0;
  animation: s6Pulse 3s ease-in-out infinite;
}

/* Kontakt-grid */
.spire-s6-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.spire-s6-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.spire-s6-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 5px;
  min-height: 73px;
  background: white;
  border: 1px solid var(--spire-neutral);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.spire-s6-btn svg {
  stroke: var(--spire-rose-mid);
  color: var(--spire-rose-mid);
  width: 20px; height: 20px;
}

.spire-s6-btn:hover {
  border-color: var(--spire-rose-mid);
  background: var(--spire-rose-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 122, 154, 0.12);
}

.spire-s6-btn-label {
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--spire-text-dark);
  letter-spacing: 0.04em;
}

.spire-s6-btn-sub {
  font-size: 0.56rem;
  line-height: 1.2;
  color: var(--spire-text-muted);
  letter-spacing: 0.06em;
}

.spire-s6-btn.messenger {
  background: white;
  border-color: var(--spire-rose-mid);
  border-width: 2.5px;
  box-shadow: 0 2px 12px rgba(196, 121, 138, 0.15);
}

.spire-s6-btn.messenger:hover {
  background: var(--spire-rose-light);
}

.spire-s6-btn.messenger .spire-s6-btn-label { color: var(--spire-rose-deep); }
.spire-s6-btn.messenger .spire-s6-btn-icon  { color: var(--spire-rose-deep); }

/* Sosiale medier */
.spire-s6-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: white;
  border: 1px solid var(--spire-neutral);
  border-radius: 12px;
}

.spire-s6-social-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spire-text-muted);
}

.spire-s6-social-links { display: flex; gap: 0.5rem; }

.spire-s6-social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--spire-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--spire-text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.spire-s6-social-btn:hover {
  background: var(--spire-rose-light);
  color: var(--spire-rose-deep);
}


/* ── 11. S7 — BESTILL TIME ──────────────────────────────── */
.spire-s7-whisper {
  display: block;
  text-align: center;
  font-size: 0.52rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--spire-rose-mid);
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.spire-s7-voice {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}

.spire-s7-voice em {
  font-style: italic;
  color: var(--spire-rose-mid);
}

.spire-s7-body {
  font-size: 0.88rem;
  line-height: 1.8;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.2rem;
  max-width: 280px;
}

.spire-s7-cta {
  display: block;
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 15px 36px;
  background: white;
  color: var(--spire-blue-dark);
  border-radius: 99px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.spire-s7-cta:hover {
  background: var(--spire-rose-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.spire-s7-note {
  display: block;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
}


/* ── 12. S8 — FOOTER ────────────────────────────────────── */
.spire-s8-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.spire-s8-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}

.spire-s8-sub {
  display: block;
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
}

.spire-s8-social {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.spire-s8-soc {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.spire-s8-soc:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.spire-s8-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}

.spire-s8-copy {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.spire-s8-copy a {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}


/* ── 13. BUNNMENY ───────────────────────────────────────── */
.spire-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 54px;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--spire-cream);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196, 121, 138, 0.12);
}

.spire-bottom-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: rgba(42, 31, 36, 0.42);
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 5px 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.spire-bottom-nav a:hover {
  color: #c4798a;
  background: rgba(196, 121, 138, 0.08);
}

.spire-bottom-nav a.active {
  color: #c4798a;
  background: rgba(196, 121, 138, 0.10);
  transform: translateY(-2px);
}

.spire-bottom-nav a.active svg {
  stroke-width: 2;
  filter: drop-shadow(0 2px 8px rgba(196, 121, 138, 0.35));
}

.spire-bottom-nav a.active .nav-label {
  font-weight: 600;
}

.spire-bottom-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #c4798a;
  opacity: 0.6;
}

.spire-bottom-nav svg {
  width: 19px; height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}


/* ── 14. KORTVIFTE (FAN) ────────────────────────────────── */
.fan-container {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 60px;
  cursor: pointer;
  user-select: none;
}

.fan-card {
  position: absolute;
  width: 170px; height: 240px;
  border-radius: 16px;
  border: 1px solid var(--spire-rose-light);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(45, 32, 32, 0.18);
  transform-origin: center bottom;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  bottom: 0;
}

.fan-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Standard vifte-posisjoner (10 kort) */
.fan-card:nth-child(1)  { transform: rotate(-36deg) translateY(20px); z-index: 1; }
.fan-card:nth-child(2)  { transform: rotate(-28deg) translateY(12px); z-index: 2; }
.fan-card:nth-child(3)  { transform: rotate(-20deg) translateY(6px);  z-index: 3; }
.fan-card:nth-child(4)  { transform: rotate(-12deg) translateY(2px);  z-index: 4; }
.fan-card:nth-child(5)  { transform: rotate(-4deg);                   z-index: 5; }
.fan-card:nth-child(6)  { transform: rotate(4deg);                    z-index: 6; }
.fan-card:nth-child(7)  { transform: rotate(12deg) translateY(2px);   z-index: 7; }
.fan-card:nth-child(8)  { transform: rotate(20deg) translateY(6px);   z-index: 8; }
.fan-card:nth-child(9)  { transform: rotate(28deg) translateY(12px);  z-index: 9; }
.fan-card:nth-child(10) { transform: rotate(36deg) translateY(20px);  z-index: 10; }

.fan-card.active {
  transform: rotate(0deg) translateY(-40px) scale(1.05) !important;
  z-index: 20 !important;
  box-shadow: 0 20px 60px rgba(45, 32, 32, 0.3);
  border-color: var(--spire-rose-mid);
}

.fan-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
  margin-bottom: 20px;
}

.fan-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--spire-rose-light);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.fan-dot.active {
  background: var(--spire-rose-mid);
  transform: scale(1.3);
}


/* ── 15. VIDEO-PILL & OVERLAY ───────────────────────────── */
.video-pill-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.video-pill-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(232, 240, 245, 0.75);
  border: 1.5px solid rgba(196, 121, 138, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 99px;
  padding: 10px 20px 10px 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-pill-btn:hover,
.video-pill-btn:active {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.pill-play-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--spire-rose-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
}

.pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.pill-title {
  font-size: 0.75rem;
  color: var(--spire-text-dark);
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.pill-sub {
  font-size: 0.62rem;
  color: var(--spire-text-muted);
  font-family: 'Jost', sans-serif;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}

.wave-bar {
  width: 2px;
  background: var(--spire-rose-mid);
  border-radius: 1px;
  animation: wave-anim 2.4s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 4px;  animation-delay: 0s;   }
.wave-bar:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 8px;  animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 14px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 6px;  animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 10px; animation-delay: 0.6s; }

/* Video overlay */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 20, 30, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}

.video-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.video-overlay-inner {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.video-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
}


/* ── 16. SCROLL REVEAL ──────────────────────────────────── */
/* (Klasser er inline på elementene i HTML — se S1 og S6 over) */


/* ── 17. ANIMASJONER ────────────────────────────────────── */
@keyframes s1-sway {
  0%   { transform: scale(0.82) rotate(-4deg) translateY(0px); }
  25%  { transform: scale(0.82) rotate(0deg)  translateY(-8px); }
  50%  { transform: scale(0.82) rotate(4deg)  translateY(0px); }
  75%  { transform: scale(0.82) rotate(0deg)  translateY(8px); }
  100% { transform: scale(0.82) rotate(-4deg) translateY(0px); }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;    transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes wave-anim {
  0%, 100% { transform: scaleY(1);   opacity: 0.5; }
  50%       { transform: scaleY(1.8); opacity: 1;   }
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

@keyframes wtBlink {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.1; }
}

@keyframes s6Pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(90, 158, 92, 0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(90, 158, 92, 0); }
}


/* ── 18. TILGJENGELIGHET: prefers-reduced-motion ────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
