/* ============================================================
   FUGLEBJERG SKYTTEFORENING — Stylesheet
   Palette: Gul #F5C800 · Lyseblå #A8C8D8 · Mørk navy #1A2535
   ============================================================ */

/* === DESIGN TOKENS === */
:root,
[data-theme='light'] {
  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;

  /* Brand Colors */
  --brand-yellow: #F5C800;
  --brand-yellow-dark: #D4A800;
  --brand-yellow-light: #FDE9A0;
  --brand-blue: #A8C8D8;
  --brand-blue-dark: #7AAFC4;
  --brand-navy: #1A2535;
  --brand-navy-mid: #243248;

  /* Surfaces */
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-surface-2: #F5F4F0;
  --color-surface-offset: #EEE9DC;
  --color-divider: #E2DDD4;
  --color-border: #D6D0C6;

  /* Text */
  --color-text: #1A2535;
  --color-text-muted: #5A6476;
  --color-text-faint: #9AA3AF;
  --color-text-inverse: #FAFAF8;

  /* Primary Accent = Brand Yellow */
  --color-primary: #C49900;
  --color-primary-hover: #A07D00;
  --color-primary-active: #7A6000;
  --color-primary-highlight: #FDE9A0;

  /* Secondary = Navy */
  --color-secondary: #1A2535;
  --color-secondary-hover: #243248;

  /* 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;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,37,53,0.07);
  --shadow-md: 0 4px 16px rgba(26,37,53,0.10);
  --shadow-lg: 0 12px 40px rgba(26,37,53,0.14);

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-default: 1100px;
  --content-narrow: 720px;
}

[data-theme='dark'] {
  --color-bg: #111620;
  --color-surface: #171D2C;
  --color-surface-2: #1D2539;
  --color-surface-offset: #1A2232;
  --color-divider: #252E42;
  --color-border: #2E3A52;
  --color-text: #E8EBF0;
  --color-text-muted: #8A97AA;
  --color-text-faint: #4A5668;
  --color-text-inverse: #111620;
  --color-primary: #F5C800;
  --color-primary-hover: #FFD730;
  --color-primary-highlight: #2E2800;
  --color-surface-offset: #1E2840;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #111620;
    --color-surface: #171D2C;
    --color-surface-2: #1D2539;
    --color-surface-offset: #1A2232;
    --color-divider: #252E42;
    --color-border: #2E3A52;
    --color-text: #E8EBF0;
    --color-text-muted: #8A97AA;
    --color-text-faint: #4A5668;
    --color-text-inverse: #111620;
    --color-primary: #F5C800;
    --color-primary-hover: #FFD730;
    --color-primary-highlight: #2E2800;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  }
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[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; }

::selection { background: rgba(245,200,0,0.25); color: var(--color-text); }

:focus-visible {
  outline: 2px solid var(--color-primary);
  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;
  }
}

button { cursor: pointer; background: none; border: none; }

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition-interactive),
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    opacity var(--transition-interactive);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* === LAYOUT === */
.container {
  width: min(var(--content-default), 100%);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section--accent {
  background: var(--brand-navy);
  color: var(--color-text-inverse);
}
[data-theme='dark'] .section--accent {
  background: var(--color-surface-2);
  color: var(--color-text);
}
.section--offset { background: var(--color-surface-2); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 37, 53, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,200,0,0.15);
  transition: box-shadow var(--transition-interactive);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-block: var(--space-3);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-yellow);
  letter-spacing: -0.01em;
}
.logo-subtitle {
  font-size: var(--text-xs);
  color: var(--brand-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--brand-yellow);
  background: rgba(245,200,0,0.08);
}

.nav-link--cta {
  background: var(--brand-yellow);
  color: var(--brand-navy) !important;
  font-weight: 700;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-left: var(--space-2);
}
.nav-link--cta:hover {
  background: #FFD730 !important;
  color: var(--brand-navy) !important;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--brand-yellow); background: rgba(245,200,0,0.08); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  color: white;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-interactive), opacity var(--transition-interactive);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border-color: var(--brand-yellow);
}
.btn--primary:hover {
  background: #FFD730;
  border-color: #FFD730;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,200,0,0.4);
}
.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 60% 50%, rgba(168,200,216,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(245,200,0,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #111827 0%, #1A2535 50%, #1E2E40 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
  padding-block: var(--space-16);
}

.hero-content {
  max-width: 620px;
}

/* Hero logo */
.hero-logo-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 70% 70% at 50% 50%,
    rgba(245,200,0,0.18) 0%,
    rgba(168,200,216,0.08) 40%,
    transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-logo-img {
  width: clamp(220px, 28vw, 400px);
  height: auto;
  filter:
    drop-shadow(0 0 40px rgba(245,200,0,0.30))
    drop-shadow(0 8px 32px rgba(0,0,0,0.50));
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(245,200,0,0.12);
  border: 1px solid rgba(245,200,0,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--brand-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.hero-lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === HIGHLIGHTS === */
.highlights {
  padding-block: var(--space-10);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(245,200,0,0.1);
  border-radius: var(--radius-lg);
}
[data-theme='dark'] .highlight-icon { background: rgba(245,200,0,0.12); }

.highlight-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-body);
}
.highlight-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.section--accent .section-title { color: var(--brand-yellow); }

.section-lead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
  margin-inline: auto;
}
.section--accent .section-lead { color: rgba(255,255,255,0.65); }

/* === ABOUT SECTION === */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-16);
  align-items: start;
}

.about-text h2 { margin-bottom: var(--space-6); }

.lead-text {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.about-club-info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.club-info-header {
  background: var(--brand-navy);
  color: var(--brand-yellow);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-6);
}

.club-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}
.club-info-item:last-child { border-bottom: none; }

.club-info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.club-info-item span:last-child {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}

/* === SCHEDULE === */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-6);
  max-width: 800px;
  margin-inline: auto;
}

.schedule-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.schedule-card--highlight {
  background: rgba(245,200,0,0.08);
  border-color: rgba(245,200,0,0.25);
}

.schedule-day {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brand-yellow);
  margin-bottom: var(--space-5);
}

.schedule-times { display: flex; flex-direction: column; gap: var(--space-4); }

.schedule-slot {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.schedule-time {
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  font-variant-numeric: tabular-nums;
}

.schedule-discipline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.discipline--pistol {
  background: rgba(168,200,216,0.15);
  color: var(--brand-blue);
  border: 1px solid rgba(168,200,216,0.3);
}
.discipline--riffel {
  background: rgba(245,200,0,0.12);
  color: var(--brand-yellow);
  border: 1px solid rgba(245,200,0,0.25);
}

.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  max-width: 600px;
  margin: var(--space-10) auto 0;
  padding: var(--space-5) var(--space-6);
  background: rgba(168,200,216,0.08);
  border: 1px solid rgba(168,200,216,0.2);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.7);
}
.schedule-note svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-blue); }
.schedule-note p { font-size: var(--text-sm); }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 720px;
  margin-inline: auto;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8) var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--brand-yellow);
  border-width: 2px;
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-yellow), #FFD730);
}

.pricing-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.pricing-card--featured .pricing-badge { color: var(--brand-yellow); }

.pricing-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.pricing-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.pricing-features li::before {
  content: '✓';
  color: var(--brand-yellow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Payment info */
.payment-info {
  max-width: 720px;
  margin: var(--space-12) auto 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.payment-title {
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-body);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.payment-method {
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.payment-method:first-child { border-right: 1px solid var(--color-divider); }

.payment-method-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.payment-method-detail {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}

.payment-note, .payment-dgi {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.payment-note svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.payment-note p, .payment-dgi p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.payment-dgi { border-bottom: none; }
.payment-dgi a { color: var(--color-primary); font-weight: 600; }
.payment-dgi a:hover { text-decoration: underline; }

/* === BOARD === */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.board-card--primary { grid-column: span 1; }

.board-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.board-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.board-card--primary {
  border-color: var(--brand-yellow);
  border-width: 2px;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
}

.board-role {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.board-card--primary .board-role { color: var(--brand-yellow); }

.board-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.board-number {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}

.board-contact { display: flex; flex-direction: column; gap: var(--space-2); }
.board-contact-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.board-contact-link svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.board-contact-link:hover { color: var(--color-primary); }

/* === PRØVESKYDNING === */
.proveskyd-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-16);
  align-items: start;
  margin-bottom: var(--space-10);
}

.proveskyd-intro p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.65;
}
.proveskyd-intro strong { color: var(--color-text); }

.proveskyd-rules {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.rule-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.rule-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.rule-card--highlight {
  border-color: var(--brand-yellow);
  border-width: 2px;
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(245,200,0,0.03) 100%);
}

.rule-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245,200,0,0.1);
  color: var(--color-primary);
  margin-top: 2px;
}
.rule-card--highlight .rule-icon {
  background: rgba(245,200,0,0.15);
  color: var(--brand-yellow);
}

.rule-title {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.rule-card--highlight .rule-title { color: var(--color-primary); }

.rule-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.rule-desc strong { color: var(--color-text); }

.proveskyd-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.proveskyd-note svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.proveskyd-note a { color: var(--color-primary); font-weight: 600; }
.proveskyd-note a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .proveskyd-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* === VEDTÆGTER === */
.vedtaegter-layout {
  max-width: var(--content-narrow);
  margin-inline: auto;
}

.vedtaegter-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vedtaegt-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-divider);
  align-items: start;
}
.vedtaegt-item:last-child { border-bottom: none; }

.vedtaegt-nr {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brand-yellow);
  padding-top: 2px;
  white-space: nowrap;
}
[data-theme='light'] .vedtaegt-nr { color: var(--color-primary); }

.vedtaegt-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.vedtaegt-sub { display: flex; flex-direction: column; gap: var(--space-3); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
[data-theme='dark'] .contact-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.contact-role {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-yellow);
  margin-bottom: var(--space-2);
}

.contact-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-4);
}
[data-theme='dark'] .contact-name { color: var(--color-text); }

.contact-links { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.contact-link svg { flex-shrink: 0; margin-top: 3px; }
[data-theme='dark'] .contact-link { color: var(--color-text-muted); }
.contact-link:hover { color: var(--brand-yellow); }

.contact-address {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
[data-theme='dark'] .contact-address { color: var(--color-text-muted); }

.contact-card .btn--ghost {
  border-color: rgba(255,255,255,0.25);
}
[data-theme='dark'] .contact-card .btn--ghost {
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
[data-theme='dark'] .contact-card .btn--ghost:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

/* === FOOTER === */
.site-footer {
  background: #0D1320;
  color: rgba(255,255,255,0.5);
  padding-block: var(--space-10);
  border-top: 1px solid rgba(245,200,0,0.1);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brand-yellow);
}
.footer-logo-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}
.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--brand-yellow); }

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  width: 100%;
  text-align: center;
  padding-top: var(--space-6);
  margin-top: var(--space-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-image-wrap {
    max-width: 500px;
  }
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .board-card--primary {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }
  .hero-logo-wrap {
    order: -1;
  }
  .hero-logo-img {
    width: clamp(160px, 40vw, 260px);
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badge {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 29, 46, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,200,0,0.15);
    padding: var(--space-4) var(--space-6);
    margin-left: 0;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
  }
  .nav-link {
    padding: var(--space-3) var(--space-4);
  }
  .nav-link--cta {
    margin-left: 0;
    margin-top: var(--space-2);
    justify-content: center;
  }
  .theme-toggle {
    margin-left: auto;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }
  .board-card--primary {
    grid-column: span 1;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }
  .payment-method:first-child {
    border-right: none;
    border-bottom: 1px solid var(--color-divider);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vedtaegt-item {
    grid-template-columns: 60px 1fr;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .logo-text { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Active nav link highlight */
.nav-link.active {
  color: var(--brand-yellow);
}
