/* =================================================================
   NATURHEILPRAXIS INGOLSTADT — Hauptstylesheet
   Design: Natürliche Eleganz — Botanisch & Verfeinert
   ================================================================= */

@import url('https://fonts.bunny.net/css?family=playfair-display:400,400i,600,700&family=lora:400,400i,500,600&display=swap');

/* -----------------------------------------------------------------
   CSS Custom Properties
   ----------------------------------------------------------------- */
:root {
  --color-bg: #F7F3EE;
  --color-bg-alt: #EDE8E0;
  --color-bg-dark: #2A4B3C;
  --color-primary: #2A4B3C;
  --color-primary-mid: #3D6B56;
  --color-primary-light: #5A8C73;
  --color-accent: #C4785A;
  --color-accent-light: #D4956B;
  --color-accent-pale: #F3E0D6;
  --color-sage: #8FAF9A;
  --color-sage-light: #B5CCBE;
  --color-sage-pale: #E8F0EC;
  --color-text: #1C2B24;
  --color-text-mid: #4A5C52;
  --color-text-muted: #7B8B82;
  --color-border: #D5CCC2;
  --color-white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --container-max: 1200px;
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 2px 10px rgba(26, 43, 36, 0.07);
  --shadow-md: 0 6px 24px rgba(26, 43, 36, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 43, 36, 0.18);

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* -----------------------------------------------------------------
   Reset & Base
   ----------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-accent); }

ul { list-style: none; }

/* -----------------------------------------------------------------
   Container
   ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* -----------------------------------------------------------------
   Typography
   ----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.22;
  color: var(--color-text);
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--color-text-mid);
}
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--color-text-mid);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.7rem;
}

.section-title { margin-bottom: 1.25rem; }
.section-title em {
  color: var(--color-primary);
  font-style: italic;
}

/* -----------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-mid);
  border-color: var(--color-primary-mid);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* -----------------------------------------------------------------
   Navigation
   ----------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.15;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.site-nav.hero-nav .nav-logo-name { color: var(--color-white); }
.site-nav.hero-nav .nav-logo-sub { color: rgba(255,255,255,0.65); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.site-nav.hero-nav .nav-links a { color: rgba(255,255,255,0.88); }
.nav-links a:hover { color: var(--color-accent); background: rgba(196,120,90,0.07); }
.site-nav.hero-nav .nav-links a:hover { color: var(--color-white); background: rgba(255,255,255,0.12); }
.nav-links a.active { color: var(--color-accent); }
.site-nav.hero-nav .nav-links a.active { color: var(--color-white); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
  border-radius: 2px;
}
.site-nav.hero-nav .nav-toggle span { background: var(--color-white); }

/* -----------------------------------------------------------------
   Hero
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(26, 43, 36, 0.78) 0%,
    rgba(42, 75, 60, 0.58) 55%,
    rgba(26, 43, 36, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: 130px;
  padding-bottom: var(--space-xl);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-sage-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--color-sage-light);
}

.hero h1 {
  color: var(--color-white);
  max-width: 680px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero h1 em {
  color: var(--color-sage-light);
  font-style: italic;
}

.hero .lead {
  color: rgba(255,255,255,0.84);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--color-primary);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(90,140,115,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 85%, rgba(196,120,90,0.18) 0%, transparent 45%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.page-hero .section-label { color: var(--color-sage-light); }
.page-hero h1 { color: var(--color-white); max-width: 600px; }
.page-hero .lead {
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-top: 1rem;
}

/* -----------------------------------------------------------------
   Sections
   ----------------------------------------------------------------- */
.section { padding: var(--space-xl) 0; }
.section-alt { background: var(--color-bg-alt); }

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark .section-label { color: var(--color-sage-light); }

.section-header { margin-bottom: var(--space-lg); }
.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------------------------------
   Cards
   ----------------------------------------------------------------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage);
}

.card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body { padding: 1.6rem; }

.card-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.45rem;
  display: block;
}
.card h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.card p { font-size: 0.9rem; line-height: 1.72; }

/* Service Card */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.service-card-body p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--color-text-mid);
}

/* -----------------------------------------------------------------
   Grid
   ----------------------------------------------------------------- */
.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* -----------------------------------------------------------------
   Split Section
   ----------------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image { position: relative; }
.split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-image::after {
  content: '';
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 55%;
  height: 55%;
  border: 2px solid var;
  border-radius: var(--radius);
  z-index: -1;
  pointer-events: none;
}
.split-section.reverse .split-image::after {
  right: auto;
  left: -18px;
}

/* -----------------------------------------------------------------
   Quote Block
   ----------------------------------------------------------------- */
.quote-block {
  padding: var(--space-xl) 0;
  background: var(--color-sage-pale);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-block::before, .quote-block::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-sage-light);
  opacity: 0.12;
}
.quote-block::before { top: -100px; left: -80px; }
.quote-block::after { bottom: -100px; right: -80px; }

.quote-ornament {
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--color-sage);
  line-height: 0.4;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.6;
}

.quote-block blockquote {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  border: none;
  padding: 0;
}
.quote-block blockquote p {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.quote-block cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* -----------------------------------------------------------------
   Feature Boxes
   ----------------------------------------------------------------- */
.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.feature-box:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 58px;
  height: 58px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--color-primary);
  font-size: 1.5rem;
}
.feature-box h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.feature-box p { font-size: 0.86rem; color: var(--color-text-muted); margin: 0; }

/* -----------------------------------------------------------------
   Contact Info
   ----------------------------------------------------------------- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
}
.contact-info-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}
.contact-info-text a, .contact-info-text p {
  color: var(--color-text);
  font-size: 0.98rem;
  margin: 0;
}

/* -----------------------------------------------------------------
   Forms
   ----------------------------------------------------------------- */
.form-group { margin-bottom: 1.4rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-mid);
  margin-bottom: 0.45rem;
}
.form-label .required { color: var(--color-accent); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.82rem 1.05rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(42,75,60,0.1);
}
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.form-check label {
  font-size: 0.88rem;
  color: var(--color-text-mid);
  cursor: pointer;
  line-height: 1.55;
}
.form-check label a { color: var(--color-primary); text-decoration: underline; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.radio-group { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: none;
  background: var(--color-sage-pale);
  border: 1px solid var(--color-sage);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

/* -----------------------------------------------------------------
   Map
   ----------------------------------------------------------------- */
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
#map { width: 100%; height: 420px; z-index: 1; }

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 1.2rem;
  transition: opacity 0.45s ease;
}
.map-overlay.hidden { opacity: 0; pointer-events: none; }

.map-overlay-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.map-overlay h4 {
  color: var(--color-white);
  font-size: 1rem;
  text-align: center;
}
.map-overlay p {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  text-align: center;
  max-width: 280px;
  margin: 0;
}

/* -----------------------------------------------------------------
   Timeline
   ----------------------------------------------------------------- */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-sage-light), var(--color-border));
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  position: relative;
}
.timeline-dot {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--color-white);
  border: 2px solid var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-primary);
  z-index: 1;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}
.timeline-content { flex: 1; padding-top: 0.6rem; }
.timeline-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}
.timeline-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.65;
}

/* -----------------------------------------------------------------
   Notice / Disclaimer
   ----------------------------------------------------------------- */
.notice {
  background: var(--color-accent-pale);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
}
.notice p { font-size: 0.88rem; color: var(--color-text-mid); margin: 0; }

.disclaimer {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3.5rem;
}
.disclaimer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.disclaimer p { font-size: 0.83rem; color: var(--color-text-muted); margin: 0; line-height: 1.7; }

/* -----------------------------------------------------------------
   Membership Badges
   ----------------------------------------------------------------- */
.membership-grid { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.membership-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.4rem;
  font-size: 0.87rem;
  color: var(--color-text-mid);
  transition: all var(--transition);
}
.membership-badge:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* -----------------------------------------------------------------
   Prose (Legal/Long Content)
   ----------------------------------------------------------------- */
.prose { max-width: 820px; }
.prose h2 {
  font-size: 1.45rem;
  margin: 2.5rem 0 0.9rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-primary);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 1.75rem 0 0.65rem; color: var(--color-text); }
.prose p { font-size: 0.93rem; line-height: 1.88; margin-bottom: 0.95rem; color: var(--color-text-mid); }
.prose ul, .prose ol { margin: 0.9rem 0 0.9rem 1.5rem; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 0.93rem; color: var(--color-text-mid); margin-bottom: 0.45rem; line-height: 1.7; }
.prose a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--color-accent); }

/* -----------------------------------------------------------------
   Footer
   ----------------------------------------------------------------- */
.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.7rem;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sage-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.footer-contact-item span:first-child { font-size: 0.9rem; margin-top: 2px; }
.footer-contact-item span:last-child, .footer-contact-item a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* -----------------------------------------------------------------
   Cookie Banner
   ----------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a2e24;
  border-top: 3px solid var(--color-accent);
  padding: 1.4rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text h4 { font-size: 0.88rem; color: var(--color-white); margin-bottom: 0.3rem; }
.cookie-text p { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.55; }
.cookie-text a { color: var(--color-sage-light); text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 0.58rem 1.4rem;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-accept:hover { background: var(--color-accent-light); transform: translateY(-1px); }
.btn-cookie-decline {
  padding: 0.58rem 1.4rem;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { color: var(--color-white); border-color: rgba(255,255,255,0.55); }

/* -----------------------------------------------------------------
   Scroll To Top
   ----------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--color-primary-mid); transform: translateY(-2px); }

/* -----------------------------------------------------------------
   Animations
   ----------------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.revealed > *:nth-child(1) { transition-delay: 0.07s; }
.stagger.revealed > *:nth-child(2) { transition-delay: 0.16s; }
.stagger.revealed > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.revealed > *:nth-child(4) { transition-delay: 0.34s; }
.stagger.revealed > *:nth-child(5) { transition-delay: 0.43s; }
.stagger.revealed > *:nth-child(6) { transition-delay: 0.52s; }
.stagger.revealed > * { opacity: 1; transform: translateY(0); }

/* -----------------------------------------------------------------
   Utilities
   ----------------------------------------------------------------- */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* -----------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    z-index: 99;
    padding: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--color-white) !important;
    font-size: 1.35rem;
    font-family: var(--font-display);
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--color-sage-light) !important; background: transparent; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: white; }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: white; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: var(--space-lg); }
  .split-section.reverse { direction: ltr; }
  .split-image::after { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .page-hero { padding: 130px 0 70px; }
  .page-hero::after { display: none; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .cookie-actions { width: 100%; flex-direction: column; }
  .btn-cookie-accept, .btn-cookie-decline { width: 100%; text-align: center; }
  .scroll-top { bottom: 1.2rem; right: 1.2rem; }
}
