/* ═══════════════════════════════════════════════════
   Fischer Malerei GmbH — Brand CSS
   Archetype: Editorial Luxury · Warm Terracotta
   Imports base from _shared/webwerk-base.css (linked in HTML)
═══════════════════════════════════════════════════ */

/* ── Brand Tokens ── */
:root {
  --bg:          #FAF8F5;
  --bg-2:        #F4F0E8;
  --surface:     #FFFFFF;
  --text:        #1A1410;
  --text-2:      #5C5147;
  --text-3:      #8A7D6F;
  --accent:      #B86F3A;
  --accent-soft: #C8845A;
  --accent-dark: #9A5A2D;
  --accent-overlay: rgba(184,111,58,0.12);
  --line:        rgba(26,20,16,0.07);
  --line-strong: rgba(26,20,16,0.14);

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Geist', system-ui, -apple-system, sans-serif;
  --font-mono:  'Geist Mono', 'Courier New', monospace;

  --ease-ui:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);

  /* Material-Palette (Hero-Display, optional auch Footer/Library später) */
  --material-1: #E8E4D8;  /* Kalkfarbe creme */
  --material-2: #C9B896;  /* Sandstein warm */
  --material-3: #8B7355;  /* Lehm gebrannt */
  --material-4: #4A4544;  /* Anthrazit Tiefe */
  --material-6: #6B7D6A;  /* Salbei gedämpft */

  /* Wärmerer Paper-Ton für globalen Body-Wash */
  --paper-base: #FBF8F2;
}

/* Globaler subtiler Paper-Wash */
body {
  background-color: var(--paper-base);
}

/* Tailwind-Utility .font-serif → Instrument Serif (CDN default ist Georgia-Stack) */
.font-serif {
  font-family: var(--font-serif);
}

/* ════════════════════════════
   NAV
════════════════════════════ */
.nav-shell {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; pointer-events: none;
  padding: 20px 32px;
  display: flex; justify-content: center;
}
.nav {
  pointer-events: all;
  display: flex; align-items: center; gap: 8px;
  background: rgba(250,248,245,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 8px 12px 8px 24px;
  transition: box-shadow 300ms var(--ease-ui);
}
.nav.stuck { box-shadow: 0 8px 32px rgba(26,20,16,0.09); }

.nav-logo {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 400;
  color: var(--text); letter-spacing: -0.01em;
  margin-right: 8px;
}
.nav-logo em { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--text-2);
  padding: 6px 12px; border-radius: 100px;
  transition: color 150ms var(--ease-ui), background 150ms var(--ease-ui);
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--text); background: var(--accent-overlay); }
}

.nav-cta-wrap { margin-left: 8px; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 4.5px;
  padding: 8px; cursor: pointer;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform 240ms var(--ease-ui), opacity 240ms var(--ease-ui);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 36px; color: var(--text);
  transition: color 150ms var(--ease-ui);
}
.nav-overlay a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .nav-shell { padding: 16px 20px; }
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--bg);
  padding-top: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
  padding-block: 60px;
}
.hero-eyebrow { margin-bottom: 28px; }

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.5vw, 94px);
  line-height: 0.96; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 26px;
}
.hero-h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 17px; line-height: 1.72;
  color: var(--text-2); font-weight: 300;
  max-width: 480px; margin-bottom: 40px;
}

.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  display: flex; align-items: center; gap: 0;
  margin-top: 40px; flex-wrap: wrap;
}
.hero-trust .trust-item {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  color: var(--text-3); letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0 16px;
}
.hero-trust .trust-item:first-child { padding-left: 0; }
.trust-sep {
  width: 1px; height: 12px;
  background: var(--line-strong);
}

/* Hero image right */
.hero-visual { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(26,20,16,0.14);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Subtle accent border top-left */
.hero-img-frame::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(184,107,58,0.18);
  z-index: 1; pointer-events: none;
}
/* Badge floating on image */
.hero-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(26,20,16,0.10);
  z-index: 2;
}
.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 28px; line-height: 1; letter-spacing: -0.03em;
  color: var(--accent);
}
.hero-badge-label {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 500;
  color: var(--text-3); letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 4px;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero-badge { left: -8px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-img-frame { aspect-ratio: 3/2; }
  .hero-badge { bottom: 16px; left: 16px; }
}

/* ════════════════════════════
   PROJEKT-GALERIE
════════════════════════════ */
.project-gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.gallery-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-2);
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 200ms cubic-bezier(0.4,0,0.2,1);
}
.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 600ms cubic-bezier(0.16,1,0.3,1);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover .gallery-img-wrap {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26,20,16,0.10);
  }
  .gallery-item:hover .gallery-img-wrap img { transform: scale(1.05); }
}

.gallery-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding: 0 2px;
}
.gallery-location {
  font-family: var(--font-serif);
  font-size: 16px; color: var(--text);
}
.gallery-type {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--text-3);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.gallery-note {
  flex-basis: 100%;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 42ch;
}

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

/* ════════════════════════════
   LEISTUNGEN
════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  cursor: default;
  transition: transform 200ms var(--ease-ui),
              box-shadow 200ms var(--ease-ui),
              border-color 200ms var(--ease-ui);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,20,16,0.08);
    border-color: var(--accent);
  }
}

.service-icon {
  width: 36px; height: 36px; margin-bottom: 20px; color: var(--accent);
  transition: transform 300ms var(--ease-spring);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-icon { transform: rotate(5deg) scale(1.08); }
}

.service-h3 {
  font-family: var(--font-serif); font-size: 22px;
  color: var(--text); margin-bottom: 10px; font-weight: 400;
}
.service-desc {
  font-size: 14px; line-height: 1.68; color: var(--text-2);
}

/* Sub-list: reveal on hover using grid-template-rows trick */
.service-sub-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-spring),
              margin-top 280ms var(--ease-spring);
  margin-top: 0;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-sub-wrap {
    grid-template-rows: 1fr;
    margin-top: 20px;
  }
  .service-card:hover .service-sub { opacity: 1; transform: none; }
}
.service-sub-inner { overflow: hidden; }
.service-sub {
  border-top: 1px solid var(--line);
  padding-top: 16px; margin: 0; padding-left: 0;
  opacity: 0; transform: translateY(6px);
  transition: opacity 220ms ease-out 60ms, transform 220ms ease-out 60ms;
}
.service-sub li {
  font-size: 13px; color: var(--text-2);
  padding: 3px 0;
  display: flex; align-items: center; gap: 8px;
}
.service-sub li::before {
  content: '';
  display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}

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

/* ════════════════════════════
   ÜBER UNS
════════════════════════════ */
.about-section { background: var(--bg-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text-block .section-h2 { font-size: clamp(32px,4vw,52px); }
.about-body {
  font-size: 16px; line-height: 1.78;
  color: var(--text-2); font-weight: 300;
  margin-bottom: 40px;
}
.about-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 32px;
}
.stat {
  flex: 1; padding-right: 24px;
  border-right: 1px solid var(--line-strong);
}
.stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 40px; line-height: 1; letter-spacing: -0.03em;
  color: var(--accent); display: block; margin-bottom: 6px;
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 500;
  color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase;
}

/* About-Values — editorial 3-point list (replaces redundant stats) */
.about-values {
  border-top: 1px solid var(--line-strong);
  padding-top: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.about-value {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: baseline;
}
.about-value-marker {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 2px;
}
.about-value-text {
  font-size: 15px; line-height: 1.65;
  color: var(--text-2);
}
.about-value-text strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.012em;
}
.about-img-wrap {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(26,20,16,0.10);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { aspect-ratio: 3/2; order: -1; }
  .about-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .stat:first-child { padding-left: 0; }
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 28px 24px;
}
.testi-stars { margin-bottom: 16px; display: flex; gap: 3px; }
.testi-stars span {
  display: block; width: 12px; height: 12px;
  background: var(--accent); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.testi-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; line-height: 1.65;
  color: var(--text); margin-bottom: 20px;
}
.testi-author { font-size: 13px; font-weight: 500; color: var(--text-2); }
.testi-loc {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-3); letter-spacing: 0.06em; margin-top: 2px;
}

@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════
   KONTAKT
════════════════════════════ */
.kontakt-section { background: var(--bg-2); }
.kontakt-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px;
}
.kontakt-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px,3.5vw,44px);
  letter-spacing: -0.02em; line-height: 1.1;
  color: var(--text); margin-top: 16px; margin-bottom: 8px;
}
.kontakt-lead {
  font-size: 15px; color: var(--text-2);
  margin-bottom: 36px; line-height: 1.65;
}

.form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.form-grid-1 { margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }

.file-drop {
  border: 1.5px dashed var(--line-strong); border-radius: 10px;
  padding: 24px; text-align: center;
  cursor: pointer;
  transition: border-color 200ms var(--ease-ui), background 200ms var(--ease-ui);
}
@media (hover: hover) and (pointer: fine) {
  .file-drop:hover { border-color: var(--accent); background: var(--accent-overlay); }
}
.file-drop input[type="file"] { display: none; }
.file-drop-label {
  font-size: 13px; color: var(--text-3); cursor: pointer; line-height: 1.5;
}
.file-drop-label strong { color: var(--accent); }
.file-drop-note {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.1em;
  color: var(--text-3); text-transform: uppercase;
  margin-top: 6px;
}
.form-submit-row { margin-top: 28px; }

/* Phone sidebar */
.phone-sidebar { display: flex; flex-direction: column; gap: 20px; }
.phone-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 28px;
  text-align: center;
}
.phone-eyebrow { margin-bottom: 16px; }
.phone-number {
  font-family: var(--font-serif);
  font-size: 28px; letter-spacing: -0.02em;
  color: var(--text); line-height: 1;
  margin-bottom: 8px;
}
.phone-hours {
  font-size: 13px; color: var(--text-2); margin-bottom: 20px;
}
.phone-divider {
  width: 32px; height: 1px;
  background: var(--line-strong);
  margin: 20px auto;
}
.contact-info-item {
  font-size: 13px; color: var(--text-2);
  margin-bottom: 8px; line-height: 1.5;
}
.contact-info-item strong { color: var(--text); font-weight: 500; }

.map-placeholder {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 8px; min-height: 140px;
}
.map-placeholder svg { color: var(--accent); width: 24px; height: 24px; }
.map-placeholder p {
  font-size: 13px; color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
}

@media (max-width: 1100px) { .kontakt-grid { gap: 48px; } }
@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .phone-sidebar { flex-direction: row; flex-wrap: wrap; }
  .phone-box { flex: 1; min-width: 260px; }
  .map-placeholder { flex: 1; min-width: 260px; }
}
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.site-footer {
  background: var(--text);
  padding-block: 52px 36px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 20px; color: #fff; margin-bottom: 8px;
}
.footer-brand-name em { font-style: italic; color: rgba(184,107,58,0.85); }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.6; max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px; line-height: 1.5;
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { color: #fff; }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════
   WORD REVEAL (Hero H1)
════════════════════════════ */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: word-reveal 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms) both;
}
@keyframes word-reveal {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .word { animation: none; opacity: 1; transform: none; }
}

/* ════════════════════════════
   HERO STATS COUNTER
════════════════════════════ */
.hero-stats {
  display: flex; align-items: center;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 40px; flex-wrap: wrap;
  border-top: 1px solid var(--line-strong);
  padding-top: 32px;
}
.hero-stat {
  display: flex; flex-direction: column; gap: 4px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--text); font-weight: 400;
  font-feature-settings: "tnum" 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  color: var(--text-3); letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-stat-sep { display: none; }

/* ════════════════════════════
   PREISE / PRICING
════════════════════════════ */
.pricing-indication { background: var(--bg-2); }
.pricing-indication .section-h2 em {
  font-style: italic; color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  margin-top: 16px;
}

.pricing-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 200ms cubic-bezier(0.4,0,0.2,1);
}
.pricing-item:last-child { border-right: none; }
@media (hover: hover) and (pointer: fine) {
  .pricing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,20,16,0.06);
  }
}

.pricing-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-3); margin-bottom: 16px;
}
.pricing-value {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--accent); font-weight: 400;
  margin-bottom: 10px;
}
.pricing-detail {
  font-size: 13px; color: var(--text-2); line-height: 1.4;
}

.pricing-note {
  text-align: center; font-size: 15px;
  color: var(--text-2); margin-top: 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.pricing-cta {
  color: var(--accent); font-weight: 500;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 2px;
  transition: border-color 150ms ease;
}
.pricing-cta:hover { border-color: var(--accent); }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-item { border-right: none; border-bottom: 1px solid var(--line); }
  .pricing-item:last-child { border-bottom: none; }
}

/* ════════════════════════════
   FAQ ACCORDION
════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-list { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-btn {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 24px;
  background: none; border: none; cursor: pointer;
  padding: 24px 0; text-align: left;
  font-family: var(--font-serif);
  font-size: 20px; line-height: 1.2; font-weight: 400;
  color: var(--text);
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .faq-btn:hover { color: var(--accent); }
  .faq-btn:hover .faq-icon { color: var(--accent); }
}

.faq-question { flex: 1; }
.faq-icon {
  flex-shrink: 0; color: var(--text-3);
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1),
              color 150ms ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-body {
  overflow: hidden; max-height: 0;
  transition: max-height 400ms cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-body { max-height: 240px; }

.faq-body p {
  font-size: 15px; line-height: 1.72;
  color: var(--text-2); font-weight: 300;
  padding-bottom: 24px;
}

/* ════════════════════════════
   TERMIN / CAL.COM
════════════════════════════ */
.termin-section { background: var(--bg-2); }
.termin-section .section-h2 em { font-style: italic; color: var(--accent); }

.termin-intro { max-width: 640px; margin-bottom: 48px; }

.demo-notice {
  background: var(--accent-overlay);
  border: 1px solid rgba(184,111,58,0.28);
  padding: 18px 22px;
  font-size: 13px; color: var(--text-2);
  line-height: 1.55; margin-top: 28px;
  max-width: 600px; border-radius: 10px;
}
.demo-notice strong { color: var(--accent-dark); font-weight: 500; }

.termin-embed {
  max-width: 900px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(26,20,16,0.04);
  overflow: hidden;
}
.termin-embed iframe {
  display: block; width: 100%;
  border: none;
}
.termin-fallback {
  text-align: center; font-size: 12px;
  color: var(--text-3); font-family: var(--font-mono);
  padding: 12px; border-top: 1px solid var(--line);
}
.termin-fallback a { color: var(--accent); }

/* ════════════════════════════
   INHABER FIGURE
════════════════════════════ */
.inhaber-figure {
  width: 100%; height: 100%; margin: 0;
}
.inhaber-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.04);
  display: block;
}
.inhaber-figure figcaption {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--text-3); letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 12px;
  text-align: center;
}

/* ════════════════════════════
   WHATSAPP FLOAT
════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 200; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40),
              0 0 0 8px rgba(37,211,102,0.10);
  text-decoration: none;
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.50),
                0 0 0 12px rgba(37,211,102,0.10);
  }
}
.whatsapp-float:active { transform: scale(0.95) !important; }

@media (max-width: 768px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ── Footer Disclaimer ── */
.footer-disclaimer {
  font-family: var(--font-sans);
  font-size: 11px; color: rgba(255,255,255,0.35);
  max-width: 600px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  line-height: 1.6; opacity: 0.8;
}
