:root {
  --bg-1: #f6ede3;
  --bg-2: #f2d8bf;
  --bg-3: #e8c2a4;
  --ink: #2a1a10;
  --accent: #d46a3a;
  --accent-2: #b64b2b;
  --card: rgba(255, 246, 238, 0.9);
  --shadow: 0 20px 60px rgba(42, 26, 16, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Text", "Avenir Next", "Helvetica Neue",
    sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 10%, #fff7ef, transparent 45%),
    radial-gradient(circle at 88% 0%, #f2c7a5, transparent 40%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3) 100%);
  min-height: 100vh;
}

.page {
  position: relative;
  z-index: 1;
}

.bg-image {
  position: fixed;
  inset: 0;
  background: url("images/ohuo-innen.png") center/cover no-repeat;
  opacity: 0.14;
  filter: saturate(1.05) blur(0px);
  z-index: 0;
  pointer-events: none;
}

.bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(247, 248, 250, 0.85),
    rgba(247, 248, 250, 0.6) 45%,
    rgba(229, 233, 240, 0.7) 100%
  );
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  position: sticky;
  top: 12px;
  z-index: 10;
  padding: 12px 16px;
  background: rgba(246, 237, 227, 0.65);
  border: 1px solid rgba(42, 26, 16, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(42, 26, 16, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo img {
  width: 360px;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(42, 26, 16, 0.24));
  transition: width 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

body.is-scrolled .logo img {
  width: 120px;
  filter: drop-shadow(0 8px 18px rgba(42, 26, 16, 0.2));
  transform: translateY(-2px);
}

.logo-text {
  font-family: "SF Pro Display", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.badge {
  padding: 19px 31px;
  border-radius: 999px;
  background: rgba(255, 232, 224, 0.95);
  border: 1px solid rgba(180, 45, 31, 0.35);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  box-shadow: 0 20px 50px rgba(180, 45, 31, 0.32),
    0 0 18px rgba(255, 86, 61, 0.45);
  backdrop-filter: blur(12px);
  color: #b32d1f;
  font-weight: 700;
  animation: badgePulse 3.6s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 50px rgba(180, 45, 31, 0.32),
      0 0 18px rgba(255, 86, 61, 0.45);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 26px 70px rgba(180, 45, 31, 0.38),
      0 0 26px rgba(255, 86, 61, 0.6);
  }
}

.lang-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-float {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 20;
}

.lang-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(42, 26, 16, 0.16);
  background: rgba(255, 245, 237, 0.8);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lang-btn.active {
  background: var(--ink);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin: 0 0 28px;
  color: rgba(42, 26, 16, 0.75);
}

.hero .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  box-shadow: 0 12px 30px rgba(212, 106, 58, 0.32);
}

.pill.alt {
  background: rgba(255, 245, 237, 0.8);
  border: 1px solid rgba(42, 26, 16, 0.16);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(42, 26, 16, 0.12);
}

.hero-card {
  position: relative;
  padding: 24px;
  background: rgba(255, 246, 238, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(42, 26, 16, 0.1);
}

.parallax-frame {
  will-change: transform;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transform: scale(1.05);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.05), transparent 60%);
  pointer-events: none;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.tile {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(42, 26, 16, 0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(42, 26, 16, 0.1);
  backdrop-filter: blur(10px);
}

.tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.tile h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(42, 26, 16, 0.7);
}

.tile.small img {
  height: 280px;
}

.tile.large img {
  height: 380px;
}

.tile:nth-child(1) {
  grid-column: span 5;
}

.tile:nth-child(2) {
  grid-column: span 7;
}

.tile:nth-child(3) {
  grid-column: span 7;
}

.tile:nth-child(4) {
  grid-column: span 5;
}

.stripe {
  margin-top: 60px;
  padding: 26px 32px;
  border-radius: 24px;
  background: linear-gradient(120deg, #d46a3a, #f0a369);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(212, 106, 58, 0.3);
  text-align: center;
}

.stripe h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -0.01em;
}

.stripe span {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}

.footer-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(42, 26, 16, 0.7);
}

.bleed-section {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  margin: 70px 0;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 36px 6vw;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.bleed-section.bleed-large {
  min-height: 125vh;
}

.bleed-section.bleed-tall {
  min-height: 180vh;
}

.bleed-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.05) 0%,
    rgba(15, 23, 42, 0.35) 55%,
    rgba(15, 23, 42, 0.72) 100%
  );
}

.bleed-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.bleed-content h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
}

.bleed-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.mosaic,
.stripe {
  animation: floatIn 0.9s ease forwards;
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: repeat(1, 1fr);
  }

  .tile {
    grid-column: span 1;
  }

  .tile img {
    height: 260px;
  }

  .stripe {
    flex-direction: column;
    align-items: flex-start;
  }

  .bleed-section {
    min-height: 45vh;
    margin: 48px 0;
    border-radius: 24px;
  }

  .bleed-section.bleed-large {
    min-height: 90vh;
  }

  .bleed-section.bleed-tall {
    min-height: 120vh;
  }
}
