/* GROCOTT FYSIOTERAPI — STYLESHEET
   Farvepalet baseret på det officielle Grocott-logo:
   Primær blå  : #1b6fa8  (mørk navy-blå fra logo-tekst)
   Accent blå  : #3cb0d8  (lys himmelblå fra logo-ikon) */
/* Kilde/Reference: Koden til vores redesign, er udviklet med hjælp og vejledning fra AI (Claude.ai) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1b6fa8;
  --blue-dark:   #0f4d78;
  --blue-mid:    #3cb0d8;
  --blue-light:  #d4eaf6;
  --blue-xlight: #eef6fc;
  --tp-green:    #00b67a;
  --sand:        #f7f8fa;
  --sand-dark:   #eef0f4;
  --text:        #1a1e27;
  --text-mid:    #4a5568;
  --text-soft:   #8896aa;
  --border:      #dde3ec;
  --white:       #ffffff;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(27,111,168,.10), 0 1px 4px rgba(0,0,0,.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* DELTE HJÆLPE-KLASSER */

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-mid); margin-bottom: 10px;
}

.section { padding: 88px 0; }
.section--alt { background: var(--sand-dark); }

.section__head { text-align: center; max-width: 560px; margin: 0 auto 52px; }

.section__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.8vw, 36px);
  color: var(--text); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 14px;
}

.section__sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.section__cta { text-align: center; margin-top: 44px; }

/* KNAPPER */

.btn-primary {
  display: inline-block; background: var(--blue); color: #fff;
  border: none; border-radius: 8px; padding: 12px 26px;
  font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; text-decoration: none; transition: background .15s, transform .1s;
}
.btn-primary:hover  { background: var(--blue-dark); }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { background: #b0c4d8; cursor: not-allowed; }

.btn-ghost {
  background: none; border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 22px; font-size: 14px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; color: var(--text-mid);
  cursor: pointer; transition: background .15s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: var(--sand-dark); }

.btn-ghost-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 11px 20px; font-size: 14px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; color: var(--text-mid);
  text-decoration: none; transition: border-color .15s, color .15s;
}
.btn-ghost-outline:hover { border-color: var(--blue-mid); color: var(--blue); }

/* Trustpilot-grøn anmeldelses-knap */
.btn-review {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tp-green); color: #fff;
  border: none; border-radius: 7px; padding: 8px 14px;
  font-size: 13px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; text-decoration: none; transition: background .15s; white-space: nowrap;
}
.btn-review:hover { background: #009960; }
.btn-review--large { padding: 11px 22px; font-size: 14px; border-radius: 8px; }

/* NAVIGATION */

.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 20px;
}

.nav__logo { flex-shrink: 0; line-height: 0; text-decoration: none; }
.nav__logo-img { height: 52px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 24px; margin-left: auto; }

.nav__link {
  font-size: 14px; color: var(--text-mid); text-decoration: none;
  transition: color .15s; white-space: nowrap;
}
.nav__link:hover, .nav__link--active { color: var(--blue); font-weight: 500; }

.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-book-nav {
  background: var(--blue); color: #fff; border: none; border-radius: 7px;
  padding: 8px 18px; font-size: 14px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background .15s; text-decoration: none; white-space: nowrap;
}
.btn-book-nav:hover { background: var(--blue-dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

/* HERO (forside) */

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #e8f4fd 0%, var(--sand) 60%);
}

.hero__inner { display: flex; align-items: center; gap: 56px; }
.hero__content { flex: 1; max-width: 560px; }

.hero__eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-mid); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--blue-mid); border-radius: 2px;
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.1;
  letter-spacing: -.8px; color: var(--text); margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--blue); }

.hero__sub { font-size: 17px; color: var(--text-mid); line-height: 1.7; max-width: 460px; margin-bottom: 30px; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }

.hero__badges { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.badge { text-align: center; }
.badge__num { display: block; font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--blue); line-height: 1; }
.badge__lbl { font-size: 11px; color: var(--text-soft); }
.badge__sep { width: 1px; height: 36px; background: var(--border); }

.hero__visual {
  flex: 0 0 340px; position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center;
}

/* Organisk gennemsigtig bobbel bag billedet */
.hero__bubble {
  position: absolute;
  width: 300px; height: 360px;
  background: linear-gradient(135deg, var(--blue-light) 0%, rgba(58,181,217,.25) 100%);
  border-radius: 55% 45% 48% 52% / 50% 52% 48% 50%;
  animation: morphBubble 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes morphBubble {
  0%,100% { border-radius: 55% 45% 48% 52% / 50% 52% 48% 50%; }
  33%     { border-radius: 48% 52% 55% 45% / 52% 48% 52% 48%; }
  66%     { border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%; }
}

/* Foto oven på bobbelen */
.hero__photo {
  position: relative; z-index: 1;
  width: 270px; height: 360px;
  object-fit: cover; object-position: center top;
  border-radius: 50% 50% 46% 54% / 50% 50% 46% 54%;
  box-shadow: 0 16px 48px rgba(27,111,168,.18);
  filter: drop-shadow(0 8px 24px rgba(27,111,168,.15));
}

.hero__shape { display: none; } /* Ikke længere i brug */

.hero__float-card {
  position: absolute; top: 44px; right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md); animation: floatCard 4s ease-in-out infinite; min-width: 190px;
}
.hero__float-icon {
  width: 36px; height: 36px; background: var(--blue-xlight);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.hero__float-label { font-size: 11px; color: var(--text-soft); }
.hero__float-val   { font-size: 14px; font-weight: 500; }

@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* USP STRIP */

.usp-strip { background: var(--blue-dark); padding: 34px 0; }
.usp-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.usp-item { display: flex; align-items: flex-start; gap: 14px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.12); }
.usp-item:last-child { border-right: none; }
.usp-item__icon { width: 38px; height: 38px; background: rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.usp-item__title { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.usp-item__desc  { font-size: 12px; color: rgba(255,255,255,.6); }

/* BEHANDLINGSKORT */

.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.treat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow .2s, transform .2s; }
.treat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.treat-card__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.treat-card__icon--1 { background: #fff3e0; color: #e65100; }
.treat-card__icon--2 { background: var(--blue-xlight); color: var(--blue); }
.treat-card__icon--3 { background: #fde8e8; color: #c0392b; }
.treat-card__icon--4 { background: #e8f5fe; color: #0277bd; }
.treat-card__icon--5 { background: #f3e8fd; color: #7b3fc4; }
.treat-card__icon--6 { background: #e8fdf4; color: #1a7a5e; }
.treat-card__name { font-family: 'DM Serif Display', serif; font-size: 17px; margin-bottom: 7px; }
.treat-card__desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* HOW IT WORKS */

.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.steps-list::before { content: ''; position: absolute; top: 22px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 1px; background: var(--border); }

.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.step-item__num { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-family: 'DM Serif Display', serif; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; }
.step-item__title { font-family: 'DM Serif Display', serif; font-size: 16px; margin-bottom: 8px; }
.step-item__desc  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ANMELDELSESKORT */

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.review-card--featured { border-color: var(--blue-mid); background: var(--blue-xlight); transform: translateY(-6px); box-shadow: var(--shadow-md); }

.review-card__stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card__text  { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-light); color: var(--blue-dark); font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-card--featured .review-card__avatar { background: var(--blue); color: #fff; }
.review-card__name  { font-size: 13px; font-weight: 500; }
.review-card__label { font-size: 11px; color: var(--text-soft); }

/* PRISER */

.prices-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: start; }
/* Centreret pristabel uden klippekort */
.prices-center { display: flex; justify-content: center; }
.prices-center .prices-table { max-width: 480px; width: 100%; }

.prices-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.prices-table__head { background: var(--blue-dark); color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: 12px 18px; }

.price-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 18px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-mid); }
.price-row:last-child { border-bottom: none; }
.price-row--accent { background: var(--blue-xlight); }
.price-row__val { font-weight: 500; color: var(--text); }

.klippekort__label { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.klippekort__grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }

.kk-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; transition: border-color .15s; }
.kk-card:hover { border-color: var(--blue-mid); }
.kk-card--wide { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
.kk-card__top   { font-size: 13px; color: var(--text-mid); margin-bottom: 4px; }
.kk-card__price { font-family: 'DM Serif Display', serif; font-size: 20px; }
.kk-card__save  { font-size: 11px; font-weight: 500; color: var(--blue); background: var(--blue-xlight); padding: 2px 8px; border-radius: 20px; display: inline-block; margin-top: 4px; }
.kk-card--wide .kk-card__save { margin-top: 0; }

.insurance-strip { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.insurance-strip__label { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px; text-align: center; }
.insurance-strip__logos { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.insurance-strip__logos span { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: var(--text-mid); }

/* PAGE HERO (interne sider) */

.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 56px 0 52px; text-align: center; color: #fff;
}
.page-hero__eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.page-hero__title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: 12px; }
.page-hero__sub { font-size: 16px; color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* OM-SIDEN */

.profile-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }

.profile-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--blue-xlight); border-radius: var(--radius-lg); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--blue-mid);
}
.profile-img-placeholder span { font-size: 12px; color: var(--text-soft); }

.profile-badge-card { margin-top: 16px; background: var(--blue-dark); color: #fff; border-radius: var(--radius); padding: 14px 18px; text-align: center; }
.profile-badge-card strong { font-family: 'DM Serif Display', serif; font-size: 18px; display: block; }
.profile-badge-card span   { font-size: 12px; color: rgba(255,255,255,.7); display: block; margin-top: 2px; }

.profile-body h2 { font-family: 'DM Serif Display', serif; font-size: 32px; margin-bottom: 6px; }
.profile-body .profile-subtitle { font-size: 15px; color: var(--blue-mid); margin-bottom: 24px; }
.profile-body p { font-size: 15px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }

.cv-section { margin-top: 32px; }
.cv-section__title { font-family: 'DM Serif Display', serif; font-size: 18px; margin-bottom: 14px; }
.cv-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cv-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); }
.cv-list li::before { content: ''; flex-shrink: 0; margin-top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-mid); }

.om-stats-strip { background: var(--blue-dark); padding: 40px 0; margin: 0; }
.om-stats-grid { display: grid; grid-template-columns: repeat(2,1fr); text-align: center; gap: 0; max-width: 500px; margin: 0 auto; }
.om-stat { padding: 0 32px; border-right: 1px solid rgba(255,255,255,.15); }
.om-stat:last-child { border-right: none; }
.om-stat__num { font-family: 'DM Serif Display', serif; font-size: 44px; color: #fff; line-height: 1; }
.om-stat__lbl { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; }

/* KONTAKT-SIDEN */

.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form-card h2 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 6px; }
.contact-form-subtitle { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 500; color: var(--text-mid); }
.form-input { border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); outline: none; transition: border-color .15s, box-shadow .15s; }
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,111,168,.09); }
.form-input::placeholder { color: var(--text-soft); }
textarea.form-input { resize: vertical; min-height: 100px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }

.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.info-card__title { font-family: 'DM Serif Display', serif; font-size: 15px; margin-bottom: 14px; }
.info-card__row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); margin-bottom: 10px; }
.info-card__row:last-child { margin-bottom: 0; }
.info-card__row svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-mid); }
.info-card__row a { color: var(--blue); text-decoration: none; }
.info-card__row a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--text); }

.map-placeholder { background: var(--blue-xlight); border: 1px solid var(--border); border-radius: var(--radius-lg); height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--blue-mid); }
.map-placeholder span { font-size: 12px; color: var(--text-soft); }

/* BOOKING-SIDEN */

.progress-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 24px; }
.prog-wrap { max-width: 520px; margin: 0 auto; height: 54px; display: flex; align-items: center; }
.prog-step { display: flex; align-items: center; gap: 7px; cursor: default; }
.prog-step--done { cursor: pointer; }

.prog-circle { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; flex-shrink: 0; transition: all .2s; color: var(--text-soft); }
.prog-step--active .prog-circle { border-color: var(--blue); background: var(--blue); color: #fff; }
.prog-step--done   .prog-circle { border-color: var(--blue); background: var(--blue-xlight); color: var(--blue); }

.prog-label { font-size: 13px; color: var(--text-soft); white-space: nowrap; }
.prog-step--active .prog-label { color: var(--blue-dark); font-weight: 500; }
.prog-step--done   .prog-label { color: var(--blue); }

.prog-line { flex: 1; height: 1px; background: var(--border); margin: 0 10px; transition: background .3s; }
.prog-line--done { background: var(--blue-mid); }

.booking-layout { max-width: 1020px; margin: 0 auto; padding: 28px 20px 56px; display: grid; grid-template-columns: 1fr 268px; gap: 24px; align-items: start; }

.panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; animation: fadeUp .22s ease both; }
.panel__head { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.panel__icon { width: 36px; height: 36px; background: var(--blue-xlight); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.panel__title { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--text); }
.panel__body { padding: 20px 22px; }

.bview { display: none; }
.bview--active { display: block; }

/* Booking trin — skjul alle, vis kun det aktive */
.view { display: none; }
.view--active { display: block; }

/* Service cards */
.service-list { display: flex; flex-direction: column; gap: 9px; }
.service { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 13px 16px; cursor: pointer; display: flex; align-items: center; gap: 13px; transition: border-color .15s, background .15s, transform .12s; position: relative; }
.service::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); transform: scaleY(0); transition: transform .2s; border-radius: 2px 0 0 2px; }
.service:hover { border-color: var(--blue-mid); background: var(--blue-xlight); transform: translateX(2px); }
.service:hover::before, .service--selected::before { transform: scaleY(1); }
.service--selected { border-color: var(--blue); background: var(--blue-xlight); }

.svc-check { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.service--selected .svc-check { background: var(--blue); border-color: var(--blue); }
.svc-info { flex: 1; min-width: 0; }
.svc-name { font-weight: 500; font-size: 14px; }
.svc-desc { font-size: 12px; color: var(--text-soft); margin-top: 1px; }
.svc-meta { text-align: right; flex-shrink: 0; }
.svc-price { font-weight: 500; font-size: 14px; }
.svc-dur { font-size: 11px; color: var(--text-soft); background: var(--sand); padding: 2px 7px; border-radius: 20px; display: inline-block; margin-top: 2px; }

/* Calendar */
.cal-datetime { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal__month-label { font-family: 'DM Serif Display', serif; font-size: 16px; }
.cal__arrow { width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 7px; background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-mid); transition: all .15s; }
.cal__arrow:hover { background: var(--blue-xlight); border-color: var(--blue-mid); color: var(--blue); }
.cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal__wday { text-align: center; font-size: 10px; font-weight: 500; color: var(--text-soft); padding: 3px 0 7px; letter-spacing: .06em; text-transform: uppercase; }
.cal__cell { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 13px; border-radius: 7px; color: var(--text-soft); transition: all .15s; position: relative; }
.cal__cell--in-month { color: #bbb; }
.cal__cell--avail { color: var(--text); cursor: pointer; font-weight: 500; }
.cal__cell--avail:hover { background: var(--blue-light); color: var(--blue-dark); }
.cal__cell--today.cal__cell--avail { border: 1.5px solid var(--blue-mid); }
.cal__cell--selected { background: var(--blue) !important; color: #fff !important; }
.cal__cell--avail::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--blue-mid); opacity: .6; }
.cal__cell--selected::after { background: rgba(255,255,255,.5); }

/* Time slots */
.times__label { font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.times__date-str, .times__date { color: var(--blue-dark); }
.times__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.times__placeholder { font-size: 13px; color: var(--text-soft); text-align: center; padding: 28px 0; line-height: 1.9; }
.time-btn, .time { border: 1px solid var(--border); border-radius: 8px; padding: 9px 4px; text-align: center; font-size: 13px; font-family: 'DM Sans', sans-serif; cursor: pointer; background: var(--white); color: var(--text); transition: all .15s; }
.time-btn:hover, .time:hover { border-color: var(--blue-mid); background: var(--blue-xlight); color: var(--blue-dark); }
.time-btn--selected, .time--selected { background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 500; }

/* Confirm */
.confirm-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; gap: 16px; }
.confirm-row:last-of-type { border-bottom: none; }
.confirm-key, .confirm-row__k { color: var(--text-soft); }
.confirm-val, .confirm-row__v { font-weight: 500; text-align: right; }
.confirm-total { display: flex; justify-content: space-between; padding: 16px 0 0; font-size: 16px; font-weight: 500; border-top: 1px solid var(--border); margin-top: 4px; }
.confirm-total span:last-child { color: var(--blue-dark); }

.btn-row { display: flex; justify-content: flex-end; margin-top: 20px; gap: 10px; }

/* Sidebar */
.booking-sidebar { display: flex; flex-direction: column; gap: 14px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; }
.sidebar-card--note { background: var(--sand); }
.sidebar-card--note p { font-size: 12.5px; color: var(--text-mid); line-height: 1.7; }
.sidebar-card__title { font-family: 'DM Serif Display', serif; font-size: 15px; margin-bottom: 11px; }
.sh-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 4px 0; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.sh-row:last-child { border: none; }
.sh-row strong { color: var(--text); font-weight: 400; }
.sidebar-addr { font-size: 13px; color: var(--text-mid); line-height: 1.8; }
.sidebar-addr a { color: var(--blue); text-decoration: none; }

.booking-summary-card { background: var(--blue-xlight); border: 1px solid rgba(27,111,168,.2); border-radius: var(--radius-lg); padding: 14px 18px; }
.bsum-title { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 9px; }
.bsum-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 3px 0; color: var(--text-mid); }
.bsum-row strong { color: var(--blue-dark); font-weight: 500; }

/* Success */
.success-wrap { text-align: center; padding: 44px 24px 36px; }
.success-ring { width: 72px; height: 72px; border-radius: 50%; background: var(--blue-xlight); border: 2px solid var(--blue-mid); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; animation: popIn .4s ease; }
.success-title { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 8px; }
.success-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }
.success-card { background: var(--blue-xlight); border: 1px solid rgba(27,111,168,.15); border-radius: var(--radius); padding: 16px 20px; text-align: left; max-width: 320px; margin: 0 auto 20px; }
.success-contact { font-size: 13px; color: var(--text-soft); margin-bottom: 20px; }
.success-contact a { color: var(--blue); text-decoration: none; }

/* FOOTER */

.footer { background: var(--text); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__logo { height: 40px; width: auto; filter: brightness(0) invert(1) opacity(.85); }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 220px; margin-top: 10px; }
.footer__col-title { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer__hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
.footer__hours-row:last-child { border: none; }
.footer__hours-row strong { color: rgba(255,255,255,.85); font-weight: 400; }
.footer__link { display: block; font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; margin-bottom: 8px; transition: color .15s; }
.footer__link:hover { color: var(--blue-mid); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.35); }
.footer__bottom-link { color: rgba(255,255,255,.35); text-decoration: none; }
.footer__bottom-link:hover { color: var(--blue-mid); }

/* ANIMATIONER */

@keyframes fadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes popIn  { 0%{transform:scale(.5);opacity:0} 80%{transform:scale(1.08)} 100%{transform:scale(1);opacity:1} }

/* RESPONSIVT DESIGN */

@media (max-width: 860px) {
  .usp-strip__grid { grid-template-columns: repeat(2,1fr); gap: 16px; padding: 0 24px; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 0 0 16px; }
  .usp-item:nth-child(2), .usp-item:last-child { border-bottom: none; }
  .treatments-grid { grid-template-columns: repeat(2,1fr); }
  .steps-list { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .steps-list::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--featured { transform: none; }
  .prices-wrap { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__inner { flex-direction: column; }
  .hero__visual { display: none; }
  .hero__badges { flex-wrap: wrap; }
  .profile-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .om-stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .om-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 20px; }
  .om-stat:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__actions .btn-review { display: none; }
  .nav__actions .btn-book-nav { display: none; }
  .hamburger { display: flex; }
  .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px; z-index: 199; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { order: -1; }
  .cal-datetime { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
  .klippekort__grid { grid-template-columns: 1fr; }
  .kk-card--wide { display: block; }
  .progress-bar { padding: 0 12px; }
  .prog-label { display: none; }
  .treatments-grid { grid-template-columns: 1fr; }
}

/* KONTAKT-SIDE */

/* page-hero blå modifier — blå gradient baggrund */
.page-hero--blue {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
}
.page-hero--blue .page-hero__eyebrow { color: rgba(255,255,255,.65); }
.page-hero--blue .page-hero__title  { color: #fff; }
.page-hero--blue .page-hero__sub    { color: rgba(255,255,255,.8); }

/* Kontaktinfo items i sidebar */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item__icon {
  width: 32px;
  height: 32px;
  background: var(--blue-xlight);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.contact-info-item__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-info-item__val {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  display: block;
}
a.contact-info-item__val:hover { color: var(--blue-dark); text-decoration: underline; }

/* Sidebar card rækker (åbningstider) */
.sidebar-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.sidebar-card__row:last-child { border-bottom: none; }
.sidebar-card__row strong { color: var(--text); font-weight: 400; }

/* Sidebar adresse */
.sidebar-addr a { color: var(--blue-dark); text-decoration: none; }
.sidebar-addr a:hover { text-decoration: underline; }

/* Formular fejl og success */
.form-error {
  margin-top: 10px;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 13px;
  color: #b91c1c;
}
.form-actions { margin-top: 20px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-xlight);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  margin: 0 auto 18px;
}
.form-success__title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success__sub { font-size: 14px; color: var(--text-mid); }

/* BOOKING — SUCCESS SKÆRM */
.success-screen {
  text-align: center;
  padding: 52px 24px 40px;
}
.success-screen__ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-xlight);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  margin: 0 auto 20px;
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
.success-screen__title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}
.success-screen__sub { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; }
.success-screen__card {
  background: var(--blue-xlight);
  border: 1px solid rgba(29,78,122,.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  max-width: 320px;
  margin: 0 auto 24px;
}
.success-screen__note { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; }
.success-screen__note a { color: var(--blue-dark); text-decoration: none; }

/* Animation til success ring */
@keyframes popIn {
  0%   { transform: scale(.4); opacity: 0; }
  80%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* Booking summary i sidebar */
.bsum-card {
  background: var(--blue-xlight);
  border: 1px solid rgba(29,78,122,.18);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
}
.bsum-card__title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.bsum-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 3px 0;
  color: var(--text-mid);
}
.bsum-card__row strong { color: var(--blue-dark); font-weight: 500; }

/* Btn-row hjælpeklasse */
.btn-row { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.btn-row--center { justify-content: center; }


/* TILFØJET: Modal, Karrusel og Nav mobilmenu */

/* BEHANDLINGSKORT: hover og "Læs mere" hint */
.treat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
  position: relative;
}
.treat:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue-mid); }
.treat__icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.treat__icon[data-c="1"] { background: #fff3e0; color: #e65100; }
.treat__icon[data-c="2"] { background: var(--blue-xlight); color: var(--blue); }
.treat__icon[data-c="3"] { background: #fde8e8; color: #c0392b; }
.treat__icon[data-c="4"] { background: #e8f5fe; color: #0277bd; }
.treat__icon[data-c="5"] { background: #f3e8fd; color: #7b3fc4; }
.treat__icon[data-c="6"] { background: #e8fdf4; color: #1a7a5e; }
.treat__name { font: 400 17px/1.3 'DM Serif Display', serif; margin-bottom: 7px; }
.treat__desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.treat__hint { font-size: 12px; font-weight: 500; color: var(--blue); margin-top: 12px; opacity: 0; transform: translateY(4px); transition: opacity .2s, transform .2s; }
.treat:hover .treat__hint { opacity: 1; transform: translateY(0); }

/* MODAL */
.modal { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(15,22,36,.55); backdrop-filter: blur(3px); align-items: center; justify-content: center; padding: 20px; }
.modal--open { display: flex; }
.modal-open { overflow: hidden; }
.modal__box { background: #fff; border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(15,22,36,.22); max-width: 600px; width: 100%; max-height: 90vh; display: flex; flex-direction: column; animation: slideUp .22s cubic-bezier(.34,1.56,.64,1) both; overflow: hidden; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 18px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.modal__title { font: 400 22px/1.2 'DM Serif Display', serif; }
.modal__close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: all var(--ease); flex-shrink: 0; }
.modal__close:hover { background: var(--sand-dark); color: var(--text); }
.modal__body { padding: 24px; overflow-y: auto; flex: 1; }
.modal__short { font-size: 15px; color: var(--blue-mid); font-weight: 500; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.modal__content p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.modal__content h4 { font: 400 16px/1.3 'DM Serif Display', serif; margin: 20px 0 10px; }
.modal__content ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.modal__content ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.modal__content ul li::before { content: ''; flex-shrink: 0; margin-top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-mid); }
.modal__footer { display: flex; gap: 10px; padding: 16px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }

/* KARRUSEL */
.carousel { display: flex; align-items: center; gap: 16px; }
.carousel__btn { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: all var(--ease); box-shadow: var(--shadow-sm); }
.carousel__btn:hover { border-color: var(--blue-mid); background: var(--blue-xlight); color: var(--blue); }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; transition: background var(--ease), transform var(--ease); }
.carousel__dot--active { background: var(--blue); transform: scale(1.3); }
.carousel__dot:hover { background: var(--blue-mid); }

/* REVIEW-KORT (bruges af karrusel) */
.review { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.review--featured { border-color: var(--blue-mid); background: var(--blue-xlight); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review__stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review__text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 10px; }
.review__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-light); color: var(--blue-dark); font: 500 12px/1 'DM Sans', sans-serif; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review--featured .review__avatar { background: var(--blue); color: #fff; }
.review__name { font-size: 13px; font-weight: 500; }
.review__label { font-size: 11px; color: var(--text-soft); }

/* MOBILMENU */
/* Book tid i mobilmenuen — skjult på desktop */
.nav__book-mobile, .nav__review-mobile { display: none; }

/* Hamburger X-animation */
.hamburger span { transition: transform .2s, opacity .2s; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  /* Vis Book tid i hamburger-menuen */
  .nav__book-mobile   { display: inline-flex; width: 100%; justify-content: center; margin-top: 4px; }
  .nav__review-mobile { display: inline-flex; width: 100%; justify-content: center; margin-top: 4px; }

  /* Karrusel: ét kort ad gangen */
  .reviews-grid { grid-template-columns: 1fr !important; }
  .reviews-grid .review:not(.review--featured) { display: none; }

  /* Modal: slide op fra bunden */
  .modal { align-items: flex-end; padding: 0; }
  .modal__box { max-height: 95vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: fixed; bottom: 0; left: 0; right: 0; max-width: 100%; animation: slideUpMobile .25s ease both; }
  @keyframes slideUpMobile { from { transform: translateY(100%); } to { transform: translateY(0); } }

  /* Karrusel-pile: skjul på mobil, brug swipe */
  .carousel__btn { display: none; }
}


/* BOOKING: manglende klasser (styres af booking.js) */

/* Service-kort indhold */
.service__check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  background: var(--white);
}
.service--selected .service__check { background: var(--blue); border-color: var(--blue); }

.service__info  { flex: 1; min-width: 0; }
.service__name  { font-weight: 500; font-size: 14px; color: var(--text); }
.service__desc  { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

.service__meta  { text-align: right; flex-shrink: 0; }
.service__price { font-weight: 500; font-size: 14px; color: var(--text); }
.service__dur   {
  font-size: 11px; color: var(--text-soft);
  background: var(--sand); padding: 2px 8px;
  border-radius: 20px; display: inline-block; margin-top: 3px;
}

/* Booking-sidebar oversigt */
.bsum {
  background: var(--blue-xlight);
  border: 1px solid rgba(27,111,168,.18);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
}
.bsum__title {
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 10px;
}
.bsum__row {
  display: flex; justify-content: space-between;
  font-size: 12.5px; padding: 4px 0;
  border-bottom: 1px solid rgba(27,111,168,.1);
  color: var(--text-mid);
}
.bsum__row:last-child { border-bottom: none; }
.bsum__row strong    { color: var(--blue-dark); font-weight: 500; }


/* OM MIG: profil-billede */
.profile-img-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  background: var(--blue-xlight);
}
.profile-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* MOBIL: karrusel swipe-hint */
@media (max-width: 640px) {
  /* Vis kun midterkortet (featured) på mobil */
  .carousel__track .review:not(.review--featured) { display: none; }
  /* Lille hint om at man kan swipe */
  .carousel::after {
    content: 'Swipe for flere →';
    display: block;
    font-size: 11px;
    color: var(--text-soft);
    text-align: center;
    margin-top: 10px;
    width: 100%;
    order: 3;
  }
}


/* Footer adresse over Book tid knap */
.footer__addr {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 10px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer__social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(221,221,223,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dddddf;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.footer__social-icon:hover {
  border-color: #dddddf;
  color: #fff;
}