/* ==========================================================================
   Herz & Worte — Dachportal CSS
   Neutral-elegant: warme Creme/Papier-Basis, Bordeaux-Braun als Primärakzent,
   Antikgold als verbindendes Element über alle Verticals.
   Markenfonts via /hochzeitsreden/assets/css/fonts.css.
   ========================================================================== */

:root {
  /* --- Flächen --- */
  --cream:        #FAF5EC;
  --paper:        #FFFDF8;

  /* --- Text --- */
  --ink:          #3A322B;
  --ink-soft:     #7C6F62;

  /* --- Primärakzent: neutrales Bordeaux-Braun (kein Rosé) --- */
  --bordeaux:     #6B3F3A;
  --bordeaux-deep:#552F2B;
  --bordeaux-tint:#F0E4E2;

  /* --- Sekundärakzent: Antikgold (verbindendes Element) --- */
  --gold:         #B08D57;
  --gold-soft:    #DCCBA8;
  --gold-tint:    #F4ECDD;

  /* --- Strukturelles --- */
  --line:         #E9DFCE;
  --success:      #5F7A5A;

  /* --- Typografie --- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Avenir Next', sans-serif;
  --font-script:  'Pinyon Script', cursive;

  /* --- Effekte --- */
  --shadow-card:  0 4px 24px -8px rgba(58, 50, 43, 0.10);
  --shadow-soft:  0 10px 40px -12px rgba(58, 50, 43, 0.14);
  --radius:       4px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  /* Atmosphärische Hintergrund-Gradienten — Gold oben rechts, Bordeaux-Hauch oben links */
  background-image:
    radial-gradient(ellipse 900px 500px at 85% -5%,  rgba(176, 141, 87, 0.09),   transparent 60%),
    radial-gradient(ellipse 700px 450px at 8%  12%,  rgba(107,  63,  58, 0.06),  transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--bordeaux-tint); color: var(--bordeaux-deep); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

a { color: var(--bordeaux); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--bordeaux-deep); }

/* ==========================================================================
   Layout-Helfer
   ========================================================================== */

.container       { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow{ max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.center          { text-align: center; }

.section {
  padding: 96px 0;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 236, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .03em;
}
.brand:hover { color: var(--ink); }

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
}

/* ==========================================================================
   Eyebrow-Label (über Sections)
   ========================================================================== */

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 100px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero > .container { position: relative; z-index: 1; }

/* Subtle ambient background: three soft color orbs drifting very slowly */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.hero-orb--gold {
  width: 480px; height: 480px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(176, 141, 87, .22), transparent 70%);
  animation: orb-drift-a 26s ease-in-out infinite;
}
.hero-orb--bordeaux {
  width: 420px; height: 420px;
  bottom: -180px; left: -100px;
  background: radial-gradient(circle, rgba(107, 63, 58, .16), transparent 70%);
  animation: orb-drift-b 32s ease-in-out infinite;
}
.hero-orb--cream {
  width: 360px; height: 360px;
  top: 30%; left: 38%;
  background: radial-gradient(circle, rgba(220, 203, 168, .20), transparent 70%);
  animation: orb-drift-c 38s ease-in-out infinite;
}

@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, 40px) scale(1.12); }
}
@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(70px, -50px) scale(1.08); }
}
@keyframes orb-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, -60px) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none; }
}

.hero-icon-wrap {
  display: inline-block;
  margin-bottom: 32px;
}

.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  /* Sanfter Gold-Ring statt harter Border */
  box-shadow: 0 0 0 1px var(--gold-soft), var(--shadow-card);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.hero-headline .script-accent {
  font-family: var(--font-script);
  font-size: 1.12em;
  color: var(--bordeaux);
  font-weight: 400;
  display: block;
  line-height: 1.0;
  margin-bottom: 4px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.4;
}

.hero-mission {
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-ornament {
  display: block;
  color: var(--gold-soft);
  margin-top: 52px;
}
.hero-ornament .heart-ornament {
  width: 56px;
  height: auto;
  display: inline-block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
  display: inline-block;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-deep));
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px -4px rgba(107, 63, 58, 0.35);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(107, 63, 58, 0.42);
}

.btn-large {
  padding: 18px 48px;
  font-size: 14px;
}

.btn-ghost {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color .2s ease, color .2s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--ink);
}

/* ==========================================================================
   Designer Cards Grid
   ========================================================================== */

.designers-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.designer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.designer-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.designer-card--active {
  background: var(--paper);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-card);
}
.designer-card--active:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.designer-card--upcoming {
  opacity: .72;
}
.designer-card--upcoming:hover {
  transform: none;
  box-shadow: none;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;        /* never wrap inside the chip */
  min-width: 138px;           /* uniform chip width across all cards */
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}

.card-badge--active {
  background: var(--gold-tint);
  color: var(--gold);
  border: 1px solid var(--gold-soft);
}

.card-badge--soon {
  background: var(--cream);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.card-icon {
  margin-bottom: 16px;
  color: var(--gold);
}
.card-icon svg {
  display: block;
  width: 34px;
  height: 34px;
}
.designer-card--upcoming .card-icon {
  color: var(--ink-soft);
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 28px;
}

.card-cta {
  margin-top: auto;
}

/* ==========================================================================
   Anchor Nav (im Header)
   ========================================================================== */

.anchor-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.anchor-nav__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}
.anchor-nav__link:hover { color: var(--bordeaux); }

/* Pull-down "Mehr" — CSS-only (hover + focus-within), desktop nav only */
.nav-dropdown {
  /* flex collapses the inherited 28px line-height — otherwise the trigger
     sits ~3px below the sibling links' baseline */
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown__trigger svg { transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown__trigger svg,
.nav-dropdown:focus-within .nav-dropdown__trigger svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 190px;
  padding: 10px 0;
  background: var(--paper, #FFFDF8);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 40px -16px rgba(58, 50, 43, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

/* unsichtbare Hover-Brücke zwischen Trigger und Menü */
.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 10px);
}

.nav-dropdown__item {
  display: block;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-dropdown__item:hover { color: var(--bordeaux); background: rgba(0, 0, 0, 0.03); }

.btn-nav-cta {
  padding: 10px 22px;
  font-size: 11px;
  white-space: nowrap;
}

/* ==========================================================================
   Steps Section
   ========================================================================== */

.steps-section {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
  position: relative;
}

/* Horizontale Verbindungslinie zwischen den Steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  background: var(--gold-soft);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ==========================================================================
   Example Section — Tone Tabs (CSS-only Radio-Tabs)
   ========================================================================== */

.example-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.example-intro {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 44px;
}

/* Hide the actual radio inputs */
.tone-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.tone-tabs {
  max-width: 720px;
  margin: 0 auto;
}

.tone-labels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.tone-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--cream);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.tone-label:hover {
  border-color: var(--gold-soft);
  color: var(--ink);
}

/* Active state: checked radio → sibling .tone-labels label */
#tone-feierlich:checked ~ .tone-labels label[for="tone-feierlich"],
#tone-herzlich:checked  ~ .tone-labels label[for="tone-herzlich"],
#tone-humorvoll:checked ~ .tone-labels label[for="tone-humorvoll"] {
  background: var(--bordeaux-tint);
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}

/* Show/hide panels via :checked + general sibling selector */
.tone-panels {
  position: relative;
}

.tone-panel {
  display: none;
}

#tone-feierlich:checked ~ .tone-panels .tone-panel--feierlich,
#tone-herzlich:checked  ~ .tone-panels .tone-panel--herzlich,
#tone-humorvoll:checked ~ .tone-panels .tone-panel--humorvoll {
  display: block;
}

/* Speech Paper (Manuskript-Stil) */
.speech-paper {
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.speech-ornament {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 28px;
  line-height: 1;
}
.speech-ornament .heart-ornament {
  width: 44px;
  height: auto;
  display: inline-block;
}

.speech-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink);
  text-align: left;
  max-width: 560px;
  margin: 0 auto 28px;
}

.speech-text p {
  margin-bottom: 1.1em;
}
.speech-text p:last-child {
  margin-bottom: 0;
}

.speech-byline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-section {
  background: var(--cream);
}

.pricing-intro {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.pricing-card--featured {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-card);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.pricing-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--bordeaux);
  line-height: 1;
}

.pricing-card__unit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__features li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 4px;
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: background .2s ease, color .2s ease;
  background: var(--paper);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] > .faq-question {
  color: var(--bordeaux);
  background: var(--bordeaux-tint);
}
.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
  background: var(--paper);
}
.faq-answer p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-deep));
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--bordeaux);
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.22);
}
.cta-section .btn-primary:hover {
  color: var(--bordeaux-deep);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.28);
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.trust-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-tint);
  margin: 0 auto 14px;
  color: var(--gold);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.trust-sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.footer-copy {
  font-size: 13px;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .06em;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--bordeaux); }

/* ==========================================================================
   Reveal Animations (page-load only)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp .6s ease forwards;
}
.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .18s; }
.reveal-delay-3 { animation-delay: .30s; }
.reveal-delay-4 { animation-delay: .44s; }
.reveal-delay-5 { animation-delay: .56s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive — 920px
   ========================================================================== */

@media (max-width: 920px) {
  .designer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .anchor-nav {
    gap: 18px;
  }

  .anchor-nav__link,
  .nav-dropdown {
    display: none;
  }
}

/* ==========================================================================
   Responsive — 680px
   ========================================================================== */

@media (max-width: 680px) {
  .section { padding: 64px 0; }

  .hero { padding: 72px 0 60px; }

  .designer-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .anchor-nav {
    display: none;
  }

  .speech-paper {
    padding: 32px 24px;
  }

  .speech-text {
    font-size: 17px;
  }

  .tone-labels {
    gap: 8px;
  }

  .tone-label {
    padding: 8px 16px;
    font-size: 11px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 28px 24px;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  margin: 0;
  padding: 34px 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-card, 0 4px 24px -8px rgba(58, 50, 43, .10));
  display: flex;
  flex-direction: column;
}
.testimonial-card blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.testimonial-card figcaption {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}
.stars .star { width: 17px; height: 17px; }

/* ==========================================================================
   Burger + Fullscreen-Menü (checkbox hack, heart as burger)
   ========================================================================== */

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--bordeaux);
  z-index: 220;
  position: relative;
  transition: transform .3s ease, color .3s ease;
}
.nav-burger .heart-ornament { width: 100%; height: auto; }
.nav-toggle:checked ~ .site-header .nav-burger {
  transform: rotate(-8deg) scale(1.08);
  color: var(--gold);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background:
    radial-gradient(620px 420px at 85% 0%, rgba(176, 141, 87, .14), transparent 60%),
    var(--cream);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.nav-toggle:checked ~ .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu__link:hover { color: var(--bordeaux); }
.mobile-menu__cta { margin-top: 14px; }

/* Scroll-Lock bei offenem Menü */
html:has(.nav-toggle:checked) { overflow: hidden; }

@media (max-width: 920px) {
  .nav-burger { display: block; }
  .anchor-nav { display: none !important; }
}
@media (max-width: 920px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Handwriting animation — "von Herzen" drawn like pen strokes
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.script-accent--draw { display: block; }
.script-accent--draw .handwrite {
  display: block;
  height: 1.5em;  /* viewBox got 300 units taller for descenders */
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.handwrite .hw {
  fill: var(--bordeaux);
  fill-opacity: 0;
  stroke: var(--bordeaux);
  stroke-width: 14;             /* font units (2048/em) — fine pen line */
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation:
    hw-draw .55s ease-out forwards,
    hw-fill .35s ease-out forwards;
  animation-delay:
    calc(.7s + var(--i) * .28s),
    calc(1.05s + var(--i) * .28s);
}

@keyframes hw-draw { to { stroke-dashoffset: 0; } }
@keyframes hw-fill { to { fill-opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .handwrite .hw {
    animation: none;
    fill-opacity: 1;
    stroke-dashoffset: 0;
  }
}

.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--gold);
  transition: transform .3s ease;
}
.mobile-menu__close:hover { transform: rotate(-8deg) scale(1.08); }
.mobile-menu__close .heart-ornament { width: 100%; height: auto; }
