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

    :root {
      --white: #FDFCFB;
      --beige: #E1D2C9;
      --gold: #C09068;
      --red: #EB2E49;
      --dark: #2A2220;
      --mid: #6B5E59;
      --light-bg: #F7F3F0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: #C4243D; transform: translateY(-1px); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 13px 30px;
      border: 1.5px solid var(--dark);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-outline:hover { background: var(--dark); color: #fff; }

    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }

    /* ── FADE IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in.delay-1 { transition-delay: 0.1s; }
    .fade-in.delay-2 { transition-delay: 0.2s; }
    .fade-in.delay-3 { transition-delay: 0.35s; }

    /* ── SUBPAGE HEADER ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(253, 252, 251, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--beige);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(42,34,32,0.06); }

    .nav-logo-img {
      height: 24px;
      width: auto;
      display: block;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.2s, gap 0.2s;
    }
    .back-link svg { transition: transform 0.2s; }
    .back-link:hover { color: var(--red); gap: 14px; }
    .back-link:hover svg { transform: translateX(-3px); }

    /* ── HERO ── */
    #hero {
      padding-top: 72px;
      display: grid;
      grid-template-columns: 1.02fr 1fr;
      min-height: 88vh;
      background: var(--light-bg);
    }
    .hero-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 72px 80px 64px;
      max-width: 684px;
      margin-left: auto;
      width: 100%;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .hero-eyebrow-line { width: 40px; height: 1.5px; background: var(--gold); }
    .hero-eyebrow span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-inner h1 {
      font-size: clamp(54px, 6.2vw, 108px);
      font-weight: 300;
      line-height: 0.96;
      letter-spacing: -0.01em;
      margin-bottom: 32px;
    }
    .hero-inner h1 em { font-style: italic; color: var(--red); }
    .hero-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 2.6vw, 36px);
      font-weight: 400;
      line-height: 1.32;
      color: var(--dark);
      max-width: 26ch;
    }
    .hero-image {
      position: relative;
      overflow: hidden;
    }
    .hero-image-bg {
      position: absolute;
      inset: 0;
      background: url('/img/ueber-hero.jpg') center 28% / cover no-repeat;
    }

    /* ── INTRO STORY ── */
    #intro {
      padding: 120px 0;
      background: var(--white);
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 80px;
      align-items: start;
    }
    .intro-head h2 {
      font-size: clamp(32px, 3.2vw, 48px);
      font-weight: 300;
      line-height: 1.14;
      position: sticky;
      top: 110px;
    }
    .intro-head h2 em { font-style: italic; color: var(--gold); }
    .intro-divider {
      width: 64px;
      height: 2px;
      background: var(--red);
      margin: 0 0 32px;
    }
    .intro-body p {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--mid);
      margin-bottom: 26px;
    }
    .intro-body p:last-child { margin-bottom: 0; }
    .intro-body strong { color: var(--dark); font-weight: 600; }
    .intro-sign {
      margin-top: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 26px;
      color: var(--dark);
    }

    /* ── PERSON ── */
    .person {
      padding: 110px 0;
    }
    .person.alt { background: var(--light-bg); }
    .person-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 72px;
      align-items: center;
    }
    .person.reverse .person-grid { grid-template-columns: 1.1fr 0.9fr; }
    .person.reverse .person-media { order: 2; }
    .person.reverse .person-text { order: 1; }

    .person-media { position: relative; }
    .person-photo {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--beige) 0%, #C9B8AE 100%);
      border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .person-badge {
      position: absolute;
      bottom: -22px;
      left: -22px;
      width: 128px;
      height: 128px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      box-shadow: 0 10px 34px rgba(235,46,73,0.32);
    }
    .person.reverse .person-badge { left: auto; right: -22px; }
    .person-badge .serif {
      font-size: 30px;
      font-weight: 500;
      line-height: 1;
    }
    .person-badge small {
      font-size: 9.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .person-text .eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: block;
    }
    .person-text h2 {
      font-size: clamp(40px, 4vw, 60px);
      font-weight: 300;
      line-height: 1;
      margin-bottom: 26px;
    }
    .person-text p {
      font-size: 15.5px;
      line-height: 1.8;
      color: var(--mid);
      margin-bottom: 18px;
    }
    .person-text p:last-of-type { margin-bottom: 0; }

    /* ── WERDEGANG ACCORDION ── */
    .werdegang {
      margin-top: 36px;
      border-top: 1px solid var(--beige);
    }
    .werdegang-toggle {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 0;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--dark);
    }
    .werdegang-toggle .chev {
      width: 30px; height: 30px;
      flex-shrink: 0;
      border: 1.5px solid var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.35s ease, border-color 0.25s, background 0.25s;
    }
    .werdegang-toggle:hover .chev { border-color: var(--red); background: var(--red); color: #fff; }
    .werdegang.open .werdegang-toggle .chev { transform: rotate(180deg); }
    .werdegang-panel {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.5s ease;
    }
    .werdegang-list {
      list-style: none;
      padding-bottom: 14px;
    }
    .werdegang-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: start;
      padding: 15px 0;
      border-top: 1px solid var(--beige);
      font-size: 14.5px;
      line-height: 1.55;
      color: var(--dark);
    }
    .werdegang-list li:first-child { border-top: none; }
    .werdegang-list .dot {
      width: 7px; height: 7px;
      margin-top: 8px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── CLOSING / PRIVAT ── */
    #closing {
      padding: 130px 0;
      background: #F7F3F0;
      color: var(--dark);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #closing::before {
      content: '';
      display: none;
    }
    .closing-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
    }
    #closing .section-label { color: var(--gold); }
    #closing p {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(16px, 1.7vw, 20px);
      font-weight: 300;
      line-height: 1.85;
      color: var(--mid);
      max-width: 620px;
      margin: 0 auto;
    }
    #closing p em { font-style: normal; font-weight: 300; color: var(--mid); }
    .closing-divider {
      width: 64px;
      height: 2px;
      background: var(--red);
      margin: 0 auto 40px;
    }
    .closing-cta { margin-top: 52px; }

    /* ── FOOTER ── */
    footer {
      background: #505050;
      padding: 72px 0 40px;
      color: rgba(255,255,255,0.6);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand .nav-logo {
      color: #fff;
      font-size: 24px;
      font-family: 'Cormorant Garamond', serif;
      text-decoration: none;
    }
    .footer-logo { display: inline-block; line-height: 0; }
    .footer-logo img {
      height: 30px;
      width: auto;
      display: block;
    }
    .footer-brand p {
      margin-top: 16px;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      max-width: 260px;
    }
    .footer-social { display: flex; gap: 12px; margin-top: 24px; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      color: rgba(255,255,255,0.6);
      transition: all 0.2s;
    }
    .social-link:hover { border-color: var(--red); color: #fff; background: var(--red); }
    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    /* ── PLACEHOLDER ── */
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Montserrat', monospace;
      font-size: 11px;
      letter-spacing: 0.05em;
      color: rgba(42,34,32,0.4);
    }
    .img-placeholder svg { opacity: 0.32; }
    .striped {
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(42,34,32,0.04) 8px,
        rgba(42,34,32,0.04) 16px
      );
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .container { padding: 0 24px; }
      nav { padding: 0 24px; }
      #hero { grid-template-columns: 1fr; min-height: 0; }
      .hero-inner { padding: 56px 24px 48px; max-width: none; margin-left: 0; }
      .hero-image { min-height: 340px; order: -1; }
      .intro-grid { grid-template-columns: 1fr; gap: 36px; }
      .intro-head h2 { position: static; }
      .person-grid,
      .person.reverse .person-grid { grid-template-columns: 1fr; gap: 56px; }
      .person.reverse .person-media { order: 0; }
      .person.reverse .person-text { order: 0; }
      .person-media { max-width: 380px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 560px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    }
/* ── NAV LOGO (icon + wordmark) ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  height: 34px;
  width: auto;
  display: block;
}

/* ── NAV LOGO: mobile stacked & smaller ── */
@media (max-width: 900px) {
  .nav-logo {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .nav-logo-icon { height: 26px; }
  .nav-logo-img { height: 17px; }
}
