/* ═══════════════════════════════════════════
   FESTIVAL SERVICE — Shared Design System
   Sibling brand to Bontech (bontech.dk)
   Part of Bonmik Group ApS
   ═══════════════════════════════════════════ */

/* DM Sans — self-hosted (GDPR-compliant, ingen Google-kald) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #090D0E;
  --bg-white: #0F1618;
  --bg-light: #141C1D;
  --bg-hero: #090D0E;
  --bg-dark: linear-gradient(168deg, #000000 0%, #050A0B 50%, #000000 100%);
  --bg-footer: #050A0B;

  --text-primary: #E8F4F3;
  --text-secondary: #9CC5C3;
  --text-tertiary: #5A8485;
  --text-on-dark: #E8F4F3;
  --text-on-dark-muted: #9CC5C3;

  --accent: #0EA5A0;
  --accent-hover: #13BEB8;
  --accent-light: rgba(14, 165, 160, 0.12);
  --accent-glow: rgba(14, 165, 160, 0.2);

  --border: rgba(14, 165, 160, 0.15);
  --border-light: rgba(14, 165, 160, 0.08);
  --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 8px 32px rgba(0,0,0,0.5);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-card-hover: 0 8px 28px rgba(14,165,160,0.2);

  --space-xs: 0.5rem; --space-sm: 0.75rem; --space-md: 1rem;
  --space-lg: 1.5rem; --space-xl: 2rem; --space-2xl: 3rem;
  --space-3xl: 4rem; --space-4xl: 6rem;

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --text-xs: 0.75rem; --text-sm: 0.875rem; --text-base: 1rem;
  --text-lg: 1.125rem; --text-xl: 1.25rem; --text-2xl: 1.5rem;
  --text-3xl: 2rem; --text-4xl: 2.75rem; --text-5xl: 3.5rem;

  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 24px; --radius-full: 9999px;
  --ease: cubic-bezier(0.4,0,0.2,1); --dur: 0.3s;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); font-size: var(--text-base);
  line-height: 1.65; color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1,h2,h3,h4 {
  font-family: var(--font); font-weight: 700;
  line-height: 1.18; letter-spacing: -0.025em; color: var(--text-primary);
}
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--space-lg); }
h3 { font-size: var(--text-xl); }
p { color: var(--text-secondary); }
a { color: var(--accent); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 var(--space-xl); }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 var(--space-xl); }

.section-label {
  display: inline-block; font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--space-md);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font); font-size: var(--text-base); font-weight: 600;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
  border: none; cursor: pointer; transition: all var(--dur) var(--ease);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 12px rgba(14,165,160,0.3); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; box-shadow: 0 4px 20px rgba(14,165,160,0.45); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border); padding: calc(0.75rem - 1.5px) calc(1.5rem - 1.5px); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.btn-white { background: #fff; color: #0F1618; box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.btn-white:hover { color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.18); transform: translateY(-1px); }
.btn-sm { font-size: var(--text-sm); padding: 0.5rem 1.1rem; }
.btn-ghost { background: transparent; color: var(--accent); padding: 0; font-size: var(--text-sm); }
.btn-ghost:hover { color: var(--accent-hover); gap: 0.6em; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,13,14,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14,165,160,0.12);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: var(--space-xl); padding: 0.9rem 0; }
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--text-lg); font-weight: 700; color: var(--text-primary);
  text-decoration: none; flex-shrink: 0; letter-spacing: -0.02em;
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo:hover { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin: 0; padding: 0; flex: 1; }
.nav-links a {
  font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary);
  padding: 0.45rem 0.75rem; border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-light); }
.header-cta { display: flex; align-items: center; gap: var(--space-md); flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary);
  transition: color var(--dur) var(--ease);
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Mobile nav */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--dur) var(--ease); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border-light); background: var(--bg-white);
  padding: var(--space-md) var(--space-xl);
}
.mobile-nav a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); font-weight: 500; font-size: var(--text-sm); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── Sections ── */
.section { padding: var(--space-4xl) 0; }
.section-light { background: var(--bg-light); }
.section-white { background: var(--bg-white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-3xl); }
.section-header p { font-size: var(--text-lg); color: var(--text-secondary); margin-top: var(--space-sm); }

/* ── Page hero (subpages) ── */
.page-hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(5,10,11,0.93) 0%, rgba(9,13,14,0.97) 100%),
              url('../hero.png') center 35% / cover no-repeat;
  min-height: 320px; display: flex; align-items: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(14,165,160,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(14,165,160,0.3), transparent);
}
.page-hero .container { position: relative; z-index: 1; width: 100%; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, var(--text-4xl)); margin-bottom: var(--space-md); }
.page-hero p { font-size: var(--text-lg); max-width: 620px; color: var(--text-secondary); }

/* ── Client marquee ── */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-light), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-light), transparent); }
.marquee-track {
  display: flex; gap: var(--space-md); width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.6rem 1.4rem;
  font-size: var(--text-sm); font-weight: 600; color: var(--text-primary);
  white-space: nowrap; flex-shrink: 0; transition: all var(--dur) var(--ease);
}
.marquee-item:hover { border-color: var(--accent); color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Stat counter ── */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: var(--space-xl) var(--space-lg); border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -0.04em; }
.stat-label { font-size: var(--text-sm); color: var(--text-tertiary); font-weight: 500; }
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } .stat-item:nth-child(2) { border-right: none; } .stat-item:nth-child(3) { border-top: 1px solid var(--border); } .stat-item:nth-child(4) { border-top: 1px solid var(--border); } }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: var(--space-lg);
  font-size: var(--text-sm); color: var(--text-tertiary);
}
.breadcrumb a { color: var(--text-tertiary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-tertiary); }
.breadcrumb .current { color: var(--accent); font-weight: 500; }

/* ── Hero (index) ── */
.hero { background: var(--bg-hero); padding: var(--space-4xl) 0 var(--space-3xl); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(135deg, rgba(14,165,160,0.04) 1px, transparent 1px), linear-gradient(45deg, rgba(14,165,160,0.04) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4xl); align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-light); color: var(--accent);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: var(--radius-full); margin-bottom: var(--space-lg);
  opacity: 0; animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s ease-in-out infinite; }
.hero h1 { font-size: clamp(2.2rem,5vw,var(--text-5xl)); margin-bottom: var(--space-sm); opacity: 0; animation: fadeUp 0.6s var(--ease) 0.2s forwards; }
.hero-sub { font-size: var(--text-2xl); font-weight: 400; font-style: italic; color: var(--accent); margin-bottom: var(--space-lg); opacity: 0; animation: fadeUp 0.6s var(--ease) 0.3s forwards; letter-spacing: -0.01em; }
.hero-body { font-size: var(--text-lg); line-height: 1.7; color: var(--text-secondary); margin-bottom: var(--space-xl); opacity: 0; animation: fadeUp 0.6s var(--ease) 0.4s forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); opacity: 0; animation: fadeUp 0.6s var(--ease) 0.5s forwards; }

/* Hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; opacity: 0; animation: fadeIn 0.8s var(--ease) 0.4s forwards; }
.hero-stage {
  width: 100%; max-width: 380px; background: var(--bg-white);
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: var(--space-xl); position: relative;
}
.stage-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: var(--space-lg); }
.stage-dot { width: 10px; height: 10px; border-radius: 50%; }
.stage-dot:nth-child(1) { background: #FF6B6B; }
.stage-dot:nth-child(2) { background: #FFD93D; }
.stage-dot:nth-child(3) { background: var(--accent); }
.stage-title { font-size: var(--text-xs); color: var(--text-tertiary); margin-left: auto; font-weight: 500; }
.stage-event { background: var(--bg-light); border-radius: var(--radius-md); padding: var(--space-md); margin-bottom: var(--space-sm); display: flex; align-items: center; gap: var(--space-md); }
.stage-event:last-of-type { margin-bottom: 0; }
.event-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.event-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.event-name { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); }
.event-meta { font-size: var(--text-xs); color: var(--text-tertiary); margin-top: 1px; }
.event-status { margin-left: auto; flex-shrink: 0; font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.25rem 0.5rem; border-radius: var(--radius-full); background: var(--accent-light); color: var(--accent); }
.event-status.active { background: #E8F8F0; color: #1A7A4A; }

/* Floating badges */
.badge-float {
  position: absolute; background: var(--bg-white); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); border-radius: var(--radius-lg); padding: 0.65rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); white-space: nowrap;
}
.badge-float span { color: var(--text-tertiary); font-size: var(--text-xs); font-weight: 400; }
.badge-emoji { font-size: 1.1rem; }
.badge-1 { top: -20px; right: -20px; animation: floatBadge1 4s ease-in-out infinite; }
.badge-2 { bottom: 30px; left: -30px; animation: floatBadge2 5s ease-in-out infinite 1s; }
.badge-3 { bottom: -20px; right: 20px; animation: floatBadge1 4.5s ease-in-out infinite 0.5s; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.service-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  box-shadow: var(--shadow-card); transition: all var(--dur) var(--ease); display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); border-color: rgba(14,165,160,0.2); }
.service-icon { width: 48px; height: 48px; background: var(--accent-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-lg); flex-shrink: 0; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: var(--space-sm); font-size: var(--text-lg); }
.service-card p { font-size: var(--text-sm); line-height: 1.7; flex: 1; }
.service-card .btn-ghost { margin-top: var(--space-lg); }

/* ── Process ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-xl); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px); height: 1px; background: linear-gradient(to right, var(--accent), var(--border), var(--accent)); }
.process-step { text-align: center; position: relative; }
.step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-white); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-lg); font-size: var(--text-xl); font-weight: 700; color: var(--accent); font-family: var(--font); position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg-light); }
.process-step h3 { font-size: var(--text-base); margin-bottom: var(--space-xs); }
.process-step p { font-size: var(--text-sm); line-height: 1.65; }

/* ── Clients ── */
.client-badges { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; margin-bottom: var(--space-3xl); }
.client-badge { background: var(--text-primary); color: var(--text-on-dark); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1.1rem; border-radius: var(--radius-full); transition: all var(--dur) var(--ease); }
.client-badge:hover { background: var(--accent); }
.testimonial-block { max-width: 680px; margin: 0 auto; text-align: center; padding: var(--space-2xl); background: var(--bg-light); border-radius: var(--radius-xl); border: 1px solid var(--border); }
.testimonial-quote { font-size: var(--text-xl); font-style: italic; font-weight: 400; line-height: 1.65; color: var(--text-primary); margin-bottom: var(--space-lg); position: relative; }
.testimonial-quote::before { content: '"'; font-size: 5rem; color: var(--accent-light); font-style: normal; font-weight: 700; position: absolute; top: -1.5rem; left: -1rem; line-height: 1; font-family: Georgia, serif; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: var(--space-md); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: var(--text-base); font-weight: 700; color: #fff; }
.author-info { text-align: left; }
.author-name { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); }
.author-role { font-size: var(--text-xs); color: var(--text-tertiary); }

/* ── Dark CTA ── */
.dark-cta { background: var(--bg-dark); padding: var(--space-4xl) 0; text-align: center; position: relative; overflow: hidden; }
.dark-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(14,165,160,0.12) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(14,165,160,0.08) 0%, transparent 50%); pointer-events: none; }
.dark-cta .container { position: relative; z-index: 1; }
.dark-cta h2 { color: var(--text-on-dark); margin-bottom: var(--space-md); font-size: var(--text-4xl); }
.dark-cta p { color: var(--text-on-dark-muted); font-size: var(--text-lg); margin-bottom: var(--space-2xl); max-width: 560px; margin-left: auto; margin-right: auto; }
.dark-cta-actions { display: flex; align-items: center; justify-content: center; gap: var(--space-xl); flex-wrap: wrap; }
.dark-phone { color: var(--text-on-dark); font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; }
.dark-phone:hover { color: var(--accent); }

/* ── Volunteer events ── */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); max-width: 960px; margin-left: auto; margin-right: auto; }
.event-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-xl); box-shadow: var(--shadow-card); transition: all var(--dur) var(--ease); display: flex; flex-direction: column; }
.event-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); border-color: rgba(14,165,160,0.2); }
.event-card-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-light); padding: 0.2rem 0.6rem; border-radius: var(--radius-full); margin-bottom: var(--space-md); align-self: flex-start; }
.event-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-xs); }
.event-card-date, .event-card-loc { font-size: var(--text-sm); color: var(--text-tertiary); display: flex; align-items: center; gap: 0.35rem; margin-bottom: var(--space-xs); }
.event-card-loc { margin-bottom: var(--space-lg); flex: 1; }
.event-card-date svg, .event-card-loc svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; stroke-linecap: round; stroke-linejoin: round; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-3xl); align-items: start; }
.form-row { margin-bottom: var(--space-md); }
.form-row label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.form-row input, .form-row textarea {
  width: 100%; background: var(--bg-white); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: var(--text-base);
  padding: 0.7rem 1rem; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); outline: none;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-row textarea { resize: vertical; min-height: 130px; }
.gdpr-row { display: flex; gap: var(--space-sm); align-items: flex-start; margin-bottom: var(--space-xl); }
.gdpr-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.gdpr-row label { font-size: var(--text-sm); color: var(--text-secondary); cursor: pointer; }
.form-success { display: none; background: var(--accent-light); color: var(--accent); border: 1px solid rgba(14,165,160,0.3); border-radius: var(--radius-md); padding: var(--space-lg); font-size: var(--text-base); font-weight: 500; text-align: center; }
.contact-info-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-xl); }
.contact-info-box h3 { margin-bottom: var(--space-lg); font-size: var(--text-lg); }
.contact-info-item { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-size: var(--text-xs); color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-info-value { font-size: var(--text-sm); font-weight: 500; color: var(--text-primary); margin-top: 2px; }
.contact-info-value a { color: var(--text-primary); }
.contact-info-value a:hover { color: var(--accent); }
.response-tag { display: inline-flex; align-items: center; gap: 0.4rem; background: #E8F8F0; color: #1A7A4A; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; padding: 0.4rem 0.8rem; border-radius: var(--radius-full); margin-top: var(--space-lg); }
.response-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #1A7A4A; animation: pulse-dot 2s ease-in-out infinite; }

/* ── Content grid (subpages) ── */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; margin-bottom: var(--space-3xl); }
.content-grid.reverse .content-visual { order: -1; }
.content-visual { background: var(--bg-light); border-radius: var(--radius-xl); padding: var(--space-3xl); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; min-height: 280px; }
.content-visual svg { width: 100%; max-width: 220px; }
.content-visual.content-photo { padding: 0; overflow: hidden; min-height: 380px; }
.content-visual.content-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-xl); }
.feature-list { margin-top: var(--space-lg); }
.feature-item { display: flex; gap: var(--space-md); align-items: flex-start; margin-bottom: var(--space-md); }
.feature-item:last-child { margin-bottom: 0; }
.feature-check { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feature-check svg { width: 12px; height: 12px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-item p { font-size: var(--text-sm); margin: 0; }

/* Value cards */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.value-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-xl); text-align: center; box-shadow: var(--shadow-card); }
.value-number { font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: var(--space-sm); letter-spacing: -0.04em; }
.value-card h3 { margin-bottom: var(--space-xs); }

/* ── Footer ── */
.site-footer { background: var(--bg-footer); color: var(--text-on-dark-muted); padding: var(--space-4xl) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: var(--space-3xl); padding-bottom: var(--space-3xl); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { color: var(--text-on-dark); margin-bottom: var(--space-md); }
.footer-brand .logo:hover { color: var(--accent); }
.footer-tagline { font-size: var(--text-sm); font-style: italic; color: var(--text-on-dark-muted); margin-bottom: var(--space-md); }
.footer-col h4 { color: var(--text-on-dark); font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-md); letter-spacing: 0.04em; }
.footer-col li { margin-bottom: var(--space-xs); }
.footer-col a { color: var(--text-on-dark-muted); font-size: var(--text-sm); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); padding: var(--space-lg) 0; font-size: var(--text-xs); color: rgba(156,197,195,0.6); }
.group-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(14,165,160,0.1); color: var(--text-on-dark-muted); border: 1px solid rgba(14,165,160,0.2); font-size: var(--text-xs); font-weight: 500; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); text-decoration: none; transition: all var(--dur) var(--ease); }
.group-badge:hover { background: rgba(14,165,160,0.2); color: var(--accent); }
.group-badge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Cookie ── */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--bg-white); border-top: 1px solid var(--border); box-shadow: 0 -4px 24px rgba(22,42,43,0.08); padding: var(--space-md) var(--space-xl); display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); transform: translateY(100%); transition: transform 0.4s var(--ease); }
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: var(--text-sm); color: var(--text-secondary); }
.cookie-bar p a { color: var(--accent); }
.cookie-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
.cookie-reject { background: none; border: none; cursor: pointer; font-family: var(--font); font-size: var(--text-sm); color: var(--text-tertiary); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); transition: color var(--dur) var(--ease); }
.cookie-reject:hover { color: var(--text-secondary); }

/* ── Animations ── */
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
@keyframes floatBadge1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatBadge2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:var(--space-3xl); }
  .hero-visual { display:none; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .process-steps { grid-template-columns:repeat(2,1fr); }
  .process-steps::before { display:none; }
  .events-grid { grid-template-columns:repeat(2,1fr); }
  .content-grid { grid-template-columns:1fr; }
  .content-grid.reverse .content-visual { order:0; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:var(--space-xl); }
}
@media (max-width:768px) {
  h1{font-size:2.25rem} h2{font-size:1.75rem}
  .section{padding:var(--space-3xl) 0}
  .nav-links,.header-cta{display:none}
  .mobile-toggle{display:flex}
  .services-grid,.process-steps,.events-grid,.values-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .dark-cta-actions{flex-direction:column;gap:var(--space-md)}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .cookie-bar{flex-direction:column;align-items:flex-start}
}
@media (max-width:480px) {
  .container{padding:0 var(--space-lg)}
  .hero{padding:var(--space-3xl) 0 var(--space-2xl)}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}
}
