﻿/* ── Das Haus der Chiropraktik – Shared Styles ─────── */
:root {
  --teal:       #3d6b6b;
  --teal-light: #6a9a9a;
  --teal-dark:  #2a4d4d;
  --cream:      #f7f3ec;
  --cream-dark: #ede6d8;
  --bark:       #2c2416;
  --bark-mid:   #5a4e3c;
  --gold:       #b89a5c;
  --gold-light: #d4b87a;
  --white:      #fdfaf5;
  --nav-bg:     #1a1a1a;
  --radius:     12px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(44,36,22,0.08);
  --shadow-md:  0 8px 40px rgba(44,36,22,0.13);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--bark);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.9;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 5rem;
  background: #ffffff;
  border-bottom: 1px solid var(--cream-dark);
  transition: padding 0.3s, border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled { padding: 0.45rem 5rem; border-bottom-color: var(--cream-dark); box-shadow: 0 2px 16px rgba(44,36,22,0.08); }
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none; flex-shrink: 0; line-height: 1;
}
.nav-logo img {
  height: 90px; width: auto;
  transition: opacity 0.2s;
  border-radius: 0;
  padding: 0;
}
.nav-logo img:hover { opacity: 0.88; }
.nav-logo span { display: none; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--bark);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; transition: color 0.2s; white-space: nowrap;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--teal) !important; color: var(--white) !important;
  padding: 0.45rem 1.2rem; border-radius: 50px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 400;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--bark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 250;
  background: var(--nav-bg);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--white);
  text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .d-cta {
  font-family: 'Jost', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--teal); color: var(--white) !important;
  padding: 0.9rem 2.8rem; border-radius: 2px; margin-top: 0.5rem;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none; border-radius: 50px;
  font-family: 'Jost', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  border: none; cursor: pointer;
}
.btn-teal  { background: var(--teal); color: var(--white); padding: 0.95rem 2.4rem; box-shadow: 0 4px 16px rgba(61,107,107,0.25); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(61,107,107,0.35); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); padding: 0.9rem 2.2rem; border: 1px solid rgba(255,255,255,0.4); border-radius: 50px; backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--teal); padding: 0.85rem 2rem; border: 1px solid var(--teal); border-radius: 50px; }
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ── LAYOUT ───────────────────────────────────────── */
.page-body { padding-top: 52px; }
.section { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 4rem; }
.eyebrow {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem; font-weight: 400;
}
.eyebrow-light { color: rgba(184,154,92,0.85); }
.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300; line-height: 1.1; color: var(--bark);
}
.heading em { font-style: italic; color: var(--teal); }
.heading-light { color: var(--white); }
.heading-light em { color: var(--gold-light); }
.lead { font-size: 18px; color: var(--bark-mid); max-width: 56ch; line-height: 1.9; margin-top: 1.1rem; }
.lead-light { color: rgba(255,255,255,0.78); }
.divider { display: block; width: 40px; height: 1px; background: var(--gold); margin: 1.4rem 0; }

/* ── PAGE HERO ────────────────────────────────────── */
.page-hero {
  min-height: 48vh; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 4rem;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.25) 0%, rgba(17,17,17,0.78) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.9rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.05; color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ── PHOTO STRIP ──────────────────────────────────── */
.photo-strip { width: 100%; overflow: hidden; position: relative; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-strip-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.strip-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-style: italic;
  color: var(--white); text-align: center; padding: 0 3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── CARDS ────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; color: var(--gold-light); font-weight: 300;
  line-height: 1; margin-bottom: 0.8rem;
}
.card-base {
  background: var(--white); padding: 2.4rem 2rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card-base:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-base h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--bark);
}
.card-base p { font-size: 18px; color: var(--bark-mid); line-height: 1.85; }

/* ── GRID TILES ───────────────────────────────────── */
.tile-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.tile {
  background: var(--white); padding: 2.4rem 2rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile-icon { width: 40px; height: 40px; margin-bottom: 1rem; color: var(--teal); }
.tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; margin-bottom: 0.55rem; color: var(--bark);
}
.tile p { font-size: 18px; color: var(--bark-mid); line-height: 1.85; }

/* ── TWO-COL CONTENT ──────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col-visual { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.two-col-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bullet-list { list-style: none; margin-top: 1.2rem; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 18px; color: var(--bark-mid);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before { content: '—'; color: var(--teal); flex-shrink: 0; }
.bullet-list.light li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.bullet-list.light li::before { color: var(--gold-light); }

/* ── FOCUS BOX ────────────────────────────────────── */
.focus-box {
  background: var(--teal-dark); color: var(--white);
  padding: 3rem 3.5rem; margin-top: 3.5rem; border-radius: var(--radius);
  display: flex; align-items: center; gap: 3rem; box-shadow: var(--shadow-md);
}
.focus-box p { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.9; flex: 1; }
.focus-box p strong { color: var(--gold-light); font-weight: 500; }

/* ── QUOTE BAND ───────────────────────────────────── */
.quote-band {
  position: relative; padding: 7rem 0; text-align: center;
}
.quote-band-bg { position: absolute; inset: 0; z-index: 0; }
.quote-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-band-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,17,17,0.55) 0%, rgba(42,77,77,0.72) 100%); }
.quote-band-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 3rem; }
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem,2.5vw,2.2rem); font-style: italic;
  color: var(--white); line-height: 1.45; font-weight: 300;
}
.quote-cite {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-top: 1.2rem;
}

/* ── KONTAKT ──────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.k-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600; margin-bottom: 1.4rem; color: var(--bark);
}
.k-inline-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--cream-dark);
}
.k-inline-item:last-of-type { border-bottom: none; }
.k-inline-item svg { flex-shrink: 0; color: var(--teal); margin-top: 0.15rem; }
.k-inline-item div { display: flex; flex-direction: column; gap: 0.1rem; }
.k-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.k-value { font-size: 18px; color: var(--bark-mid); text-decoration: none; }
a.k-value:hover { color: var(--bark); }
.sz-box { background: var(--cream); padding: 1.8rem 2rem; border-radius: var(--radius); margin-top: 1.6rem; box-shadow: var(--shadow); }
.sz-box h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.sz-row { display: flex; justify-content: space-between; padding: 0.38rem 0; border-bottom: 1px solid var(--cream-dark); font-size: 18px; color: var(--bark-mid); }
.sz-row:last-child { border-bottom: none; }
.sz-row span:first-child { font-weight: 500; color: var(--bark); }
.k-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 1.4rem; color: var(--bark); }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bark-mid); margin-bottom: 0.4rem; }
.fg input, .fg textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark); border-radius: 2px;
  background: var(--cream); font-family: 'Jost', sans-serif;
  font-size: 18px; color: var(--bark); font-weight: 300;
  transition: border-color 0.2s; outline: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--teal); }
.fg textarea { min-height: 120px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── LEGAL ────────────────────────────────────────── */
.legal-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-top: 2.5rem; }
.legal-block { margin-bottom: 1.8rem; }
.legal-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--bark); }
.legal-block p { font-size: 18px; color: var(--bark-mid); line-height: 1.85; }
.legal-block a { color: var(--teal); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: #ffffff; padding: 2.5rem 0 0; border-top: 1px solid var(--cream-dark); }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 2rem; padding: 0 4rem; align-items: start; }
.footer-logo { height: 80px; width: auto; margin-bottom: 0.8rem; display: block; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--bark); font-weight: 400; line-height: 1.3; }
.footer-brand span { color: var(--teal); }
.footer-tagline { font-size: 15px; color: var(--bark-mid); margin-top: 0.3rem; line-height: 1.55; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.7rem; }
.footer-col a { display: block; font-size: 15px; color: var(--bark-mid); text-decoration: none; margin-bottom: 0.35rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-contact-item { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.45rem; }
.footer-contact-item svg { flex-shrink: 0; color: var(--teal); }
.footer-contact-item a, .footer-contact-item span { font-size: 15px; color: var(--bark-mid); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--cream-dark);
  margin-top: 2rem; padding: 0.85rem 4rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  background: var(--cream);
}
.footer-bottom p { font-size: 13px; color: var(--bark-mid); letter-spacing: 0.03em; }
.footer-bottom a { font-size: 13px; color: var(--bark-mid); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ── ANIMATIONS ───────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding-left: 2.5rem; padding-right: 2.5rem; }
  .container { padding: 0 2.5rem; }
  .footer-inner { padding: 0 2.5rem; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 0.85rem 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col-visual { height: 380px; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .legal-grid { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt-grid { gap: 3rem; }
  .focus-box { flex-direction: column; gap: 1.5rem; padding: 2.2rem; }
}
@media (max-width: 768px) {
  nav, nav.scrolled { padding: 0.8rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.2rem; padding: 0 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 0.85rem 1.25rem; }
  .quote-band-inner { padding: 0 1.5rem; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 2.2rem; }
}
