/* ============================================
   Die Herzensagentur — Stylesheet (flach, ohne Unterordner)
   Palette: Wein, Champagner-Gold, Elfenbein, Kohle
   ============================================ */

:root {
  --wine: #6b2737;
  --wine-dark: #4a1b29;
  --wine-soft: #8a3c4d;
  --ivory: #faf6f0;
  --ivory-deep: #f1e9df;
  --gold: #b8935f;
  --gold-light: #d9bd8e;
  --charcoal: #453b34;
  --charcoal-soft: #756a60;
  --rose: #c9a0a6;
  --line: rgba(43, 36, 32, 0.12);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1120px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--wine-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: inline-block;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container { position: relative; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--wine-dark);
  letter-spacing: 0.01em;
}

.brand-mark { width: 26px; height: 20px; flex-shrink: 0; }

nav.main-nav ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
nav.main-nav a { text-decoration: none; font-size: 0.86rem; color: var(--charcoal); position: relative; padding-bottom: 4px; }
nav.main-nav a:hover { color: var(--wine); }
.nav-mail-item { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary { background: var(--wine); color: var(--ivory); }
.btn-primary:hover { background: var(--wine-dark); }
.btn-ghost { border-color: var(--wine); color: var(--wine); background: transparent; }
.btn-ghost:hover { background: var(--wine); color: var(--ivory); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--wine-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { padding: 90px 0 70px; position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero h1 em { font-style: italic; color: var(--wine); }
.hero-lede { font-size: 1.15rem; color: var(--charcoal-soft); max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-stats div strong { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--wine-dark); }
.hero-stats div span { font-size: 0.82rem; color: var(--charcoal-soft); }

.hero-signature { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.hero-signature svg { width: 100%; height: 100%; max-width: 380px; }
.circle-a, .circle-b { fill: none; stroke-width: 1.4; }
.circle-a { stroke: var(--wine); }
.circle-b { stroke: var(--gold); }
.hero-signature .lune { fill: var(--rose); opacity: 0.28; }

/* ===== Sektionen allgemein ===== */
section { padding: 88px 0; }
.section-alt { background: var(--ivory-deep); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Über uns ===== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.about-values { display: grid; gap: 22px; margin-top: 28px; }
.about-values .value { display: flex; gap: 16px; }
.value-index { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; min-width: 28px; }

/* ===== Leistungen ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { background: var(--ivory); padding: 40px 32px; }
.service-card .icon { width: 34px; height: 34px; margin-bottom: 22px; stroke: var(--wine); fill: none; stroke-width: 1.3; }
.service-card h3 { margin-bottom: 0.5em; }
.service-card p { color: var(--charcoal-soft); font-size: 0.95rem; margin: 0; }

/* ===== Ablauf ===== */
.process-list { display: grid; gap: 0; }
.process-item { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 32px 0; border-top: 1px solid var(--line); }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); }
.process-item h3 { margin-bottom: 6px; }
.process-item p { color: var(--charcoal-soft); margin: 0; max-width: 60ch; }

/* ===== Zitat ===== */
.quote-block { text-align: center; max-width: 780px; margin: 0 auto; }
.quote-block blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); font-style: italic; color: var(--wine-dark); margin: 0 0 20px; }
.quote-block cite { font-style: normal; font-size: 0.9rem; color: var(--charcoal-soft); }

/* ===== Events-Banner (Speed-Dating) ===== */
.events-banner { background: linear-gradient(120deg, var(--wine) 0%, var(--wine-soft) 55%, var(--gold) 130%); color: var(--ivory); padding: 44px 0; }
.events-banner .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.events-banner .icon { width: 46px; height: 46px; flex-shrink: 0; stroke: var(--ivory); fill: none; stroke-width: 1.3; }
.events-banner .events-text { flex: 1 1 380px; }
.events-banner .eyebrow { color: var(--gold-light); }
.events-banner h2 { color: var(--ivory); font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 0.3em; }
.events-banner p { color: rgba(250, 246, 240, 0.88); margin: 0; max-width: 56ch; }
.events-banner .btn-ghost { border-color: var(--ivory); color: var(--ivory); flex-shrink: 0; }
.events-banner .btn-ghost:hover { background: var(--ivory); color: var(--wine-dark); }

/* ===== Kontakt ===== */
.contact-panel { background: var(--wine); color: var(--ivory); border-radius: var(--radius); padding: 64px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.contact-panel h2 { color: var(--ivory); }
.contact-panel .eyebrow { color: var(--gold-light); }
.contact-panel p { color: rgba(250, 246, 240, 0.82); }
.contact-card { background: rgba(250, 246, 240, 0.06); border: 1px solid rgba(250, 246, 240, 0.25); padding: 32px; }
.contact-card .mail-link {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 4.2vw, 1.3rem);
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 10px;
  margin-bottom: 14px;
  white-space: nowrap;
  overflow-wrap: normal;
}
.contact-card .mail-link:hover { color: var(--gold-light); }

.contact-card .phone-link {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1rem, 3.8vw, 1.15rem);
  color: var(--ivory);
  text-decoration: none;
  margin-bottom: 14px;
}
.contact-card .phone-link:hover { color: var(--gold-light); }

.contact-card .whatsapp-note {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.82);
  margin-bottom: 18px;
}
.contact-card .whatsapp-note a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card small { color: rgba(250, 246, 240, 0.65); font-size: 0.82rem; }

/* ===== Footer ===== */
footer.site-footer { background: var(--charcoal); color: rgba(250, 246, 240, 0.75); padding: 60px 0 30px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--ivory); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; color: rgba(250, 246, 240, 0.75); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-keywords { font-size: 0.76rem; line-height: 1.9; color: rgba(250, 246, 240, 0.38); border-top: 1px solid rgba(250, 246, 240, 0.12); padding-top: 24px; margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(250, 246, 240, 0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(250, 246, 240, 0.5); }

/* ===== Cookie-Banner ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transform: translateY(110%);
  transition: transform 0.3s ease;
  background: var(--charcoal);
  border-top: 1px solid rgba(250, 246, 240, 0.15);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(250, 246, 240, 0.85);
  font-size: 0.86rem;
  margin: 0;
  flex: 1 1 380px;
}

.cookie-banner a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn { padding: 10px 20px; font-size: 0.82rem; }
.cookie-banner .btn-ghost { border-color: rgba(250, 246, 240, 0.5); color: var(--ivory); }
.cookie-banner .btn-ghost:hover { background: rgba(250, 246, 240, 0.12); color: var(--ivory); }

@media (max-width: 640px) {
  .cookie-banner-inner { padding: 18px 20px; flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; justify-content: center; }
}

/* ===== Rechtsseiten ===== */
.legal-hero { padding: 70px 0 40px; border-bottom: 1px solid var(--line); }
.legal-content { padding: 56px 0 100px; max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; margin-top: 2em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--charcoal-soft); }
.legal-content a { color: var(--wine); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.92rem; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal-content th { background: var(--ivory-deep); font-family: var(--sans); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .header-actions .btn-primary { display: none; }
  .contact-card { padding: 24px 20px; }
  .contact-card .mail-link { font-size: clamp(0.92rem, 4.6vw, 1.05rem); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px -12px rgba(43, 36, 32, 0.18);
  }

  nav.main-nav.is-open { display: block; }

  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  nav.main-nav li { border-top: 1px solid var(--line); }
  nav.main-nav li:first-child { border-top: none; }

  nav.main-nav a {
    display: block;
    padding: 11px 24px;
    font-size: 0.88rem;
  }

  .nav-mail-item { display: block; }
  .nav-mail-item a {
    color: var(--wine);
    font-weight: 600;
  }

  .header-actions .btn-primary { display: none; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-signature { order: -1; max-width: 220px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; padding: 40px 28px; }
  .process-item { grid-template-columns: 50px 1fr; }
}
