:root {
  --accent: #c17a55;
  --border: rgba(193, 122, 85, 0.18);
  --border-soft: rgba(193, 122, 85, 0.16);
  --border-muted: rgba(229, 214, 201, 0.9);
  --border-strong: rgba(106, 98, 93, 0.34);
  --surface-base: #f9f3ec;
  --surface-alt: #e5d6c9;
  --surface-card: #f7f3ee;
  --surface-hero-top: #f6efe8;
  --surface-card-top: rgba(255, 255, 255, 0.74);
  --surface-card-mid: rgba(247, 243, 238, 0.9);
  --surface-card-bottom: rgba(229, 214, 201, 0.96);
  --surface-card-featured-top: rgba(255, 255, 255, 0.8);
  --surface-card-featured-mid: rgba(247, 243, 238, 0.94);
  --surface-card-featured-bottom: rgba(229, 214, 201, 0.99);
  --card: #f7f3ee;
  --green: #5f7f67;
  --glass-bg: rgba(255, 255, 255, 0.64);
  --glass-radius: 24px;
  --glass-blur: 12px;
}

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

body {
  font-family: "Inter", sans-serif;
  color: #4a4743;
  background: var(--surface-base);
}

.section-surface {
  background: var(--surface-base);
}

.section-surface-alt {
  background: var(--surface-alt);
}

section[id] {
  scroll-margin-top: 48px;
}

h1 {
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-size: 2.5rem;
}

.price {
  color: var(--accent);
}

.hero {
  background: linear-gradient(
    180deg,
    var(--surface-hero-top),
    var(--surface-base)
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 34%,
      rgba(15, 14, 13, 0.45) 0%,
      rgba(15, 14, 13, 0.24) 42%,
      rgba(15, 14, 13, 0) 72%
    ),
    linear-gradient(
      180deg,
      rgba(14, 13, 12, 0.1) 0%,
      rgba(14, 13, 12, 0.16) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero .max-w-4xl > h1 {
  color: #f4e7d8;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero .max-w-4xl > p:not(.hero-eyebrow) {
  color: #e8d8c7;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.hero-media-bg img {
  width: 108%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 32% 40%;
  transform: translateX(-8%);
  filter: saturate(0.8) contrast(0.94) brightness(0.96) sepia(0.22);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 255, 255, 0.18),
    transparent 25%
  );
  pointer-events: none;
}

.hero-eyebrow {
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(193, 122, 85, 0.08);
}

.section-kicker,
.faq-kicker,
.booking-mobile-label {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a5a42;
}

.section-divider {
  width: 5rem;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    90deg,
    rgba(229, 214, 201, 0),
    var(--surface-alt),
    rgba(229, 214, 201, 0)
  );
}

.section-transition {
  padding: 0.5rem 1.5rem 0;
}

.section-transition__inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 46rem;
  min-height: auto;
  margin: 0 auto;
}

.section-transition__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(138, 90, 66, 0),
    rgba(138, 90, 66, 0.4),
    rgba(138, 90, 66, 0)
  );
}

.section-transition__ornament {
  flex: 0 0 auto;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #8a5a42;
  opacity: 0.72;
}

.section-transition__ornament::before {
  content: none;
}

.section-transition__ornament::after {
  content: none;
}

.section-intro {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: #675d56;
}

.process-card {
  border: 1px solid var(--border-muted);
  border-radius: 1rem;
  background: linear-gradient(
    180deg,
    rgba(247, 243, 238, 0.96),
    rgba(244, 236, 228, 0.96)
  );
  box-shadow:
    0 10px 24px rgba(89, 64, 48, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.content-card {
  border: 1px solid var(--border-muted);
  background: rgba(255, 255, 255, 0.92);
}

.content-card-soft {
  border: 1px solid var(--border-muted);
  background: var(--surface-card);
}

.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    var(--surface-card-top),
    var(--surface-card-mid),
    var(--surface-card-bottom)
  );
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(74, 71, 67, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-layout {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.pricing-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

/* Medisinsk behandling – full-width card with 3 items side by side */
.pricing-list--medical {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.5rem;
}

.pricing-list--medical .pricing-item {
  padding-bottom: 0.5rem;
}

.pricing-list--medical .pricing-item:not(:last-child) {
  border-right: 1px dashed var(--border);
  padding-right: 2.5rem;
}

@media (max-width: 767px) {
  .pricing-bottom {
    grid-template-columns: 1fr;
  }
  .pricing-list--medical {
    grid-template-columns: 1fr;
  }
  .pricing-list--medical .pricing-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 0.62rem;
  }
}

.pricing-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1.3rem;
}

.pricing-kicker {
  margin-bottom: 0.7rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a5a42;
}

.pricing-meta__item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-muted);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #675b53;
}

.pricing-card--primary {
  padding: 2.05rem 2.1rem;
}

.pricing-card--compact {
  padding: 1.7rem 1.6rem;
}

.pricing-card__head {
  margin-bottom: 1.15rem;
}

.pricing-card__kicker {
  margin: 0 0 0.38rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a5a42;
}

.pricing-card__subhead {
  margin-top: 0.3rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: #9a8f89;
  letter-spacing: 0.01em;
}

.pricing-list {
  margin-top: 0.25rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pricing-list--airy {
  gap: 0.34rem;
}

.pricing-list li::before {
  content: none;
}

.pricing-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0.12rem 0 0.62rem;
  border-bottom: 1px dashed #c17a55;
}

.pricing-item__name {
  font-size: 0.96rem;
  color: #5f5853;
}

.pricing-item__price {
  font-size: 1rem;
  font-weight: 600;
  color: #4a4743;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── Pricing accordion ─────────────────────────────────────── */
.pricing-item > .pricing-detail {
  grid-column: 1 / -1; /* span both grid columns of .pricing-item */
}

.pricing-detail > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
  outline: none;
}

.pricing-detail > summary::-webkit-details-marker {
  display: none;
}

.pricing-detail__right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pricing-detail__chevron {
  width: 13px;
  height: 13px;
  color: #b8afa8;
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.15s ease;
}

.pricing-detail[open] .pricing-detail__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.pricing-detail[open] > summary .pricing-item__name {
  color: var(--accent);
}

.pricing-detail[open] .pricing-detail__body:first-of-type,
.pricing-detail[open] .pricing-detail__list:first-child {
  border-top: 1px solid rgba(193, 122, 85, 0.18);
  padding-top: 0.45rem;
  margin-top: 0.35rem;
}

.pricing-detail > summary:hover .pricing-item__name {
  color: var(--accent);
}

.pricing-detail > summary:hover .pricing-detail__chevron {
  color: var(--accent);
}

.pricing-detail__body {
  font-size: 0.875rem;
  color: #675c55;
  line-height: 1.65;
  margin: 0.5rem 0 0.15rem;
  padding-right: 1.6rem;
  animation: pricing-detail-in 0.18s ease both;
}

@keyframes pricing-detail-in {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pricing-detail__list {
  font-size: 0.875rem;
  color: #675c55;
  line-height: 1.65;
  margin: 0.1rem 0 0.25rem 0;
  padding: 0;
  list-style: none;
  animation: pricing-detail-in 0.18s ease both;
}

.pricing-detail__list li {
  padding: 0.05rem 0 0.05rem 1rem;
  position: relative;
  margin: 0;
}

.pricing-detail__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #c4bbb5;
}
/* ─────────────────────────────────────────────────────────── */

.pricing-note {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border);
  line-height: 1.6;
  font-size: 0.92rem;
  text-align: left;
  color: #675c55;
}

.pricing-cta-wrap {
  margin-top: 0.75rem;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(74, 71, 67, 0.15);
}

.pricing-card--featured {
  background: linear-gradient(
    135deg,
    var(--surface-card-featured-top),
    var(--surface-card-featured-mid),
    var(--surface-card-featured-bottom)
  );
  box-shadow: 0 18px 40px rgba(74, 71, 67, 0.16);
}

.pricing-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(74, 71, 67, 0.18);
}

@media (max-width: 1180px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .pricing-side {
    grid-template-columns: 1fr;
  }

  .pricing-card--primary,
  .pricing-card--compact {
    padding: 1.55rem 1.25rem;
  }

  .pricing-meta {
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.95rem;
  }

  .pricing-kicker {
    text-align: left;
  }

  .pricing-meta__item {
    font-size: 0.78rem;
  }
}

.booking-shell {
  position: relative;
  padding: 2.25rem 1.25rem 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 247, 0.9),
    rgba(247, 239, 231, 0.78)
  );
  box-shadow:
    0 18px 42px rgba(89, 64, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.booking-live-note {
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 auto 1rem;
  padding: 0.9rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(95, 127, 103, 0.26);
  background: linear-gradient(
    180deg,
    rgba(95, 127, 103, 0.12),
    rgba(95, 127, 103, 0.08)
  );
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow:
    0 8px 18px rgba(95, 127, 103, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.booking-live-dot {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(95, 127, 103, 0.12);
}

.booking-embed-shell {
  overflow: hidden;
  border-radius: 26px;
  border: 3px solid rgba(95, 127, 103, 0.3);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 32px rgba(89, 64, 48, 0.06),
    0 0 0 4px rgba(95, 127, 103, 0.1),
    0 18px 36px rgba(95, 127, 103, 0.08);
}

.booking-embed {
  display: block;
  border-radius: 26px;
  background: white;
}

.booking-mobile-card {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(249, 242, 235, 0.94)
  );
  box-shadow:
    0 12px 28px rgba(89, 64, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.booking-desktop-card {
  max-width: 34rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(249, 242, 235, 0.96)
  );
  box-shadow:
    0 14px 32px rgba(89, 64, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body.desktop-booking-fallback .booking-embed-shell {
  display: none;
}

body.desktop-booking-fallback .booking-live-note {
  display: none;
}

body.desktop-booking-fallback .booking-desktop-card {
  display: block;
}

.booking-mobile-meta {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: #7a6f68;
}

.contact-card {
  background: linear-gradient(
    180deg,
    rgba(255, 252, 249, 0.9),
    rgba(247, 239, 231, 0.84)
  );
  box-shadow:
    0 14px 32px rgba(89, 64, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.review-widget-section {
  position: relative;
  overflow: hidden;
}

.review-widget-section::before,
.review-widget-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
}

.review-widget-section::before {
  top: 2rem;
  left: 4%;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(223, 188, 164, 0.24) 0%,
    rgba(223, 188, 164, 0) 72%
  );
}

.review-widget-section::after {
  right: 3%;
  bottom: 2rem;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(192, 122, 85, 0.16) 0%,
    rgba(192, 122, 85, 0) 74%
  );
}

.review-widget-shell {
  display: none;
}

.review-widget-title {
  margin: 0.4rem 0 1.6rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.2;
  font-weight: 600;
  color: #4a4743;
}

.review-widget-summarybar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 1.8rem;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    var(--surface-card-featured-top),
    var(--surface-card-featured-mid),
    var(--surface-card-featured-bottom)
  );
  box-shadow:
    0 16px 34px rgba(74, 71, 67, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.review-widget-summary-main {
  min-width: 0;
}

.review-widget-google {
  margin: 0 0 0.45rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.42rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #6c584b;
}

.review-widget-google-wordmark {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.review-widget-google-suffix {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #8a5a42;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #ea4335;
}

.g-yellow {
  color: #fbbc05;
}

.g-green {
  color: #34a853;
}

.review-widget-score-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.review-widget-score {
  font-size: clamp(2.5rem, 5vw, 3.1rem);
  line-height: 1;
  font-weight: 700;
  color: #4a4743;
  letter-spacing: -0.02em;
}

.review-widget-stars,
.review-widget-card-stars {
  margin: 0;
  color: #c79520;
  letter-spacing: 0.12em;
}

.review-widget-stars {
  font-size: 1.25rem;
}

.review-widget-card-stars {
  font-size: 1.05rem;
}

.review-widget-total {
  margin: 0.3rem 0 0;
  color: #7a6f68;
  font-size: 0.88rem;
  line-height: 1.4;
}

.review-widget-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.4rem;
}

.review-widget-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 0.86rem 1.2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.review-widget-btn--review {
  color: #fff;
  border-color: rgba(98, 74, 59, 0.8);
  background: linear-gradient(180deg, #7d5d4a 0%, #65493a 100%);
  box-shadow:
    0 10px 20px rgba(86, 63, 49, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.review-widget-btn--review:hover {
  transform: translateY(-1px);
  border-color: rgba(86, 65, 52, 0.92);
  background: linear-gradient(180deg, #735543 0%, #553d30 100%);
  box-shadow:
    0 14px 24px rgba(76, 56, 44, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.review-widget-profile-link {
  align-self: center;
  color: #8b654f;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 101, 79, 0.38);
  line-height: 1.2;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.review-widget-profile-link:hover {
  color: #6d4f3f;
  border-bottom-color: rgba(109, 79, 63, 0.56);
}

.review-widget-status {
  margin: 0.6rem 0 0;
  color: #6a625d;
  font-size: 0.88rem;
}

.review-widget-status--ok {
  color: var(--green);
}

.review-widget-status--error {
  color: #a05a36;
}

.review-widget-carousel {
  position: relative;
  margin-top: 0.55rem;
}

.review-widget-viewport {
  overflow: hidden;
}

.review-widget-track {
  display: flex;
  align-items: stretch;
  gap: 1.1rem;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-widget-track > .review-widget-card {
  flex: 0 0 calc((100% - 2.2rem) / 3);
}

.review-widget-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(247, 243, 238, 0.92)
  );
  backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 6px 14px rgba(89, 64, 48, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.review-widget-nav:hover:not(:disabled) {
  transform: translateY(calc(-50% - 2px));
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 246, 241, 0.97)
  );
  box-shadow:
    0 12px 22px rgba(89, 64, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.review-widget-nav:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

#google-reviews-prev {
  left: -1.25rem;
}

#google-reviews-next {
  right: -1.25rem;
}

.review-widget-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.review-widget-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: none;
  background: rgba(106, 98, 93, 0.4);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.review-widget-dot--active {
  background: var(--accent);
  transform: scale(1.2);
}

.review-widget-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.4rem;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    var(--surface-card-top),
    var(--surface-card-mid),
    var(--surface-card-bottom)
  );
  box-shadow:
    0 14px 32px rgba(74, 71, 67, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.review-widget-card:not(.review-widget-card--skeleton):hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 44px rgba(74, 71, 67, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.review-widget-card-top {
  margin-bottom: 0.9rem;
}

.review-widget-card-author-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.review-widget-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--border-muted);
}

.review-widget-avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: linear-gradient(
    135deg,
    var(--surface-card-top),
    var(--surface-card-bottom)
  );
  border: 1px solid var(--border-soft);
}

.review-widget-card-author {
  margin: 0.3rem 0 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: #433b35;
  letter-spacing: 0.01em;
}

.review-widget-meta {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: #9a8f88;
}

.review-widget-card-text {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: #504840;
  line-height: 1.68;
  flex: 1;
}

.review-widget-card-note {
  margin: 0;
  font-size: 0.9rem;
  color: #6b625b;
  line-height: 1.5;
}

.review-widget-card-title {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #433b35;
}

.review-widget-card--fallback {
  grid-column: 1 / -1;
}

.review-widget-card--skeleton {
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.review-widget-card--skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: review-shimmer 1.6s infinite;
}

@keyframes review-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
}

.faq-section::before {
  top: 2.5rem;
  left: 4%;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(223, 188, 164, 0.28) 0%,
    rgba(223, 188, 164, 0) 72%
  );
}

.faq-section::after {
  right: 3%;
  bottom: 1rem;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(192, 122, 85, 0.16) 0%,
    rgba(192, 122, 85, 0) 74%
  );
}

.faq-shell {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 247, 0.92),
    rgba(247, 239, 231, 0.78)
  );
  border: 1px solid rgba(193, 122, 85, 0.14);
  border-radius: 34px;
  padding: 2.2rem 1.4rem;
  box-shadow:
    0 18px 42px rgba(89, 64, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.faq-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0) 42%
  );
  pointer-events: none;
}

.faq-intro {
  max-width: 36rem;
  margin: 0 auto;
  color: #675d56;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(193, 122, 85, 0.12);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(251, 245, 239, 0.94)
  );
  box-shadow:
    0 8px 22px rgba(89, 64, 48, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(193, 122, 85, 0.22);
  box-shadow:
    0 12px 28px rgba(89, 64, 48, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.faq-item.is-open {
  border-color: rgba(193, 122, 85, 0.26);
  background: linear-gradient(
    180deg,
    rgba(255, 252, 249, 0.98),
    rgba(247, 237, 228, 0.98)
  );
  box-shadow:
    0 14px 30px rgba(89, 64, 48, 0.08),
    0 0 0 1px rgba(193, 122, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.faq-item--wide {
  background: linear-gradient(
    180deg,
    rgba(255, 252, 249, 0.94),
    rgba(247, 237, 228, 0.96)
  );
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  min-width: 2.55rem;
  height: 2.55rem;
  border-radius: 15px;
  border: 1px solid rgba(193, 122, 85, 0.18);
  background: linear-gradient(
    180deg,
    rgba(250, 242, 235, 1),
    rgba(238, 220, 205, 0.98)
  );
  box-shadow:
    0 6px 14px rgba(160, 90, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  color: #8e5b42;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.faq-item.is-open .faq-badge {
  border-color: rgba(193, 122, 85, 0.28);
  box-shadow:
    0 8px 18px rgba(160, 90, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.faq-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.05rem;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #433b35;
  line-height: 1.35;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: none;
}

.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(193, 122, 85, 0.08);
  color: var(--accent);
  transition:
    transform 0.3s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(193, 122, 85, 0.14);
  color: #a45b3a;
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.32s ease,
    opacity 0.22s ease;
}

.faq-item.is-open .faq-answer-wrap {
  max-height: 280px;
  opacity: 1;
}

.faq-answer {
  margin: 0;
  color: #675c55;
  font-size: 0.95rem;
  line-height: 1.68;
  padding-top: 0.7rem;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--glass-radius);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 2px 8px rgba(193, 122, 85, 0.08);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  padding: 1.2em;
  margin-bottom: 1em;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(193, 122, 85, 0.16);
  transform: scale(1.03);
}

.feature li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header nav {
  flex-wrap: nowrap;
  gap: 1rem;
}

header nav a {
  white-space: nowrap;
}

/* Behandler-seksjon styling */
.behandler-stack {
  display: grid;
  gap: 1.35rem;
}

.behandler-card {
  align-items: stretch;
  column-gap: 2.25rem;
  row-gap: 1.2rem;
  padding: 2rem;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 249, 0.96),
    rgba(246, 239, 232, 0.98)
  );
  box-shadow:
    0 16px 34px rgba(74, 71, 67, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.behandler-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 30rem;
}

.behandler-role {
  margin-bottom: 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #8a5a42;
}

.behandler-navn {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.behandler-text {
  margin: 0;
  color: #564f49;
  font-size: 1.02rem;
  line-height: 1.72;
}

.behandler-bilde {
  width: min(100%, 252px);
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 20px;
  border: 1px solid var(--border-muted);
  box-shadow:
    0 14px 30px rgba(193, 122, 85, 0.1),
    0 4px 12px rgba(74, 71, 67, 0.07);
}

.cta-knapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  box-shadow:
    0 12px 26px rgba(160, 90, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.015em;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #cf8a63 0%, #bf734a 55%, #a45b3a 100%);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    background-position 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-knapp::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.cta-knapp:hover {
  box-shadow:
    0 16px 32px rgba(160, 90, 58, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #fff;
  transform: translateY(-2px);
  filter: saturate(1.05);
  background-position: 100% 50%;
}

.cta-knapp:active {
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(160, 90, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-knapp:focus-visible {
  outline: 3px solid rgba(193, 122, 85, 0.28);
  outline-offset: 3px;
}

.cta-knapp--compact {
  min-height: 44px;
  border-radius: 15px;
  padding: 0.72rem 1.15rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.cta-knapp--card {
  min-height: 48px;
  padding: 0.85rem 1.35rem;
}

.cta-knapp--wide {
  width: 100%;
  max-width: 190px;
}

.cta-knapp--full {
  width: 100%;
  max-width: none;
}

/* Sekundær knapp */
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--accent, #c17a55);
  color: var(--accent, #c17a55);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}
.secondary-btn:hover {
  background: var(--accent, #c17a55);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193,122,85,0.22);
}

/* Stegindikator */
.steg-indikator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.steg-indikator .steg {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
}
.steg-indikator .steg.active {
  color: var(--accent);
}
.steg-indikator .steg.done {
  color: var(--green);
}

.svg-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  fill: var(--accent);
  margin-right: 0.5em;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193, 122, 85, 0.1);
}

/* Økte touch-targets for form-elementer på mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 42px;
  }

  section[id] {
    scroll-margin-top: 42px;
  }

  .hero-media-bg img {
    width: 100%;
    max-width: 100%;
    object-position: 52% 28%;
    transform: none;
    filter: saturate(0.8) contrast(0.94) brightness(0.96) sepia(0.22);
  }

  .cta-knapp {
    min-height: 48px;
    padding: 0.82rem 1.3rem;
    font-size: 1rem;
  }

  .cta-knapp--compact {
    min-height: 46px;
    padding: 0.72rem 1.05rem;
  }

  .cta-knapp--wide {
    max-width: 210px;
  }

  .section-transition {
    padding: 0.35rem 1rem 0;
  }

  .section-transition__inner {
    gap: 0.7rem;
    max-width: 28rem;
  }

  .section-transition__ornament {
    width: 0.35rem;
    height: 0.35rem;
  }

  .behandler-card {
    padding: 1.25rem;
    column-gap: 1.2rem;
    row-gap: 0.9rem;
    border-radius: 24px;
  }

  .behandler-stack {
    gap: 1rem;
  }

  .behandler-navn {
    margin-bottom: 0.7rem;
    font-size: 1.42rem;
  }

  .behandler-text {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .behandler-bilde {
    width: min(100%, 210px);
    border-radius: 18px;
  }

  .booking-shell {
    padding: 1.6rem 0.9rem 0.9rem;
    border-radius: 24px;
  }

  .booking-live-note {
    margin-bottom: 0.9rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
  }

  .booking-embed-shell {
    border-radius: 20px;
  }

  .booking-embed {
    border-radius: 20px;
  }

  .review-widget-shell {
    display: none;
  }

  .review-widget-title {
    margin: 0.3rem 0 1.2rem;
    font-size: 2rem;
    text-align: left;
  }

  .review-widget-summarybar {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.2rem 1.2rem;
    border-radius: 18px;
  }

  .review-widget-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  .review-widget-btn {
    width: 100%;
    min-width: 0;
  }

  .review-widget-profile-link {
    align-self: flex-start;
    margin-left: 0.1rem;
  }

  .review-widget-carousel {
    margin-top: 0.45rem;
  }

  .review-widget-track > .review-widget-card {
    flex-basis: 100%;
  }

  .review-widget-card {
    padding: 1.15rem 2.75rem;
    border-radius: 16px;
  }

  .review-widget-nav {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.9rem;
  }

  #google-reviews-prev {
    left: 0.25rem;
  }

  #google-reviews-next {
    right: 0.25rem;
  }

  .faq-shell {
    padding: 1.5rem 0.9rem;
    border-radius: 24px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.9rem 0.9rem;
    border-radius: 18px;
  }

  .faq-badge {
    width: 2.35rem;
    min-width: 2.35rem;
    height: 2.35rem;
    border-radius: 14px;
  }

  .faq-content {
    padding-top: 0;
  }

  .faq-question {
    font-size: 0.98rem;
  }

  .faq-answer {
    font-size: 0.92rem;
  }

  input,
  textarea {
    padding: 16px;
    font-size: 16px; /* Forhindrer zoom på iOS */
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  header nav {
    gap: 0.85rem;
  }

  header nav a:not(.cta-knapp) {
    font-size: 0.95rem;
  }

  .cta-knapp--compact {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

/* Sticky mobile booking button */
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 40;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
  }

  .sticky-mobile-cta__book {
    flex: 65;
    display: block;
    text-align: center;
    padding: 14px 12px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.015em;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #cf8a63 0%, #bf734a 55%, #a45b3a 100%);
    box-shadow:
      0 12px 24px rgba(160, 90, 58, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .sticky-mobile-cta__book:active {
    transform: translateY(1px);
    box-shadow: 0 8px 18px rgba(160, 90, 58, 0.18);
  }

  .sticky-mobile-cta--full .sticky-mobile-cta__book {
    flex: 1;
  }

  .sticky-mobile-cta__prices {
    flex: 35;
    display: block;
    text-align: center;
    padding: 14px 12px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.015em;
    text-decoration: none;
    color: #bf734a;
    background: transparent;
    border: 1.5px solid rgba(193, 122, 85, 0.5);
    transition:
      background 0.2s ease,
      border-color 0.2s ease;
  }

  .sticky-mobile-cta__prices:active {
    background: rgba(193, 122, 85, 0.08);
    border-color: #bf734a;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* enkel parallax-bakgrunn - justert for Safari */
.parallax {
  background: url("https://via.placeholder.com/1200x400") center/cover no-repeat;
  height: 400px;
  transform: translateZ(0); /* Hardware acceleration */
}

footer.site-footer {
  background: linear-gradient(180deg, #f6efe8, #f2e7dc) !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563;
  border-top: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

footer.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

footer.site-footer .footer-links a {
  color: #4b5563;
  text-decoration: none;
}

footer.site-footer .footer-links a:hover {
  text-decoration: underline;
}

footer.site-footer .footer-info {
  margin-bottom: 1.5rem;
}

footer.site-footer .footer-info p {
  margin-bottom: 0.5rem;
}

footer.site-footer .footer-info a {
  color: #4b5563;
  text-decoration: none;
}

footer.site-footer .footer-info a:hover {
  text-decoration: underline;
}

footer.site-footer .footer-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 16rem;
  opacity: 0.20;
  pointer-events: none;
  user-select: none;
}

footer.site-footer .footer-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Modal for tilbakemelding */
#feedbackModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
#feedbackModal .modal-content {
  max-width: 520px;
  margin: 10vh auto;
  background: white;
  padding: 32px;
  border-radius: 14px;
}

/* Listepunkter i personvern/betingelser */
ul.list-disc {
  list-style-type: disc;
  margin-left: 1.5rem;
}

/* ============================================================
   TRUST TICKER
   ============================================================ */
.trust-ticker {
  overflow: hidden;
  background: var(--card, #faf7f4);
  border-top: 1px solid var(--border, rgba(193,122,85,0.18));
  border-bottom: 1px solid var(--border, rgba(193,122,85,0.18));
  padding: 10px 0;
}

.trust-ticker__inner {
  display: flex;
  width: max-content;
  animation: ticker-scroll 125s linear infinite;
}

.trust-ticker:hover .trust-ticker__inner {
  animation-play-state: paused;
}

.trust-ticker__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-ticker__item {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent, #c17a55);
  padding: 0 18px;
}

.trust-ticker__sep {
  display: inline-block;
  color: var(--border, rgba(193,122,85,0.4));
  font-size: 0.75rem;
  vertical-align: middle;
}

/* ============================================================
   NAV PHONE LINK
   ============================================================ */
.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent, #c17a55);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-phone-link:hover {
  color: #a45b3a;
  text-decoration: underline;
}

/* ============================================================
   USIKKER CTA
   ============================================================ */
.usikker-cta {
  padding: 28px 24px;
  background: var(--card, #faf7f4);
  border: 1px solid var(--border, rgba(193,122,85,0.18));
  border-radius: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.usikker-cta__text {
  font-size: 1rem;
  color: #6b6562;
  margin-bottom: 8px;
}

.usikker-cta__link {
  display: inline-block;
  color: var(--accent, #c17a55);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.usikker-cta__link:hover {
  color: #a45b3a;
  text-decoration: underline;
}

/* ============================================================
   FILOSOFI BLOCK
   ============================================================ */
.filosofi-block {
  padding: 0 16px;
}

.filosofi-block .section-divider {
  margin: 16px auto 20px;
}

/* ============================================================
   DARK SECTION (filosofi / brand statement)
   ============================================================ */
.section-dark {
  background: #2a1c14;
}

.section-kicker--dark {
  color: rgba(193, 122, 85, 0.9);
}

.section-divider--dark {
  background: rgba(193, 122, 85, 0.35);
}

/* ============================================================
   TRUST PILLARS
   ============================================================ */
.trust-pillars {
  padding: 0 8px;
}

.trust-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .trust-pillars__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .trust-pillars__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-pillar {
  background: var(--card, #faf7f4);
  border: 1px solid var(--border, rgba(193,122,85,0.18));
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.trust-pillar:hover {
  box-shadow: 0 8px 24px rgba(193,122,85,0.12);
  transform: translateY(-2px);
}

.trust-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(193,122,85,0.10);
  color: var(--accent, #c17a55);
  margin: 0 auto 14px;
}

.trust-pillar__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #4a4743;
  margin-bottom: 8px;
  line-height: 1.3;
}

.trust-pillar__body {
  font-size: 0.82rem;
  color: #7a7572;
  line-height: 1.55;
}

/* ============================================================
   STICKY MOBILE CTA – HIDDEN STATE
   ============================================================ */
.sticky-mobile-cta--hidden {
  display: none !important;
}

/* ============================================================
   HEADER – SCROLL-STATE + REFINED NAV
   ============================================================ */

.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.header--scrolled {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(193, 122, 85, 0.14);
}

/* Nav-lenker */
header nav a.nav-link {
  color: #6b5b53;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 0.2s ease;
}

header nav a.nav-link:hover {
  color: var(--accent, #c17a55);
  text-decoration: none;
}

/* Separator mellom tlf og CTA */
.nav-sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(193, 122, 85, 0.28);
  vertical-align: middle;
  margin: 0 4px;
  flex-shrink: 0;
}
