/* ── Tokens (NOI base, retuned to a soft rose/sage/cream palette) ─ */
  :root {
    /* Brand — softened rose */
    --rose:           #D98AA5;   /* primary warm rose */
    --rose-deep:      #B96B86;   /* hover / text-on-light */
    --rose-soft:      #F7D8E2;   /* tint backgrounds */
    --rose-mist:      #FCEDF2;   /* very pale */
    --rose-lipstick:  #C75688;   /* the pink in Alexandra's lipstick — accent only */

    /* Sage greens */
    --sage:           #9DBDA0;
    --sage-deep:      #6E9276;
    --sage-soft:      #DCE9D6;
    --sage-mist:      #ECF3E7;

    /* Warm neutrals */
    --cream:          #FBF7F2;
    --cream-deep:     #F4ECE2;
    --ink:            #2D2A2E;
    --ink-soft:       #5C575C;
    --ink-mute:       #8E8890;
    --line:           #ECE4DC;
    --line-strong:    #DDD2C5;
    --white:          #FFFFFF;

    /* Type */
    --serif:    'Cormorant Garamond', 'Georgia', serif;
    --display:  'Outfit', system-ui, sans-serif;
    --body:     'Inter', system-ui, sans-serif;

    /* Motion */
    --t-fast:   180ms cubic-bezier(.4,0,.2,1);
    --t-mid:    320ms cubic-bezier(.4,0,.2,1);

    /* Shadows */
    --soft:   0 1px 3px rgba(60,40,50,.05), 0 6px 24px rgba(60,40,50,.06);
    --lift:   0 2px 6px rgba(60,40,50,.06), 0 18px 50px rgba(60,40,50,.10);
    --rose-glow: 0 10px 40px rgba(217,138,165,.30);
  }

  *,*::before,*::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  ::selection { background: var(--rose-soft); color: var(--ink); }

  /* ── Layout ─────────────────────────────────────────────────── */
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
  .wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

  /* ── Type helpers ───────────────────────────────────────────── */
  .eyebrow {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rose-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--rose);
    display: inline-block;
  }
  h1,h2,h3,h4 { margin: 0; color: var(--ink); }
  .display {
    font-family: var(--serif);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -.01em;
    line-height: 1.05;
  }
  .h1 { font-size: clamp(44px, 6.5vw, 80px); }
  .h2 { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(34px, 4.5vw, 54px); line-height: 1.1; letter-spacing: -.005em; }
  .h2-sans { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; letter-spacing: -.01em; }
  .h3 { font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.3; }
  .lede { font-size: 19px; line-height: 1.7; color: var(--ink-soft); }
  p { margin: 0 0 1em 0; color: var(--ink-soft); }

  /* ── Top nav ────────────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(255,255,255,.78);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-mid), background var(--t-mid);
  }
  .nav.scrolled {
    border-bottom-color: var(--line);
    background: rgba(255,255,255,.92);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 28px;
    max-width: 1180px; margin: 0 auto;
  }
  .brand {
    display: inline-flex; align-items: baseline; gap: 10px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -.01em;
    color: var(--ink);
  }
  .brand .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 0 3px var(--rose-mist);
    display: inline-block;
    transform: translateY(-2px);
  }
  .brand small {
    display: block;
    font-family: var(--body);
    font-style: normal;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: -2px;
  }
  .nav-links {
    display: flex; align-items: center; gap: 30px;
    font-size: 14.5px;
    color: var(--ink-soft);
  }
  .nav-links a { transition: color var(--t-fast); }
  .nav-links a:hover { color: var(--rose-deep); }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .01em;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--rose);
    color: var(--white);
    box-shadow: var(--rose-glow);
  }
  .btn-primary:hover { background: var(--rose-deep); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
  }
  .btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); background: var(--rose-mist); }
  .btn-sage {
    background: transparent;
    color: var(--sage-deep);
    border-color: var(--sage);
  }
  .btn-sage:hover { background: var(--sage-mist); }
  .btn svg { width: 16px; height: 16px; }

  @media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-inner { padding: 14px 20px; }
  }

  /* ── HERO ───────────────────────────────────────────────────── */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background:
      radial-gradient(60% 50% at 85% 10%, var(--rose-mist) 0%, transparent 60%),
      radial-gradient(50% 50% at 10% 90%, var(--sage-mist) 0%, transparent 65%),
      var(--cream);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
  }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } .hero { padding: 56px 0 70px; } }

  .hero h1 .you {
    font-family: var(--serif);
    font-weight: 500;
    font-style: italic;
    color: var(--rose-deep);
  }
  .hero h1 .amp {
    font-family: var(--serif);
    font-style: italic;
    color: var(--sage-deep);
    font-weight: 400;
    margin: 0 .06em;
  }
  .hero-cta {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-top: 36px;
  }
  .trust {
    margin-top: 32px;
    display: flex; flex-wrap: wrap; gap: 22px 28px;
    color: var(--ink-soft); font-size: 14px;
  }
  .trust span { display: inline-flex; align-items: center; gap: 8px; }
  .trust svg { width: 16px; height: 16px; color: var(--sage-deep); }

  /* Hero image frame */
  .portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 280px 280px 32px 32px;
    overflow: hidden;
    box-shadow: var(--lift);
    background: var(--rose-mist);
  }
  .portrait img { width: 100%; height: 100%; object-fit: cover; }
  .portrait::after {
    content: "";
    position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: inherit;
    pointer-events: none;
  }
  .portrait-wrap { position: relative; }
  .leaf {
    position: absolute;
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-soft);
    background: var(--white);
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: var(--soft);
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .leaf.lf-1 { top: 30px; left: -18px; }
  .leaf.lf-1 .dot-rose { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); }
  .leaf.lf-2 { bottom: 60px; right: -22px; }
  .leaf.lf-2 .dot-sage { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
  @media (max-width: 980px) { .leaf.lf-1 { left: 8px; } .leaf.lf-2 { right: 8px; } }

  /* Decorative starbursts */
  .stars {
    position: absolute; pointer-events: none;
    color: var(--rose);
    opacity: .5;
  }
  .stars.s1 { top: 110px; left: 40%; }
  .stars.s2 { bottom: 140px; left: 8%; color: var(--sage); }

  /* ── Section base ───────────────────────────────────────────── */
  section { padding: 110px 0; }
  @media (max-width: 760px) { section { padding: 72px 0; } }

  .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
  .section-head .eyebrow { justify-content: center; }
  .section-head .eyebrow::before { display: none; }
  .section-head .eyebrow::after, .section-head .eyebrow::before {
    content: ""; width: 22px; height: 1px; background: var(--rose); display: inline-block;
  }
  .section-head .eyebrow { display: inline-flex; }
  .section-head .h2 { margin-top: 14px; }
  .section-head p { margin-top: 16px; font-size: 18px; }

  /* ── Über mich ──────────────────────────────────────────────── */
  .about {
    background: var(--white);
    position: relative;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

  .about-img {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--lift);
  }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }
  .about-img .frame-tag {
    position: absolute;
    top: 24px; left: 24px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .about-img .frame-tag .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rose); position: relative;
  }
  .about-img .frame-tag .pulse::after {
    content: ""; position: absolute; inset: -4px;
    border-radius: 50%; border: 1px solid var(--rose);
    animation: pulse 2.2s ease-out infinite;
  }
  @keyframes pulse {
    0% { transform: scale(.7); opacity: .9; }
    100% { transform: scale(1.7); opacity: 0; }
  }

  .signature {
    margin-top: 24px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    color: var(--ink);
    line-height: 1;
  }
  .sig-sub {
    font-family: var(--body);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 8px;
  }

  /* ── Themen / Topics ────────────────────────────────────────── */
  .themes {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  }
  .topic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .topic {
    grid-column: span 2;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px 28px 28px;
    transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .topic:hover {
    transform: translateY(-4px);
    box-shadow: var(--lift);
    border-color: transparent;
  }
  .topic::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: var(--rose-mist);
    opacity: 0;
    transition: opacity var(--t-mid);
    z-index: 0;
  }
  .topic:hover::after { opacity: .8; }
  .topic > * { position: relative; z-index: 1; }

  /* Bigger feature topics */
  .topic.feature { grid-column: span 3; }
  .topic.feature .topic-icon { background: var(--sage-soft); color: var(--sage-deep); }
  .topic.feature::after { background: var(--sage-mist); }

  @media (max-width: 900px) { .topic-grid { grid-template-columns: 1fr 1fr; } .topic, .topic.feature { grid-column: span 1; } }
  @media (max-width: 560px) { .topic-grid { grid-template-columns: 1fr; } }

  .topic-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: var(--rose-soft);
    color: var(--rose-deep);
    display: grid; place-items: center;
    margin-bottom: 22px;
  }
  .topic-icon svg { width: 26px; height: 26px; }
  .topic h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: -.005em;
  }
  .topic p { font-size: 15.5px; line-height: 1.6; margin: 0; }
  .topic .num {
    position: absolute; top: 24px; right: 24px;
    font-family: var(--serif);
    font-style: italic;
    color: var(--rose);
    font-size: 18px;
    opacity: .8;
  }

  /* ── Angebot / Pricing ──────────────────────────────────────── */
  .offer { background: var(--cream); }
  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  @media (max-width: 760px) { .offer-grid { grid-template-columns: 1fr; } }
  .price-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 38px 36px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: transform var(--t-mid), box-shadow var(--t-mid);
  }
  .price-card:hover { transform: translateY(-3px); box-shadow: var(--lift); }
  .price-card.featured {
    border: 1px solid var(--rose-soft);
    background:
      radial-gradient(60% 50% at 100% 0%, var(--rose-mist) 0%, transparent 70%),
      var(--white);
    box-shadow: var(--soft);
  }
  .price-card.featured::before {
    content: "Beliebt";
    position: absolute;
    top: 24px; right: 24px;
    background: var(--rose);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .price-kicker {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  .price-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.1;
    margin: 12px 0 6px;
    color: var(--ink);
  }
  .price-meta {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--ink-soft);
    font-size: 14.5px;
    margin-bottom: 24px;
  }
  .price-meta .pip { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-mute); }
  .price-row {
    display: flex; align-items: baseline; gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--line-strong);
  }
  .price-amount {
    font-family: var(--display);
    font-weight: 600;
    font-size: 56px;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1;
  }
  .price-cur { font-size: 22px; color: var(--ink-soft); }
  .price-note { color: var(--ink-mute); font-size: 14px; }
  .price-list { list-style: none; padding: 0; margin: 0 0 28px; }
  .price-list li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: 15.5px;
  }
  .price-list svg { flex: none; width: 18px; height: 18px; color: var(--sage-deep); margin-top: 3px; }

  /* ── Ablauf / Process ───────────────────────────────────────── */
  .process { background: var(--white); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 12px;
  }
  @media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
  .step {
    position: relative;
    padding: 28px 24px;
    border-radius: 22px;
    background: var(--cream);
    border: 1px solid var(--line);
  }
  .step-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 44px;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 14px;
  }
  .step h4 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 6px;
  }
  .step p { margin: 0; font-size: 15px; color: var(--ink-soft); }

  /* ── Quote / Worte ──────────────────────────────────────────── */
  .quote-band {
    position: relative;
    padding: 0;
    background: var(--cream);
    overflow: hidden;
  }
  .quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 540px;
  }
  @media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; min-height: auto; } }
  .quote-img {
    position: relative;
    overflow: hidden;
  }
  .quote-img img { width: 100%; height: 100%; object-fit: cover; }
  .quote-text {
    padding: 88px 70px;
    display: flex; flex-direction: column; justify-content: center;
    background:
      radial-gradient(70% 70% at 10% 0%, var(--rose-mist) 0%, transparent 60%),
      var(--cream);
  }
  @media (max-width: 760px) { .quote-text { padding: 56px 28px; } }
  .quote-text blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 24px;
    text-wrap: pretty;
  }
  .quote-text .by {
    color: var(--ink-mute);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .quote-tag {
    display: inline-flex; align-items: center; gap: 10px;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--rose-soft);
    color: var(--rose-deep);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    margin-bottom: 24px;
  }

  /* ── Kontakt ────────────────────────────────────────────────── */
  .contact {
    background: var(--white);
    padding-bottom: 140px;
  }
  .contact-card {
    background:
      radial-gradient(50% 60% at 0% 0%, var(--rose-mist) 0%, transparent 60%),
      radial-gradient(50% 60% at 100% 100%, var(--sage-mist) 0%, transparent 60%),
      var(--cream);
    border: 1px solid var(--line);
    border-radius: 36px;
    padding: 64px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) { .contact-card { grid-template-columns: 1fr; padding: 44px 28px; gap: 36px; } }

  .topic-picker {
    margin-top: 22px;
    display: flex; flex-wrap: wrap; gap: 10px;
  }
  .chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line-strong);
    color: var(--ink-soft);
    font-size: 14px;
    transition: all var(--t-fast);
  }
  .chip:hover { border-color: var(--rose); color: var(--rose-deep); }
  .chip.active {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
    box-shadow: var(--rose-glow);
  }
  .contact-side {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--soft);
  }
  .contact-side .row {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-side .row:last-child { border-bottom: none; }
  .contact-side .ic {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--rose-mist);
    color: var(--rose-deep);
    display: grid; place-items: center;
    flex: none;
  }
  .contact-side .ic svg { width: 18px; height: 18px; }
  .contact-side .lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
  .contact-side .val { color: var(--ink); font-weight: 500; font-size: 15.5px; }
  .contact-side .val a:hover { color: var(--rose-deep); }

  .mailto-cta {
    margin-top: 24px;
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  }
  .preview {
    margin-top: 18px;
    background: var(--white);
    border: 1px dashed var(--line-strong);
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .preview .lbl-row { display: flex; gap: 8px; }
  .preview .lbl-row b { color: var(--ink); font-weight: 600; min-width: 56px; }

  .disclaim {
    background: var(--sage-mist);
    color: var(--ink-soft);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 13.5px;
    margin-top: 22px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--sage-soft);
  }
  .disclaim svg { flex: none; width: 18px; height: 18px; color: var(--sage-deep); margin-top: 2px; }

  /* ── Footer ─────────────────────────────────────────────────── */
  footer {
    background: var(--ink);
    color: #C8C0CA;
    padding: 60px 0 30px;
    font-size: 14px;
  }
  footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
  @media (max-width: 760px) { footer .wrap { grid-template-columns: 1fr; gap: 28px; } }
  footer .brand { color: var(--white); }
  footer .brand small { color: #8E8890; }
  footer h5 {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #E6DDE9;
    font-weight: 600;
    font-family: var(--body);
  }
  footer a:hover { color: var(--rose); }
  footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .fineprint {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #8E8890;
    font-size: 12px;
    line-height: 1.7;
  }
  .fineprint p { color: #8E8890; margin: 0 0 8px; }
  .fineprint strong { color: #C8C0CA; font-weight: 600; }

  /* ── Reveal on scroll ───────────────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }

  /* ── Subtle floating mark behind hero ───────────────────────── */
  .glyph {
    position: absolute;
    pointer-events: none;
    opacity: .35;
  }
  .glyph svg { display: block; }