/* ============================================================
   ON POINT — Shared Stylesheet
   Design-Tokens, Reset, Nav, Footer, Buttons, Cards
   Auf allen Seiten außer index.html (bis dahin Reste inline).
   ============================================================ */

:root {
  --bg: #FBF2ED;
  --bg-warm: #F3D6C6;
  --bg-soft: #E8D0BE;
  --card: #ffffff;

  --ink: #2D1F22;
  --ink-soft: #4a3236;
  --muted: #8a6f72;
  --muted-lite: #b09a9c;

  --bordeaux: #8B2E3A;
  --bordeaux-hi: #A5384A;
  --bordeaux-deep: #6E1F2C;

  --gold: #C5A46D;
  --gold-hi: #d5b884;

  --line: rgba(45, 31, 34, 0.08);
  --line-strong: rgba(45, 31, 34, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Object Sans', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .container { padding: 0 24px; } }

h1, h2, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--ink);
}
h3, h4 {
  font-family: 'Object Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* Circle-Italic (Editorial-Signature) */
.circle-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0 12px;
}
.circle-italic::before {
  content: "";
  position: absolute; inset: -6% -4% -6% -4%;
  border: 1.5px solid var(--ink);
  border-radius: 55% 45% 55% 45% / 55% 45% 55% 45%;
  transform: rotate(-3deg);
  pointer-events: none;
}
.circle-italic.gold::before { border-color: var(--gold); }
.circle-italic.white::before { border-color: #fff; }

/* Reveal-Animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251, 242, 237, 0.85);
  backdrop-filter: saturate(1.3) blur(20px);
  -webkit-backdrop-filter: saturate(1.3) blur(20px);
  border-bottom: 1px solid var(--line);
}
nav.site-nav .row {
  max-width: 1200px; margin: 0 auto;
  padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 26px;
  color: var(--ink); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.brand::before {
  content: "";
  display: inline-block; width: 16px; height: 16px;
  background: var(--bordeaux); border-radius: 50%;
}
nav.site-nav ul { display: flex; gap: 22px; list-style: none; flex-wrap: nowrap; }
nav.site-nav ul a {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
nav.site-nav ul a:hover { color: var(--bordeaux); }
nav.site-nav ul a.current { color: var(--bordeaux); }
nav.site-nav ul a.current::after {
  content: "";
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta {
  padding: 13px 26px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--bordeaux); }

/* Burger + Mobile-Menu */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink); position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px;
  background: var(--ink); transition: transform 0.3s;
}
.nav-burger span::before { top: -5px; }
.nav-burger span::after  { top:  5px; }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  nav.site-nav ul { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .mobile-menu {
    position: fixed; top: 78px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 24px 32px 32px;
    display: none;
    z-index: 99;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink); font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a.current { color: var(--bordeaux); }
  .mobile-menu .mobile-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: var(--ink); color: var(--bg);
    border-radius: 999px;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500;
    border-bottom: 0;
  }
}
@media (min-width: 981px) { .mobile-menu { display: none !important; } }

/* Push content below fixed nav on non-hero pages */
.nav-spacer { height: 78px; }

/* ─── BUTTONS ─── */
.btn-red {
  padding: 20px 44px;
  background: var(--bordeaux); color: #fff;
  border: 0; border-radius: 999px;
  font-family: 'Object Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 20px 40px rgba(139, 46, 58, 0.35);
  display: inline-block;
}
.btn-red:hover { background: var(--bordeaux-hi); transform: translateY(-3px); box-shadow: 0 25px 50px rgba(139, 46, 58, 0.5); }

.btn-outline {
  padding: 20px 44px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'Object Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--bordeaux); color: var(--bordeaux); transform: translateY(-3px); }

.btn-outline-white {
  padding: 20px 44px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  font-family: 'Object Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; backdrop-filter: blur(8px);
  transition: all 0.4s;
  display: inline-block;
}
.btn-outline-white:hover { background: #fff; color: var(--ink); }

/* ─── PAGE HERO (Bereichs-Seiten) — ruhig, editorial ─── */
.page-hero {
  padding: 200px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.page-hero .container { position: relative; z-index: 2; }

/* Zwei sehr subtile Gradient-Flächen als Atmosphäre */
.page-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  opacity: 0.7;
}
.page-hero .orb-1 {
  top: 80px; left: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139, 46, 58, 0.15), transparent 60%);
  animation: floatA 22s ease-in-out infinite alternate;
}
.page-hero .orb-2 {
  bottom: -100px; right: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(197, 164, 109, 0.18), transparent 60%);
  animation: floatB 26s ease-in-out infinite alternate;
}
.page-hero .orb-3 { display: none; }
@keyframes floatA {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(70px, 40px) scale(1.15); }
}
@keyframes floatB {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 60px) scale(0.9); }
}
@keyframes floatC {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -50px) scale(1.2); }
}

.page-hero .eyebrow {
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  margin-bottom: 32px;
  display: inline-block;
}
.page-hero h1 {
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  max-width: 960px; margin-left: auto; margin-right: auto;
  line-height: 0.98;
}
.page-hero h1 em { font-style: italic; color: var(--bordeaux); }
.page-hero .lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 400;
}
.page-hero .lede em {
  font-style: italic; color: var(--ink); font-weight: 400;
}

.page-hero .big-mark { display: none; }

/* Pulsing dot for USPs */
.pulse-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bordeaux);
  box-shadow: 0 0 0 5px rgba(139, 46, 58, 0.15);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 5px rgba(139, 46, 58, 0.15); }
  50% { box-shadow: 0 0 0 12px rgba(139, 46, 58, 0); }
}

/* Card glow effect */
.glow-on-hover {
  position: relative;
  overflow: hidden;
}
.glow-on-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 46, 58, 0.08), rgba(197, 164, 109, 0.12));
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}
.glow-on-hover:hover::before { opacity: 1; }
.glow-on-hover > * { position: relative; z-index: 1; }

/* Section accent orbs (for content sections, subtle) */
.section-orbs { position: relative; overflow: hidden; }
.section-orbs::before {
  content: ""; position: absolute; top: -100px; left: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 164, 109, 0.14), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.section-orbs::after {
  content: ""; position: absolute; bottom: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 46, 58, 0.12), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.section-orbs > .container { position: relative; z-index: 1; }

/* Marquee entfernt — zu viel Bewegung. Bei Bedarf zurückholen. */
.mini-marquee { display: none; }

/* Editorial Referenz-Karten (großformatig, 2-col) */
.ref-editorial {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 800px) { .ref-editorial { grid-template-columns: 1fr; gap: 32px; } }
.ref-editorial a { display: block; }
.ref-ed-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-warm);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ref-ed-card:hover { transform: translateY(-6px); }
.ref-ed-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.ref-ed-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ref-ed-card:hover .ref-ed-visual img { transform: scale(1.05); }
.ref-ed-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45, 31, 34, 0.55));
  pointer-events: none;
}
.ref-ed-visual.placeholder {
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-soft));
  display: flex; align-items: center; justify-content: center;
}
.ref-ed-visual.placeholder::before {
  content: "Bild folgt";
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--muted); font-size: 15px;
  position: relative; z-index: 2;
}
.ref-ed-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 32px 28px;
  color: #fff;
  z-index: 2;
}
.ref-ed-meta .kind {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 10px; display: block;
}
.ref-ed-meta h4 {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: #fff; line-height: 1.05;
  letter-spacing: -0.01em;
}
.ref-ed-meta .sub {
  margin-top: 8px;
  font-size: 13px; color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

/* ─── SECTIONS ─── */
.section { padding: 120px 0; }
.section-dark { background: var(--ink); color: var(--bg); }
.section-dark h2, .section-dark h3 { color: var(--bg); }
.section-warm { background: var(--bg-warm); }

.section-header { text-align: center; margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow {
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin-bottom: 24px; display: inline-block;
}
.section-dark .section-header .eyebrow { color: var(--gold); }
.section-header h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.05;
}
.section-header h2 em { font-style: italic; color: var(--bordeaux); }
.section-dark .section-header h2 em { color: var(--gold); }
.section-header p { font-size: 17px; color: var(--muted); line-height: 1.6; }
.section-dark .section-header p { color: rgba(251, 242, 237, 0.7); }

/* ─── CARDS ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--line);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(45, 31, 34, 0.1); }
.card .badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bordeaux); font-weight: 700;
  margin-bottom: 16px;
}
.card h3 {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  font-size: 24px; margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.15;
  color: var(--ink);
}
.card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Dark-Version */
.section-dark .card {
  background: rgba(251, 242, 237, 0.04);
  border-color: rgba(197, 164, 109, 0.2);
  backdrop-filter: blur(6px);
}
.section-dark .card:hover {
  background: rgba(251, 242, 237, 0.06);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.section-dark .card .badge { color: var(--gold); }
.section-dark .card h3 { color: var(--bg); }
.section-dark .card p { color: rgba(251, 242, 237, 0.65); }

/* ─── PRICE-BOX (Einzelleistungen etc.) ─── */
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.price-row:last-child { border-bottom: 0; }
.price-row .label { font-size: 15px; color: var(--ink); font-weight: 500; }
.price-row .price {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 22px; color: var(--bordeaux);
  white-space: nowrap;
}
.price-row .price em { font-style: italic; font-weight: 400; font-size: 15px; color: var(--muted); }

/* ─── FAQ (details) ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Object Sans', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--bordeaux); font-weight: 400;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "×"; }
.faq-item p {
  margin-top: 14px;
  font-size: 15px; color: var(--muted); line-height: 1.7;
}

/* ─── REFERENZ-KARTEN ─── */
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .ref-grid { grid-template-columns: 1fr; } }
.ref-card {
  background: var(--card);
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s, box-shadow 0.4s;
}
.ref-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(45, 31, 34, 0.12); }
.ref-card .thumb {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.ref-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.ref-card .thumb.placeholder::before {
  content: "Bild folgt";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--muted); font-size: 14px;
}
.ref-card .meta { padding: 20px 22px; }
.ref-card .meta .kind {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bordeaux); font-weight: 700;
  margin-bottom: 6px;
}
.ref-card .meta h4 {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  font-size: 18px; color: var(--ink);
}

/* ─── CTA-BLOCK (Ende jeder Seite) ─── */
.cta-block { padding: 140px 0; background: var(--bg); text-align: center; }
.cta-block .inner {
  max-width: 780px; margin: 0 auto;
  background: var(--card);
  border-radius: 16px;
  padding: 80px 60px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(45, 31, 34, 0.08);
}
@media (max-width: 700px) { .cta-block .inner { padding: 50px 28px; } }
.cta-block .mark { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 28px; }
.cta-block h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 400; margin-bottom: 20px; }
.cta-block h2 em { font-style: italic; color: var(--bordeaux); }
.cta-block p { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.cta-block .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer.site-footer { background: var(--ink); color: rgba(251, 242, 237, 0.6); padding: 80px 0 40px; }
.footer-top {
  max-width: 1200px; margin: 0 auto 80px; padding: 0 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { color: var(--bg); }
.footer-brand .logo {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 32px; margin-bottom: 12px;
}
.footer-brand .tag {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 15px; color: var(--gold); margin-bottom: 18px;
}
.footer-brand .adr { font-size: 13px; color: rgba(251, 242, 237, 0.55); line-height: 1.7; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px; color: var(--bg); font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-xxl { text-align: center; padding: 20px; border-top: 1px solid rgba(251, 242, 237, 0.08); margin-top: 40px; }
.footer-xxl .logo-big {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(60px, 14vw, 180px);
  color: var(--bg); letter-spacing: -0.03em; line-height: 0.85;
}
.footer-xxl .logo-big .g { color: var(--bordeaux); }
.footer-copy {
  margin-top: 30px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(251, 242, 237, 0.35);
}
