:root {
    --cream: #F5F1E8;
    --cream-dark: #EBE4D2;
    --ink: #1A1A1A;
    --ink-soft: #2D2D2D;
    --violet: #552583;        /* Lakers-Lila aus dem Hoodie */
    --violet-deep: #3D1B5F;
    --gold: #FDB927;          /* Lakers-Gold */
    --grass: #5B7A3A;         /* Frühlingsgrün aus dem Foto */
    --sky: #8AB4D4;           /* Himmelblau aus dem Foto */
    --paper: #FEFCF7;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Noise-Textur für papierartigen Look */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    z-index: 1000;
    mix-blend-mode: multiply;
  }

  /* ============ NAVIGATION ============ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
  }

  .nav-logo {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--cream);
    letter-spacing: -0.02em;
  }

  .nav-logo em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }

  .nav-links a:hover::after { width: 100%; }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
  }

  .hero-text {
    padding: 140px 64px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .hero-meta::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--violet);
  }

  h1.hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(64px, 9vw, 140px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 32px;
  }

  h1.hero-title .first {
    display: block;
    font-style: italic;
    font-weight: 400;
  }

  h1.hero-title .last {
    display: block;
    font-weight: 900;
    color: var(--violet);
    margin-left: 0.15em;
  }

  .hero-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 400;
  }

  .hero-tagline span {
    background: linear-gradient(180deg, transparent 60%, rgba(253, 185, 39, 0.45) 60%);
    padding: 0 4px;
  }

  .hero-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }

  .trait {
    padding: 8px 18px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    background: transparent;
    transition: all 0.3s;
    cursor: default;
  }

  .trait:nth-child(1):hover { background: var(--violet); color: var(--cream); border-color: var(--violet); }
  .trait:nth-child(2):hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
  .trait:nth-child(3):hover { background: var(--grass); color: var(--cream); border-color: var(--grass); }
  .trait:hover { background: var(--sky); color: var(--ink); border-color: var(--sky); }

  /* Foto-Seite */
  .hero-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
  }

  .hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(85, 37, 131, 0.08) 100%);
    z-index: 2;
    pointer-events: none;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: contrast(1.02) saturate(1.05);
  }

  /* Dekorative Textelemente am Foto */
  .photo-signature {
    position: absolute;
    bottom: 48px;
    left: 48px;
    color: var(--cream);
    z-index: 3;
    mix-blend-mode: difference;
  }

  .photo-signature .year {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
  }

  .photo-signature .loc {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.9;
  }

  .photo-frame-label {
    position: absolute;
    top: 140px;
    right: 48px;
    z-index: 3;
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cream);
    mix-blend-mode: difference;
  }

  /* Scroll-Indikator */
  .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 64px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
  }

  .scroll-hint .arrow {
    width: 32px;
    height: 1px;
    background: var(--ink);
    position: relative;
    animation: slide 2s ease-in-out infinite;
  }

  .scroll-hint .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    transform: rotate(-45deg);
  }

  @keyframes slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
  }

  /* ============ ÜBER MICH ============ */
  .about {
    padding: 160px 64px;
    background: var(--paper);
    position: relative;
  }

  .about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 120px;
    align-items: start;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--violet);
  }

  .about h2 {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .about h2 em {
    font-style: italic;
    color: var(--violet);
    font-weight: 400;
  }

  .about-content p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }

  .about-content p:first-child::first-letter {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 900;
    float: left;
    line-height: 0.85;
    padding: 6px 12px 0 0;
    color: var(--violet);
  }

  .about-quote {
    margin-top: 48px;
    padding: 32px 40px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink);
  }

  /* ============ LEIDENSCHAFTEN ============ */
  .passions {
    padding: 160px 64px;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .passions::before {
    content: 'AMANDA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fraunces', serif;
    font-size: 28vw;
    font-weight: 900;
    color: var(--ink-soft);
    opacity: 0.35;
    letter-spacing: -0.03em;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
  }

  .passions-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .passions .section-label { color: var(--gold); }
  .passions .section-label::before { background: var(--gold); }

  .passions h2 {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 96px;
    max-width: 900px;
  }

  .passions h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .passions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .passion-card {
    padding: 48px 0;
    border-top: 1px solid rgba(245, 241, 232, 0.15);
    transition: border-color 0.4s;
  }

  .passion-card:hover { border-top-color: var(--gold); }

  .passion-number {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 32px;
    letter-spacing: 0.1em;
  }

  .passion-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--cream);
  }

  .passion-card h3 em {
    font-style: italic;
    color: var(--gold);
  }

  .passion-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.7);
  }

  /* ============ ZIELE / AUSBILDUNG ============ */
  .path {
    padding: 160px 64px;
    background: var(--cream);
    position: relative;
  }

  .path-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .path h2 {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 80px;
    text-align: center;
  }

  .path h2 em {
    font-style: italic;
    color: var(--violet);
  }

  .timeline {
    position: relative;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--violet);
    opacity: 0.3;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
  }

  .timeline-year {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--violet);
    position: relative;
    z-index: 2;
  }

  .timeline-content {
    padding: 24px 32px;
    background: var(--paper);
    border-radius: 2px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  }

  .timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
  }

  .timeline-item:nth-child(odd) > :first-child {
    order: 1;
  }

  .timeline-item:nth-child(even) > :first-child {
    visibility: hidden;
  }

  .timeline-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--ink);
  }

  .timeline-content .place {
    display: block;
    font-size: 14px;
    color: var(--violet);
    font-weight: 500;
    margin-bottom: 12px;
  }

  .timeline-content p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* ============ KONTAKT ============ */
  .contact {
    padding: 160px 64px;
    background: var(--violet);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.25;
  }

  .contact-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .contact .section-label { color: var(--gold); justify-content: center; }
  .contact .section-label::before { background: var(--gold); }

  .contact h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }

  .contact h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .contact p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-btn {
    display: inline-block;
    padding: 20px 48px;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .contact-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(253, 185, 39, 0.3);
  }

  /* ============ FOOTER ============ */
  footer {
    padding: 40px 64px;
    background: var(--ink);
    color: var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  footer .fl {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
  }

  footer .fr { opacity: 0.5; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }

    .hero { grid-template-columns: 1fr; }
    .hero-text { padding: 120px 24px 60px; order: 2; }
    .hero-image-wrap { min-height: 500px; order: 1; }
    .scroll-hint { left: 24px; }

    .about { padding: 100px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about h2 { font-size: 48px; }

    .passions { padding: 100px 24px; }
    .passions h2 { font-size: 48px; margin-bottom: 64px; }
    .passions-grid { grid-template-columns: 1fr; gap: 0; }

    .path { padding: 100px 24px; }
    .path h2 { font-size: 48px; }
    .timeline::before { left: 32px; }
    .timeline-item {
      grid-template-columns: 64px 1fr;
      gap: 24px;
    }
    .timeline-item:nth-child(odd) > :first-child,
    .timeline-item:nth-child(even) > :first-child { order: 0; visibility: visible; }
    .timeline-item > :first-child:not(.timeline-year) { display: none; }
    .timeline-item:nth-child(odd) .timeline-content { text-align: left; }

    .contact { padding: 100px 24px; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
  }

  /* Scroll-Animationen */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }