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

  /* ── SELF-HOSTED FONTS (kein Drittanbieter-Request an Google) ── */
  @font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300 400;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-normal-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300 500;
    font-display: swap;
    src: url('/fonts/jost-normal-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  :root {
    --cream: #F5F1E8;
    --warm-white: #FDFBF7;
    --charcoal: #141210;
    --warm-gray: #6B6560;
    --mid-gray: #A8A39C;
    --gold: #B8965A;
    --gold-light: #D4B07A;
    --border: rgba(20,18,16,0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
  }


  body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ─────────────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 3rem;
    background: rgba(20, 18, 16, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(184,150,90,0.25);
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #F5F1E8;
  }
  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(245,241,232,0.55);
    transition: color 0.2s;
  }
  @media (hover: hover) and (pointer: fine) {
    .nav-links a:hover { color: var(--gold); }
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: rgba(245,241,232,0.7);
    transition: background 0.2s, transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-hamburger:hover span { background: var(--gold); }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ── HERO ────────────────────────────────────────────────── */
  .hero {
    height: 100vh;
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 42% 58%;
    padding-top: 68px;
  }

  .hero-image {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  /* sepia/contrast treatment */
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: contrast(1.08) brightness(0.88) saturate(0.7);
  }
  .hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20,18,16,0.18) 0%, transparent 40%),
                linear-gradient(to top, rgba(20,18,16,0.55) 0%, transparent 50%);
    z-index: 1;
  }
  /* gold vignette bottom */
  .hero-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(184,150,90,0.12) 0%, transparent 100%);
    z-index: 2;
  }
  .hero-photo-credit {
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.35);
    z-index: 3;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem 4rem 4rem;
  }

  .hero-overline {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }

  .hero-name {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: 0.01em;
    color: #F5F1E8;
    margin-bottom: 1.75rem;
  }
  .hero-name em {
    font-style: italic;
    color: var(--gold);
    display: block;
  }

  .hero-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.75rem;
  }

  .hero-intro {
    font-family: var(--sans);
    font-size: 0.9rem;
    color: rgba(245,241,232,0.6);
    max-width: 36ch;
    line-height: 1.85;
    margin-bottom: 2.75rem;
  }

  .hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.16s cubic-bezier(0.23,1,0.32,1);
  }
  @media (hover: hover) and (pointer: fine) {
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  }
  .btn-primary:active { transform: scale(0.97); }

  .btn-ghost {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(245,241,232,0.5);
    border-bottom: 1px solid rgba(245,241,232,0.25);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
  }
  .btn-ghost:active { opacity: 0.7; }

  /* ── SECTION BASE ────────────────────────────────────────── */
  :root {
    --section-py: 6rem;
    --section-px: 3.5rem;
  }
  section { padding: var(--section-py) var(--section-px); }
  .section-label {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 3rem;
  }
  .section-title em { font-style: italic; }

  /* ── WHO AM I ────────────────────────────────────────────── */
  #about {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 6rem;
    align-items: start;
  }

  .about-stream {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--charcoal);
  }
  .about-stream .highlight {
    color: var(--gold);
    font-style: italic;
  }

  .about-facts {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .fact-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    border-bottom: 0.5px solid var(--border);
    padding: 1rem 0;
  }
  .fact-label {
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--warm-gray);
    font-size: 0.68rem;
    text-transform: uppercase;
    padding-top: 2px;
  }
  .fact-value { color: var(--charcoal); font-size: 0.875rem; }

  /* ── GALLERY NAV ARROWS ──────────────────────────────────── */
  .gallery-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .gallery-title-row .section-title {
    margin-bottom: 0;
    min-width: 0;
  }
  .gallery-nav {
    display: flex;
    gap: 0.75rem;
    flex: 0 0 auto;
  }
  .gallery-arrow {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(184,150,90,0.4);
    background: transparent;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    .gallery-arrow:hover:not(:disabled) { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
  }
  .gallery-arrow:active:not(:disabled) { transform: scale(0.94); }
  .gallery-arrow:disabled { opacity: 0.25; cursor: default; }

  /* ── PORTRAIT GALLERY ────────────────────────────────────── */
  #portraits {
    background: var(--cream);
    padding: 5rem 0;
  }
  #portraits .gallery-header {
    padding: 0 3.5rem 2.5rem;
  }
  .portrait-grid {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .portrait-grid::-webkit-scrollbar { display: none; }
  .portrait-cell {
    flex: 0 0 340px;
    height: 340px;
    position: relative;
    overflow: hidden;
    background: #222;
    scroll-snap-align: start;
  }
  .portrait-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
    filter: contrast(1.04);
  }
  @media (hover: hover) and (pointer: fine) {
    .portrait-cell:hover img { transform: scale(1.04); }
  }
  .portrait-cell .credit {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
  }

  /* ── STAGE PHOTOS ─────────────────────────────────────────── */
  #stage {
    background: var(--charcoal);
    padding: 5rem 0 6rem;
  }
  #stage .gallery-header {
    padding: 0 3.5rem 2.5rem;
  }
  #stage .section-label { color: var(--gold-light); }
  #stage .section-title { color: #F5F1E8; margin-bottom: 0; }

  .stage-scroll {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .stage-scroll::-webkit-scrollbar { display: none; }
  .stage-item {
    flex: 0 0 340px;
    height: 460px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    background: #1a1816;
  }
  .stage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.06) saturate(0.85);
    transition: filter 0.25s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    .stage-item:hover img { filter: contrast(1.1) saturate(1); }
  }
  .stage-item-label {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 2rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(20,18,16,0.9) 0%, transparent 100%);
    color: rgba(245,241,232,0.85);
    font-size: 0.78rem;
    font-family: var(--serif);
    font-style: italic;
  }
  .stage-item-label span {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.4);
    margin-bottom: 0.2rem;
  }

  /* ── THEATER ────────────────────────────────────────────── */
  #theater { background: var(--cream); }
  #theater .inner {
    max-width: 920px;
    margin: 0 auto;
  }

  .period-block { margin-bottom: 3rem; }
  .period-heading {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.5px solid var(--border);
  }

  .production-row {
    display: grid;
    grid-template-columns: 55px 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 0.865rem;
    transition: background 0.15s;
  }
  @media (hover: hover) and (pointer: fine) {
    .production-row:hover {
      background: rgba(184,150,90,0.05);
      margin: 0 -1rem;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  .prod-year { color: var(--gold); font-weight: 400; font-size: 0.82rem; }
  .prod-title { font-family: var(--serif); font-size: 0.98rem; font-weight: 400; }
  .prod-role { color: var(--warm-gray); font-size: 0.82rem; }
  .prod-venue { color: var(--mid-gray); font-size: 0.72rem; letter-spacing: 0.04em; }

  /* ── NOTABLE ────────────────────────────────────────────── */
  #notable {
    background: var(--charcoal);
    color: var(--cream);
  }
  #notable .section-label { color: var(--gold-light); }
  #notable .section-title { color: var(--warm-white); }

  .notable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .notable-card {
    border-left: 1px solid var(--gold);
    padding: 1.25rem 1.25rem 1.25rem 1.75rem;
  }
  .notable-year {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
  }
  .notable-text {
    font-size: 0.85rem;
    color: rgba(245,241,232,0.65);
    line-height: 1.7;
  }

  /* ── VITA ───────────────────────────────────────────────── */
  #vita {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .vita-table { width: 100%; border-collapse: collapse; font-size: 0.865rem; }
  .vita-table td {
    padding: 0.75rem 0;
    border-bottom: 0.5px solid var(--border);
    vertical-align: top;
  }
  .vita-table td:first-child {
    color: var(--warm-gray);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: 110px;
    padding-right: 1rem;
  }

  .training-list { list-style: none; }
  .training-list li {
    padding: 1.2rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 0.865rem;
    line-height: 1.65;
  }
  .training-years {
    font-family: var(--serif);
    font-size: 0.92rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.2rem;
  }

  /* ── CONTACT ────────────────────────────────────────────── */
  #kontakt {
    background: var(--charcoal);
    text-align: center;
    padding: var(--section-py) var(--section-px);
  }
  #kontakt .section-label { color: var(--gold-light); }
  #kontakt .section-title { color: #F5F1E8; margin-bottom: 1.5rem; }
  .contact-tagline {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(245,241,232,0.45);
    margin-bottom: 3rem;
  }
  .contact-email {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,150,90,0.4);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.03em;
  }
  .contact-email:hover { color: var(--gold-light); border-color: var(--gold-light); }

  /* ── FOOTER ─────────────────────────────────────────────── */
  footer {
    background: rgba(14,12,10,0.97);
    padding: 2rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.5px solid rgba(184,150,90,0.15);
  }
  footer p, footer a {
    font-size: 0.7rem;
    color: rgba(245,241,232,0.3);
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  @media (hover: hover) and (pointer: fine) {
    footer a:hover { color: var(--gold); }
  }
  .footer-links { display: flex; gap: 2rem; }

  /* ── SCROLL REVEAL ───────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s cubic-bezier(0.23,1,0.32,1), transform 0.4s cubic-bezier(0.23,1,0.32,1);
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ─────────────────────────────────────────── */
  @media (max-width: 800px) {
    nav { padding: 1.1rem 1.5rem; }
    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      flex-direction: column;
      gap: 0;
      background: rgba(20,18,16,0.98);
      backdrop-filter: blur(12px);
      padding: 5.5rem 1.75rem 2.5rem;
      border-bottom: 0.5px solid rgba(184,150,90,0.25);
    }
    .nav-links.open { display: flex; }
    .nav-links li { padding: 1.1rem 0; border-bottom: 0.5px solid rgba(245,241,232,0.08); }
    .nav-links li a { font-size: 0.78rem; }
    .nav-hamburger { display: flex; position: relative; z-index: 101; }

    section { padding: 4.5rem 1.5rem; }

    /* hero stacked on mobile */
    .hero {
      grid-template-columns: 1fr;
      min-height: 100dvh;
      position: relative;
    }
    .hero-image {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-image::before {
      background: linear-gradient(to top,
        rgba(20,18,16,0.92) 0%,
        rgba(20,18,16,0.6) 50%,
        rgba(20,18,16,0.25) 100%);
    }
    .hero-text {
      position: relative;
      z-index: 1;
      padding: 2rem 1.75rem 3.5rem;
      justify-content: flex-end;
      min-height: 100dvh;
    }
    .hero-name { font-size: 3rem; }

    #about { grid-template-columns: 1fr; gap: 2.5rem; }
    #vita { grid-template-columns: 1fr; gap: 3rem; }

    /* portrait scroll mobile */
    .portrait-cell { flex: 0 0 260px; height: 260px; }
    #portraits .gallery-header,
    #stage .gallery-header { padding: 0 1.5rem 2rem; }

    .gallery-title-row { gap: 0.75rem; }
    .gallery-arrow { width: 34px; height: 34px; font-size: 1.1rem; }

    /* stage scroll mobile */
    .stage-item { flex: 0 0 260px; height: 360px; }

    .notable-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .production-row {
      grid-template-columns: 50px 1fr;
    }
    .prod-role, .prod-venue { display: none; }

    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.75rem 1.5rem; }
  }
