:root { color-scheme: only light; }

/* ===============================================
   IOP PRAXISKLINIK - PREMIUM STYLES
   White / Gold / Olive Green Theme
   =============================================== */

:root {
  /* Brand colors derived from new logo gradients */
  --gold: #c4a76f;
  --gold-light: #d3bd88;
  --gold-mid: #bf9f64;
  --gold-dark: #9b7638;
  --gold-deep: #624a2a;
  --gold-soft: rgba(196, 167, 111, 0.08);
  --gold-bg: rgba(196, 167, 111, 0.06);

  --green: #868242;
  --green-mid: #b3ad5c;
  --green-light: #9d984f;
  --green-dark: #40432a;
  --green-soft: rgba(134, 130, 66, 0.08);
  --green-bg: rgba(134, 130, 66, 0.06);

  /* Neutrals - NO BLACK ANYWHERE. Warm olive-brown for all text. */
  --white: #FFFFFF;
  --off-white: #FAFAF6;
  --cream: #F4F0E6;
  --cream-2: #EFEAD9;

  /* Warm olive-brown text colors - more hopeful than dark gray/black */
  --dark: #4A4B36;          /* main text - warm dark olive */
  --dark-2: #5C5E45;        /* slightly lighter */
  --text: #4A4B36;
  --text-light: #76755E;    /* secondary text - warm olive-gray */
  --text-muted: #9E9C84;    /* muted - light olive */

  --border: rgba(196, 167, 111, 0.20);
  --border-soft: rgba(134, 130, 66, 0.08);

  /* Shadows with warm olive tint */
  --shadow-sm: 0 2px 8px rgba(64, 67, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(64, 67, 42, 0.06);
  --shadow-lg: 0 16px 48px rgba(64, 67, 42, 0.08);
  --shadow-xl: 0 24px 60px rgba(64, 67, 42, 0.12);
  --shadow-gold: 0 8px 32px rgba(196, 167, 111, 0.22);
  --shadow-green: 0 8px 32px rgba(134, 130, 66, 0.18);

  /* Layout */
  --container-max: 1240px;
  --container-padding: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::selection {
  background: var(--gold);
  color: var(--white);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body, h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea, select, em, i, strong, b {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-style: normal !important;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease-out);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===============================================
   ANIMATIONS
   =============================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 165, 90, 0); }
  50% { box-shadow: 0 0 0 12px rgba(197, 165, 90, 0); }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-left.vis {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-right.vis {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-scale.vis {
  opacity: 1;
  transform: scale(1);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ===============================================
   TOPBAR
   =============================================== */

.topbar {
  background: var(--green);
  padding: 10px 0;
  font-size: 12.5px;
}

.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}

.topbar a, .topbar span {
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--gold-light);
}

.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===============================================
   NAVIGATION
   =============================================== */

nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--border-soft);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s, padding 0.3s;
}

nav.scrolled {
  box-shadow: var(--shadow-md);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  transition: height 0.3s;
  gap: 24px;
}

nav.scrolled .container {
  height: 76px;
}

/* Logo stays left (fixed) */
nav > .container > .logo {
  flex: 1 1 0;
  justify-content: flex-start;
}

/* Mobile CTA inside menu - hidden on desktop */
.nav-cta-mobile { display: none; }

/* Menu takes center, pushed to middle */
nav > .container > .nav-links {
  margin: 0 auto;
  flex: 0 0 auto;
}

/* Right cluster: CTA + language selector */
nav > .container > .nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1 1 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s var(--ease-out);
}

.logo:hover {
  transform: scale(1.02);
}

.logo svg, .logo img {
  height: 76px;
  width: auto;
  transition: height 0.3s;
}

/* Landscape logo is wide (2.4:1) - needs smaller height to fit nicely */
.logo-nav-img {
  height: 58px !important;
}

nav.scrolled .logo svg, nav.scrolled .logo img {
  height: 62px;
}

nav.scrolled .logo-nav-img {
  height: 48px !important;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  padding: 11px 24px !important;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: all 0.3s var(--ease-out) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 165, 90, 0.35) !important;
}

.lang-sw {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.lang-sw button {
  width: 30px;
  height: 21px;
  padding: 0;
  border-radius: 3px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.4;
  position: relative;
  filter: grayscale(35%);
}

.lang-sw button svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
}

.lang-sw button.active {
  opacity: 1;
  filter: grayscale(0%);
  box-shadow: 0 0 0 1.5px var(--gold), 0 1px 4px rgba(64, 67, 42, 0.15);
}

.lang-sw button:hover:not(.active) {
  opacity: 0.75;
  filter: grayscale(0%);
}

.mob-tog {
  display: none;
  padding: 8px;
}

.mob-tog span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.mob-tog.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mob-tog.active span:nth-child(2) {
  opacity: 0;
}

.mob-tog.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===============================================
   HERO
   =============================================== */

/* ===== HERO - Full-width with practice photo background ===== */
.hero,
.hero-fullwidth {
  position: relative;
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  transform-origin: center center;
  will-change: transform;
  animation: heroPan 26s ease-in-out infinite alternate;
}

@keyframes heroPan {
  from {
    transform: scale(1.1) translateX(3.2%);
  }
  to {
    transform: scale(1.1) translateX(-3.2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
}

.hero-overlay { display: none; }

.hero .container {
  position: relative;
  z-index: 3;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.hero-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 4px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease-out) both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.15s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.3;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero h1 em,
em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

.hero-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
  animation: fadeUp 0.8s var(--ease-out) 0.25s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hero-btns .btn-primary {
  background: var(--gold-dark);
  border: 2px solid var(--gold-dark);
}

.hero-btns .btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-btns .btn-secondary {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-dark);
}

.hero-btns .btn-secondary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary span {
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 165, 90, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  border: 2px solid var(--green);
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.hero-img {
  position: relative;
  animation: slideRight 1s var(--ease-out) 0.3s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s var(--ease-out);
}

.hero-img-wrap:hover img {
  transform: scale(1.05);
}

.hero-img-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}

.hero-float {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  animation: fadeIn 1s 0.8s both;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  background: var(--green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-float strong {
  display: block;
  font-size: 13px;
  color: var(--dark);
  font-weight: 600;
}

.hero-float span {
  font-size: 11px;
  color: var(--text-light);
}

/* ===============================================
   STATS BAR
   =============================================== */

.stats {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-bg);
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}

.stat h3 span {
  color: var(--gold);
}

.stat-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
}

.stat-text.stat-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.stat p {
  color: var(--text-light);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
}

/* ===============================================
   SECTION COMMON
   =============================================== */

section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-dark);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ===============================================
   PHILOSOPHIE BUTTON + 6 LEISTUNGSFELDER
   =============================================== */

.philosophy-leistungen {
  background: var(--cream);
  padding: 80px 0 100px;
}

.philosophy-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.philosophy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 14px rgba(196, 167, 111, 0.15);
}

.philosophy-btn svg {
  width: 20px;
  height: 20px;
}

.philosophy-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 167, 111, 0.3);
}

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

.leistung-card {
  display: block;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.5s var(--ease-out);
  box-shadow: 0 4px 18px rgba(64, 67, 42, 0.06);
  cursor: pointer;
}

.leistung-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(64, 67, 42, 0.14);
}

.leistung-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-2);
}

.leistung-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.leistung-card:hover .leistung-img img {
  transform: scale(1.05);
}

.leistung-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--gold-dark);
}

.leistung-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.leistung-content {
  padding: 24px 28px 28px;
}

.leistung-tag {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.leistung-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.leistung-sub {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.leistung-arrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.leistung-card:hover .leistung-arrow {
  gap: 12px;
}

/* ===============================================
   NEW PREVENTION SECTION
   =============================================== */

.prevention-new {
  background: var(--off-white);
  padding: 100px 0;
}

.prevention-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.prev-visual-new {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(64, 67, 42, 0.12);
}

.prev-visual-new img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.prev-badge-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold-dark);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(64, 67, 42, 0.2);
}

.prev-badge-overlay svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  display: block;
}

.prev-badge-overlay strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.prev-badge-overlay span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.95;
}

.prev-content-new .section-label {
  margin-bottom: 18px;
}

.prev-content-new .section-title {
  font-size: 44px;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
}

.prev-intro {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 28px;
}

.prev-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.prev-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
}

.prev-check-item:hover {
  background: var(--white);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(64, 67, 42, 0.08);
}

.prev-check-item .check-circle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.prev-check-item span {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

/* ===============================================
   SERVICES GRID
   =============================================== */

.services {
  background: var(--white);
}

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

.service-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-bg);
  border: 1px solid rgba(91, 122, 58, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-out);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green);
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover .service-icon {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.08);
}

.service-card:hover .service-icon svg {
  color: var(--white);
  transform: rotate(-6deg);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.3s;
}

.service-card:hover .arrow {
  gap: 12px;
}

/* ===============================================
   PREVENTION SECTION
   =============================================== */

.prevention {
  background: var(--off-white);
}

.prevention .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.prev-visual {
  position: relative;
}

.prev-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.prev-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.prev-accent strong {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.prev-accent span {
  font-size: 11px;
  opacity: 0.95;
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.prev-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.prev-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.prev-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(91, 122, 58, 0.08);
  transition: all 0.3s var(--ease-out);
}

.prev-badge:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.prev-badge span {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

/* ===============================================
   CHECKUP DETAIL
   =============================================== */

.checkup {
  background: var(--white);
}

.checkup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.checkup-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}

.checkup-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.checkup-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkup-card h4 b {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
}

.checkup-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
}

.checkup-card strong {
  color: var(--gold-dark);
}

/* ===============================================
   CTA BANNER
   =============================================== */

.cta-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 60%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196, 167, 111, 0.18) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(134, 130, 66, 0.10) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 40px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cta-banner > div > p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 460px;
}

.cta-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.cta-step:hover {
  background: var(--off-white);
  transform: translateX(6px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.cta-step strong {
  color: var(--dark);
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.cta-step span {
  color: var(--text-light);
  font-size: 12.5px;
  line-height: 1.55;
}

/* ===============================================
   DIAGNOSTICS / THERAPY (Tabs + Cards)
   =============================================== */

.diag {
  background: var(--off-white);
}

.therapy {
  background: var(--white);
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 22px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
  font-family: inherit;
}

.tab:hover {
  background: var(--green-bg);
  color: var(--green);
  border-color: var(--green);
}

.tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

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

.diag-card, .therapy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--border-soft);
}

.therapy-card {
  background: var(--off-white);
}

.diag-card:hover, .therapy-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-bg);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tag-onko { color: #B8722D; background: rgba(184, 114, 45, 0.08); }
.tag-komp { color: var(--green); background: var(--green-bg); }
.tag-supp { color: var(--gold-dark); background: var(--gold-bg); }

.diag-card h4, .therapy-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.diag-card p, .therapy-card p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===============================================
   MORE SERVICES
   =============================================== */

.more {
  background: var(--off-white);
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.more-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid var(--border-soft);
  transition: all 0.4s var(--ease-out);
}

.more-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.more-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.more-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===============================================
   TEAM
   =============================================== */

.team {
  background: var(--white);
}

.team .container {
  max-width: 1000px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 52px;
}

.team-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  border: 1px solid transparent;
}

.team-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease-out);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(64, 67, 42, 0.04), transparent 40%);
  pointer-events: none;
}

.team-info {
  padding: 28px 32px 30px;
}

.team-info h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.team-info h3 span {
  color: var(--gold);
}

.team-info .role {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.team-info p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
}

.team-info .contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-light);
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.team-info .contact-line svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* ===============================================
   JOBS BANNER
   =============================================== */

.jobs {
  padding: 56px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.jobs .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.jobs h3 {
  font-size: 28px;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.jobs p {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 6px;
}

.btn-jobs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-gold);
}

.btn-jobs:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 165, 90, 0.35);
}

/* ===============================================
   CONTACT
   =============================================== */

.contact {
  background: var(--white);
}

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

.contact-info h2 {
  font-size: 40px;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-info > p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.3s;
}

.contact-item:hover {
  background: var(--off-white);
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-bg);
  border: 1px solid rgba(91, 122, 58, 0.12);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  transition: color 0.3s;
}

.contact-item:hover .contact-icon {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.08);
}

.contact-item:hover .contact-icon svg {
  color: var(--white);
}

.contact-item strong {
  display: block;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  color: var(--text-light);
  font-size: 13px;
}

.contact-item a:hover {
  color: var(--green);
}

.contact-form {
  background: var(--off-white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: all 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  transition: all 0.3s var(--ease-out);
  margin-top: 8px;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 165, 90, 0.35);
}

.map-placeholder {
  width: 100%;
  height: 240px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  gap: 8px;
}

.map-embed {
  width: 100%;
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  line-height: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.15) contrast(0.95);
  transition: filter 0.4s;
}

.map-embed:hover iframe {
  filter: grayscale(0) contrast(1);
}

.map-placeholder svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* ===============================================
   FOOTER
   =============================================== */

footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  color: var(--text-light);
  padding: 64px 0 32px;
}

footer .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-light);
}

footer h4 {
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul a, footer ul span {
  color: var(--text-light);
  font-size: 13px;
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-light);
  font-size: 12px;
}

.footer-bottom-links a:hover {
  color: var(--green);
}

/* ===============================================
   PILLARS SHOWCASE — 3 brand categories with images
   =============================================== */

.pillars {
  background: var(--off-white);
  padding: 100px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.5s var(--ease-out);
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(91, 122, 58, 0.06);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(91, 122, 58, 0.14),
              0 0 0 1px var(--gold-soft);
  border-color: var(--border);
}

.pillar-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  margin: 14px 14px 0 14px;
}

.pillar-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(64, 67, 42, 0.10));
  pointer-events: none;
}

.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.pillar-card:hover .pillar-img img {
  transform: scale(1.06);
}

.pillar-content {
  padding: 24px 28px 30px;
}

.pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pillar-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.pillar-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  transition: gap 0.3s;
}

.pillar-card:hover .pillar-arrow {
  gap: 12px;
}

@media (max-width: 968px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===============================================
   LUXURY UPGRADE - softer shadows on all cards + images
   =============================================== */

.service-card,
.checkup-card,
.diag-card,
.therapy-card,
.more-card,
.team-card {
  box-shadow: 0 10px 30px rgba(91, 122, 58, 0.05);
}

.service-card:hover,
.checkup-card:hover,
.diag-card:hover,
.therapy-card:hover,
.more-card:hover {
  box-shadow: 0 22px 50px rgba(91, 122, 58, 0.10),
              0 0 0 1px var(--gold-soft);
}

.team-card:hover {
  box-shadow: 0 30px 60px rgba(91, 122, 58, 0.12);
}

/* Hero & prev image soft shadow upgrade */
.hero-img-wrap,
.prev-visual img {
  box-shadow: 0 24px 60px rgba(91, 122, 58, 0.12),
              0 8px 18px rgba(64, 67, 42, 0.04);
}

/* Round all images consistently */
.hero-img-wrap,
.prev-visual img,
.team-photo,
.pillar-img,
.map-embed {
  border-radius: 18px;
}

.service-icon {
  border-radius: 14px;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .section-title { font-size: 36px; }
  .hero .container { gap: 40px; }
}

@media (max-width: 968px) {
  .prevention .container,
  .contact .container,
  .cta-banner .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ===== HERO MOBILE - image visible with dark overlay + text on top ===== */
  .hero-fullwidth {
    min-height: 0;
  }
  .hero-bg {
    background-position: center center;
  }
  .hero-overlay {
    /* Vertical dark gradient so text is readable AND image is visible */
    background: linear-gradient(to bottom,
      rgba(58, 58, 46, 0.55) 0%,
      rgba(58, 58, 46, 0.60) 40%,
      rgba(58, 58, 46, 0.75) 100%);
  }
  .hero .container {
    min-height: 0;
    padding-top: 130px;
    padding-bottom: 70px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-eyebrow { color: var(--gold-light); }
  .hero h1 {
    font-size: 40px;
    color: var(--white);
  }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .hero-tagline { color: rgba(255,255,255,0.95) !important; }
  .hero-text {
    color: rgba(255,255,255,0.88) !important;
    margin-left: auto; margin-right: auto;
  }
  .hero-btns { justify-content: center; }

  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid,
  .cards-grid,
  .more-grid,
  .leistungen-grid,
  .pillars-grid { grid-template-columns: 1fr; }
  .checkup-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .prevention-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Tablet: 2-column grids for cards (600-968px) */
  @media (min-width: 601px) {
    .cards-grid,
    .more-grid,
    .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  }

  footer .container { grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .logo { justify-content: center; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-soft);
    gap: 4px;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    text-align: center;
  }
  .nav-links.open li { list-style: none; }
  .nav-links.open a {
    display: block;
    padding: 12px 4px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-soft);
    text-align: center;
  }
  .nav-links.open a::after { display: none; }

  /* Mobile CTA visible inside open menu */
  .nav-cta-mobile { display: block; }
  .nav-links.open .nav-cta-mobile {
    margin-top: 14px;
    border-bottom: none;
  }
  .nav-links.open .nav-cta-mobile a.nav-cta {
    display: block;
    text-align: center;
    padding: 15px !important;
    font-size: 15px !important;
    border-radius: 8px;
  }

  /* nav-right on mobile: hide CTA (goes into hamburger menu), keep lang-sw visible */
  nav > .container > .nav-right {
    margin-left: auto;
    flex: 0 0 auto;
    gap: 10px;
  }
  nav > .container > .logo {
    flex: 0 0 auto;
  }
  nav > .container > .nav-right > .nav-cta {
    display: none;
  }

  /* CTA button appended to the open mobile menu */
  .nav-links.open::after {
    content: none;
  }
  .mob-tog { display: block; }
  body.menu-open { overflow: hidden; }

  /* Center text alignment on mobile for key sections */
  .section-label,
  .section-title,
  .section-subtitle,
  .contact-info h2,
  .cta-banner h2 { text-align: center; }
  .section-label { justify-content: center; }
  .section-label::before { display: none; }
  .section-subtitle { margin-left: auto; margin-right: auto; }
  .prev-content .section-label,
  .prev-content .section-title,
  .prev-content p { text-align: center; }
  .prev-badges { max-width: 460px; margin-left: auto; margin-right: auto; }

  /* Center CTA section content */
  .cta-banner .container > div:first-child { text-align: center; }
  .cta-banner .container > div:first-child .btn-primary { margin: 0 auto; }
  .cta-banner > div > p { margin-left: auto; margin-right: auto; }

  .jobs .container { flex-direction: column; text-align: center; }

  section { padding: 72px 0; }
  .section-title { font-size: 32px; }
  .cta-banner h2 { font-size: 32px; }
  .contact-info h2 { font-size: 32px; }
}

@media (max-width: 600px) {
  :root { --container-padding: 18px; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 28px; }
  .cta-banner h2 { font-size: 26px; }
  .contact-info h2 { font-size: 26px; }
  .stats .container { grid-template-columns: 1fr; }
  .stat h3 { font-size: 38px; }
  footer .container { grid-template-columns: 1fr; }
  .prev-badges { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { font-size: 11.5px; }
  .topbar-left { gap: 16px; }
  .logo-text strong { font-size: 17px; }
  .logo-text small { font-size: 9px; letter-spacing: 1.8px; }
  .logo svg, .logo img { height: 46px; }
  .logo-nav-img { height: 44px !important; }
  nav .container { height: 68px; }
  .contact-form { padding: 24px; }
  .team-info { padding: 22px 24px 24px; }
  .hero-float { display: none; }
  section { padding: 56px 0; }

  /* Prevention checklist single column on mobile */
  .prev-checklist { grid-template-columns: 1fr; }
  .prev-content-new .section-title { font-size: 30px; }
  .prev-badge-overlay {
    bottom: 14px; right: 14px; left: 14px;
    padding: 16px 18px;
  }
  .prev-badge-overlay strong { font-size: 16px; }
  .prevention-new { padding: 56px 0; }

  /* Topbar - keep email from overflowing */
  .topbar .container { gap: 8px 18px; }
  .topbar a, .topbar span { font-size: 11px; }

  /* Hero buttons stack full-width */
  .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Subpage hero mobile */
  .subpage-hero h1 { font-size: 30px; }
  .subpage-hero { min-height: 300px; }
  .subpage-content { padding: 48px 0 64px; }
  .subpage-intro p { font-size: 17px; }
  .subpage-block h2 { font-size: 23px; }
  .subpage-list li { font-size: 15px; }

  /* CTA steps full width */
  .cta-step { padding: 14px 16px; }

  /* Diag/therapy tabs scroll horizontally if needed, contained */
  .tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .tab { font-size: 13px; padding: 8px 14px; }

  /* Contact map height */
  .map-embed iframe { height: 220px; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 29px; }
  .section-title { font-size: 25px; }
  .stat h3 { font-size: 32px; }
  .logo svg, .logo img { height: 42px; }
  .logo-nav-img { height: 38px !important; }
  .lang-sw button { width: 32px; height: 24px; }
}

/* Smooth scroll iOS fix */
@supports (-webkit-touch-callout: none) {
  body { -webkit-overflow-scrolling: touch; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===============================================
   MODAL / POPUP for detailed content
   =============================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(64, 67, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(64, 67, 42, 0.25);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.45s var(--ease-out);
  border: 1px solid var(--border);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 32px 40px 20px;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.modal-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-bg);
  padding: 4px 11px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.modal-header h2 {
  font-size: 26px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  padding-right: 40px;
}

.modal-body {
  padding: 24px 40px 36px;
}

.modal-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}

.modal-body p:last-child { margin-bottom: 0; }

.modal-body strong {
  color: var(--dark);
  font-weight: 600;
}

.modal-body ul {
  margin: 10px 0 16px 0;
  padding-left: 24px;
}

.modal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 6px;
}

.modal-body li::marker {
  color: var(--green);
}

.modal-body .modal-note {
  background: var(--gold-bg);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

/* Sub-cards inside modal (for category overview modals) */
.modal-subcards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .modal-subcards { grid-template-columns: 1fr; }
}

.modal-subcard {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  text-align: left;
}

.modal-subcard:hover {
  background: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(91, 122, 58, 0.1);
}

.modal-subcard h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  padding-right: 26px;
}

.modal-subcard p {
  font-size: 12.5px !important;
  color: var(--text-light);
  line-height: 1.55 !important;
  margin: 0 !important;
}

.modal-subcard::after {
  content: '→';
  position: absolute;
  top: 16px;
  right: 14px;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s;
}

.modal-subcard:hover::after {
  transform: translateX(4px);
}

.modal-subsection-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 22px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}

.modal-subsection-title:first-child {
  margin-top: 0;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s;
  z-index: 3;
}

.modal-close:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: rotate(90deg);
}

.modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}

.modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 165, 90, 0.35);
}

/* Make cards with [data-modal] feel clickable */
[data-modal] {
  cursor: pointer;
  position: relative;
}

[data-modal]::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B7A3A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), background-color 0.3s;
  pointer-events: none;
}

[data-modal]:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0);
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}

/* Service cards have their own "Mehr erfahren →" arrow — hide the indicator */
.service-card[data-modal]::after {
  display: none;
}

body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .modal-box { max-height: 92vh; }
  .modal-header { padding: 24px 24px 16px; }
  .modal-header h2 { font-size: 22px; padding-right: 32px; }
  .modal-body { padding: 20px 24px 28px; }
  .modal-close { top: 16px; right: 16px; width: 34px; height: 34px; }
}

/* ===============================================
   SCROLL TO TOP BUTTON
   =============================================== */

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(197, 165, 90, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.85);
  transition: all 0.4s var(--ease-out);
  z-index: 99;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(197, 165, 90, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.scroll-top:active {
  transform: translateY(-2px) scale(1);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 600px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
  .scroll-top svg { width: 18px; height: 18px; }
}

/* ===============================================
   SUB-PAGES (Leistungsfelder detail pages)
   =============================================== */

.subpage-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(58, 58, 46, 0.85) 0%,
    rgba(58, 58, 46, 0.65) 45%,
    rgba(58, 58, 46, 0.25) 75%,
    rgba(58, 58, 46, 0.1) 100%);
  z-index: 2;
}

.subpage-hero .container {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 60px;
}

.subpage-hero-content {
  max-width: 640px;
}

.subpage-back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.25s, transform 0.25s;
}

.subpage-back:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.subpage-eyebrow {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.subpage-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  line-height: 1.1;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.subpage-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 300;
}

.subpage-content {
  padding: 80px 0 100px;
  background: var(--white);
}

.subpage-content .container {
  max-width: 820px;
}

.subpage-intro {
  margin-bottom: 40px;
}

.subpage-intro p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
}

.subpage-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-soft);
}

.subpage-block:last-of-type {
  border-bottom: none;
}

.subpage-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.subpage-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 14px;
}

.subpage-block p:last-child {
  margin-bottom: 0;
}

.subpage-block strong {
  color: var(--dark);
  font-weight: 600;
}

.subpage-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.subpage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.5;
}

.check-circle-sm {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.subpage-cta {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
}

.subpage-cta-inner h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.subpage-cta-inner p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 26px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .subpage-hero { min-height: 340px; }
  .subpage-hero h1 { font-size: 36px; }
  .subpage-subtitle { font-size: 16px; }
  .subpage-content { padding: 56px 0 72px; }
  .subpage-intro p { font-size: 18px; }
  .subpage-block h2 { font-size: 25px; }
  .subpage-cta { padding: 32px 24px; }
  .subpage-hero-overlay {
    background: linear-gradient(to right,
      rgba(58, 58, 46, 0.9) 0%,
      rgba(58, 58, 46, 0.75) 100%);
  }
}

/* ===============================================
   PHILOSOPHY HIGHLIGHT BLOCK (metaphor callout)
   =============================================== */

.philosophy-highlight {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--gold-bg) 0%, var(--green-bg) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  padding: 32px 34px;
  margin: 12px 0 44px;
}

.philosophy-highlight-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.philosophy-highlight-icon svg {
  width: 26px;
  height: 26px;
}

.philosophy-highlight h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 23px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.philosophy-highlight p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  font-style: italic;
}

@media (max-width: 600px) {
  .philosophy-highlight {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}

/* Neutral dot bullet for philosophy problem/cause lists */
.dot-circle-sm {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--gold-dark);
  border-radius: 50%;
  margin-top: 9px;
}

/* ===============================================
   UNSERE KLINIK - IMAGE SLIDER
   =============================================== */
.klinik-section {
  padding: 96px 0;
  background: var(--off-white);
}

.klinik-slider {
  position: relative;
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(64, 67, 42, 0.14);
  aspect-ratio: 16 / 8;
  background: var(--cream);
}

.klinik-track { position: absolute; inset: 0; }

.klinik-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
  pointer-events: none;
}

.klinik-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.klinik-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.klinik-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.klinik-arrow svg { width: 22px; height: 22px; }
.klinik-prev { left: 18px; }
.klinik-next { right: 18px; }

.klinik-arrow:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.klinik-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.klinik-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.klinik-dot.is-active {
  background: var(--gold);
  width: 26px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .klinik-section { padding: 64px 0; }
  .klinik-slider { aspect-ratio: 4 / 3; border-radius: 14px; margin-top: 32px; }
  .klinik-arrow { width: 38px; height: 38px; }
  .klinik-prev { left: 10px; }
  .klinik-next { right: 10px; }
}

/* ===============================================
   PRÄVENTION IMAGE - LEFT-TO-RIGHT PAN MOTION
   =============================================== */
.prev-visual-new img {
  object-position: 0% 50%;
  animation: prevPanLR 9s ease-in-out infinite alternate;
  will-change: object-position;
}

@keyframes prevPanLR {
  0%   { object-position: 28% 50%; }
  100% { object-position: 72% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .prev-visual-new img { animation: none; object-position: 50% 50%; }
}

/* ===============================================
   HERO - CINEMATIC CROSSFADE SLIDESHOW
   =============================================== */
.hero-slides {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 38%;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

/* seamless white -> image blend on the left edge of the image area */
.hero-slides::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 38%;
  background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0.75) 35%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: -1px;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 3s ease-in-out;
  will-change: transform, opacity;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroSlidePan 9s linear forwards;
}

/* continuous slow drift left -> right while visible */
@keyframes heroSlidePan {
  0%   { transform: scale(1.06) translateX(-1.1%); }
  100% { transform: scale(1.06) translateX(1.1%); }
}

/* old single-bg animation no longer used */
.hero-bg { animation: none; }

.hero-slide-dots {
  position: absolute;
  bottom: 26px;
  right: 48px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-slide-dots .hero-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-slide-dots .hero-dot.is-active { background: rgba(255, 255, 255, 0.45); }

.hero-slide-dots .hero-dot.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold, #b99a5b);
  transform-origin: left center;
  animation: heroDotFill 9s linear forwards;
}

@keyframes heroDotFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.is-active { animation: none; transform: none; transition: opacity 0.6s ease; }
  .hero-slide-dots .hero-dot.is-active::after { animation: none; transform: scaleX(1); }
}

@media (max-width: 768px) {
  .hero-slide-dots { bottom: 16px; }
  .hero-slide-dots .hero-dot { width: 24px; }
}

/* ===============================================
   GALERIE - IMMERSIVE PAGE
   =============================================== */
.gal-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, #23241c 0%, #2e2f24 55%, #3a3b2c 100%);
  overflow: hidden;
  padding-top: 140px;
}

.gal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 25% 20%, rgba(185, 154, 91, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 40% at 80% 10%, rgba(134, 130, 66, 0.14), transparent 65%);
  pointer-events: none;
}

.gal-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.gal-back { color: rgba(255,255,255,0.55) !important; display: inline-block; margin-bottom: 28px; }
.gal-back:hover { color: #fff !important; }

.gal-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  color: var(--gold, #b99a5b);
  margin-bottom: 18px;
  animation: galFadeUp 1s ease both;
}

.gal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin: 0 0 18px;
  animation: galFadeUp 1s 0.15s ease both;
}

.gal-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto 34px;
  max-width: 540px;
  animation: galFadeUp 1s 0.3s ease both;
}

.gal-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.45);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: galFadeUp 1s 0.45s ease both;
}

.gal-scroll-hint span {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--gold, #b99a5b), transparent);
  animation: galHintPulse 2s ease-in-out infinite;
}

@keyframes galHintPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes galFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* endless marquee filmstrip */
.gal-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0 0 54px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.gal-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: galMarquee 60s linear infinite;
}

.gal-marquee:hover .gal-marquee-track { animation-play-state: paused; }

.gal-marquee-item {
  width: 300px;
  height: 190px;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.gal-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gal-marquee-item:hover img { transform: scale(1.06); }

@keyframes galMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* mosaic grid */
.gal-grid-section { padding: 100px 0; background: var(--off-white, #faf8f4); }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 18px;
}

.gal-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
              box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(64, 67, 42, 0.10);
}

.gal-item.gal-visible { opacity: 1; transform: translateY(0) scale(1); }
.gal-item:hover { box-shadow: 0 26px 60px rgba(64, 67, 42, 0.22); }

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gal-item:hover img { transform: scale(1.07); }

.gal-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(35, 36, 28, 0.72), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gal-item:hover figcaption { opacity: 1; }

.gal-item figcaption span {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  letter-spacing: 0.8px;
  transform: translateY(8px);
  transition: transform 0.45s ease;
}

.gal-item:hover figcaption span { transform: translateY(0); }

/* CTA */
.gal-cta {
  text-align: center;
  padding: 90px 24px 110px;
  background: var(--off-white, #faf8f4);
}

.gal-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--olive-dark, #40432a);
  margin: 0 0 14px;
}

.gal-cta p { color: var(--text-soft, #6b6d5c); margin: 0 0 30px; }

/* lightbox */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(22, 23, 17, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gal-lightbox.open { opacity: 1; pointer-events: auto; }

.gal-lb-stage { max-width: min(1100px, 90vw); max-height: 84vh; position: relative; }

.gal-lb-stage img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gal-lightbox.open .gal-lb-stage img { transform: scale(1); }

.gal-lb-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 16px;
}

.gal-lb-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.gal-lb-close:hover { background: var(--gold, #b99a5b); border-color: var(--gold, #b99a5b); }

.gal-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.gal-lb-arrow svg { width: 24px; height: 24px; }
.gal-lb-prev { left: 26px; }
.gal-lb-next { right: 26px; }
.gal-lb-arrow:hover { background: var(--gold, #b99a5b); border-color: var(--gold, #b99a5b); }

/* homepage gallery button */
.klinik-gal-btn { text-align: center; margin-top: 36px; }

@media (max-width: 1024px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; }
}

@media (max-width: 768px) {
  .gal-hero { min-height: 74vh; padding-top: 120px; }
  .gal-marquee-item { width: 210px; height: 140px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .gal-grid-section { padding: 60px 0; }
  .gal-lb-arrow { width: 42px; height: 42px; }
  .gal-lb-prev { left: 10px; }
  .gal-lb-next { right: 10px; }
  .gal-lb-close { top: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .gal-marquee-track { animation: none; }
  .gal-item { opacity: 1; transform: none; transition: box-shadow 0.4s ease; }
}

/* ===============================================
   HERO SPLIT - RESPONSIVE (mobile/tablet: text on white, 16:9 image below)
   =============================================== */
@media (max-width: 968px) {
  /* text on clean white, image below - nothing overlaps, image fully visible */
  .hero,
  .hero-fullwidth {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--white);
  }

  .hero .container {
    order: 1;
    min-height: 0;
    padding-top: 104px;
    padding-bottom: 30px;
  }

  .hero-content {
    max-width: 100%;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
  }

  .hero-eyebrow { color: var(--gold-dark, #9a7f45) !important; }
  .hero h1 { color: var(--olive-dark, #40432a) !important; font-size: clamp(30px, 8.5vw, 44px); }
  .hero-tagline { color: var(--gold-dark, #9a7f45) !important; }
  .hero-text { color: var(--text-soft, #6b6d5c) !important; }

  /* the slideshow: tall stage, image pans across so EVERYTHING becomes visible */
  .hero-slides {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    width: 100%;
    height: 54vh;
    min-height: 340px;
    order: 2;
  }

  .hero-slides::after {
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(35, 36, 28, 0.28) 100%);
  }

  .hero-slide {
    transform: none;
    background-position: 0% 50%;
  }

  .hero-slide.is-active {
    animation-name: heroPanMobileReveal;
    transform: none;
  }

  .hero-slide-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }
}

/* full left-to-right sweep: the entire landscape image is revealed in the portrait frame */
@keyframes heroPanMobileReveal {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes heroSlidePanMobile {
  0%   { transform: scale(1.04) translateX(-0.8%); }
  100% { transform: scale(1.04) translateX(0.8%); }
}

/* ===============================================
   KLINIK CAROUSEL - LESS CROP + REVEAL MOTION
   =============================================== */
.klinik-slider { aspect-ratio: 16 / 9; }

.klinik-slide {
  transform: none;
  transition: opacity 1.4s ease;
}

.klinik-slide.is-active { transform: none; }

.klinik-slide img {
  object-position: 50% 50%;
}

.klinik-slide.is-active img {
  animation: klinikReveal 9s ease-in-out infinite alternate;
}

/* pan across the image so cropped parts become visible */
@keyframes klinikReveal {
  0%   { object-position: 12% 18%; }
  50%  { object-position: 88% 50%; }
  100% { object-position: 40% 85%; }
}

.klinik-slide:nth-child(even).is-active img {
  animation-name: klinikRevealAlt;
}

@keyframes klinikRevealAlt {
  0%   { object-position: 85% 80%; }
  50%  { object-position: 15% 45%; }
  100% { object-position: 60% 12%; }
}

@media (max-width: 768px) {
  .klinik-slider { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
  .klinik-slide.is-active img { animation: none; }
}

/* ===============================================
   DOCTOLIB - STICKY BOOKING TAB (right edge)
   =============================================== */
.doctolib-sticky {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #4a5b7f;
  padding: 16px 14px;
  border-radius: 12px 0 0 12px;
  box-shadow: -6px 8px 28px rgba(30, 40, 70, 0.35);
  text-decoration: none;
  transition: background 0.3s ease, padding-right 0.3s ease;
}

.doctolib-sticky:hover { background: #3d4c6b; padding-right: 20px; }

.doctolib-sticky img {
  width: 78px;
  height: auto;
  display: block;
}

.doctolib-sticky span {
  display: block;
  background: #fff;
  color: #4a5b7f;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 16px;
  border-radius: 9px;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .doctolib-sticky {
    top: auto;
    bottom: 18px;
    transform: none;
    flex-direction: row;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px 0 0 12px;
  }
  .doctolib-sticky img { width: 62px; }
  .doctolib-sticky span { font-size: 12px; padding: 5px 12px; }
}

/* ===============================================
   COOKIE CONSENT BANNER
   =============================================== */
.cc-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  width: min(680px, calc(100vw - 32px));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(35, 36, 28, 0.30);
  border: 1px solid rgba(64, 67, 42, 0.10);
  padding: 24px 26px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  font-family: 'Outfit', sans-serif;
}

.cc-banner.cc-show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

.cc-banner h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--olive-dark, #40432a);
}

.cc-banner p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #6b6d5c;
}

.cc-banner p a { color: var(--gold-dark, #9a7f45); text-decoration: underline; }

.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cc-btn {
  flex: 1;
  min-width: 130px;
  padding: 11px 18px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.cc-accept { background: var(--olive, #868242); color: #fff; }
.cc-accept:hover { background: var(--olive-dark, #40432a); }
.cc-decline { background: #fff; color: #6b6d5c; border-color: rgba(64, 67, 42, 0.25); }
.cc-decline:hover { border-color: var(--olive, #868242); color: var(--olive-dark, #40432a); }

.cc-reopen {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.cc-reopen:hover { color: var(--gold, #b99a5b); }

/* ===============================================
   PREMIUM POLISH - APPLE-STYLE REFINEMENTS
   =============================================== */

/* flag images in the language switcher */
.lang-sw button .flag-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}

/* frosted-glass navigation */
nav.scrolled {
  background: rgba(255, 255, 255, 0.72) !important;
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(64, 67, 42, 0.08), 0 12px 40px rgba(64, 67, 42, 0.06);
}

/* gold reading-progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold, #b99a5b), var(--olive, #868242));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 1200;
  pointer-events: none;
}

/* buttery smooth anchors */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* subtle lift on primary buttons */
.btn-primary {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(64, 67, 42, 0.28);
}

/* card hover lift - leistungen + therapy cards */
.leistung-card:hover,
.therapy-card:hover {
  transform: translateY(-4px);
}

.leistung-card,
.therapy-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===============================================
   CONTACT FORM - SUBMISSION UI
   =============================================== */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.form-hint {
  font-size: 12.5px;
  color: #8a8c7a;
  margin: 4px 0 12px;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  color: #6b6d5c;
  margin: 0 0 18px;
  cursor: pointer;
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--olive, #868242);
  flex: 0 0 auto;
}

.consent-row a { color: var(--gold-dark, #9a7f45); text-decoration: underline; }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 10px;
  display: none;
  padding: 12px 16px;
}

.form-status.ok {
  display: block;
  background: #eef3e4;
  color: #4a5b28;
  border: 1px solid #c9d6a8;
}

.form-status.err {
  display: block;
  background: #faeceb;
  color: #8c3a34;
  border: 1px solid #e5c2be;
}

.btn-submit[disabled] { opacity: 0.6; cursor: wait; }

/* ===============================================
   GOOGLE MAPS - TWO-CLICK CONSENT LOADER
   =============================================== */
.map-consent {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #edeae0, #e0ddd0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(64, 67, 42, 0.12);
}

.map-consent svg { width: 38px; height: 38px; color: var(--olive, #868242); }

.map-consent p {
  font-size: 12.5px;
  color: #77796a;
  max-width: 340px;
  margin: 0;
  line-height: 1.55;
}

.map-consent button {
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  background: var(--olive, #868242);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.map-consent button:hover { background: var(--olive-dark, #40432a); }

/* form element wrapper - explicit so nested layout can never break */
#contactForm { display: block; width: 100%; }
#contactForm .form-row { margin-bottom: 0; }
#contactForm .btn-submit { width: 100%; }

/* ===============================================
   BLOG / AKTUELLES + VIDEOS (public)
   =============================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.blogc {
  background: #fff;
  border: 1px solid var(--border, #e5e2d6);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 26px rgba(64,67,42,0.07);
}

.blogc:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(64,67,42,0.16); }

.blogc-img { aspect-ratio: 16/9; overflow: hidden; }
.blogc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.blogc:hover .blogc-img img { transform: scale(1.05); }

.blogc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; }

.blogc-date {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark, #9a7f45);
}

.blogc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  color: var(--olive-dark, #40432a);
  line-height: 1.25;
  margin: 0;
}

.blogc p { font-size: 14px; color: var(--text-soft, #6b6d5c); line-height: 1.6; margin: 0; }
.blogc-more { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; color: var(--gold-dark, #9a7f45); margin-top: 4px; }

.aktuelles-home { padding: 90px 0; background: var(--off-white, #faf8f4); }
.blog-grid-home { margin-top: 34px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.video-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--olive-dark, #40432a); margin: 12px 0 0; }

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #23241c;
  box-shadow: 0 12px 32px rgba(64,67,42,0.14);
}

.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: none;
  background: rgba(185, 154, 91, 0.94);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-play svg { width: 30px; height: 30px; margin-left: 3px; }
.video-play:hover { transform: scale(1.08); background: var(--olive, #868242); }

/* ===============================================
   ANFAHRT / WEGBESCHREIBUNG
   =============================================== */
.anfahrt { margin-top: 26px; }

.anfahrt-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark, #9a7f45);
  margin: 0 0 16px;
}

.anfahrt-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft, #ece9dd);
}

.anfahrt-ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--off-white, #faf8f4);
  border: 1px solid var(--border, #e5e2d6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive, #868242);
}

.anfahrt-ico svg { width: 21px; height: 21px; }

.anfahrt-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  color: var(--olive-dark, #40432a);
  margin-bottom: 3px;
}

.anfahrt-item p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-soft, #6b6d5c);
  margin: 0;
}
