/* ============================================
   RUNDUM CONSULT - PRODUCTION
   V3 "The Green Isle Executive"
   ============================================ */

/* ============================================
   LOCAL FONTS (Latin only)
   ============================================ */

/* Inter */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/inter-400-latin.woff2) format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/inter-500-latin.woff2) format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/inter-600-latin.woff2) format("woff2");
}

/* Playfair Display */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair-400-latin.woff2) format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/playfair-500-latin.woff2) format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/playfair-400-italic-latin.woff2) format("woff2");
}

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Primary - Landschafts-Gruen */
  --color-primary: #2d5a3d;
  --color-primary-dark: #1e3d2a;
  --color-primary-light: #e8f2ec;
  --color-primary-lighter: #f4f9f6;

  /* Secondary */
  --color-secondary: #3a4f5c;
  --color-secondary-light: #5a6d78;
  --color-earth: #4a3f35;

  /* Accent - Goldenes Licht */
  --color-accent: #d4a847;
  --color-accent-light: #f5e6c3;
  --color-accent-hover: #e8c977;

  /* Irish Flag Colors for Category Cards */
  --color-ireland-green: #2d5a3d;
  --color-ireland-white: #f8f9fa;
  --color-ireland-orange: #d97706;

  /* Neutrals */
  --color-text: #2c3530;
  --color-text-body: #5c6660;
  --color-text-muted: #8a9690;
  --color-background: #ffffff;
  --color-border: #dce5e0;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(45, 90, 61, 0.08);
  --shadow-medium: 0 8px 30px rgba(45, 90, 61, 0.12);
  --shadow-strong: 0 12px 40px rgba(45, 90, 61, 0.18);

  /* Custom Easings */
  --ease-meadow: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-breeze: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-sunrise: cubic-bezier(0.65, 0, 0.35, 1);

  /* Durations */
  --duration-quick: 0.3s;
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;

  /* Typography */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-background);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-quick) ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
  font-weight: 500;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
}

/* ============================================
   HEADER - Full Width, Transparent to Frost
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: transparent;
  z-index: 1000;
  opacity: 0;
}

.header.ready {
  animation: header-fade-in 1s var(--ease-meadow) 0.3s both;
  transition:
    height var(--duration-normal) var(--ease-breeze),
    background var(--duration-normal) var(--ease-breeze),
    box-shadow var(--duration-normal) var(--ease-breeze);
}

@keyframes header-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header-inner {
  width: 100%;
  height: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(45, 90, 61, 0.08);
}

/* Logo - Uppercase with round gold dot */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: color var(--duration-quick) ease;
}

.header.scrolled .logo {
  color: var(--color-text);
}

/* Gold dot as round element */
.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-left: 4px;
  display: inline-block;
}

/* Navigation */
.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  position: relative;
  padding: 8px 0;
  transition: color var(--duration-quick) ease;
}

/* Scrolled state: dark text */
.header.scrolled .nav a {
  color: var(--color-text-body);
}

/* Underline effect */
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--duration-quick) var(--ease-breeze);
}

/* Transparent header: hover stays white, line is white */
.nav a:hover,
.nav a.active {
  color: white;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Scrolled header: hover becomes accent color, line is gold */
.header.scrolled .nav a::after {
  background: var(--color-accent);
}

.header.scrolled .nav a:hover,
.header.scrolled .nav a.active {
  color: var(--color-primary);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all var(--duration-quick) ease;
}

.header.scrolled .nav-toggle span {
  background: var(--color-text);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation:
    sunrise 1.5s var(--ease-sunrise) forwards,
    horizon-reveal 8s var(--ease-breeze) forwards;
}

@keyframes sunrise {
  0% {
    opacity: 0;
    filter: brightness(0.3) saturate(0.5);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
  }
}

@keyframes horizon-reveal {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 61, 42, 0.7) 0%,
    rgba(30, 61, 42, 0.3) 40%,
    rgba(30, 61, 42, 0.1) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Golden Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--color-accent), transparent);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-up 8s infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* ============================================
   CATEGORY CARDS - In Hero (Irish Flag Colors)
   ============================================ */
.category-cards {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 0 24px;
}

.category-card {
  width: 200px;
  padding: 40px 24px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: all var(--duration-quick) var(--ease-meadow);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity var(--duration-quick) ease;
}

/* Foods Card - Green Accent */
.category-card.foods::before {
  background: var(--color-ireland-green);
}

.category-card.foods:hover {
  border-color: var(--color-ireland-green);
  box-shadow: 0 15px 50px rgba(45, 90, 61, 0.4);
}

/* Lights Card - White/Light Accent */
.category-card.lights::before {
  background: var(--color-ireland-white);
}

.category-card.lights:hover {
  border-color: var(--color-ireland-white);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/* Consult Card - Orange Accent */
.category-card.consult::before {
  background: var(--color-ireland-orange);
}

.category-card.consult:hover {
  border-color: var(--color-ireland-orange);
  box-shadow: 0 15px 50px rgba(217, 119, 6, 0.4);
}

.category-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.15);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--color-accent);
  transition: transform var(--duration-quick) var(--ease-meadow);
}

.category-card:hover .category-card-icon {
  transform: scale(1.1);
}

.category-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: white;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Watermark in Cards */
.category-card .watermark {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  opacity: 0.05;
  color: white;
}

.category-card .watermark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

/* Hero Content (Above Cards, Centered) */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 80px;
  order: -1;
  animation: mist-rise 1s var(--ease-meadow) 0.8s both;
}

@keyframes mist-rise {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(30, 61, 42, 0.4);
}

.hero-subline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 20px rgba(30, 61, 42, 0.3);
}

/* ============================================
   QUOTE STRIP SECTION
   ============================================ */
.quote-strip {
  padding: 80px 0;
  background: var(--color-accent-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-strip::before,
.quote-strip::after {
  content: "\2618";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  color: var(--color-primary);
  opacity: 0.05;
}

.quote-strip::before {
  left: 5%;
}
.quote-strip::after {
  right: 5%;
}

.gaelic-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.quote-translation {
  font-size: 1.125rem;
  color: var(--color-text-body);
  font-weight: 400;
}

.quote-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.quote-divider span {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
}

.shamrock-icon,
.divider-icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.6;
}

.shamrock-icon svg,
.divider-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Unicode Shamrock Watermark */
.watermark-shamrock {
  position: absolute;
  bottom: 15px;
  right: 5px;
  font-size: 50px;
  opacity: 0.08;
  color: white;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--duration-quick) var(--ease-meadow);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease-out;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 168, 71, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-body);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--color-background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-breeze);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-accent);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--color-accent);
  transition: color 0.4s var(--ease-breeze);
}

.service-card:hover .service-card-icon {
  color: var(--color-primary);
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--color-text-body);
  line-height: 1.7;
}

/* ============================================
   STATISTICS BAND
   ============================================ */
.stats-band {
  padding: 80px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80%;
  height: 20px;
  background: radial-gradient(
    ellipse,
    rgba(212, 168, 71, 0.5),
    transparent 70%
  );
  transform: translateX(-50%);
  filter: blur(8px);
}

.stat-suffix {
  font-size: 0.6em;
  vertical-align: super;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.cta-image {
  position: relative;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  background: var(--color-primary-lighter);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--color-text-body);
  margin-bottom: 32px;
  max-width: 400px;
}

.cta-contact {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.cta-contact a {
  display: block;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 500;
}

.cta-contact a:hover {
  color: var(--color-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-primary-light);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* Harp Watermark */
.footer-harp {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 450px;
  opacity: 0.04;
  color: var(--color-accent);
}

.footer-harp svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
}

.footer-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-left: 4px;
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all var(--duration-quick) ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-gaelic {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-accent);
  opacity: 0.8;
}

.footer-gaelic span {
  opacity: 0.6;
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 168, 71, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: 100px 0;
}

.content-section:nth-child(even) {
  background: var(--color-primary-lighter);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.content-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease-breeze);
}

.content-image:hover img {
  transform: scale(1.03);
}

.content-text h2 {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.content-text p {
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.content-text ul {
  list-style: none;
  margin-bottom: 32px;
}

.content-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--color-text-body);
}

.content-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block {
  padding: 32px;
  background: var(--color-primary-lighter);
  border-radius: 16px;
}

.contact-block h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.contact-block p,
.contact-block address {
  color: var(--color-text-body);
  line-height: 1.8;
  font-style: normal;
}

.contact-block a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-block a:hover {
  color: var(--color-accent);
}

.contact-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  min-height: 400px;
}

.contact-map img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

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

/* ============================================
   UNDER CONSTRUCTION
   ============================================ */
.under-construction {
  text-align: center;
  padding: 80px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.under-construction-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  color: var(--color-accent);
}

.under-construction-icon svg {
  width: 100%;
  height: 100%;
}

.under-construction h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.under-construction p {
  color: var(--color-text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============================================
   LEGAL PAGES (Imprint, Privacy)
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content address {
  font-style: normal;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 24px;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--color-text-body);
  line-height: 1.7;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.legal-content a {
  color: var(--color-primary);
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--color-accent);
}

.legal-intro {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: 32px;
}

.legal-updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.site-credit {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}

.site-credit a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-credit a:hover {
  color: var(--color-primary);
}

/* ============================================
   LIGHTS PAGE - JP-Lights Stats
   ============================================ */
.lights-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}

.lights-stat {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.lights-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1;
}

.lights-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-body);
  margin-top: 12px;
}

.lights-cta {
  text-align: center;
  padding: 60px;
  background: var(--color-accent-light);
  border-radius: 24px;
  margin: 60px 0;
}

.lights-cta-logo {
  display: block;
  max-width: 140px;
  height: auto;
  margin: 0 auto 20px;
}

.lights-cta h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.lights-cta p {
  color: var(--color-text-body);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lights-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 20px 40px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-quick) var(--ease-meadow);
}

.lights-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: var(--color-accent);
}

.lights-link svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
  .stats-grid,
  .lights-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-image {
    height: 300px;
  }

  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .category-cards {
    flex-wrap: wrap;
  }

  .category-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .header {
    height: 70px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header.scrolled {
    height: 60px;
  }

  /* Logo kleiner für mobile */
  .logo {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .logo-dot {
    width: 6px;
    height: 6px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-medium);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    color: var(--color-text-body);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero als Flexbox Column */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 60px;
  }

  /* Category Cards 2er Grid wie Tablet */
  .category-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 10px 0 20px;
  }

  .category-card {
    width: calc(50% - 6px);
    max-width: 160px;
    padding: 20px 12px 16px;
  }

  .category-card:last-child {
    width: calc(50% - 6px);
    max-width: 160px;
  }

  .category-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .category-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .category-card p {
    font-size: 0.7rem;
  }

  /* Hero Content - Mobile Anpassungen */
  .hero-content {
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-subline {
    font-size: 0.95rem;
  }

  .quote-strip::before,
  .quote-strip::after {
    display: none;
  }

  .stats-grid,
  .lights-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .content-section {
    padding: 60px 0;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-background img {
    animation: none;
    transform: scale(1);
    opacity: 1;
    filter: none;
  }

  .particle {
    animation: none;
  }
}

/* ============================================
   CUSTOM REQUESTS / TESTS
   ============================================ */

/* Foods Card - Green Accent */
.category-card.foods {
  box-shadow: 0 15px 50px rgba(45, 90, 61, 0.3);
}

/* Lights Card - White/Light Accent */
.category-card.lights {
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
}

/* Consult Card - Orange Accent */
.category-card.consult {
  box-shadow: 0 15px 50px rgba(217, 119, 6, 0.1);
}
