:root {
  --cream: #F6F1E7;
  --cream-2: #EFE8D8;
  --ink: #211D1A;
  --ink-soft: #4A4238;
  --muted: #786F62;
  --gold: #A9814A;
  --gold-dark: #8B6A3B;
  --green: #45543F;
  --card: #FFFDF8;
  --border: rgba(33, 29, 26, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.container.narrow { max-width: 720px; }
.container.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 14px;
}

/* Site header (full-bleed photo header) */
.site-header {
  position: relative;
  width: 100%;
  height: 84vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--cream);
}

.header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.header-scrim-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: linear-gradient(to bottom, rgba(246, 241, 231, 0.94) 0%, rgba(246, 241, 231, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.header-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 40px;
}

.header-nav .nav-links {
  display: flex;
  gap: 28px;
}

.header-nav .nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav .nav-links a:hover { color: var(--gold-dark); }

.header-title {
  position: absolute;
  top: 6%;
  left: 40px;
  z-index: 2;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 92px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  background: #CDA15F;
  padding: 18px 52px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(33, 29, 26, 0.28);
}

.header-portrait {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 230px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(33, 29, 26, 0.28);
  z-index: 2;
}

.header-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero intro (tagline + CTA, sits below the photo header) */
.hero-intro {
  background: var(--cream);
  padding: 56px 0 64px;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.social-row {
  display: flex;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  transition: background 0.2s, transform 0.2s;
}

.social-icon svg { width: 17px; height: 17px; }

.social-icon:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Sections */
.section {
  position: relative;
  padding: 110px 0;
}

.section-alt { background: var(--cream-2); }

.section h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.section-intro {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 0 40px;
}

.center .section-intro { margin-left: auto; margin-right: auto; }

.monologue p {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.monologue .signoff {
  color: var(--ink);
  font-style: italic;
  margin-top: 26px;
}

/* Video placeholder */
.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(33, 29, 26, 0.18);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 20px;
}

.play-button {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 241, 231, 0.6);
  background: rgba(246, 241, 231, 0.12);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.play-button svg { width: 26px; height: 26px; margin-left: 3px; }

.video-caption {
  color: var(--cream);
  font-size: 16px;
  max-width: 460px;
  margin: 0;
  opacity: 0.92;
}

.badge {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  padding: 7px 16px;
  border-radius: 999px;
}

/* Grundlagenforschung */
.law-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.law-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}

.law-number {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 14px;
}

.law-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.law-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* Protokoll / quotes */
.section-dark {
  position: relative;
  color: var(--cream);
  overflow: hidden;
}

.protokoll-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.protokoll-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.protokoll-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,17,14,0.92) 0%, rgba(20,17,14,0.86) 45%, rgba(20,17,14,0.72) 100%);
  z-index: 1;
}

.section-dark .container {
  position: relative;
  z-index: 2;
}

.section-dark h2 { color: var(--cream); }
.section-dark .eyebrow { color: var(--gold); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.quote-grid-small {
  max-width: 760px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 26px 28px;
  background: rgba(246, 241, 231, 0.06);
  border: 1px solid rgba(246, 241, 231, 0.16);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cream);
}

/* CTA / follow */
.section-cta { background: var(--cream-2); }

.follow-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Teaser page */
.teaser {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.teaser-card {
  max-width: 420px;
  text-align: center;
}

.teaser-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(33, 29, 26, 0.22);
  margin: 0 auto 32px;
  display: block;
}

.teaser-title {
  font-size: 48px;
  margin-bottom: 18px;
}

.teaser-text {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.teaser-social {
  justify-content: center;
  margin-bottom: 36px;
}

.footer-email.teaser-email {
  color: var(--ink);
  margin-bottom: 0;
}

.footer-email.teaser-email:hover { color: var(--gold-dark); }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0;
}

.footer p {
  color: rgba(246, 241, 231, 0.75);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 18px;
}

.footer-email {
  display: inline-block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-bottom: 22px;
}

.footer-email:hover { color: var(--gold); }

.fine-print {
  font-size: 12.5px;
  color: rgba(246, 241, 231, 0.45);
  margin-top: 18px !important;
}

/* Responsive */
@media (max-width: 900px) {
  .header-nav { padding: 20px 24px; }
  .header-nav .nav-links { display: none; }

  .site-header { height: 62vh; min-height: 420px; }
  .header-portrait { width: 150px; left: 20px; bottom: 20px; }
  .header-title { font-size: 40px; left: 20px; padding: 10px 26px; top: 8%; }

  .hero-tagline { font-size: 19px; }

  .law-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }
  .section h2 { font-size: 30px; }
}
