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

:root {
  --black: #2C1F14;
  --gray-mid: #8A7B6E;
  --gray-light: #F2EDE5;
  --accent: #7A5C3E;
  --white: #FDFAF6;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4rem;
  height: 76px;
  border-bottom: 0.5px solid #DDD5C8;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-size: 14px;
  color: var(--gray-mid);
  justify-self: center;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.btn-outline {
  padding: 9px 20px;
  border: 1px solid var(--black);
  border-radius: 6px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--gray-light); }

.btn-solid {
  padding: 9px 20px;
  border: 1px solid var(--black);
  border-radius: 6px;
  background: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-solid:hover { background: #3d2c1e; }

/* ─── BURGER BUTTON ──────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s;
  justify-self: end;
  z-index: 300;
  position: relative;
}
.burger:hover { background: var(--gray-light); }

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Burger → X animation */
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 150;
  flex-direction: column;
  padding: 100px 2rem 3rem;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #DDD5C8;
  margin-bottom: 2.5rem;
}

.mobile-menu-links li {
  border-bottom: 1px solid #DDD5C8;
}

.mobile-menu-links a {
  display: block;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.15s;
}
.mobile-menu-links a:hover { color: var(--accent); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-actions .btn-outline,
.mobile-menu-actions .btn-solid {
  text-align: center;
  padding: 13px 20px;
  font-size: 15px;
}

/* ─── HERO TOP ───────────────────────────────────────── */
.hero-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
}

.hero-right {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-mid);
  max-width: 46ch;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #3d2c1e; }
.btn-primary:active { transform: scale(0.98); }

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
}

.play-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid #C8BDB0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s;
}
.play-btn:hover .play-icon { border-color: var(--black); }

.play-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--black);
  margin-left: 2px;
}

.play-label {
  display: flex;
  flex-direction: column;
}

.play-label span:first-child {
  font-size: 11px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.play-label span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

/* ─── HERO IMAGE ─────────────────────────────────────── */
.hero-image-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

/* ─── TRUST BADGES ───────────────────────────────────── */
.badge-strip {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  z-index: 2;
}

.badge {
  background: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(44,31,20,0.1);
  display: flex;
  align-items: center;
  gap: 7px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── NAME UNTER DEM BILD ────────────────────────────── */
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--black);
  text-align: center;
  padding: 1rem 2rem 2rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 860px) {
  nav {
    padding: 0 1.5rem;
    grid-template-columns: auto 1fr auto;
  }

  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-logo img { height: 34px; }

  .burger { display: flex; }

  .hero-top { padding: 3.5rem 1.5rem 3rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.6rem; }

  .hero-image-wrap { padding: 0 1.5rem; }
  .hero-image-wrap img { height: 320px; }

  .hero-name { font-size: clamp(3rem, 16vw, 5rem); padding: 1rem 1.5rem 1.5rem; }
  .badge-strip { flex-wrap: wrap; justify-content: center; bottom: 1rem; }
}

/* ─── STATEMENT BANNER ───────────────────────────────── */
.statement-banner {
  background: #2C1F14;
  padding: 7rem 3rem;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FDFAF6;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 860px) {
  .statement-banner { padding: 4rem 1.5rem; }
  .statement-text { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ─── THEMEN SECTION ─────────────────────────────────── */
.themen-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 3rem;
}

.themen-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.themen-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border: 1px solid #C8BDB0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: var(--white);
}

.themen-pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.themen-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--black);
  text-align: center;
  max-width: 600px;
}

.themen-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* LIST */
.themen-list {
  display: flex;
  flex-direction: column;
}

.themen-item {
  border-top: 1px solid #DDD5C8;
  cursor: pointer;
}

.themen-item:last-child {
  border-bottom: 1px solid #DDD5C8;
}

.themen-item-inner {
  padding: 1.5rem 0;
}

.themen-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-mid);
  display: block;
  transition: color 0.2s;
}

.themen-item:hover .themen-name,
.themen-item.active .themen-name {
  color: var(--black);
  font-weight: 700;
}

.themen-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-top: 0.6rem;
  display: none;
  max-width: 44ch;
}

.themen-item.active .themen-desc {
  display: block;
}

/* VISUAL */
.themen-visual {
  position: sticky;
  top: 100px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-light);
}

.themen-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.themen-img-label {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .themen-section { padding: 4rem 1.5rem; }
  .themen-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .themen-visual { position: static; aspect-ratio: 16 / 9; }
}

/* ─── FAQ SECTION ────────────────────────────────────── */
.faq-section {
  background: #EDE6DC;
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.faq-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-mid);
  max-width: 36ch;
}

/* ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #C8BDB0;
}

.faq-item:last-child {
  border-bottom: 1px solid #C8BDB0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  transition: color 0.15s;
}

.faq-question:hover { color: var(--gray-mid); }

.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--black);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-mid);
  max-width: 60ch;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .faq-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .faq-left { position: static; }
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #2C1F14;
  padding: 5rem 3rem 0;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 0.5px solid rgba(253,250,246,0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #FDFAF6;
  margin-bottom: 0.5rem;
}

.footer-contact-line {
  font-size: 14px;
  color: rgba(253,250,246,0.45);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.15s;
}
.footer-contact-line:hover { color: rgba(253,250,246,0.8); }

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}

.footer-links-grid a {
  font-size: 14px;
  color: rgba(253,250,246,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links-grid a:hover { color: rgba(253,250,246,0.85); }

.footer-reach-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 0.5px solid rgba(253,250,246,0.07);
  transition: opacity 0.15s;
}
.footer-reach-item:last-child { border-bottom: none; }
.footer-reach-item:hover { opacity: 0.7; }

.footer-reach-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(253,250,246,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-reach-icon svg {
  width: 17px;
  height: 17px;
  color: rgba(253,250,246,0.7);
}

.footer-reach-label {
  display: block;
  font-size: 11px;
  color: rgba(253,250,246,0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-reach-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(253,250,246,0.75);
}

/* BIG NAME */
.footer-bigname {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.82;
  color: #FDFAF6;
  margin-top: 3rem;
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
  border-top: 0.5px solid rgba(253,250,246,0.08);
  margin-top: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(253,250,246,0.25);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(253,250,246,0.6); }

.footer-copy {
  font-size: 12px;
  color: rgba(253,250,246,0.2);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .footer { padding: 4rem 1.5rem 0; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bigname { font-size: clamp(4rem, 20vw, 8rem); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1.5rem 0 2rem; }
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover { background: #DDD5C8; }
.mobile-menu-close svg {
  width: 18px;
  height: 18px;
  color: var(--black);
}