/* ============================================================
   Livet enligt kroppen — site styles
   Built on tokens.css. Component classes below mirror the
   Livet enligt kroppen design system components used in the
   Claude Design prototype (Card, Button, Accordion, etc).
   ============================================================ */

body {
  background: var(--surface-page);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.container--narrow {
  max-width: 820px;
}

.section {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

.section--tight-top {
  padding-top: clamp(48px, 7vw, 80px);
}

.section--cream { background: var(--cream-100); }
.section--page { background: var(--surface-page); }

.section--plum {
  background: var(--plum-700);
  position: relative;
  overflow: hidden;
}
.section--plum .texture-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
}
.section--plum .container { position: relative; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  text-decoration: none;
  line-height: 0.84;
  flex: none;
}
.logo__line {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.logo__line--1 { color: var(--plum-700); }
.logo__line--2 { color: var(--gold-600); }

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink-600);
  transition: background var(--dur-base) var(--ease-out);
}
.nav-link:hover { background: var(--plum-50); color: var(--ink-600); }
.nav-link.is-active {
  color: var(--plum-700);
  background: var(--plum-100);
}
.nav-link.is-active:hover { background: var(--plum-100); }

.header-cta {
  flex: none;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream-50);
  background: var(--plum-600);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.header-cta:hover {
  color: var(--cream-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.005em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.btn--lg { font-size: 17px; padding: 14px 28px; }
.btn--md { font-size: 16px; padding: 12px 24px; }
.btn--sm { font-size: 15px; padding: 10px 20px; }

.btn--primary {
  color: var(--cream-50);
  background: var(--plum-600);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { color: var(--cream-50); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--secondary {
  color: var(--cream-50);
  background: var(--jade-500);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { color: var(--cream-50); transform: translateY(-1px); box-shadow: var(--shadow-jade); }

.btn--accent {
  color: #3a2a05;
  background: var(--saffron-500);
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover { color: #3a2a05; transform: translateY(-1px); box-shadow: var(--shadow-saffron); }
.btn--accent.btn--lg:hover { transform: translateY(-2px); }

.btn--ghost-plum {
  color: var(--plum-700);
}
.btn--ghost-plum:hover { color: var(--plum-700); background: var(--plum-50); }

.btn--outline-soft {
  color: var(--plum-700);
  background: transparent;
  border: 1.5px solid var(--plum-200);
}
.btn--outline-soft:hover { color: var(--plum-700); background: var(--plum-50); }

.btn--outline-plum {
  color: #0F3A33;
  background: transparent;
  border: 1.5px solid rgba(15, 58, 51, 0.35);
  padding: 12.5px 26px;
}
.btn--outline-plum:hover { color: #0F3A33; background: rgba(255, 255, 255, 0.25); }

.btn--outline-cream {
  color: var(--cream-50);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 12.5px 26px;
}
.btn--outline-cream:hover { color: var(--cream-50); background: rgba(255, 255, 255, 0.1); }

.btn--full { width: 100%; }
.btn--disabled,
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------------- Eyebrow / section heading ---------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.section-heading {
  font-family: var(--font-sans);
  max-width: 640px;
}
.section-heading--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}
.section-heading__title {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text-strong);
}
.section-heading__intro {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-body);
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(251,248,241,0.95) 0%, rgba(251,248,241,0.86) 30%, rgba(251,248,241,0.45) 52%, rgba(251,248,241,0) 70%);
}
.hero__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 28px;
  width: 100%;
}
.hero__content { max-width: 560px; }
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade-700);
  margin-bottom: 18px;
}
.hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0.004em;
  color: var(--plum-700);
}
.hero__lead {
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-strong);
  max-width: 460px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__footnote {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.accent-gold { color: var(--gold-600); }

/* ---------------- Grids ---------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 48px;
  align-items: center;
}
.grid-2--tight {
  gap: 20px;
  align-items: stretch;
}
.grid-2--contact {
  gap: 24px;
  align-items: start;
}

/* ---------------- Card ---------------- */
.card {
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card--cream {
  background: var(--cream-100);
  color: var(--text-body);
  border: 1px solid var(--border-soft);
}
.card--paper {
  background: var(--surface-card);
  color: var(--text-body);
  border: 1px solid var(--border-subtle);
}
.card--jade {
  background: var(--jade-500);
  color: #0F3A33;
  border: 1px solid transparent;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-strong);
}
.card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}
.card--jade h3 { color: #0F3A33; }
.card--jade p { color: #1c5448; }

.card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--plum-600);
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 14px;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--jade-100);
  color: var(--jade-700);
  margin-bottom: 14px;
}

/* ---------------- Check / dot lists ---------------- */
.list-plain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.list-check { gap: 11px; }
.list-check li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
}
.list-check .check {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--jade-100);
  color: var(--jade-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.list-check--large li { font-size: 16px; align-items: center; }
.list-check--large .check { width: 22px; height: 22px; }

.list-check--on-jade .check {
  background: rgba(255, 255, 255, 0.5);
  color: #0F3A33;
}
.list-check--on-jade li { color: #0F3A33; }

.list-dot { gap: 14px; }
.list-dot li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--plum-100);
}
.list-dot .dot {
  width: 8px;
  height: 8px;
  flex: none;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--saffron-500);
}

/* ---------------- SE panel ---------------- */
.se-grid { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.se-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.se-title {
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream-50);
}
.se-text {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--plum-200);
}
.se-text--tight { margin-top: 14px; font-size: 15px; line-height: 1.6; }

.panel-on-plum {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
}
.panel-on-plum h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream-50);
}

/* ---------------- Om Niklas / photo panels ---------------- */
.photo-frame { position: relative; }
.photo-frame img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: 62% center;
  aspect-ratio: 5 / 6;
}
.photo-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--saffron-500);
  color: #3a2a05;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.photo-frame--blob {
  order: 2;
}
.photo-frame--blob::before {
  content: '';
  position: absolute;
  inset: -24px -12px auto auto;
  width: 70%;
  height: 70%;
  background: var(--saffron-100);
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  z-index: 0;
}
.photo-frame--blob img { position: relative; z-index: 1; }

/* ---------------- Podcast ---------------- */
.podcast-panel {
  background: var(--plum-700);
  border-radius: var(--radius-2xl);
  padding: clamp(24px, 3vw, 36px);
  color: var(--cream-50);
  box-shadow: var(--shadow-xl);
}
.podcast-panel__top {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.podcast-panel__cover {
  width: 168px;
  height: 168px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  flex: none;
}
.podcast-panel__meta { flex: 1; min-width: 240px; }
.podcast-panel__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.podcast-panel__title {
  margin: 10px 0 14px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--cream-50);
  font-weight: 700;
}
.podcast-panel__host {
  display: flex;
  align-items: center;
  gap: 10px;
}
.podcast-panel__host img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.podcast-panel__host span {
  font-size: 14px;
  color: var(--plum-200);
}
.podcast-panel__tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.podcast-panel__tag {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream-50);
}
.podcast-panel__spotify {
  flex: none;
}

.podcast-progress {
  margin-top: 26px;
}
.podcast-progress__track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
  cursor: pointer;
}
.podcast-progress__fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--saffron-500);
  border-radius: 999px;
  width: 0%;
}
.podcast-progress__handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.podcast-progress__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--plum-200);
}

.podcast-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}
.podcast-controls button {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast) var(--ease-out);
}
.podcast-controls button:active { transform: scale(0.92); }
.podcast-controls__skip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--cream-50);
}
.podcast-controls__skip:hover { transform: scale(1.06); }
.podcast-controls__play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--saffron-500);
  color: #3a2a05;
  box-shadow: var(--shadow-md);
}
.podcast-controls__play:hover { transform: scale(1.06); }

/* ---------------- Accordion ---------------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-sans);
}
.accordion-item {
  background: var(--surface-card);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: none;
  overflow: hidden;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.accordion-item:hover:not(.is-open) { background: var(--cream-100); }
.accordion-item.is-open {
  background: var(--jade-100);
  border-color: var(--jade-500);
  box-shadow: var(--shadow-sm);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  transition: color var(--dur-base) var(--ease-out);
}
.is-open .accordion-trigger { color: var(--jade-800); }
.accordion-trigger__label { flex: 1; min-width: 0; }
.accordion-trigger__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-200);
  color: var(--ink-600);
  transform: rotate(0deg);
  transition: transform var(--dur-slow) var(--ease-soft), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.is-open .accordion-trigger__icon {
  background: var(--jade-500);
  color: #0F3A33;
  transform: rotate(45deg);
}
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}
.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel__inner { overflow: hidden; }
.accordion-panel__content {
  padding: 0 20px 20px;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.is-open .accordion-panel__content { opacity: 1; transform: translateY(0); }

.faq-more {
  margin: 26px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}
.faq-more a { color: var(--jade-700); font-weight: 600; }

/* ---------------- Callout ---------------- */
.callout {
  font-family: var(--font-sans);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--jade-500);
  background: var(--jade-100);
  padding: 16px 18px;
  display: flex;
  gap: 13px;
}
.callout--saffron {
  background: var(--saffron-100);
  border-left-color: var(--saffron-500);
}
.callout--saffron .callout__title { color: var(--saffron-600); }
.callout__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--jade-800);
  margin-bottom: 3px;
}
.callout__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-body);
}

/* ---------------- Newsletter ---------------- */
.newsletter-panel {
  background: var(--jade-500);
  border-radius: var(--radius-2xl);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 36px;
  align-items: center;
}
.newsletter-panel__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0F3A33;
}
.newsletter-panel__title {
  margin: 12px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0F3A33;
}
.newsletter-panel__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #1c5448;
}
.newsletter-card {
  background: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-success {
  text-align: center;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--jade-800);
}

/* ---------------- Form fields ---------------- */
.field {
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
}
.field input,
.field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-strong);
  background: var(--surface-card);
  padding: 11px 15px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-strong);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input:focus,
.field textarea:focus {
  border-color: var(--jade-500);
  box-shadow: 0 0 0 3px rgba(56, 160, 136, 0.18);
}
.field.has-error input,
.field.has-error textarea {
  border-color: var(--coral-500);
  box-shadow: none;
}
.field__error {
  font-size: 13px;
  color: var(--coral-600);
  display: none;
}
.field.has-error .field__error { display: block; }
.field__hint {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------------- Pricing cards ---------------- */
.price-card h3 { font-size: 22px; }
.price-row {
  margin: 20px 0 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-row__amount {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--plum-700);
}
.price-row__unit {
  font-size: 14px;
  color: var(--text-muted);
}
.card--jade .price-row__amount { color: #0F3A33; }
.card--jade .price-row__unit { color: #1c5448; }

.pill-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--saffron-500);
  color: #3a2a05;
}
.price-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------------- Pull quote ---------------- */
.pull-quote {
  margin: 0;
  background: var(--plum-600);
  color: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  position: relative;
}
.pull-quote__mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.7;
  color: var(--gold-400);
  display: block;
  height: 38px;
}
.pull-quote__text {
  margin: 0;
  font-size: 26px;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pull-quote__attribution {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--plum-200);
}

/* ---------------- Contact page ---------------- */
.contact-panel {
  background: var(--plum-700);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 40px);
  position: relative;
  overflow: hidden;
}
.contact-panel__content { position: relative; }
.contact-panel h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--cream-50);
}
.contact-panel p {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--plum-200);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--jade-700);
}
.contact-item--static { font-weight: 400; color: var(--text-body); }
.contact-item__icon {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--jade-100);
  color: var(--jade-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--plum-700);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background var(--dur-base) var(--ease-out);
}
.social-pill:hover { color: var(--plum-700); background: var(--plum-50); }

.divider {
  border-top: 1px solid var(--border-subtle);
  margin: 18px 0 16px;
}

.form-success {
  text-align: center;
  padding: 48px 12px;
}
.form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--jade-100);
  color: var(--jade-700);
  margin-bottom: 16px;
}
.form-success h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
}
.form-success p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-body);
}
.form-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}
.form-error {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--coral-600);
}
.form-error a { color: inherit; text-decoration: underline; }

/* ---------------- CTA blocks ---------------- */
.cta-jade {
  background: var(--jade-500);
  border-radius: var(--radius-2xl);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}
.cta-jade h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0F3A33;
}
.cta-jade p {
  margin: 14px auto 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: #1c5448;
  max-width: 480px;
}
.cta-plum {
  background: var(--plum-700);
  border-radius: var(--radius-2xl);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-plum__content { position: relative; }
.cta-plum h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--cream-50);
}
.cta-plum p {
  margin: 14px auto 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--plum-200);
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ---------------- Page intro (Coaching / Kontakt / Om mig) ---------------- */
.page-intro {
  text-align: center;
}
.page-intro h1 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0.004em;
  color: var(--plum-700);
}
.page-intro p {
  margin: 22px auto 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 560px;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--plum-700);
  color: var(--plum-200);
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.site-footer__brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 22px;
  color: var(--cream-50);
  line-height: 0.9;
}
.site-footer__brand span { color: var(--gold-400); }
.site-footer__tagline {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
  color: var(--plum-200);
}
.site-footer__cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.site-footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.site-footer__list a {
  color: var(--plum-200);
  text-decoration: none;
  font-size: 14px;
}
.site-footer__list a:hover { color: var(--cream-50); }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 28px;
  text-align: center;
  font-size: 13px;
  color: var(--plum-300);
}

/* ---------------- Image strip (Hem) ---------------- */
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.image-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------------- Podden page ---------------- */
.podden-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: start;
}
.shownotes__paragraph {
  margin: 16px 0 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-body);
  white-space: pre-line;
}
.shownotes__paragraph:first-child { margin-top: 16px; }

.chapter-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.chapter-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15.5px;
  color: var(--text-body);
}
.chapter-time {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--jade-700);
  background: var(--jade-100);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  flex: none;
}

.episode-card {
  font-family: var(--font-sans);
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.episode-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.episode-card__cover {
  width: 84px;
  height: 84px;
  flex: none;
  border-radius: var(--radius-md);
  object-fit: cover;
  position: relative;
}
.episode-card__thumb { position: relative; flex: none; }
.episode-card__number {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--saffron-500);
  color: #3a2a05;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.episode-card__body { flex: 1; min-width: 0; }
.episode-card__meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.episode-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-card__topics {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.episode-card__topic {
  font-size: 12px;
  font-weight: 600;
  color: var(--jade-800);
  background: var(--jade-100);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.episode-card__play {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--plum-600);
  color: var(--cream-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out);
}
.episode-card__play:hover { transform: scale(1.07); }
.episode-card__play:active { transform: scale(0.92); }

/* ---------------- Om mig gallery ---------------- */
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.photo-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.photo-gallery img:first-child {
  height: 100%;
  grid-row: span 2;
}
.photo-gallery img:not(:first-child) { aspect-ratio: 4 / 3; }

.approach-text { order: 1; }

/* ---------------- Cookie banner ---------------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface-inverse);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-banner p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  flex: 1;
  min-width: 220px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: none;
}

/* ---------------- Utility ---------------- */
[hidden] { display: none !important; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .site-header__inner { gap: 14px; }
  .nav { gap: 2px; }
  .nav-link { padding: 8px 10px; font-size: 14px; }
  .image-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .podden-cols { grid-template-columns: 1fr; }
}
