/* ============================================================
   HOUSE OF LOVE — Design System
   Organisk · Sanselig · Varm natur-palet · Zodiak + Satoshi
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root,
[data-theme='dark'] {
  /* Type scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1:  0.25rem;  --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;   --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;     --space-24: 6rem;
  --space-32: 8rem;

  /* Dark palette — deep forest night */
  --color-bg:             #0d1008;
  --color-surface:        #131809;
  --color-surface-2:      #192010;
  --color-surface-offset: #1f2914;
  --color-border:         #2a3818;
  --color-divider:        #233015;

  --color-text:        #f2ede0;
  --color-text-muted:  #a09880;
  --color-text-faint:  #5a5242;
  --color-text-inverse:#0d1008;

  /* Forest green — primary */
  --color-forest:          #3a6b2a;
  --color-forest-hover:    #2f5722;
  --color-forest-active:   #244319;
  --color-forest-highlight:#1a2e10;

  /* Gold — accent */
  --color-gold:          #c9922a;
  --color-gold-hover:    #b07820;
  --color-gold-active:   #8a5c18;
  --color-gold-highlight:#2a2010;

  /* Amber — warm glow */
  --color-amber:         #e8a83a;
  --color-amber-muted:   #c48830;

  /* Cream — soft text highlight */
  --color-cream:         #f5e8c8;
  --color-cream-muted:   #d4c4a0;

  /* Supporting */
  --color-success: #5a9a3a;
  --color-error:   #c04a3a;

  /* UI */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.875rem;
  --radius-xl:   1.25rem;
  --radius-2xl:  2rem;
  --radius-full: 9999px;
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.4);
  --shadow-md: 0 4px 20px oklch(0 0 0 / 0.5);
  --shadow-lg: 0 12px 48px oklch(0 0 0 / 0.6);
  --shadow-glow: 0 0 40px color-mix(in oklab, var(--color-gold) 20%, transparent);

  --content-narrow:  640px;
  --content-default: 1000px;
  --content-wide:    1200px;

  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;
}

[data-theme='light'] {
  --color-bg:             #faf6ed;
  --color-surface:        #f5efe0;
  --color-surface-2:      #efe8d4;
  --color-surface-offset: #e8dfc8;
  --color-border:         #d4c8a8;
  --color-divider:        #ddd3b8;

  --color-text:        #1a1608;
  --color-text-muted:  #5a5040;
  --color-text-faint:  #a09070;
  --color-text-inverse:#faf6ed;

  --color-forest:          #2d5420;
  --color-forest-hover:    #234018;
  --color-forest-active:   #1a3010;
  --color-forest-highlight:#d8ead0;

  --color-gold:          #a07020;
  --color-gold-hover:    #805818;
  --color-gold-active:   #604010;
  --color-gold-highlight:#f0e0b8;

  --color-amber:         #c88020;
  --color-cream:         #faf0dc;
  --color-cream-muted:   #6b5030;  /* mørk nok til lys baggrund — 5:1 kontrast */

  --shadow-sm: 0 1px 3px oklch(0.3 0.05 80 / 0.1);
  --shadow-md: 0 4px 20px oklch(0.3 0.05 80 / 0.15);
  --shadow-lg: 0 12px 48px oklch(0.3 0.05 80 / 0.2);
  --shadow-glow: 0 0 40px color-mix(in oklab, var(--color-gold) 15%, transparent);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --color-bg: #faf6ed; --color-surface: #f5efe0;
    --color-text: #1a1608; --color-text-muted: #5a5040;
    --color-forest: #2d5420; --color-gold: #a07020;
  }
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
::selection { background: color-mix(in oklab, var(--color-gold) 25%, transparent); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a, button, [role='button'] {
  transition: color var(--transition-interactive),
              background var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              opacity var(--transition-interactive),
              transform var(--transition-interactive);
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-3);
}
.section-eyebrow.light { color: var(--color-amber); }
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.section-title em { font-style: italic; color: var(--color-gold); }
.section-title.light-title { color: var(--color-cream); }
.section-title.light-title em { color: var(--color-amber); }
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-header .section-sub { margin-inline: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-forest);
  color: var(--color-cream);
  border-color: var(--color-forest);
}
.btn-primary:hover {
  background: var(--color-forest-hover);
  border-color: var(--color-forest-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in oklab, var(--color-forest) 40%, transparent);
}
.btn-ghost {
  background: transparent;
  color: var(--color-cream-muted);
  border-color: color-mix(in oklab, var(--color-border) 80%, transparent);
}
.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-forest);
  color: var(--color-forest);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in oklab, var(--color-gold) 35%, transparent);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,10,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,146,42,0.2);
  transition: box-shadow 0.3s ease;
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: var(--space-8);
}
.logo {
  display: flex; align-items: center; gap: var(--space-3);
  color: var(--color-text); flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: #ffffff;
}
.logo-sub { font-size: var(--text-xs); color: rgba(255,255,255,0.6); }
.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a { font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,0.88); }
.nav a:hover { color: var(--color-gold); }
.nav-cta {
  background: var(--color-gold);
  color: var(--color-bg) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
}
.nav-cta:hover { background: var(--color-gold-hover); transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-gold); border-color: var(--color-gold); }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: var(--space-2);
  border-radius: var(--radius-md); border: 1px solid var(--color-border);
}
.mobile-menu-btn span { display: block; height: 2px; background: var(--color-text-muted); border-radius: 2px; }
.mobile-nav {
  display: none; flex-direction: column;
  padding: var(--space-4) clamp(var(--space-6), 5vw, var(--space-16));
  border-top: 1px solid var(--color-divider);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: var(--space-3) 0;
  font-size: var(--text-base); font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: var(--radius-full);
  filter: blur(100px); pointer-events: none;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--color-forest), transparent 70%);
  top: -200px; left: -200px; opacity: 0.4;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-gold), transparent 70%);
  bottom: -100px; right: -100px; opacity: 0.25;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-amber), transparent 70%);
  top: 40%; left: 50%; transform: translate(-50%, -50%); opacity: 0.12;
}
.hero-particles { position: absolute; inset: 0; z-index: 0; }
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-6);
}
.eyebrow-leaf { font-size: 14px; }
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #ffffff !important; /* ALTID hvid — hero sidder altid på mørk foto-baggrund */
  text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.6);
  margin-bottom: var(--space-6);
}
.hero-heading em {
  font-style: italic;
  color: #FFD97D !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 12px rgba(0,0,0,0.75);
  line-height: 1.65;
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}
.hero-actions {
  display: flex; gap: var(--space-4);
  justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--space-12);
}
.hero-tent-visual {
  display: flex; justify-content: center;
}
.tent-card {
  display: inline-flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: rgba(20,10,0,0.80);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.tent-icon { font-size: 28px; }
.tent-info { text-align: left; }
.tent-info strong { display: block; font-size: var(--text-sm); font-weight: 600; color: #ffffff; }
.tent-info span { display: block; font-size: var(--text-xs); color: rgba(255,255,255,0.75); }
.hero-scroll-hint {
  position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  font-size: var(--text-xs); color: rgba(255,255,255,0.60);
  letter-spacing: 0.1em; text-transform: uppercase; z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---------- QUOTE DIVIDER ---------- */
.quote-divider {
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}
.hero-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-cream-muted);
  text-align: center;
  max-width: 70ch;
  margin-inline: auto;
  line-height: 1.5;
}
.hero-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-top: var(--space-4);
  letter-spacing: 0.05em;
}

/* ---------- OM STEDET ---------- */
.om { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.om-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}
.om-content { display: flex; flex-direction: column; gap: var(--space-5); }
.om-content p { color: var(--color-text-muted); font-size: var(--text-base); }
.om-features { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-3); }
.om-feature {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.feature-icon { font-size: 22px; flex-shrink: 0; }
.om-feature strong { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-1); }
.om-feature p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; max-width: none; }
.om-visual { display: flex; justify-content: center; }
.om-image-stack { position: relative; }
.om-img-main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.om-placeholder {
  width: 100%; max-width: 420px;
  aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-4);
  background: radial-gradient(ellipse at center, var(--color-forest-highlight) 0%, var(--color-bg) 70%);
  padding: var(--space-8);
}
.main-placeholder span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-cream-muted);
  text-align: center;
}
.main-placeholder em {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}
.tent-silhouette { width: 100%; max-width: 280px; opacity: 0.9; }
.om-img-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: var(--space-2);
  box-shadow: var(--shadow-md);
  font-size: 20px;
}
.om-img-badge strong { display: block; font-size: var(--text-sm); font-weight: 700; }
.om-img-badge em { display: block; font-size: var(--text-xs); opacity: 0.8; font-style: normal; }

/* ---------- EVENTS ---------- */
.events { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); position: relative; }
.events-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--color-surface);
}
.events .container { position: relative; z-index: 1; }
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.event-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card.event-featured {
  border-color: var(--color-gold);
  background: linear-gradient(160deg, var(--color-gold-highlight), var(--color-bg) 60%);
}
.event-card.event-sanctuary {
  background: linear-gradient(160deg, var(--color-forest-highlight), var(--color-bg) 60%);
}
.event-header { display: flex; justify-content: space-between; align-items: center; }
.event-type-badge {
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-forest-highlight);
  color: var(--color-success);
  border: 1px solid var(--color-forest);
}
.badge-gold { background: var(--color-gold-highlight); color: var(--color-gold); border-color: var(--color-gold); }
.badge-forest { background: var(--color-forest-highlight); color: var(--color-forest); border-color: var(--color-forest); }
.event-spots { font-size: var(--text-xs); color: var(--color-text-faint); font-weight: 500; }
.spots-limited { color: var(--color-amber); }
.event-date-block { display: flex; align-items: center; gap: var(--space-4); }
.event-date {
  display: flex; flex-direction: column; align-items: center;
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  min-width: 56px;
}
.date-day {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 700;
  color: var(--color-gold); line-height: 1;
}
.date-month { font-size: var(--text-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.event-time { font-size: var(--text-sm); color: var(--color-text-muted); }
.event-card h3 {
  font-size: var(--text-lg); font-weight: 600; line-height: 1.2;
  color: var(--color-cream);
}
.event-card h3 em { font-style: italic; color: var(--color-gold); }
.event-card > p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }
.event-details { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-2); }
.event-details li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--color-text-muted); max-width: none;
}
.event-details svg { flex-shrink: 0; color: var(--color-gold); margin-top: 2px; }
.event-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- WALK & TALK ---------- */
.walk-talk { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.walk-talk-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}
.wt-image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.wt-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  display: block;
}
.wt-quote-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-6);
  background: linear-gradient(to top, oklch(0 0 0 / 0.85), transparent);
}
.wt-quote-overlay p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-cream);
  line-height: 1.5;
  max-width: none;
}
.walk-talk-content { display: flex; flex-direction: column; gap: var(--space-5); }
.walk-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: italic;
}
.walk-talk-content p { color: var(--color-text-muted); }
.walk-talk-content em { color: var(--color-gold); font-style: italic; }
.walk-talk-content strong { color: var(--color-cream); }
.wt-what { margin-top: var(--space-4); }
.wt-what h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-5); }
.wt-steps { display: flex; flex-direction: column; gap: var(--space-4); }
.wt-step {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.wt-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-bg);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 700;
}
.wt-step strong { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-1); }
.wt-step p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; margin: 0; }

/* ---------- SANCTUARY ---------- */
.sanctuary { padding-block: 0; }
.sanctuary-inner {
  background: radial-gradient(ellipse 100% 80% at 50% 50%, var(--color-forest-highlight), var(--color-surface));
  border-block: 1px solid var(--color-border);
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.sanctuary-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}
.sanctuary-content { display: flex; flex-direction: column; gap: var(--space-6); }
.sanctuary-content p { color: var(--color-cream-muted); font-size: var(--text-base); }
.sanctuary-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.format-card {
  padding: var(--space-5);
  background: color-mix(in oklab, var(--color-surface) 60%, transparent);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: var(--space-2);
  backdrop-filter: blur(8px);
}
.format-icon { font-size: 24px; }
.format-card h4 { font-size: var(--text-sm); font-weight: 600; color: var(--color-cream); }
.format-card p { font-size: var(--text-sm); color: var(--color-cream-muted); max-width: none; margin: 0; }
.sanctuary-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-self: center;
}
.stat-card {
  padding: var(--space-6);
  background: color-mix(in oklab, var(--color-surface) 60%, transparent);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-2); text-align: center;
  backdrop-filter: blur(8px);
}
.stat-icon { font-size: 32px; }
.stat-card strong { font-size: var(--text-base); font-weight: 600; color: var(--color-cream); }
.stat-card span { font-size: var(--text-xs); color: var(--color-cream-muted); }

/* ---------- MARRTIN ---------- */
.marrtin { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.marrtin-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}
.marrtin-photo-wrap { display: flex; flex-direction: column; gap: var(--space-5); }
.marrtin-photo {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.marrtin-photo img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  display: block;
}
.marrtin-credentials { display: flex; flex-direction: column; gap: var(--space-3); }
.credential {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 20px;
}
.credential strong { display: block; font-size: var(--text-sm); font-weight: 600; }
.credential em { display: block; font-size: var(--text-xs); color: var(--color-gold); font-style: normal; }
.marrtin-content { display: flex; flex-direction: column; gap: var(--space-5); }
.marrtin-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-cream-muted);
  line-height: 1.5;
}
.marrtin-content p { color: var(--color-text-muted); }
.marrtin-content em { color: var(--color-gold); font-style: italic; }
.marrtin-content strong { color: var(--color-cream); }
.marrtin-links { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-3); }
.brand-link {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 22px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.brand-link:hover { border-color: var(--color-gold); transform: translateX(4px); }
.brand-link strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--color-cream); }
.brand-link em { display: block; font-size: var(--text-xs); color: var(--color-text-muted); font-style: normal; }

/* ---------- TILMELD ---------- */
.tilmeld {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.tilmeld-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}
.tilmeld-content { display: flex; flex-direction: column; gap: var(--space-6); }
.tilmeld-content p { color: var(--color-text-muted); }
.tilmeld-promises { display: flex; flex-direction: column; gap: var(--space-3); }
.promise {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.promise span { color: var(--color-success); font-weight: 700; }
.social-links { display: flex; flex-direction: column; gap: var(--space-3); }
.social-links p { font-size: var(--text-sm); color: var(--color-text-faint); max-width: none; }
.social-row { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600;
  color: var(--color-text-muted);
}
.social-link:hover { border-color: var(--color-gold); color: var(--color-gold); }
.tilmeld-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-10));
  display: flex; flex-direction: column; gap: var(--space-5);
}
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm); color: var(--color-text);
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-gold);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-gold) 15%, transparent);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-faint); }
.form-group select option { background: var(--color-surface); }
.form-note { font-size: var(--text-xs); color: var(--color-text-muted); text-align: center; max-width: none; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-12); padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-divider); margin-bottom: var(--space-8);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-brand p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 36ch; }
.footer-nav { display: flex; gap: var(--space-16); }
.footer-nav-col { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-nav-col h4 {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.footer-nav-col a { font-size: var(--text-sm); color: var(--color-text-muted); }
.footer-nav-col a:hover { color: var(--color-gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-4);
}
.footer-bottom p { font-size: var(--text-xs); color: #ffffff; max-width: none; }
.footer-bottom a { color: var(--color-gold); }
.footer-tagline { font-style: italic; }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .om-grid, .walk-talk-grid, .sanctuary-grid, .marrtin-grid, .tilmeld-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .sanctuary-formats { grid-template-columns: 1fr 1fr; }
  .sanctuary-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .events-grid { grid-template-columns: 1fr; }
  .sanctuary-stats { grid-template-columns: 1fr 1fr; }
  .sanctuary-formats { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: var(--space-8); }
  .footer-nav { gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-quote { font-size: var(--text-lg); }
}

/* ============================================================
   GALLERY SECTION — Huset & Glamping
   ============================================================ */

.gallery-section {
  padding: 6rem 0 5rem;
  background: var(--color-bg);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.gallery-intro {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

/* --- Glamping Hero Image --- */
.glamping-hero {
  margin-bottom: 3rem;
}

.glamping-hero-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  max-height: 520px;
}

.glamping-hero-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.6s ease;
}

.glamping-hero-img:hover img {
  transform: scale(1.02);
}

.glamping-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 1.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glamping-badge {
  display: inline-block;
  background: var(--color-gold);
  color: #0d1008;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  width: fit-content;
}

.glamping-caption {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 500px;
  font-style: italic;
  margin: 0;
}

/* --- House Mosaic Grid --- */
.house-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.mosaic-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--color-surface);
}

.mosaic-large {
  grid-column: 1 / 3;
}

.mosaic-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-large img {
  height: 320px;
}

.mosaic-item:hover img {
  transform: scale(1.04);
}

.mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Location Quote --- */
.location-quote {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.location-quote blockquote {
  margin: 0;
  padding: 2rem 2rem;
  border: 1px solid rgba(201, 146, 42, 0.2);
  border-radius: 1rem;
  background: rgba(201, 146, 42, 0.04);
}

.location-quote blockquote p {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.location-quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}

/* --- Responsive Gallery --- */
@media (max-width: 768px) {
  .house-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .mosaic-large {
    grid-column: 1 / 3;
  }

  .mosaic-item img,
  .mosaic-large img {
    height: 200px;
  }

  .glamping-hero-img img {
    height: 340px;
  }

  .glamping-hero-img {
    max-height: 340px;
  }

  .location-quote blockquote {
    padding: 1.5rem 1.2rem;
  }

  .location-quote blockquote p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .house-mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic-large {
    grid-column: 1;
  }
  .mosaic-item img,
  .mosaic-large img {
    height: 240px;
  }
}

/* ============================================================
   WALK & TALK — Recognition T-shirt Callout
   ============================================================ */

.wt-tshirt-callout {
  margin: 2rem 0 1.5rem;
  background: rgba(201, 146, 42, 0.06);
  border: 1px solid rgba(201, 146, 42, 0.22);
  border-radius: 1rem;
  padding: 1.5rem;
}

.wt-tshirt-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.wt-tshirt-imgs {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.wt-tshirt-imgs img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.wt-tshirt-text {
  flex: 1;
  min-width: 0;
}

.wt-tshirt-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.wt-tshirt-text p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.wt-tshirt-offer {
  font-style: italic;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  margin-top: 0.25rem;
  display: inline-block;
}

@media (max-width: 600px) {
  .wt-tshirt-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .wt-tshirt-imgs {
    justify-content: flex-start;
  }

  .wt-tshirt-imgs img {
    width: 80px;
    height: 95px;
  }
}

/* ── SANCTUARY BILLEDE BANNER ── */
.sanctuary-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .sanctuary-banner { height: 380px; }
}

.sanctuary-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.sanctuary-banner:hover .sanctuary-banner-bg {
  transform: scale(1.08);
}

.sanctuary-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 4, 2, 0.60) 0%,
    rgba(6, 4, 2, 0.45) 40%,
    rgba(6, 4, 2, 0.65) 100%
  );
}

.sanctuary-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.sanctuary-banner-eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 210, 130, 0.85);
  margin: 0 0 1.1rem;
}

.sanctuary-banner-quote {
  font-family: 'Zodiak', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0 0 1.4rem;
  line-height: 1.2;
  text-shadow: 0 2px 32px rgba(0,0,0,0.85), 0 1px 8px rgba(0,0,0,0.7);
  letter-spacing: -0.01em;
}

.sanctuary-banner-line {
  width: 48px;
  height: 2px;
  background: rgba(255, 210, 130, 0.7);
  margin: 0 auto;
  border-radius: 1px;
}

/* ── HERO BAGGRUNDSBILLEDE ── */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0.58;
  transform: scale(1.04);
  animation: heroBgZoom 12s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.hero-bg-photo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(6,4,2,0.55) 100%);
  pointer-events: none;
}

/* ── HERO TEKST OVERRIDE — KUN FOR HERO MED BAGGRUNDSBILLEDE ── */
.hero-bg-photo {
  opacity: 0.40; /* Mørkere = bedre tekstkontrast */
}
.hero-bg-photo-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,10,0,0.55) 0%,
    rgba(20,10,0,0.30) 35%,
    rgba(20,10,0,0.70) 100%
  );
}
/* Disse regler gælder KUN inde i .hero-img (event-sider med foto-baggrund) */
.hero-img .hero-eyebrow,
.hero-img .hero-badge,
.hero-img .section-eyebrow {
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-img .hero-heading,
.hero-img .hero-title,
.hero-img h1 {
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.65), 0 1px 4px rgba(0,0,0,0.5);
}
.hero-img .hero-heading em {
  color: #FFD97D;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  text-shadow: 0 2px 20px rgba(0,0,0,0.65);
}
.hero-img .hero-sub,
.hero-img .hero-subtitle,
.hero-img p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.hero-img .hero-scroll-hint {
  color: rgba(255,255,255,0.60);
}
/* Sektion-overskrifter og løbende tekst bruger CSS-variabler (virker i begge tilstande) */

/* ── FORMULAR CHECKBOXES ── */
.form-check-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0.1rem 0 0.75rem;
  font-style: italic;
}
.form-checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.form-check:hover {
  border-color: var(--color-gold);
  background: rgba(212,175,55,0.06);
}
.form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.check-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.15s;
  flex-shrink: 0;
}
.form-check input:checked ~ .check-box {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.form-check input:checked ~ .check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #1a1a0a;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.form-check input:checked ~ .check-label {
  color: var(--color-cream);
}
.form-check:has(input:checked) {
  border-color: var(--color-gold);
  background: rgba(212,175,55,0.08);
}
.check-label {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  transition: color 0.15s;
}
.check-label em {
  display: block;
  font-size: 0.74rem;
  font-style: normal;
  color: var(--color-text-faint);
  margin-top: 0.1rem;
}

/* ═══════════════════════════════════════════════════════
   WALK & TALK EVENTS SECTION (Danmark Turné)
═══════════════════════════════════════════════════════ */
.walk-talk-events {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--color-bg);
  border-top: 2px solid var(--color-border);
  position: relative;
}

.walk-talk-events::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--color-gold);
}

.wt-eyebrow {
  color: var(--color-forest) !important;
}

.wt-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 820px;
}

.wt-card {
  background: var(--color-surface);
  border: 1px solid var(--color-forest);
}

.wt-card:hover {
  border-color: var(--color-forest);
  box-shadow: 0 8px 32px rgba(1, 105, 111, 0.15);
}

/* Coming soon cards — subtle visual treatment */
.event-coming-soon {
  opacity: 0.88;
  background: linear-gradient(160deg, rgba(25, 42, 35, 0.4), var(--color-bg) 60%);
}

/* Spots labels */
.spots-soon { color: var(--color-amber, #d4a843); font-style: italic; }

/* New badge types */
.badge-rose {
  background: rgba(160, 44, 123, 0.15);
  color: #d163a7;
  border-color: rgba(160, 44, 123, 0.4);
}

.badge-navy {
  background: rgba(0, 100, 148, 0.15);
  color: #5591c7;
  border-color: rgba(0, 100, 148, 0.4);
}

.badge-dark {
  background: rgba(80, 80, 100, 0.2);
  color: #b0afc0;
  border-color: rgba(80, 80, 100, 0.4);
}

.badge-wt {
  background: rgba(1, 105, 111, 0.15);
  color: var(--color-forest);
  border-color: var(--color-forest);
}

/* Outline soft button */
.btn-outline-soft {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-outline-soft:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Walk & Talk button variant */
.btn-wt {
  background: var(--color-forest);
  color: var(--color-cream);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center;
  border: none;
}
.btn-wt:hover {
  background: #0a4e54;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 600px) {
  .wt-events-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   EVENT INTEREST SYSTEM
═══════════════════════════════════════════════════════ */

/* Interest counter bar */
.interest-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.interest-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.interest-icon {
  color: var(--color-gold);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.interest-count {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-cream);
  min-width: 14px;
}

.interest-label {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}

/* "Jeg er interesseret" button */
.btn-interest {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
}

.btn-interest:hover {
  background: var(--color-gold);
  color: #1a1208;
  transform: translateY(-1px);
}

.btn-interest::before {
  content: '♡';
  font-size: 14px;
  transition: content 0.2s;
}

.btn-interest:hover::before {
  content: '♥';
}

.btn-interest--done {
  background: rgba(67, 122, 34, 0.15) !important;
  border-color: var(--color-success) !important;
  color: var(--color-success) !important;
  cursor: default !important;
  transform: none !important;
}

.btn-interest--done::before {
  content: '' !important;
}

/* Mini interest form */
.interest-form-wrap {
  animation: slideDown 0.25s ease;
  overflow: hidden;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.interest-mini-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mini-form-title {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.4;
}

.mini-input {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: var(--color-cream);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.mini-input::placeholder { color: var(--color-text-faint); }
.mini-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.mini-form-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.btn-interest-submit {
  background: var(--color-gold);
  color: #1a1208;
  border: none;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex: 1;
}

.btn-interest-submit:hover {
  background: #e8c454;
  transform: translateY(-1px);
}

.btn-cancel {
  background: transparent;
  border: none;
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  cursor: pointer;
  padding: var(--space-2);
  transition: color 0.2s;
}
.btn-cancel:hover { color: var(--color-text-muted); }

.mini-form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin: 0;
  text-align: center;
}

/* Confirmation message */
.interest-confirmed {
  background: rgba(67, 122, 34, 0.12);
  border: 1px solid rgba(67, 122, 34, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  color: var(--color-success);
  font-size: var(--text-sm);
  text-align: center;
  line-height: 1.5;
  margin: 0;
  animation: slideDown 0.3s ease;
}

.interest-confirmed strong {
  color: var(--color-cream);
}

/* ══════════════════════════════════════════
   SPROG-TOGGLE DA/EN
══════════════════════════════════════════ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3px;
  margin-left: 8px;
}
.lang-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 16px;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.lang-btn.active {
  background: var(--color-gold);
  color: var(--color-text-inverse);
}
.lang-btn:hover:not(.active) {
  color: var(--color-text);
}

[data-en] { transition: opacity 0.15s; }


/* ══════════════════════════════════════════
   LYS TILSTAND — KONTRASTFIX
   Alle sektioner med hardkodet farver
══════════════════════════════════════════ */

/* Format-kort (mørk bg i dark mode, lys bg i light mode) */
[data-theme='light'] .format-card {
  background: var(--color-surface);
}
[data-theme='light'] .format-card h4,
[data-theme='light'] .format-card p {
  color: var(--color-text);
}

/* Sektioner med section-title.light-title */
[data-theme='light'] .section-title.light-title {
  color: var(--color-text);
}
[data-theme='light'] .section-title.light-title em {
  color: var(--color-gold);
}

/* Logo og tent-card er altid på mørk baggrund — altid hvid tekst */
[data-theme='light'] .logo-name {
  color: #ffffff;
}
[data-theme='light'] .tent-info strong {
  color: #ffffff;
}
[data-theme='light'] .tent-info span {
  color: rgba(255,255,255,0.75);
}

/* Hero-heading på index i lystilstand — sidder stadig på mørk baggrund (orbs) */
/* Ingen ændring nødvendig — index hero har altid mørk overlay */

/* Lys tilstand: specifikke elementer med light-title */
[data-theme='light'] .section-title.light-title,
[data-theme='light'] .format-card h4 {
  color: var(--color-text);
}
/* KRITISK: hero-heading og generelle h1/h2/h3 MÅ IKKE overskrives i light mode — kontekst afgør farven */
[data-theme='light'] h1:not(.hero-heading):not(.page-hero h1),
[data-theme='light'] h2:not(.hero-heading),
[data-theme='light'] h3:not(.hero-heading) {
  color: var(--color-text);
}
/* Undtagelse: elementer inde i hero-img (mørk foto-baggrund) skal fortsat være hvide */
[data-theme='light'] .hero-img h1,
[data-theme='light'] .hero-img h2,
[data-theme='light'] .hero-img .hero-heading,
[data-theme='light'] .page-hero h1,
[data-theme='light'] .page-hero h2,
[data-theme='light'] .form-header h2,
[data-theme='light'] .signup-form-section h2 {
  color: #ffffff !important;
}

/* ── SANCTUARY SEKTION — KONTRAST ──
   I lystilstand: lys baggrund → mørk tekst
   I mørktilstand: mørk baggrund → lys tekst (allerede OK) */
[data-theme='light'] .sanctuary-content p,
[data-theme='light'] .sanctuary-stats .stat-card span,
[data-theme='light'] .format-card p {
  color: var(--color-text-muted);
}
[data-theme='light'] .format-card h4,
[data-theme='light'] .stat-card strong,
[data-theme='light'] .sanctuary-content .section-sub {
  color: var(--color-text);
}

/* ── GALLERY SEKTION ── */
[data-theme='light'] .gallery-intro,
[data-theme='light'] .gallery-section p {
  color: var(--color-text-muted);
}

/* ── DEFINER MANGLENDE CSS-VARIABLER ── */
:root {
  --color-muted: var(--color-text-muted);
}
[data-theme='dark'] {
  --color-muted: #a09880;
}
[data-theme='light'] {
  --color-muted: #5a5040;
}

/* ══════════════════════════════════════════════════════
   LIGHT MODE — KRAFTIG TEKSTKONTRAST PÅ ALLE SEKTIONER
   Lys baggrund → mørk tekst. Aldrig svag tekst på lys bg.
   ══════════════════════════════════════════════════════ */

/* Event-kort h3 — --color-cream er for lys på lys bg */
[data-theme='light'] .event-card h3 {
  color: #1a1008;
}
[data-theme='light'] .event-card > p,
[data-theme='light'] .event-details li {
  color: #3a2d1a;
}

/* Section-titles i lyse sektioner */
[data-theme='light'] .section-title {
  color: #1a1008;
}
[data-theme='light'] .section-sub {
  color: #4a3d28;
}

/* Om-sektion, feature-tekster, generelle brødtekster */
[data-theme='light'] .om-content p,
[data-theme='light'] .om-feature p,
[data-theme='light'] .format-card p,
[data-theme='light'] .walk-talk-content p,
[data-theme='light'] .tilmeld-content p {
  color: #3a2d1a;
}

/* "Det du skal vide" kort — lys bg */
[data-theme='light'] .need-to-know-card h4,
[data-theme='light'] .info-card h4,
[data-theme='light'] .know-card h4 {
  color: #1a1008;
}
[data-theme='light'] .need-to-know-card p,
[data-theme='light'] .info-card p,
[data-theme='light'] .know-card p {
  color: #3a2d1a;
}

/* Sanctuary-banner / mørke sektioner — tekst SKAL være lys */
.sanctuary-banner h2,
.sanctuary-banner p,
[data-theme='light'] .sanctuary-banner h2,
[data-theme='light'] .sanctuary-banner p {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* "Manden der skabte stedet" — mørk bg → hvid tekst */
.marrtin-section h2,
.marrtin-section p,
[data-theme='light'] .marrtin-section h2,
[data-theme='light'] .marrtin-section p {
  color: #f5ede0;
}

/* Hero-eyebrow på forsiden — altid synlig */
.hero-eyebrow {
  color: rgba(255,255,255,0.85) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
