/* ============================================================
   SAMSYN NORDIC — Shared Stylesheet
   Refined Scandinavian clinic aesthetic
   Cormorant Garamond + DM Sans
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --cream:       #F5F0EA;
  --cream-alt:   #EDE7DE;
  --cream-deep:  #E0D6CA;
  --green:       #2A6B5C;
  --green-dark:  #1C4D42;
  --green-light: #EBF3F0;
  --brown:       #8B6F4E;
  --brown-lt:    #C4A882;
  --text:        #1E1A17;
  --text-mid:    #5A4F48;
  --text-lt:     #9B8E86;
  --border:      #D8CFCA;
  --border-lt:   #EAE3DC;
  --white:       #FFFFFF;

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --r:     8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill:100px;

  --sh-sm: 0 1px 4px rgba(30,26,23,.06);
  --sh-md: 0 4px 20px rgba(30,26,23,.09), 0 1px 4px rgba(30,26,23,.04);
  --sh-lg: 0 8px 40px rgba(30,26,23,.11), 0 2px 8px rgba(30,26,23,.04);

  --max-w: 1140px;
  --nav-h: 72px;
}

/* ── High Contrast ─────────────────────────────────────── */
.hc {
  --cream:       #111;
  --cream-alt:   #1a1a1a;
  --cream-deep:  #222;
  --green:       #5ECEC3;
  --green-dark:  #7EE0DA;
  --green-light: #0d2926;
  --brown:       #E8B86D;
  --text:        #F0F0F0;
  --text-mid:    #D0D0D0;
  --text-lt:     #A0A0A0;
  --border:      #444;
  --border-lt:   #333;
  --white:       #1a1a1a;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
  overflow-x: hidden;
}
body.ls { line-height: 2.2; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--r); }
a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--green-dark); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 3px; }
p { margin-bottom: 1em; max-width: 68ch; }
ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: .3em; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  color: var(--text);
  line-height: 1.15;
  font-weight: 500;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .75rem; }
h3 { font-size: 1.4rem; margin-bottom: .5rem; }
h4 { font-size: 1.05rem; margin-bottom: .4rem; }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--cream-alt); }
.section-deep { background: var(--cream-deep); }
[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* ── Labels ────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.section-line {
  width: 36px; height: 2px; background: var(--green);
  border-radius: 2px; margin-top: 18px;
}
.section-line-c { margin: 18px auto 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-pill);
  font-family: var(--font-b); font-size: .88rem; font-weight: 500;
  text-decoration: none; border: 1.5px solid transparent;
  cursor: pointer; transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  line-height: 1;
}
.btn-primary {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark); color: #fff; border-color: var(--green-dark);
  transform: translateY(-1px); box-shadow: 0 4px 20px rgba(42,107,92,.35);
}
.btn-outline {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green); color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff; color: var(--green); border-color: #fff;
}
.btn-white:hover { background: var(--cream); color: var(--green-dark); transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(245,240,234,.9);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border-lt);
  transition: background .3s, box-shadow .3s;
}
.site-nav.scrolled {
  background: rgba(245,240,234,.97);
  box-shadow: 0 1px 24px rgba(30,26,23,.06);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: var(--nav-h);
}
.nav-logo {
  font-family: var(--font-h); font-size: 1.55rem; font-weight: 600;
  color: var(--text); text-decoration: none; letter-spacing: -.01em; flex-shrink: 0;
}
.nav-logo em { font-style: normal; color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: .84rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 8px 12px; border-radius: 6px;
  display: flex; align-items: center; gap: 4px;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green); }
.nav-caret { font-size: .55rem; opacity: .5; }

.nav-drop {
  position: absolute; top: calc(100% + 6px); left: -12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 6px; min-width: 260px;
  box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 10;
}
.nav-dropdown:hover .nav-drop,
.nav-dropdown:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop a {
  display: block; padding: 8px 14px;
  font-size: .82rem; color: var(--text-mid);
  text-decoration: none; border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav-drop a:hover { background: var(--green-light); color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Offset ────────────────────────────────────────── */
.page-top { padding-top: var(--nav-h); }

/* ── Page Header (inner pages) ──────────────────────────── */
.page-header {
  background: linear-gradient(155deg, var(--cream-alt) 0%, var(--cream) 100%);
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--border-lt);
}
.breadcrumb { font-size: .78rem; color: var(--text-lt); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-lt); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 6px; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.page-header .lead { font-size: 1rem; color: var(--text-mid); max-width: 54ch; margin-bottom: 0; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: calc(88vh - var(--nav-h));
  display: flex; align-items: center;
  background: var(--cream);
  padding: 72px 0; position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 55% at 78% 55%, rgba(42,107,92,.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1.5px; background: var(--green); border-radius: 1px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08; margin-bottom: 24px; letter-spacing: -.025em;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-lead {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 40px; max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }
.hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px; }
.hero-trust-item {
  font-size: .78rem; color: var(--text-lt);
  display: flex; align-items: center; gap: 7px;
}
.hero-trust-item:last-child { grid-column: auto; }
.hero-trust-item::before {
  content: ''; width: 5px; height: 5px; background: var(--green);
  border-radius: 50%; flex-shrink: 0;
}
.hero-visual {
  display: flex; justify-content: center; align-items: flex-end;
}
.hero-img-wrap {
  width: 100%; max-width: 420px;
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: auto; display: block;
}

/* ── Cards ──────────────────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); padding: 22px 24px;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-2px); box-shadow: var(--sh-md);
  border-color: rgba(42,107,92,.25);
}
.card-icon {
  margin-bottom: 16px;
  flex-shrink: 0;
  line-height: 0;
}
.card-icon img {
  width: 72px; height: 72px;
  border-radius: 0;
  margin: 0;
  display: block;
}
.card-icon svg {
  width: 72px; height: 72px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: .86rem; color: var(--text-mid); margin-bottom: 14px; }
.card p { flex: 1; }
.card-arrow { font-size: .82rem; font-weight: 500; color: var(--green); margin-top: auto; }

/* ── Process Steps ──────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.step { text-align: center; padding: 32px 20px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 500;
  margin: 0 auto 18px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .86rem; color: var(--text-mid); max-width: 22ch; margin: 0 auto; }

/* ── Symptom strip ──────────────────────────────────────── */
.symptom-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-lt); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); overflow: hidden;
}
.symptom-strip-item {
  background: var(--white); padding: 28px 24px;
  text-decoration: none; color: inherit;
  text-align: center;
  transition: background .2s;
}
.symptom-strip-item:hover { background: var(--green-light); }
.symptom-strip-item .num {
  font-family: var(--font-h); font-size: 2.5rem; color: var(--border);
  line-height: 1; margin-bottom: 12px; font-weight: 500;
}
.symptom-strip-item h3 { font-size: 1rem; margin-bottom: 6px; }
.symptom-strip-item p { font-size: .82rem; color: var(--text-mid); margin-bottom: 0; }

/* ── Condition / Treatment Layout ───────────────────────── */
.sub-nav {
  background: var(--white); border-bottom: 1px solid var(--border-lt);
  position: sticky; top: var(--nav-h); z-index: 98;
}
.sub-nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; gap: 0;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-link {
  white-space: nowrap; padding: 14px 18px;
  font-size: .82rem; font-weight: 500; color: var(--text-lt);
  text-decoration: none; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.sub-link:first-child { padding-left: 0; }
.sub-link:hover, .sub-link.active { color: var(--green); border-bottom-color: var(--green); }

.content-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start;
}
.content-body h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 32px; }
.content-body h2 { font-size: 1.45rem; margin-top: 40px; margin-bottom: 14px; }
.content-body h2:first-of-type { margin-top: 0; }
.content-body p { color: var(--text-mid); }
.content-body ul {
  list-style: none; padding: 0; margin-bottom: 1.2em;
  border-left: 2px solid var(--cream-deep); padding-left: 20px;
}
.content-body ul li {
  padding: 7px 0; font-size: .93rem; color: var(--text-mid);
  border-bottom: 1px solid var(--border-lt);
}
.content-body ul li:last-child { border-bottom: none; }

.sidebar { position: sticky; top: calc(var(--nav-h) + 80px); }
.sidebar-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px;
}
.sidebar-card h4 { font-size: .95rem; margin-bottom: 10px; }
.sidebar-card p { font-size: .83rem; color: var(--text-mid); }
.sidebar-divider { border: none; border-top: 1px solid var(--border-lt); margin: 14px 0; }
.sidebar-green {
  background: var(--green); border-radius: var(--r-lg);
  padding: 24px; text-align: center; margin-bottom: 16px;
}
.sidebar-green h4 { color: #fff; margin-bottom: 8px; }
.sidebar-green p { color: rgba(255,255,255,.8); font-size: .82rem; margin-bottom: 16px; }

/* CTA box (inline) */
.cta-box {
  background: var(--green-light); border: 1px solid rgba(42,107,92,.15);
  border-radius: var(--r-lg); padding: 36px; text-align: center; margin-top: 48px;
}
.cta-box h3 { font-size: 1.35rem; margin-bottom: 10px; }
.cta-box p { color: var(--text-mid); font-size: .88rem; margin-bottom: 20px; max-width: 100%; }

/* ── Pull Quote ─────────────────────────────────────────── */
.pull-quote {
  border-left: 3px solid var(--green);
  padding: 18px 24px;
  background: var(--green-light);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-h); font-size: 1.15rem; font-style: italic;
  margin: 32px 0; line-height: 1.55; color: var(--text);
}

/* ── Stat Cards ─────────────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.stat-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); padding: 28px; text-align: center;
}
.stat-num {
  font-family: var(--font-h); font-size: 3rem; font-weight: 500;
  color: var(--green); line-height: 1; margin-bottom: 8px;
}
.stat-desc { font-size: .82rem; color: var(--text-mid); }

/* ── About ──────────────────────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; }
.about-photo {
  position: sticky; top: calc(var(--nav-h) + 40px);
}
.photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(140deg, var(--cream-deep) 0%, var(--cream-alt) 100%);
  border-radius: var(--r-xl); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-lt); overflow: hidden;
}
.about-text h2 { margin-top: 36px; }
.about-text h2:first-child { margin-top: 0; }
.cred-list { list-style: none; padding: 0; }
.cred-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border-lt);
  font-size: .9rem; color: var(--text-mid);
}
.cred-list li:last-child { border-bottom: none; }
.cred-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.value-item {
  background: var(--cream-alt); border-radius: var(--r); padding: 18px;
  border-left: 3px solid var(--green-light);
}
.value-item strong { display: block; font-size: .88rem; margin-bottom: 4px; }
.value-item p { font-size: .82rem; color: var(--text-mid); margin: 0; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 0 auto 56px; }
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 100%; overflow: hidden; }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border-lt);
  border-radius: var(--r-lg); padding: 36px; position: relative;
  display: flex; flex-direction: column;
}
.pricing-card .pricing-features { flex: 1; }
.pricing-card .btn { margin-top: auto; }
.pricing-card.featured { border-color: var(--green); }
.pricing-badge {
  position: absolute; top: 0; right: 0;
  background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 0 var(--r-lg) 0 var(--r);
}
.pricing-type {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 6px;
}
.pricing-name { font-family: var(--font-h); font-size: 1.5rem; font-weight: 500; margin-bottom: 4px; }
.pricing-price {
  font-size: 3rem; font-weight: 300; color: var(--text); line-height: 1;
  margin: 16px 0 4px; display: flex; align-items: flex-start; gap: 4px;
}
.pricing-price sup { font-size: 1.1rem; margin-top: 8px; font-weight: 400; }
.pricing-price-unit { font-size: 1rem; align-self: flex-end; margin-bottom: 2px; font-weight: 400; color: var(--text-mid); }
.pricing-meta { font-size: .82rem; color: var(--text-mid); margin-bottom: 20px; }
.pricing-grid-3 .pricing-card {
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
}
.pricing-grid-3 .pricing-type { min-height: 1.4em; }
.pricing-grid-3 .pricing-meta { min-height: 2.8em; }
.pricing-divider { border: none; border-top: 1px solid var(--border-lt); margin: 20px 0; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0; font-size: .85rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border-lt);
}
.pricing-features li:last-child { border-bottom: none; }
.check-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-light); border: 1.5px solid var(--green);
  flex-shrink: 0; display: grid; place-items: center;
}
.check-icon svg { width: 9px; height: 9px; }

.price-banner {
  background: var(--green); color: #fff;
  border-radius: var(--r-lg); padding: 36px; text-align: center; margin-bottom: 64px;
}
.extra-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.extra-service-item {
  background: var(--cream-alt); border-radius: var(--r); padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .9rem;
}
.extra-service-item strong { color: var(--green); white-space: nowrap; margin-left: 12px; }
.price-banner h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.price-banner p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 auto; font-size: .9rem; }

/* ── Booking Cards ──────────────────────────────────────── */
.booking-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.booking-cards-3 { grid-template-columns: 1fr 1fr 1fr; }
.booking-card {
  background: var(--white); border: 1.5px solid var(--border-lt);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column;
}
.booking-card .booking-list { flex: 1; }
.booking-card .btn { margin-top: auto; }
.booking-card.featured { border-color: var(--green); }
.booking-price { font-size: 2.4rem; font-weight: 300; margin: 10px 0; }
.booking-duration { font-size: .82rem; color: var(--text-mid); margin-bottom: 16px; }
.booking-list { list-style: none; padding: 0; margin-bottom: 20px; }
.booking-list li {
  font-size: .82rem; color: var(--text-mid); padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.booking-list li::before { content: '✓'; color: var(--green); font-weight: 600; flex-shrink: 0; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-cat { margin-bottom: 48px; }
.faq-cat-title {
  font-family: var(--font-h); font-size: 1.25rem; color: var(--text);
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.faq-item { border-bottom: 1px solid var(--border-lt); }
.faq-item summary {
  padding: 18px 4px; cursor: pointer; list-style: none;
  font-weight: 500; font-size: .93rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cream-alt); border: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s, border-color .2s;
  font-size: 1.1rem; color: var(--green); font-weight: 300; line-height: 1;
}
.faq-item[open] .faq-toggle { background: var(--green); color: #fff; border-color: var(--green); }
.faq-item[open] .faq-toggle-icon { display: none; }
.faq-toggle-close { display: none; }
.faq-item[open] .faq-toggle-close { display: block; }
.faq-answer { padding: 0 4px 20px; color: var(--text-mid); font-size: .9rem; line-height: 1.8; }
.faq-answer p { margin-bottom: .7em; max-width: 100%; }
.faq-answer ul { margin-bottom: .7em; }

/* ── Contact Form ───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r-xl); padding: 48px; box-shadow: var(--sh-sm);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 13px 16px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font-b); font-size: .9rem;
  color: var(--text); transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--green);
  background: var(--white); box-shadow: 0 0 0 3px rgba(42,107,92,.1);
}
.form-control::placeholder { color: var(--text-lt); }
textarea.form-control { min-height: 130px; resize: vertical; line-height: 1.6; }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8E86' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .78rem; color: var(--text-lt); margin-top: 10px; }
.form-success {
  display: none; background: var(--green-light); border: 1px solid rgba(42,107,92,.25);
  border-radius: var(--r); padding: 20px; text-align: center;
  color: var(--green); font-weight: 500; margin-top: 16px;
}

.contact-sidebar-card {
  background: var(--cream-alt); border-radius: var(--r-lg); padding: 28px; margin-bottom: 16px;
}
.contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-detail:last-child { margin-bottom: 0; }
.cd-icon {
  width: 36px; height: 36px; background: var(--white);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid var(--border-lt); font-size: .95rem;
}
.cd-text strong {
  display: block; font-size: .7rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-lt); margin-bottom: 2px;
}
.cd-text p { margin: 0; font-size: .88rem; color: var(--text-mid); }

/* ── Blog ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.blog-card-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--cream-alt) 0%, var(--cream-deep) 100%);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .72rem; color: var(--text-lt); margin-bottom: 8px; }
.blog-card h3 { font-size: 1rem; line-height: 1.35; margin-bottom: 8px; flex: 1; }
.blog-card p { font-size: .83rem; color: var(--text-mid); margin-bottom: 12px; }
.blog-card-link { font-size: .8rem; font-weight: 500; color: var(--green); margin-top: auto; }

/* Blog article */
.article { max-width: 700px; }
.article-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border-lt); }
.article-meta { font-size: .78rem; color: var(--text-lt); margin-bottom: 16px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.12; margin-bottom: 20px; }
.article-lead { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; font-style: italic; }
.article h2 { font-size: 1.45rem; margin-top: 40px; margin-bottom: 14px; }
.article ul { list-style: none; padding: 0; border-left: 2px solid var(--cream-deep); padding-left: 20px; margin-bottom: 1.2em; }
.article ul li { padding: 5px 0; font-size: .93rem; color: var(--text-mid); }
.article p { color: var(--text-mid); }

/* ── Map / Location ─────────────────────────────────────── */
.map-box {
  background: var(--cream-alt); border-radius: var(--r-lg); padding: 40px;
  text-align: center; border: 1px solid var(--border-lt);
}
.map-address { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.map-sub { font-size: .88rem; color: var(--text-mid); margin-bottom: 20px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: #1A1714; color: #7A7268; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; align-items: start; }
.footer-logo { font-family: var(--font-h); font-size: 1.5rem; color: var(--cream); display: block; margin-bottom: 14px; text-decoration: none; }
.footer-tagline { font-size: .84rem; color: #5A5248; max-width: 26ch; }
.footer-col-head { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #B0A89C; margin-bottom: 16px; display: block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; font-size: .84rem; }
.footer-links a { font-size: .84rem; color: #5A5248; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: .75rem; color: #3A3530;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #3A3530; text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: #7A7268; }

/* ── Footer social icons ────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #7A7268;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.footer-social-link:hover {
  background: rgba(42,107,92,0.3);
  border-color: rgba(42,107,92,0.5);
  color: #D5E8E3;
  transform: translateY(-2px);
}

/* ── Accessibility Widget ───────────────────────────────── */
.a11y-btn {
  position: fixed; bottom: 24px; left: 24px; z-index: 2000;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 2px 14px rgba(42,107,92,.45); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.a11y-btn:hover { transform: scale(1.1); box-shadow: 0 4px 22px rgba(42,107,92,.55); }
.a11y-panel {
  position: fixed; bottom: 82px; left: 24px; z-index: 2000;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; width: 272px;
  box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.a11y-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.a11y-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.a11y-head h4 { font-family: var(--font-b); font-size: .88rem; font-weight: 600; }
.a11y-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-lt); padding: 4px; }
.a11y-group { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border-lt); }
.a11y-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.a11y-glabel { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-lt); display: block; margin-bottom: 10px; }
.a11y-size-row { display: flex; align-items: center; gap: 10px; }
.a11y-sbtn { width: 34px; height: 34px; border-radius: 7px; border: 1.5px solid var(--border); background: var(--cream); cursor: pointer; font-weight: 600; font-size: .9rem; transition: all .15s; }
.a11y-sbtn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.a11y-sval { font-size: .84rem; font-weight: 600; min-width: 42px; text-align: center; }
.a11y-toggle { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 5px 0; }
.a11y-tlabel { font-size: .85rem; font-weight: 500; }
.a11y-switch { width: 42px; height: 22px; background: var(--border); border-radius: 11px; position: relative; transition: background .2s; flex-shrink: 0; }
.a11y-switch.on { background: var(--green); }
.a11y-switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .2s; }
.a11y-switch.on::after { transform: translateX(20px); }
.a11y-reset { width: 100%; padding: 8px; background: transparent; border: 1.5px solid var(--border); border-radius: 7px; cursor: pointer; font-size: .8rem; font-weight: 500; color: var(--text-mid); transition: border-color .2s, color .2s; }
.a11y-reset:hover { border-color: var(--green); color: var(--green); }

/* ── Cookie Consent Banner ─────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  background: var(--white); border-top: 1px solid var(--border-lt);
  box-shadow: 0 -4px 24px rgba(30,26,23,.1);
  padding: 24px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-start; gap: 24px;
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text p {
  font-size: .88rem; color: var(--text-mid); margin-bottom: 0; max-width: 100%;
}
.cookie-banner-text a { color: var(--green); }
.cookie-banner-actions {
  display: flex; gap: 10px; flex-shrink: 0; align-items: center; flex-wrap: wrap;
}
.cookie-banner-actions .btn { white-space: nowrap; }
.cookie-banner-details {
  display: none; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-lt);
}
.cookie-banner-details.open { display: block; }
.cookie-cat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border-lt);
}
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat-info { flex: 1; }
.cookie-cat-name { font-size: .85rem; font-weight: 600; color: var(--text); }
.cookie-cat-desc { font-size: .78rem; color: var(--text-lt); }
.cookie-cat-badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); background: var(--green-light); padding: 3px 10px;
  border-radius: var(--r-pill);
}
.cookie-switch { width: 42px; height: 22px; background: var(--border); border-radius: 11px; position: relative; transition: background .2s; flex-shrink: 0; cursor: pointer; border: none; padding: 0; }
.cookie-switch.on { background: var(--green); }
.cookie-switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .2s; }
.cookie-switch.on::after { transform: translateX(20px); }
.cookie-banner-save { margin-top: 14px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: 2; max-width: 320px; margin: 0 auto; }
  .hero-img-wrap { max-width: 100%; }
  .hero-trust { gap: 4px 16px; }
  .hero-lead { max-width: 100%; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 360px; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .booking-badge { font-size: .58rem !important; padding: 2px 7px !important; letter-spacing: .05em !important; }
  .pricing-badge { font-size: .55rem; padding: 4px 10px; }
  .booking-cards {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .booking-cards .booking-card {
  }
  .booking-cards::after {
    content: '';
    position: sticky;
    right: 0;
    top: 0;
    flex-shrink: 0;
    width: 1px;
    align-self: stretch;
    box-shadow: -24px 0 20px 16px var(--cream);
    pointer-events: none;
    z-index: 2;
  }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .extra-services-grid { grid-template-columns: 1fr; }
  .extra-service-item { flex-direction: column; align-items: flex-start !important; gap: 6px; }
  .extra-service-item strong { margin-left: 0; font-size: 1.1rem; }
  .pricing-grid-3 {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 20%;
    gap: 14px;
    max-width: 100%;
    scrollbar-width: none;
  }
  .pricing-grid-3::-webkit-scrollbar { display: none; }
  .pricing-grid-3 .pricing-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .symptom-strip { grid-template-columns: 1fr; }
  .stat-row, .stat-row-4 { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 36px 0; }
  .hero-visual { max-width: 240px; }
  .hero-actions { margin-bottom: 32px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100dvh - var(--nav-h));
    background: var(--cream); padding: 16px; overflow-y: auto;
    border-top: 1px solid var(--border-lt); z-index: 999;
  }
  .nav-links > li > a { padding: 14px 16px; font-size: 1rem; border-radius: 8px; }
  .nav-drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--cream-alt); margin: 4px 0; }
  .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  .form-card { padding: 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stat-row, .stat-row-4 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  #forvente .container > div { grid-template-columns: 1fr !important; gap: 32px !important; }
  .a11y-panel { width: calc(100vw - 48px); }
  .cookie-banner-inner { flex-direction: column; gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* ── Floating CTA ──────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 1999;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 60px;
  background: var(--green); color: #fff;
  font-family: var(--font); font-size: .95rem; font-weight: 500;
  text-decoration: none; letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(42,107,92,.45);
  opacity: 0; transform: translateY(20px);
  transition: opacity .35s, transform .35s, box-shadow .2s;
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta:hover { box-shadow: 0 6px 28px rgba(42,107,92,.6); }
.floating-cta svg { flex-shrink: 0; }

/* ── Scroll-in Animations ──────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── Utility Classes ───────────────────────────────────── */
.text-center { text-align: center; }
.section-intro { text-align: center; margin-bottom: 52px; }
.section-intro-sm { text-align: center; margin-bottom: 40px; }
.section-intro p, .section-intro-sm p { margin: 0 auto; color: var(--text-mid); }
.stat-row-4 { grid-template-columns: repeat(4, 1fr); }
