:root {
  --bg: #141413;
  --ink: #f0ede6;
  --muted: #7a7770;
  --line: rgba(240, 237, 230, 0.12);
  --sand: #252420;
  --soft: #1d1c1a;
  --accent: #b8965a;
  --accent-dark: #d4ae72;
  --blue: #4da8f0;
  --red: #e85555;
  --white: #f0ede6;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  --radius: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open .hero-logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: transparent;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.97);
  border-bottom: 1px solid rgba(230, 224, 215, 0.8);
  backdrop-filter: blur(18px);
  transition: background 500ms ease, border-color 500ms ease, backdrop-filter 500ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0);
  border-bottom-color: transparent;
  backdrop-filter: none;
}

/* Push content down so it doesn't hide under fixed header */
body {
  padding-top: var(--header-height, 120px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.brand.is-visible {
  opacity: 1;
  visibility: visible;
}

.brand-logo-wrap {
  position: relative;
  height: 90px;
}

.brand-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: opacity 500ms ease;
}

.brand-logo--light {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--light {
  opacity: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav--left {
  justify-content: flex-end;
}

.desktop-nav--right {
  justify-content: flex-start;
}

.desktop-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.9),
    1px 1px 1px rgba(0, 0, 0, 0.8),
    -1px 1px 1px rgba(0, 0, 0, 0.8),
    1px -1px 1px rgba(0, 0, 0, 0.8),
    -1px -1px 1px rgba(0, 0, 0, 0.8);
  transition: color 500ms ease, border-color 200ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.site-header.is-scrolled .desktop-nav a:not(.button) {
  color: rgba(240, 236, 228, 0.85);
}

.site-header.is-scrolled .desktop-nav a:not(.button):hover {
  color: var(--white);
  border-color: rgba(240, 236, 228, 0.5);
}

.site-header.is-scrolled .desktop-nav a.button {
  background: rgba(240, 236, 228, 0.15);
  color: var(--white);
  border: 1px solid rgba(240, 236, 228, 0.5);
}

.site-header.is-scrolled .desktop-nav a.button:hover {
  background: rgba(240, 236, 228, 0.28);
  border-color: var(--white);
}

.book-img-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;          /* nav button height — sign sits here */
  margin-left: -12px;    /* nudge left to align sign with other nav items */
  padding: 0;
  border: none;
  background: none;
  overflow: visible;     /* let dogs spill out */
  transition: transform 200ms ease;
}

.book-img-btn img {
  height: 85px;          /* sign portion (~54%) ≈ 46px; dogs overflow */
  width: auto;
  display: block;
  position: relative;
  top: -7px;             /* nudge up so sign aligns with nav text */
}

.book-img-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.desktop-nav a.button {
  padding: 8px 20px;
  border-bottom: none;
  border-radius: 999px;
  background: var(--accent);
  color: #0e0e0d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 500ms ease, color 500ms ease, border-color 500ms ease;
}

.desktop-nav a.button:hover {
  background: var(--accent-dark);
  border-color: transparent;
  color: #0e0e0d;
}

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

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.48);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.button-brass {
  background: var(--accent);
  color: #0e0e0d;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.button-brass:hover {
  background: var(--accent-dark);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(90px, 10vh, 130px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  background: #0e0e0d;
  color: var(--white);
}

.hero-scissors {
  position: absolute;
  right: clamp(40px, 9vw, 140px);
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
  width: clamp(180px, 20vw, 300px);
  opacity: 0.11;
  pointer-events: none;
  z-index: 1;
}

.hero-scissors svg {
  width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .hero-scissors {
    display: none;
  }
}

.hero-media {
  position: absolute;
  inset: 0 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 12, 10, 0.65) 0%, rgba(14, 12, 10, 0.25) 60%, rgba(14, 12, 10, 0.1) 100%);
  z-index: 1;
}

.hero-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: min(440px, 80vw);
  height: auto;
  z-index: 60;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
  opacity: 0;                       /* revealed by JS once correctly positioned */
  transition: opacity 0.25s ease;
}

.hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #edd5c2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(54px, 9vw, 116px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 62px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 580px;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(850px, 100%);
  margin-top: clamp(70px, 12vh, 140px);
  background: rgba(255, 253, 249, 0.22);
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-panel div {
  padding: 22px;
  background: rgba(39, 37, 34, 0.34);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 6px;
}

.hero-panel span {
  color: rgba(255, 253, 249, 0.72);
  font-size: 14px;
}


.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 0px);
}

.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section.muted {
  max-width: none;
  background: var(--soft);
}

.section.muted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:last-child,
.booking-band p,
.site-footer p {
  color: var(--muted);
}

.section-heading.compact {
  display: flex;
  flex-direction: column;
  max-width: 680px;
}

.team-body small {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-dark);
  font-weight: 900;
}

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

.service-card,
.team-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.service-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  min-height: 310px;
}

.service-card p,
.team-card p {
  color: var(--muted);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.service-meta span:last-child {
  color: var(--accent-dark);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}


.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ── Team-drejehjul ──────────────────────────────────────────────────────── */
.team-section {
  /* hjulets sider må gerne stikke ud i højden, men aldrig give vandret scroll */
  overflow-x: clip !important;
  overflow-y: visible !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 160px !important;
  position: relative;
  z-index: 1;
}

.team-section .section-heading {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

#gallery {
  position: relative;
  z-index: 0;
}

/* Drejehjulet: kortene står på en 3D-cylinder (rotateY + translateZ, sat af JS)
   og drejer langsomt rundt. Hover bremser blødt, træk giver fart med momentum,
   og kort på bagsiden fader ud. */
.team-carousel-outer {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* lodret svirp scroller siden — vandret trækker hjulet */
  perspective: 900px;
  perspective-origin: 50% 50%;
}

.team-carousel-outer:active { cursor: grabbing; }

.team-carousel {
  position: relative;
  width: 300px;
  height: 400px;
  transform-style: preserve-3d; /* rotationen sættes af JS */
}

.team-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  backface-visibility: hidden;
}

@media (max-width: 720px) {
  .team-carousel-outer {
    height: 340px;
    perspective: 600px;
  }

  .team-carousel {
    width: 200px;
    height: 280px;
  }

  /* JS lægger scale(0.72) på hjulet og læser kortbredden herfra */
  .team-card {
    width: 200px;
  }
}

/* ── Barber detail overlay ───────────────────────────────────────────────── */
.barber-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.barber-overlay[hidden] { display: none; }

.barber-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.barber-overlay-card {
  position: relative;
  width: min(400px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  animation: modal-in 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.barber-overlay-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(20,18,16,0.7);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: background 150ms ease;
}

.barber-overlay-close:hover {
  background: var(--accent);
  color: #0e0e0d;
}

.barber-overlay-img {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.barber-overlay-img:not(.has-image) {
  height: 260px;
}

.barber-overlay-photo {
  width: 100%;
  height: auto;
  display: block;
}

.barber-overlay-img:not(.has-image)[data-initial]::after {
  content: attr(data-initial);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: #0e0e0d;
  font-size: 32px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.barber-overlay-body {
  padding: 24px;
}

.barber-overlay-tag {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.barber-overlay-name {
  margin: 0 0 4px;
  font-size: 26px;
}

.barber-overlay-role {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-weight: 700;
}

.barber-overlay-bio {
  color: var(--muted);
  margin: 0;
}

.team-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-body .text-link {
  margin-top: auto;
  padding-top: 14px;
}

.team-image,
.gallery-item {
  background: var(--sand);
  background-position: center;
  background-size: cover;
}

.team-image {
  aspect-ratio: 4 / 5;
}

.team-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(232, 85, 85, 0.15), transparent 36%),
    linear-gradient(315deg, rgba(77, 168, 240, 0.15), transparent 38%),
    var(--sand);
}

.team-placeholder span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.team-role {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-weight: 900;
}


.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(39, 37, 34, 0.78);
  color: var(--white);
  font-weight: 800;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.social-card > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(223, 52, 52, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(24, 137, 232, 0.22), transparent 42%),
    var(--ink);
  color: var(--white);
  font-weight: 900;
}

.social-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card p {
  color: var(--muted);
}

.social-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.social-card {
  text-decoration: none;
  transition: border-color 200ms ease, transform 200ms ease;
}

.social-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.testimonials {
  overflow: hidden;
}

.reviews-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

/* Summary panel on top */
.reviews-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  text-align: center;
}

.reviews-summary-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.reviews-summary-stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
}

.reviews-summary-count {
  font-size: 13px;
  color: var(--muted);
}

.reviews-summary-count b {
  color: var(--ink);
  font-weight: 700;
}

.reviews-summary-google {
  margin-top: 4px;
}

.reviews-summary-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.reviews-summary-link:hover {
  border-bottom-color: var(--accent);
}

/* Swipe-karrusel (vises under 1240px, hvor sideskinnen er skjult): et rigtigt
   scroll-spor med snap. Brugeren swiper selv; JS blader roligt videre hvert
   5. sekund indtil første berøring. */
.testimonial-track-outer {
  position: relative; /* gør kortenes offsetLeft målbar ift. scroll-containeren */
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track-outer::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 6px 0;
}

.testimonial-track-outer .testimonial-card {
  scroll-snap-align: start;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.testimonial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 237, 230, 0.22);
  cursor: pointer;
  transition: background 200ms ease, width 200ms ease;
}

.testimonial-dots button.on {
  width: 18px;
  background: var(--accent);
}

.testimonial-card {
  display: block;
  flex: 0 0 280px;
  width: 280px;
  box-sizing: border-box;
  padding: 20px 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0e0e0d;
  font-size: 14px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonial-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-meta span {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.testimonial-g {
  flex-shrink: 0;
}

.testimonial-stars {
  font-size: 15px;
  color: #f5a623;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial-quote {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  word-break: break-word;
}

/* ── Fixed reviews rail (desktop) ─────────────────────────────────────────────
   Pinned to the right edge of the viewport; keeps scrolling its cards on the
   SAME 45s loop as the marquee while the visitor scrolls the page. */
.reviews-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.reviews-rail-head {
  text-align: center;
  background: rgba(20, 20, 19, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  backdrop-filter: blur(8px);
}

.reviews-rail-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.reviews-rail-stars {
  display: block;
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}

.reviews-rail-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.reviews-rail-link:hover {
  text-decoration: underline;
}

.reviews-rail-clip {
  height: min(58vh, 560px);
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}

.testimonial-track--v {
  flex-direction: column;
  width: auto;
  gap: 14px;
  padding: 0;
  height: max-content;
  animation: marquee-scroll-y 45s linear infinite;
}

.testimonial-track--v:hover {
  animation-play-state: paused;
}

/* seamless vertical loop: cards are duplicated, shift by half + half a gap */
@keyframes marquee-scroll-y {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-50% - 7px)); }
}

.testimonial-track--v .testimonial-card {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 1240px) {
  /* narrow the centered content just enough that the rail never overlaps it */
  :root { --max: min(1180px, calc(100vw - 560px)); }
  .reviews-rail { display: flex; }
  .testimonials { display: none; }
}

@media (max-width: 720px) {
  .reviews-widget {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .reviews-summary {
    width: 100%;
  }
  .testimonial-card {
    flex: 0 0 260px;
    width: 260px;
  }
}

.stars {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 14px;
}

.booking-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  max-width: none;
  padding-left: clamp(18px, 7vw, 90px);
  padding-right: clamp(18px, 7vw, 90px);
  background: #0e0e0d;
  border-top: 1px solid var(--line);
  color: var(--white);
}

.booking-band > div {
  max-width: 680px;
}

.booking-band .section-kicker {
  color: var(--accent);
}

.booking-band p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
}

.contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  color: var(--muted);
}

.hours-list dd {
  font-weight: 900;
}

.contact-list li {
  display: grid;
  gap: 3px;
}

.contact-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list a {
  font-weight: 900;
  color: var(--accent-dark);
}

.map-panel {
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Booking modal ───────────────────────────────────────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 32px);
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.booking-modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(640px, 100%);
  height: min(820px, 90vh);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  animation: modal-in 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.booking-modal-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.booking-modal-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.booking-modal-close:hover {
  background: var(--accent);
  color: #0e0e0d;
  border-color: var(--accent);
}

.booking-modal-iframe {
  flex: 1;
  width: 100%;
  border: none;
  background: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 70px);
  background: #0e0e0d;
  color: var(--white);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: #e9cdb8;
  font-weight: 900;
}

.mobile-booking {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  /* Compact fixed-height header on mobile */
  .header-inner {
    position: relative;
    display: block;
    height: 58px;
    padding: 0 clamp(16px, 4vw, 24px);
  }

  /* Brand is hidden (traveling logo serves as it) — absolute so it adds no height */
  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .brand-logo-wrap,
  .brand-logo {
    height: 42px;
  }

  .desktop-nav--left,
  .desktop-nav--right {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    position: absolute;
    right: clamp(16px, 4vw, 24px);
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-nav {
    position: fixed;
    inset: 58px 0 auto;
    display: none;
    grid-column: 1 / -1;
    padding: 8px 18px 22px;
    background: rgba(42, 37, 32, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
  }

  .hero-panel,
  .social-grid,
  .service-grid,
  .team-grid,
  .gallery-grid,
  .contact-section,
  .price-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .team-grid {
    gap: 16px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero-panel {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .mobile-nav {
    inset: 58px 0 auto;
  }

  .hero {
    min-height: 600px;
    padding-top: 80px;
  }

  .hero-media {
    inset: 0;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(14, 12, 10, 0.72), rgba(14, 12, 10, 0.5));
  }

  h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .hero-panel,
  .social-grid,
  .service-grid,
  .team-grid,
  .gallery-grid,
  .contact-section,
  .price-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-card {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .map-panel {
    min-height: 360px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-booking {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    box-shadow: none;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
  }

  .mobile-booking img {
    height: 70px;
    width: auto;
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }

  .testimonial-track {
    animation: none;
  }
}

/* ── Sæsontemaer (vælges i admin → Indstillinger → Tema) ─────────────────── */
body.theme-christmas { --accent: #cf4b4b; --accent-dark: #e06a6a; }
body.theme-halloween { --accent: #e0762e; --accent-dark: #f08c48; }
body.theme-newyear   { --accent: #d4af37; --accent-dark: #e8c95c; }
body.theme-summer    { --accent: #e8b64c; --accent-dark: #f4cd72; }

.theme-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 6; /* over indholdet, under header/menuer */
}

/* Jul: dalende snefnug */
.td-p {
  position: absolute;
  top: -6vh;
  will-change: transform;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.td-fall { animation-name: td-fall; }
@keyframes td-fall {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(115vh) rotate(340deg); }
}

/* Halloween: måne, tåge, flagermus og flakkende skær */
.td-moon {
  position: absolute;
  top: 5vh;
  right: 6vw;
  width: 44vmin;
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(238, 233, 220, 0.20) 0 9%,
    rgba(238, 233, 220, 0.10) 20%,
    rgba(238, 233, 220, 0.04) 42%,
    transparent 66%);
  animation: td-moon-glow 11s ease-in-out infinite alternate;
}
@keyframes td-moon-glow {
  from { opacity: 0.75; }
  to   { opacity: 1; }
}

.td-fog {
  position: absolute;
  background: radial-gradient(ellipse at 50% 60%,
    rgba(188, 198, 214, 0.12),
    rgba(188, 198, 214, 0.05) 45%,
    transparent 72%);
  animation: td-fog-drift ease-in-out infinite alternate;
}
@keyframes td-fog-drift {
  from { transform: translateX(-10vw); }
  to   { transform: translateX(10vw); }
}

.td-bat {
  position: absolute;
  left: 0;
  aspect-ratio: 48 / 22;
  animation: td-bat-fly linear infinite;
  filter: drop-shadow(0 0 6px rgba(224, 118, 46, 0.35));
}
.td-bat svg { display: block; width: 100%; height: 100%; fill: #0e0c0b; }
.td-bat-bob { animation: td-bat-bob ease-in-out infinite alternate; }
@keyframes td-bat-fly {
  from { transform: translateX(-12vw); }
  to   { transform: translateX(112vw); }
}
@keyframes td-bat-bob {
  from { transform: translateY(-2.2vh); }
  to   { transform: translateY(2.2vh); }
}
.td-bat-w {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transform-box: view-box;
  transform-origin: 24px 10px;
}
.td-bat-wl { animation-name: td-flap-l; }
.td-bat-wr { animation-name: td-flap-r; }
@keyframes td-flap-l {
  from { transform: rotate(14deg); }
  to   { transform: rotate(-10deg); }
}
@keyframes td-flap-r {
  from { transform: rotate(-14deg); }
  to   { transform: rotate(10deg); }
}

.td-ember {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24vh;
  background: linear-gradient(to top, rgba(224, 118, 46, 0.17), transparent);
  animation: td-ember-flicker 7s linear infinite;
}
@keyframes td-ember-flicker {
  0%, 100% { opacity: 0.55; }
  9%  { opacity: 0.8; }
  14% { opacity: 0.6; }
  24% { opacity: 0.85; }
  33% { opacity: 0.62; }
  46% { opacity: 0.9; }
  58% { opacity: 0.68; }
  71% { opacity: 0.95; }
  84% { opacity: 0.6; }
}

/* Nytår: champagnebobler, stjerneglimt og fyrværkeri */
.td-bubble {
  position: absolute;
  bottom: -5vh;
  animation: td-bubble-rise linear infinite;
}
.td-bubble-i {
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(232, 201, 92, 0.55);
  background: radial-gradient(circle at 32% 30%,
    rgba(255, 255, 255, 0.32),
    rgba(255, 246, 214, 0.05) 60%,
    transparent 78%);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.28);
  animation: td-bubble-sway ease-in-out infinite alternate;
}
@keyframes td-bubble-rise {
  0%   { transform: translateY(0); opacity: 0; }
  7%   { opacity: 0.9; }
  82%  { opacity: 0.8; }
  100% { transform: translateY(-112vh); opacity: 0; }
}
@keyframes td-bubble-sway {
  from { transform: translateX(-9px); }
  to   { transform: translateX(9px); }
}

.td-spark {
  position: absolute;
  color: #e8c95c;
  text-shadow: 0 0 9px rgba(212, 175, 55, 0.9), 0 0 22px rgba(212, 175, 55, 0.4);
  animation: td-spark-twinkle ease-in-out infinite alternate;
}
@keyframes td-spark-twinkle {
  from { opacity: 0.1; transform: scale(0.55) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1.12) rotate(8deg); }
}

.td-burst { position: absolute; }
.td-burst-flash {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: -4px;
  border-radius: 50%;
  filter: blur(1px);
  animation: td-flash 420ms ease-out forwards;
}
@keyframes td-flash {
  from { transform: scale(0.4); opacity: 1; }
  to   { transform: scale(2.6); opacity: 0; }
}
.td-burst-s {
  position: absolute;
  width: 3px;
  height: 3px;
  margin: -1.5px;
  border-radius: 50%;
  animation: td-burst-fly ease-out forwards;
}
@keyframes td-burst-fly {
  0%   { transform: translate(0, 0); opacity: 1; }
  65%  { opacity: 0.95; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.3); opacity: 0; }
}

/* Sommer: lav sol med stråler og gyldne lysprikker */
.td-sun {
  position: absolute;
  top: -14vmin;
  right: -10vmin;
  width: 62vmin;
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(244, 205, 114, 0.28) 0%,
    rgba(244, 205, 114, 0.13) 30%,
    rgba(244, 205, 114, 0.05) 50%,
    transparent 68%);
  animation: td-sun-breathe 9s ease-in-out infinite alternate;
}
@keyframes td-sun-breathe {
  from { opacity: 0.75; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.05); }
}
.td-sun-rays {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(244, 205, 114, 0.06) 0deg 7deg,
    transparent 7deg 24deg);
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.85) 0 28%, transparent 66%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.85) 0 28%, transparent 66%);
  animation: td-sun-rays 80s linear infinite;
}
@keyframes td-sun-rays {
  to { transform: rotate(360deg); }
}

/* Maskotter: nisse (jul), genfærd (halloween), serpentiner (nytår), strand (sommer) */
.td-nisse {
  position: absolute;
  left: clamp(10px, 4vw, 48px);
  bottom: 0;
  width: clamp(74px, 9vw, 110px);
  transform: translateY(18%);
  filter: drop-shadow(0 -2px 8px rgba(0, 0, 0, 0.3));
  animation: td-nisse-peek 11s ease-in-out infinite;
}
.td-nisse svg { display: block; width: 100%; height: auto; }
@keyframes td-nisse-peek {
  0%, 10%   { transform: translateY(102%); }
  20%, 58%  { transform: translateY(18%) rotate(0deg); }
  64%, 72%  { transform: translateY(18%) rotate(-5deg); }
  78%       { transform: translateY(18%) rotate(0deg); }
  90%, 100% { transform: translateY(102%); }
}

.td-ghost {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  filter: drop-shadow(0 0 14px rgba(238, 233, 220, 0.25));
}
.td-ghost svg {
  display: block;
  width: 100%;
  height: auto;
  animation: td-ghost-bob 3.2s ease-in-out infinite;
}
@keyframes td-ghost-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.td-streamer {
  position: absolute;
  top: -6px;
  transform-origin: top center;
  animation: td-streamer-sway ease-in-out infinite alternate;
}
.td-streamer svg { display: block; width: 100%; height: auto; }
@keyframes td-streamer-sway {
  from { transform: rotate(-5deg); }
  to   { transform: rotate(5deg); }
}

.td-beach {
  position: absolute;
  left: clamp(8px, 3vw, 40px);
  bottom: -6px;
  width: clamp(110px, 12vw, 170px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}
.td-beach svg { display: block; width: 100%; height: auto; }
.td-beach .td-ball {
  animation: td-ball-bob 3.4s ease-in-out infinite;
  transform-origin: 146px 147px;
}
@keyframes td-ball-bob {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-8deg) translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .theme-decor * { animation: none !important; }
  /* Bevægelige elementer skjules; glød, måne, tåge og sol bliver som stille kulisse */
  .td-p, .td-bat, .td-bubble, .td-spark, .td-burst, .td-streamer { display: none; }
}
