/* =====================================================
   Podologie Buchholz — Premium Design System 2.0
   Medizinisch · Modern · Seriös
   ===================================================== */

/* === DESIGN TOKENS === */
:root {
  /* Brand */
  --brand:        #2A9D8F;
  --brand-light:  #3ABCAC;
  --brand-dark:   #1F7A6E;
  --brand-subtle: #EDF7F5;

  /* Deep / Dark backgrounds */
  --deep:   #0B2424;
  --deep-2: #143333;

  /* Surfaces */
  --bg:     #FFFFFF;
  --bg-alt: #FAF9F6;

  /* Text */
  --text:           #1C1C1E;
  --text-secondary: #4A4A52;
  --muted:          #8E8E93;

  /* Borders */
  --border:       rgba(0, 0, 0, 0.08);
  --border-brand: rgba(42, 157, 143, 0.18);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.11), 0 4px 16px rgba(0,0,0,0.06);

  /* Radii */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;

  /* Typography */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --section-pad: clamp(64px, 8vw, 100px);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:    280ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 300%; }
address { font-style: normal; }

/* === CONTAINER === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* === TYPOGRAPHY === */
h1, h2      { font-family: var(--font-serif); font-weight: 700; line-height: 1.18; color: var(--text); }
h3, h4      { font-family: var(--font-sans);  font-weight: 600; line-height: 1.3;  color: var(--text); }

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem);   letter-spacing: -0.4px; margin: 0 0 20px; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); letter-spacing: -0.3px; margin: 0 0 16px; }
h3 { font-size: 1.12rem; margin: 0 0 10px; }
h4 { font-size: 0.92rem; margin: 0 0 8px;  }

p { margin: 0 0 16px; color: var(--text-secondary); line-height: 1.78; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: var(--brand); }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.muted { color: var(--muted); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(42,157,143,0.25);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(42,157,143,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand-subtle);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42,157,143,0.1);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.header--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  gap: 24px;
  transition: height var(--t);
}
.site-header.header--scrolled .header-inner {
  height: 68px;
}

.logo img {
  height: auto;
  max-height: 100px;
  width: auto;
  max-width: 440px;
  object-fit: contain;
  display: block;
  transition: max-height var(--t), opacity var(--t);
}
.site-header.header--scrolled .logo img {
  max-height: 54px;
}
.logo:hover img { opacity: 0.78; }

/* CTA in der Navigation (Desktop) */
.btn-nav {
  display: none;
  flex-shrink: 0;
  padding: 13px 28px;
  font-size: 0.95rem;
}
@media (min-width: 780px) {
  .btn-nav { display: inline-flex; }
}

.main-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
}
.main-nav a {
  display: inline-block;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--t), background var(--t);
}
.main-nav a:hover   { color: var(--text); background: var(--brand-subtle); }
.main-nav a.active  { color: var(--brand-dark); background: var(--brand-subtle); font-weight: 600; }

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text);
  transition: all var(--t);
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-subtle);
}
.nav-toggle svg { display: block; pointer-events: none; }

@media (max-width: 779px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    transform: translateX(102%);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms var(--ease), opacity 300ms var(--ease);
    z-index: 99;
    overflow-y: auto;
    padding: 20px 24px 48px;
    border-top: 1px solid var(--border);
  }
  .main-nav.open { transform: none; opacity: 1; pointer-events: all; }
  .main-nav ul   { flex-direction: column; gap: 4px; }
  .main-nav a    { display: block; padding: 13px 16px; font-size: 1rem; border-radius: var(--radius); }
}
@media (min-width: 780px) {
  .main-nav { position: static; transform: none; opacity: 1; pointer-events: all; }
}

/* === HERO (Index) === */
.hero {
  position: relative;
  background: var(--deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(84vh, 720px);
  padding: clamp(64px, 10vw, 120px) 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -130px; right: -160px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(42,157,143,0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -220px; left: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,157,143,0.09) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  will-change: transform;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 780px) {
  .hero-inner { grid-template-columns: 1fr 360px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 22px;
  padding: 5px 14px;
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: 100px;
}
.hero-eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--brand-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: hpulse 2.5s ease-in-out infinite;
}
@keyframes hpulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.5vw, 3.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--brand-light);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 50ch;
  margin: 0 0 38px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero glass card */
.hero-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
}
.hero-card-list { list-style: none; padding: 0; margin: 0; }
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.91rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-card-list li:last-child { border-bottom: none; }
.hcc {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 1px;
  background: rgba(42,157,143,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hcc svg {
  width: 10px; height: 10px;
  stroke: var(--brand-light);
  stroke-width: 2.5;
  fill: none;
}

/* === STATS STRIP === */
.stats-strip {
  background: var(--brand);
  padding: 34px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 8px 0; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* === SECTIONS === */
.section     { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--deep); }

.section-header { margin-bottom: 52px; }
.section-header .eyebrow { display: block; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; max-width: 54ch; color: var(--text-secondary); }

/* === CARDS === */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .card-grid               { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .card-grid.card-grid--3  { grid-template-columns: repeat(3, 1fr); justify-content: center; } }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.card:hover {
  border-color: var(--border-brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card:hover::after { transform: scaleX(1); }

.card-icon {
  width: 44px; height: 44px;
  background: var(--brand-subtle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--brand);
}
.card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 10px; }
.card p  { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.72; margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  color: var(--brand);
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--t), color var(--t);
}
.card-link:hover { gap: 10px; color: var(--brand-dark); }
.card-link svg { width: 14px; height: 14px; transition: transform var(--t); }
.card-link:hover svg { transform: translateX(3px); }

/* === ABOUT / FEATURES SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 780px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 { margin-bottom: 18px; }

.trust-list { margin: 28px 0; }
.trust-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.trust-list li:first-child { border-top: 1px solid var(--border); }
.trust-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; width: 22px; height: 22px;
  background: var(--brand-subtle);
  color: var(--brand-dark);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.about-media .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand-subtle) 0%, rgba(42,157,143,0.05) 100%);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 0.85rem;
  text-align: center;
  padding: 32px;
  gap: 12px;
}
.about-media .img-placeholder svg {
  width: 36px; height: 36px;
  opacity: 0.5;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1;
}
.about-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* === CTA SECTION === */
.section--cta {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: "";
  position: absolute;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.17) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255,255,255,0.58);
  font-size: 1.02rem;
  margin-bottom: 34px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === CONTACT PREVIEW (Index) === */
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 640px) {
  .contact-preview-grid { grid-template-columns: 1fr auto; }
}
.contact-preview-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.contact-preview-text address { color: var(--text-secondary); line-height: 1.8; }
.contact-preview-text p { margin-top: 6px; }

/* === MAP === */
.section--map { padding: var(--section-pad) 0; }
.map-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.map-card h2 { margin-bottom: 8px; }
.map-frame-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--border);
}
.map-frame-wrapper iframe {
  width: 100%; height: 360px;
  border: 0; display: block;
}
.map-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(246,244,239,0.93);
  backdrop-filter: blur(6px);
  padding: 24px;
}
.map-overlay-inner { text-align: center; max-width: 480px; }
.map-overlay p { color: var(--text-secondary); margin-bottom: 20px; }
.map-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.map-note { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }

/* === FOOTER === */
.site-footer {
  background: var(--deep);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-brand address {
  color: rgba(255,255,255,0.48);
  font-size: 0.88rem;
  line-height: 1.75;
}
.footer-brand p {
  color: rgba(255,255,255,0.38);
  font-size: 0.86rem;
  margin-top: 12px;
  line-height: 1.65;
}
.footer-col h4 {
  color: rgba(255,255,255,0.38);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--t);
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.28);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 0.81rem;
  transition: color var(--t);
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--deep);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.17) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--brand-light); }
.page-hero h1 { color: #fff; }
.page-hero p  { color: rgba(255,255,255,0.58); font-size: 1.05rem; max-width: 56ch; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 0.82rem;
}
.breadcrumb a       { color: rgba(255,255,255,0.42); text-decoration: none; transition: color var(--t); }
.breadcrumb a:hover { color: rgba(255,255,255,0.78); }
.breadcrumb .sep    { color: rgba(255,255,255,0.22); }
.breadcrumb .current{ color: rgba(255,255,255,0.68); }

/* === BEHANDLUNG DETAIL LAYOUT === */
.behandlung-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: var(--section-pad) 0;
}
@media (min-width: 860px) {
  .behandlung-layout { grid-template-columns: 1fr 310px; align-items: start; }
}

.behandlung-main h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.behandlung-main h2:first-of-type { margin-top: 0; }
.behandlung-main > p { color: var(--text-secondary); }

.behandlung-main ul         { margin: 0 0 28px; }
.behandlung-main ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.behandlung-main ul li:first-child { border-top: 1px solid var(--border); }
.behandlung-main ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 8px;
}

.behandlung-cta-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Sidebar */
.sidebar-cta-card {
  background: var(--deep);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: sticky;
  top: 84px;
}
.sidebar-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}
.sidebar-cta-card p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.68;
}
.sidebar-cta-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.sidebar-cta-card .btn:last-of-type { margin-bottom: 0; }
.sidebar-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 24px 0 18px;
}
.sidebar-info {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.65;
}

/* === INFO BOX (FAQ) === */
.info-box {
  background: var(--brand-subtle);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  margin-top: 40px;
}
.info-box h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.info-box .meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.info-box .meta span {
  background: #fff;
  border: 1px solid var(--border-brand);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.79rem;
  color: var(--brand-dark);
  font-weight: 500;
}
.info-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.91rem;
  border-bottom: 1px solid rgba(42,157,143,0.1);
  line-height: 1.65;
}
.info-box ul li:last-child { border-bottom: none; }
.info-box ul li::before {
  content: "•";
  color: var(--brand);
  font-size: 1rem;
  margin-top: 0;
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

/* === PRAXIS BOX === */
.praxis-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 28px;
}
.praxis-box h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.praxis-box p { font-size: 0.95rem; }

/* === CONTACT PAGE === */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: var(--section-pad) 0;
}
@media (min-width: 780px) { .contact-inner { grid-template-columns: 1fr 340px; } }

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 28px; }

.form-row { margin-bottom: 20px; }
label {
  display: block;
  margin-bottom: 7px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
}
input, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color var(--t), box-shadow var(--t);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.1);
}
textarea { resize: vertical; min-height: 120px; }

.form-privacy { display: flex; align-items: flex-start; gap: 12px; }
.form-privacy input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
  cursor: pointer;
}
.form-privacy label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.55;
  cursor: pointer;
}
.form-privacy label a { color: var(--brand); }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }

.contact-info-card {
  background: var(--deep);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: fit-content;
  position: sticky;
  top: 84px;
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-card .info-section { margin-bottom: 20px; }
.contact-info-card .info-section:last-child { margin-bottom: 0; }
.contact-info-card h4 {
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 5px;
}
.contact-info-card address,
.contact-info-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}
.contact-info-card a { color: var(--brand-light); text-decoration: none; }

.map-wrapper {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.map-wrapper iframe { width: 100%; height: 200px; border: 0; display: block; }
.map-consent {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  text-align: center;
  border-radius: var(--radius);
}
.map-consent p { color: rgba(255,255,255,0.48); font-size: 0.85rem; margin-bottom: 14px; }

/* === LEGAL === */
.legal-content { padding: var(--section-pad) 0; max-width: 720px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.95rem; }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 660ms var(--ease), transform 660ms var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

.stagger > *:nth-child(1) { transition-delay:   0ms; }
.stagger > *:nth-child(2) { transition-delay:  80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
