/* Tandvården Vasa, No Frame demo
   Arketyp A5 clinical-soft. Lugn, ljus, trust-first.
   Signatur: den öppna prislistan med expanderbara rader. */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg: #f5f7f5;
  --bg-tint: #edf1ee;
  --white: #fff;

  --sage: #5a8072;          /* accent, ikoner, linjer */
  --sage-btn: #4d7365;      /* fylld knapp med vit text, 5.3:1 */
  --sage-deep: #3c5a4e;     /* rubriker */
  --sage-label: #4e7767;    /* liten salviatext, 4.7:1 mot bakgrunden */
  --sage-soft: #e7eee9;     /* mjuka plattor */
  --sage-band: #dde8e2;     /* bandbakgrund */

  --ink: #3a403c;
  --muted: #5c6660;

  --line: #3c5a4e1f;
  --line-soft: #3c5a4e12;

  --shadow: 0 2px 16px #3c5a4e0f;
  --shadow-md: 0 8px 28px #3c5a4e14;
  --shadow-lg: 0 20px 48px #3c5a4e1a;

  --r-xl: 20px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 10px;

  --head-h: 62px;
  --pad-sec: clamp(56px, 7vw, 104px);
  --pl-pad: 16px;

  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235a8072' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3.2 3.2L13 4.9'/%3E%3C/svg%3E");
}

@media (min-width: 900px) {
  :root {
    --head-h: 76px;
    --pl-pad: 22px;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 900px) { body { font-size: 1.0625rem; } }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--sage-deep);
  margin: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
  letter-spacing: -0.015em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--sage-btn);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--sage-btn);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top .18s ease;
}
.skip:focus { top: 12px; }

.container {
  width: min(1180px, 100% - 32px);
  margin-inline: auto;
  position: relative;
}

@media (min-width: 900px) {
  .container { width: min(1180px, 100% - 64px); }
}

.sec { padding: var(--pad-sec) 0; }
.sec-white { background: var(--white); }
.sec-sage { background: var(--sage-band); }

section[id] { scroll-margin-top: calc(var(--head-h) + 14px); }

/* ---------- Knappar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn svg { width: 19px; height: 19px; flex: none; }

.btn-solid {
  background: var(--sage-btn);
  color: #fff;
  box-shadow: 0 2px 10px #3c5a4e26;
}
.btn-solid:hover { background: #446755; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: #3c5a4e33;
  color: var(--sage-deep);
}
.btn-ghost:hover { background: var(--sage-soft); border-color: #3c5a4e4d; }

.btn-lg {
  min-height: 56px;
  padding: 15px 30px;
  font-size: 1.0625rem;
}

/* ---------- Header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f5f7f5eb;
  transition: box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}

@supports (backdrop-filter: blur(10px)) {
  .site-head { background: #f5f7f5cc; backdrop-filter: blur(12px); }
}

.site-head.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 14px #3c5a4e10;
}

.head-inner {
  width: min(1180px, 100% - 32px);
  margin-inline: auto;
  min-height: var(--head-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 900px) {
  .head-inner { width: min(1180px, 100% - 64px); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
  padding: 6px 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 11px;
  background: var(--sage);
  color: #fff;
}
.brand-mark svg { width: 26px; height: 26px; }

.brand-text {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-accent { color: var(--sage-label); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
.site-nav li a:hover { background: var(--sage-soft); color: var(--sage-deep); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-tel {
  display: none;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--sage-deep);
  text-decoration: none;
  white-space: nowrap;
}
.nav-tel:hover { color: var(--sage); }

.nav-cta { min-height: 44px; padding: 10px 20px; font-size: 0.98rem; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 14px 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sage-deep);
  cursor: pointer;
}

.menu-bars {
  display: grid;
  gap: 4px;
  width: 18px;
}
.menu-bars i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--sage);
  transition: transform .22s ease, opacity .18s ease;
}
body.menu-open .menu-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-bars i:nth-child(2) { opacity: 0; }
body.menu-open .menu-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 899px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 8px 16px 18px;
  }
  body.menu-open .site-nav { display: block; }

  .site-nav ul { display: block; }
  .site-nav li a {
    min-height: 54px;
    padding: 0 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.06rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 500;
    width: 100%;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .nav-tel {
    display: inline-flex;
    justify-content: center;
    min-height: 50px;
    border: 1px solid #3c5a4e33;
    border-radius: 999px;
    padding: 0 14px;
  }
  .nav-cta { min-height: 50px; }
}

@media (min-width: 900px) {
  .menu-btn { display: none; }
  .nav-tel { display: inline-flex; }
  .site-nav { display: flex; align-items: center; gap: 20px; }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .nav-tel { display: none; }
  .site-nav li a { padding: 0 9px; font-size: 0.94rem; }
}

/* ---------- Hero ---------- */

.hero { padding: clamp(30px, 5vw, 66px) 0 clamp(40px, 5vw, 74px); }

.hero-grid {
  display: grid;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--sage-deep);
  box-shadow: var(--shadow);
}
.chips svg { width: 16px; height: 16px; color: var(--sage); flex: none; }

.hero-title {
  font-size: clamp(2.05rem, 1.25rem + 3.4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--sage); }

.hero-lead {
  font-size: clamp(1.04rem, 1rem + 0.3vw, 1.22rem);
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-fine {
  font-size: 0.94rem;
  color: var(--muted);
}

.hero-media { position: relative; }

.hero-blob {
  display: none;
  position: absolute;
  z-index: 0;
  inset: 26px -18px -18px 26px;
  border-radius: var(--r-xl);
  background: var(--sage-soft);
}

.hero-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sage-soft);
}
/* 01.webp har en vit remsa fran rad 645 av 787 i kallfilen. Bilden gors 123%
   hog och toppstalls, sa remsan hamnar under den beskurna boxen. */
.hero-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 123%;
  object-fit: cover;
}

.hero-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
}
.hero-card-icon svg { width: 21px; height: 21px; }

.hero-card-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.hero-card-text strong {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 2px;
}

@media (min-width: 760px) {
  .hero-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    margin-top: 0;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.04fr 1fr; }
  .hero-blob { display: block; }
  .hero-photo { aspect-ratio: 5 / 6; }
  .hero-card { left: 26px; right: 26px; bottom: 26px; }
}

@media (min-width: 1120px) {
  .hero-card { right: 34%; left: 26px; }
}

/* ---------- Trust-rad ---------- */

.trust {
  padding: 0 0 clamp(14px, 3vw, 26px);
}

.trust-grid {
  display: grid;
  gap: 6px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border-radius: var(--r-lg);
}
.trust-item + .trust-item { border-top: 1px solid var(--line-soft); }

.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
}
.trust-icon svg { width: 22px; height: 22px; }

.trust-item h2 {
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.trust-item p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (min-width: 820px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item + .trust-item {
    border-top: 0;
    border-left: 1px solid var(--line-soft);
  }
}

/* ---------- Sektionshuvuden ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage-label);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow-light { color: #33564a; }

.sec-head { max-width: 45rem; margin-bottom: clamp(30px, 4vw, 48px); }

.sec-title {
  font-size: clamp(1.62rem, 1.2rem + 1.9vw, 2.5rem);
  font-weight: 600;
  line-height: 1.14;
  margin-bottom: 14px;
}

.sec-lead {
  font-size: clamp(1rem, .97rem + .25vw, 1.14rem);
  color: var(--muted);
  max-width: 40em;
}

/* ---------- Behandlingskort ---------- */

.cards {
  display: grid;
  gap: 14px;
}

@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  transition: background-color .25s ease;
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { background: #dae6df; }

.card h3 {
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.card-price {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-deep) !important;
  margin-bottom: 0 !important;
}

.cards-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  margin-top: clamp(24px, 3vw, 34px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cards-note p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 40em;
}
.cards-note .btn { flex: none; }

/* ---------- Prislistan, signaturen ---------- */

.prislista-grid {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

@media (min-width: 980px) {
  .prislista-grid { grid-template-columns: minmax(270px, .8fr) 1.2fr; }
}
@media (min-width: 1180px) {
  .pl-intro { position: sticky; top: calc(var(--head-h) + 28px); }
}

.pl-photo {
  margin-top: 28px;
  max-width: 420px;
}
.pl-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  background: var(--sage-soft);
}
.pl-photo-cap {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.prislista {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pl-head {
  display: flex;
  justify-content: space-between;
  padding: 13px var(--pl-pad);
  background: var(--sage-soft);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #33564a;
}

.pl-row + .pl-row { border-top: 1px solid var(--line-soft); }
.pl-row.open { background: #fafcfa; box-shadow: inset 3px 0 0 var(--sage); }

.pl-trigger {
  display: grid;
  grid-template-columns: 1fr auto 30px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 72px;
  padding: 16px var(--pl-pad);
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: background-color .18s ease;
}
.pl-trigger:hover { background: #f3f7f4; }

.pl-main { min-width: 0; }

.pl-name {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage-deep);
  line-height: 1.25;
}
.pl-meta {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

.pl-price {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--sage-deep);
  white-space: nowrap;
}

.pl-chev {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  transition: transform .3s ease, background-color .2s ease;
}
.pl-chev svg { width: 19px; height: 19px; }
.pl-trigger:hover .pl-chev { background: #d7e3db; }
.pl-row.open .pl-chev { transform: rotate(180deg); }

.pl-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s ease;
}
.pl-row.open .pl-body { grid-template-rows: 1fr; }

.pl-body-in {
  overflow: hidden;
  visibility: hidden;
  padding: 2px var(--pl-pad) 24px;
  transition: visibility 0s linear .34s;
}
.pl-row.open .pl-body-in { visibility: visible; transition-delay: 0s; }

.pl-body p {
  font-size: 0.97rem;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 46em;
}

.pl-inc {
  display: grid;
  gap: 7px;
}
.pl-inc li {
  position: relative;
  padding-left: 26px;
  font-size: 0.97rem;
  color: var(--ink);
}
.pl-inc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  background: var(--check) center / contain no-repeat;
}

.pl-note-small {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.pl-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 20px 22px;
  background: var(--sage-soft);
  border-radius: var(--r-lg);
}
.pl-note-icon {
  color: var(--sage);
  flex: none;
  margin-top: 1px;
}
.pl-note-icon svg { width: 24px; height: 24px; }
.pl-note p {
  font-size: 0.95rem;
  color: #3f4a44;
  margin-bottom: 8px;
}
.pl-note p:last-child { margin-bottom: 0; }
.pl-note strong { color: var(--sage-deep); }

/* ---------- Tandvårdsrädsla ---------- */

.trygghet-grid {
  display: grid;
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
}

@media (min-width: 940px) {
  .trygghet-grid { grid-template-columns: 1.08fr .92fr; }
}

.trygghet-copy .sec-title { max-width: 15ch; }

.trygghet-copy p {
  color: #3f4a44;
  max-width: 38em;
}

.trygghet-copy .lede {
  font-size: clamp(1.06rem, 1rem + .35vw, 1.24rem);
  color: #2f4b40;
}

.lugn-lista {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 22px 24px;
  background: #ffffffb8;
  border-radius: var(--r-lg);
}
.lugn-lista li {
  position: relative;
  padding-left: 24px;
  font-size: 0.99rem;
  color: #35443c;
}
.lugn-lista li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.lugn-quote {
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid var(--sage);
}
.lugn-quote p {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.34rem);
  font-weight: 500;
  line-height: 1.42;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.lugn-quote cite {
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 600;
  color: #3f4a44;
}

.trygghet-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sage-soft);
}
.trygghet-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.trygghet-cap {
  margin: 14px 2px 0;
  font-size: 0.9rem;
  color: #46534c;
}

@media (min-width: 940px) {
  .trygghet-photo img { aspect-ratio: 4 / 5; }
}

/* ---------- Teamet ---------- */

.team {
  display: grid;
  gap: 22px;
}

@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
@media (min-width: 960px) { .person-offset { margin-top: 34px; } }

.person-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--sage-soft);
  box-shadow: var(--shadow);
}
.person-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .5s ease;
}
.person:hover .person-photo img { transform: scale(1.03); }

.person h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.person-title {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-label);
  margin-bottom: 10px;
}
.person p:last-child {
  font-size: 0.97rem;
  color: var(--muted);
}

/* ---------- Omdömen ---------- */

.quotes {
  display: grid;
  gap: 20px;
}
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

.quote {
  position: relative;
  margin: 0;
  padding: 30px 28px 26px;
  background: var(--bg);
  border-radius: var(--r-xl);
}

.quote-mark {
  position: absolute;
  top: 6px;
  right: 24px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 4.6rem;
  line-height: 1;
  color: #5a807229;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars svg { width: 17px; height: 17px; fill: var(--sage); }

.quote blockquote { margin: 0 0 22px; }
.quote blockquote p {
  font-size: clamp(1.02rem, .98rem + .3vw, 1.14rem);
  color: #3b453f;
  line-height: 1.62;
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.quote figcaption img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: var(--sage-soft);
}
.quote figcaption span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}
.quote figcaption strong {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-deep);
}

/* ---------- Boka ---------- */

.boka-grid {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 940px) {
  .boka-grid { grid-template-columns: 1fr .92fr; align-items: stretch; }
  .boka-karta, .boka-karta .karta { height: 100%; }
}

.kontakt {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.kontakt-rad {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.kontakt-rad:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.kontakt-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
}
.kontakt-icon svg { width: 23px; height: 23px; }

.kontakt-rad span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: break-word;
}
.kontakt-rad strong {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
}

.oppet {
  padding: 26px 26px 24px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.oppet h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.oppet dl { margin: 0; }
.oppet dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.oppet dt { color: var(--muted); font-size: 0.97rem; }
.oppet dd {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--sage-deep);
  white-space: nowrap;
}
.oppet-akut {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.karta {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 940px) { .karta { min-height: 520px; } }

.karta-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.karta-kort {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) {
  .karta-kort { left: 20px; right: 20px; bottom: 20px; max-width: 330px; }
}

.karta-namn {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 4px;
}
.karta-adress {
  font-size: 0.97rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.karta-info {
  font-size: 0.89rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Footer ---------- */

.site-foot {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 5vw, 66px) 0 26px;
}

.foot-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 700px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; } }

.foot-brand .brand-mark { margin-bottom: 14px; }
.foot-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 8px;
}
.foot-name span { color: var(--sage-label); }
.foot-line {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 30em;
}

.foot-col h2 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage-label);
  margin-bottom: 12px;
}
.foot-col li {
  font-size: 0.96rem;
  color: var(--muted);
  padding: 1px 0;
}
.foot-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--muted);
}
.foot-col a:hover { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 4px; }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.86rem;
  color: var(--muted);
}
.foot-bottom p { margin: 0; }
.demo-note { color: #697570; }

/* ---------- Sticky mobil-CTA ---------- */

.mobil-cta {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px #3c5a4e14;
}
.mobil-cta .btn { width: 100%; min-height: 50px; font-size: 1rem; }
.mobil-cta .btn-ghost { background: var(--bg); }

@media (min-width: 900px) { .mobil-cta { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 78px; } }

/* ---------- Motion ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover,
  .kontakt-rad:hover,
  .btn-solid:hover { transform: none; }
  .person:hover .person-photo img { transform: none; }
  .pl-body { transition: none; }
  .pl-chev { transition: none; }
  .menu-bars i { transition: none; }
}
