  :root{
    --bg: #1b2740;
    --bg-deep: #141d30;
    --panel: #202e4a;
    --gold: #c6a15b;
    --gold-bright: #e4c989;
    --ink: #ece5d6;
    --ink-muted: #99a5c0;
    --line: rgba(198,161,91,0.22);
  }

  *{ box-sizing: border-box; }

  html{ scroll-behavior: smooth; }

  body{
    margin:0;
    background: radial-gradient(120% 90% at 50% -10%, #24314f 0%, var(--bg) 45%, var(--bg-deep) 100%);
    color: var(--ink);
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  a{ color: var(--gold-bright); }

  .eyebrow{
    font-family: 'Work Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.9rem;
  }

  h1, h2, h3{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
  }

  .wrap{
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.6rem;
  }

  @media (max-width: 480px){
    .wrap{ padding: 0 2.4rem; }
  }

  /* ---------- Hero ---------- */

  .hero{
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.6rem 3rem;
  }

  .hero-photo{
    display: block;
    width: min(78vw, 380px);
    height: auto;
    margin-bottom: 2.2rem;
    border-radius: 12px;
    filter: drop-shadow(0 0 40px rgba(198,161,91,0.25));
    opacity: 0;
    transform: scale(0.94);
    animation: artAppear 4s cubic-bezier(.22,.61,.36,1) forwards;
    animation-delay: .3s;
    mask-image: radial-gradient(ellipse 92% 94% at 50% 48%, black 70%, transparent 98%);
    -webkit-mask-image: radial-gradient(ellipse 92% 94% at 50% 48%, black 70%, transparent 98%);
  }

  @keyframes artAppear{
    from{ opacity: 0; transform: scale(0.92); }
    to{ opacity: 1; transform: scale(1); }
  }

  @keyframes fadeIn{
    from{ opacity: 0; } to{ opacity: 1; }
  }

  .hero h1{
    font-size: clamp(2.4rem, 7vw, 3.4rem);
    letter-spacing: 0.03em;
  }

  .hero .tagline{
    margin-top: 1.1rem;
    color: var(--ink-muted);
    font-size: 1.02rem;
    max-width: 30ch;
  }

  .scroll-hint{
    margin-top: 3.2rem;
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--gold), transparent);
    opacity: 0.6;
  }

  /* ---------- Sections ---------- */

  section{
    padding: 5.2rem 0;
    border-top: 1px solid var(--line);
  }

  section h2{
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
  }

  .lead{
    color: var(--ink);
    font-size: 1.05rem;
    max-width: 56ch;
  }

  .pillars{
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .pillar{
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.9rem;
    align-items: baseline;
  }

  .pillar .mark{
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.3rem;
  }

  .pillar p{
    margin: 0;
    color: var(--ink-muted);
  }

  .pillar strong{
    color: var(--ink);
    font-weight: 500;
  }

  .note{
    margin-top: 2.4rem;
    font-size: 0.92rem;
    color: var(--ink-muted);
    font-style: italic;
  }

  /* ---------- Projekte ---------- */

  .project{
    padding: 1.9rem 0;
  }
  .project + .project{
    border-top: 1px solid var(--line);
  }

  .project .date{
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
  }

  .project h3{
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .project p{
    margin: 0;
    color: var(--ink-muted);
    max-width: 54ch;
  }

  .project-photo{
    display: block;
    width: 100%;
    max-width: 340px;
    border-radius: 8px;
    margin-top: 1rem;
  }

  /* ---------- Footer ---------- */

  footer{
    padding: 3.4rem 0 3rem;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  footer .lotus-sm{
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    opacity: 0.85;
  }
  footer .lotus-sm path{ fill:none; stroke: var(--gold); stroke-width: 1.4; }
  footer .lotus-sm circle{ fill: var(--gold); }

  footer p{
    color: var(--ink-muted);
    font-size: 0.85rem;
    margin: 0.2rem 0;
  }

  /* reveal on scroll */
  .reveal{
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.in{
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    .hero-photo{ animation: none; opacity: 1; transform: none; }
    .reveal{ opacity: 1; transform: none; transition: none; }
  }

  /* ---------- Navigation & Unterseiten ---------- */

  .page-header{
    padding-top: 2.2rem;
    text-align: center;
  }

  .brand{
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.03em;
  }

  .nav{
    padding: 1.3rem 0 0;
  }

  .nav ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin: 0;
    padding: 0 1.6rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .nav a{
    text-decoration: none;
    color: var(--ink);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color .25s ease;
  }

  .nav a:hover, .nav a.active{
    color: var(--gold-bright);
  }

  .page-content{
    padding-top: 4rem;
    padding-bottom: 5.5rem;
  }

  .page-content h1{
    font-size: 2.4rem;
    margin-bottom: 1.1rem;
  }

  /* ---------- Gruppentitel (z.B. Sprachgruppen bei Medien) ---------- */

  .group-heading{
    margin-top: 3.6rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-bright);
  }

  /* ---------- Fotogalerie ---------- */

  .gallery{
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.6rem;
    margin-top: 2.6rem;
  }

  @media (min-width: 640px){
    .gallery{
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2.6rem 1.6rem;
    }
  }

  .gallery figure{
    margin: 0;
    min-width: 0;
  }

  .gallery img{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: var(--panel);
  }

  .gallery figcaption{
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--ink-muted);
    text-align: center;
  }
