[hidden]{display:none!important}
/* ==========================================================================
   Klip & Krølle — style.css
   Design-system for salon-forsiden. Alt salonspecifikt indhold kommer fra
   window.SALON (config.js) og skrives ind af js/site.js — denne fil sætter
   udelukkende UDSEENDE via CSS-variabler, så temaet kan skiftes pr. kunde.

   CSS-variabel-kontrakt (bruges også af Agent B's booking.css):
   --c-primary, --c-primary-rgb, --c-accent, --c-accent-rgb,
   --c-bg, --c-surface, --c-surface-alt, --c-text, --c-muted, --c-border,
   --c-success, --c-danger, --c-on-primary,
   --radius-sm, --radius-md, --radius-lg,
   --shadow-sm, --shadow-md, --shadow-lg,
   --font-display, --font-body, --container, --header-h
   ========================================================================== */

/* ---------- 1. Design tokens (defaults — kan overskrives af js/site.js ud
   fra SALON.theme, og af :root[data-theme] / prefers-color-scheme) ---------- */
:root {
  --c-primary: #b8860b;
  --c-primary-rgb: 184, 134, 11;
  --c-accent: #1f2a44;
  --c-accent-rgb: 31, 42, 68;

  --c-bg: #faf7f2;
  --c-surface: #ffffff;
  --c-surface-alt: #f4ede0;
  --c-text: #221d15;
  --c-muted: #6c6255;
  --c-border: #e7ddcb;

  --c-success: #2e7d4f;
  --c-danger: #b3452c;
  --c-on-primary: #fffaf0;
  --c-on-accent: #f6f3ec;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 3px rgba(20, 15, 5, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 15, 5, 0.10);
  --shadow-lg: 0 20px 60px rgba(20, 15, 5, 0.16);

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --header-h: 76px;

  color-scheme: light;
}

/* Mørkt tema — enten via systemindstilling (auto) eller tvunget af salon.theme.mode */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --c-bg: #16130f;
    --c-surface: #201b15;
    --c-surface-alt: #2a2319;
    --c-text: #f3ede1;
    --c-muted: #b8ac97;
    --c-border: #3a3225;
    --c-on-primary: #241c0c;
    --c-on-accent: #f6f3ec;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --c-bg: #16130f;
  --c-surface: #201b15;
  --c-surface-alt: #2a2319;
  --c-text: #f3ede1;
  --c-muted: #b8ac97;
  --c-border: #3a3225;
  --c-on-primary: #241c0c;
  --c-on-accent: #f6f3ec;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}
:root[data-theme="light"] {
  color-scheme: light;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0 0 0.6em;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-text);
}
a {
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
  color: inherit;
}
input,
textarea,
select {
  font: inherit;
}

/* Fokus-styles — tilgængelighed */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--c-accent);
  color: var(--c-on-accent);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section {
  padding-block: clamp(3rem, 6vw, 6rem);
}
.section--alt {
  background: var(--c-surface-alt);
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.75em;
}
.eyebrow::before {
  content: "";
  width: 1.5em;
  height: 2px;
  background: var(--c-primary);
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}
.section-head p {
  color: var(--c-muted);
  font-size: 1.05rem;
}

/* ---------- 4. Knapper ---------- */
.btn {
  --btn-pad-y: 0.85em;
  --btn-pad-x: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-on-primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  box-shadow: var(--shadow-md);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--c-text);
}
.btn-outline:hover {
  background: var(--c-surface-alt);
}
.btn-on-dark {
  background: rgba(255, 255, 255, 0.14);
  color: var(--c-on-primary, #fff);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.24);
}
.btn-sm {
  min-height: 38px;
  padding: 0.5em 1.1em;
  font-size: 0.88rem;
}
.btn-block {
  width: 100%;
}

/* ---------- 5. Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--c-surface) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-right: auto;
}
.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--c-primary);
  flex-shrink: 0;
}
.brand-text-city {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  cursor: pointer;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  /* Eksplicit højde i stedet for at læne sig op ad inset's implicitte
     højdeberegning — position:fixed inde i en position:sticky topbar kan
     få nogle browsere til at regne højden forkert ud fra inset alene. */
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--c-surface);
  padding: 1.5rem 1.25rem 2.5rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-nav a {
  display: block;
  padding: 0.9rem 0.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
}
.site-nav a[aria-current="true"] {
  color: var(--c-primary);
}
.nav-cta {
  margin-top: 1.25rem;
}
.header-book {
  margin-left: 0.25rem;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    margin-right: 1.5rem;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }
  .site-nav a {
    padding: 0.4rem 0.1rem;
    font-size: 0.98rem;
    border-bottom: 2px solid transparent;
  }
  .site-nav a:hover {
    color: var(--c-primary);
  }
  .site-nav a[aria-current="true"] {
    border-color: var(--c-primary);
  }
  .nav-cta {
    display: none;
  }
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
}
.theme-toggle .icon-sun {
  display: none;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-moon {
    display: none;
  }
  :root:not([data-theme="light"]) .theme-toggle .icon-sun {
    display: block;
  }
}
:root[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}
:root[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--c-on-accent);
  isolation: isolate;
}
.hero[data-style="warm"] {
  background: radial-gradient(120% 140% at 85% -10%, rgba(255, 224, 168, 0.55), transparent 55%),
    linear-gradient(135deg, #2a1c0f 0%, #4a2e12 32%, var(--c-accent) 68%, #17233a 100%);
}
.hero[data-style="cool"] {
  background: radial-gradient(120% 140% at 15% -10%, rgba(180, 210, 255, 0.35), transparent 55%),
    linear-gradient(135deg, #0e1626 0%, var(--c-accent) 40%, #2b3f63 75%, #4a3418 100%);
}
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.hero-deco svg {
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.5rem, 12vw, 8rem) clamp(3.5rem, 9vw, 6rem);
  display: grid;
  gap: 2rem;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffe6b0;
}
.hero-eyebrow svg {
  width: 1.4em;
  height: 1.4em;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4rem);
  margin-bottom: 0.3em;
}
.hero .tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 0.5rem;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 1em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}
.hero-status .dot {
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background: var(--c-muted);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.hero-status[data-open="true"] .dot {
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
}
.hero-status[data-open="false"] .dot {
  background: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.hero-meta strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

/* ---------- 7. Services / Ydelser ---------- */
.service-group {
  margin-bottom: 2.5rem;
}
.service-group:last-child {
  margin-bottom: 0;
}
.service-group h3 {
  font-size: 1.15rem;
  color: var(--c-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.service-card h4 {
  font-size: 1.08rem;
  margin: 0;
}
.service-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1.15rem;
  white-space: nowrap;
}
.service-desc {
  color: var(--c-muted);
  font-size: 0.94rem;
  flex-grow: 1;
}
.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.service-duration svg {
  width: 1.1em;
  height: 1.1em;
}

/* ---------- 8. Om os ---------- */
.about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}
.about-text p {
  color: var(--c-muted);
  font-size: 1.05rem;
}
.about-figure {
  position: relative;
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--c-primary) 18%, var(--c-surface-alt)),
    var(--c-surface-alt)
  );
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  min-height: 260px;
}
.about-figure img {
  width: min(220px, 60%);
  color: var(--c-primary);
}
.about-established {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--c-muted);
}
@media (min-width: 860px) {
  .about {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ---------- 9. Galleri ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer;
  padding: 0;
  display: block;
  width: 100%;
  color: #fff;
}
.gallery-item img,
.gallery-item svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .swatch {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  filter: hue-rotate(var(--hue, 0deg));
}
.gallery-item .gallery-icon {
  position: absolute;
  inset: 0;
  width: 34%;
  height: 34%;
  margin: auto;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.lightbox-media .swatch {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  filter: hue-rotate(var(--hue, 0deg));
}
.lightbox-media {
  position: relative;
  overflow: hidden;
}
.lightbox-media .gallery-icon {
  position: absolute;
  inset: 0;
  width: 28%;
  height: 28%;
  margin: auto;
  color: rgba(255, 255, 255, 0.9);
}
.gallery-item .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item:hover img,
.gallery-item:hover svg {
  filter: brightness(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 8, 5, 0.82);
  backdrop-filter: blur(4px);
}
.lightbox.is-open {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 640px;
  width: 100%;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lightbox-media {
  aspect-ratio: 4 / 3;
  width: 100%;
}
.lightbox-media svg {
  width: 100%;
  height: 100%;
}
.lightbox-caption {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--c-muted);
  font-size: 0.95rem;
}
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-close svg {
  width: 20px;
  height: 20px;
}

/* ---------- 10. Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}
.team-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  filter: hue-rotate(var(--hue, 0deg));
}
.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15em;
}
.team-role {
  color: var(--c-primary);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.team-bio {
  color: var(--c-muted);
  font-size: 0.92rem;
  margin-bottom: 0.75em;
}
.team-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 999px;
  background: var(--c-surface-alt);
  color: var(--c-muted);
  border: 1px solid var(--c-border);
}

/* ---------- 11. Anmeldelser ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.stars {
  display: inline-flex;
  gap: 0.15em;
}
.stars svg {
  width: 1.15em;
  height: 1.15em;
  color: var(--c-primary);
}
.review-text {
  color: var(--c-text);
  font-size: 0.98rem;
  flex-grow: 1;
}
.review-text::before {
  content: "\201C";
}
.review-text::after {
  content: "\201D";
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--c-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 0.65rem;
}
.review-meta strong {
  color: var(--c-text);
}

/* ---------- 12. Åbningstider ---------- */
.hours-wrap {
  max-width: 560px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hours-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.98rem;
}
.hours-table tr:last-child td {
  border-bottom: none;
}
.hours-table .day-name {
  font-weight: 600;
  color: var(--c-muted);
}
.hours-table .closed {
  color: var(--c-danger);
}
.hours-table tr[data-today="true"] {
  background: color-mix(in srgb, var(--c-primary) 10%, transparent);
}
.hours-table tr[data-today="true"] .day-name {
  color: var(--c-primary);
}
.hours-table tr[data-today="true"] td:last-child {
  font-weight: 700;
}
.today-badge {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--c-primary);
  color: var(--c-on-primary);
  padding: 0.15em 0.55em;
  border-radius: 999px;
  vertical-align: middle;
}

/* ---------- 13. Kontakt ---------- */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  margin-bottom: 0.6em;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-primary) 14%, transparent);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-card a.contact-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--c-text);
  margin-bottom: 0.3em;
}
.contact-card a.contact-link:hover {
  color: var(--c-primary);
}
.contact-card address {
  font-style: normal;
  color: var(--c-muted);
}
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--c-text);
}
.social-links a:hover {
  background: var(--c-surface-alt);
}
.social-links svg {
  width: 18px;
  height: 18px;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: none;
}
.map-link svg {
  width: 1.1em;
  height: 1.1em;
}

/* ---------- 14. CTA-bånd ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 60%, var(--c-primary)));
  color: var(--c-on-accent);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-inline: 1.25rem;
  max-width: calc(var(--container));
  margin-inline: auto;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
  margin-inline: auto;
}
.cta-band .btn-primary {
  margin-top: 0.5rem;
}

/* ---------- 15. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding-block: 2.5rem;
  background: var(--c-surface);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.footer-muted {
  color: var(--c-muted);
  font-size: 0.85rem;
}
.footer-credit {
  font-size: 0.82rem;
  color: var(--c-muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--c-border);
}
.footer-credit:hover {
  color: var(--c-primary);
}

/* ---------- 16. Fejlbanner (hvis SALON mangler) ---------- */
.config-error {
  margin: 2rem auto;
  max-width: 640px;
  background: #fff3f0;
  border: 1px solid var(--c-danger);
  color: #7a2a16;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
}

/* ---------- 17. Utility ---------- */
.text-center {
  text-align: center;
}
.mt-lg {
  margin-top: 2rem;
}