:root {
  --white: #faf9f6;
  --paper: #fffdf9;
  --ink: #111111;
  --muted: #605b55;
  --pink: #e83d6a;
  --warm: #efe9e0;
  --line: rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, Montserrat, Avenir Next, Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
}

.header-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.8);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.70) 0%, rgba(17, 17, 17, 0.42) 36%, rgba(17, 17, 17, 0.08) 78%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.54) 0%, rgba(17, 17, 17, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) clamp(52px, 10vh, 104px);
  color: var(--white);
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  color: #ffdce5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.4vw, 7rem);
  line-height: 0.96;
  font-weight: 500;
}

.intro {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 54px rgba(232, 61, 106, 0.32);
}

.statement {
  padding: clamp(46px, 7vw, 88px) clamp(20px, 7vw, 96px);
  background: var(--paper);
}

.statement-inner {
  width: min(980px, 100%);
}

.statement-logo {
  display: block;
  width: min(560px, 100%);
  height: auto;
  margin: clamp(18px, 3vw, 32px) 0 clamp(22px, 4vw, 40px);
  mix-blend-mode: multiply;
}

.statement h2 {
  max-width: 940px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.8vw, 5.6rem);
  line-height: 1;
  font-weight: 500;
}

.statement p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.values div {
  min-height: 280px;
  padding: clamp(28px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.values div:last-child {
  border-right: 0;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  color: var(--pink);
  border: 1px solid rgba(232, 61, 106, 0.25);
  border-radius: 50%;
  background: rgba(232, 61, 106, 0.06);
}

.value-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.values h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 500;
}

.values p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 7vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.site-footer .imprint {
  margin-top: 8px;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.88rem;
  font-weight: 500;
}

.site-footer .imprint a {
  color: rgba(255, 253, 249, 0.88);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff !important;
}

.instagram-link .instagram-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ffffff !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #ffffff !important;
  opacity: 1;
}

.instagram-link .instagram-dot {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.instagram-link span {
  color: #ffffff !important;
  font-weight: 700;
}

.turtle-section {
  display: flex;
  justify-content: center;
  padding: 12px clamp(20px, 7vw, 96px) 10px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.turtle-easter-egg {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.turtle-button {
  width: 86px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 10px;
  padding: 5px;
  background: rgba(255, 253, 249, 0.92);
  color: #111111;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

.turtle-button:hover,
.turtle-button:focus-visible {
  color: var(--pink);
}

.turtle-button:focus-visible {
  outline: 2px solid rgba(232, 61, 106, 0.85);
  outline-offset: 4px;
  border-radius: 12px;
}

.turtle-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 180ms ease;
}

.turtle-button:hover .turtle-image,
.turtle-button:focus-visible .turtle-image {
  transform: translateY(-2px);
}

.turtle-button:disabled {
  cursor: default;
}

.turtle-button:disabled .turtle-image {
  transform: none;
}

.turtle-bubble {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  width: min(320px, 78vw);
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 253, 249, 0.16);
  border-radius: 8px;
  background: rgba(250, 249, 246, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.35;
}

.turtle-bubble::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: rgba(250, 249, 246, 0.96);
  transform: translateY(-50%) rotate(45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    align-items: flex-start;
    padding: 14px;
  }

  .header-stamp {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(17, 17, 17, 0.76) 0%, rgba(17, 17, 17, 0.18) 72%),
      linear-gradient(90deg, rgba(17, 17, 17, 0.58) 0%, rgba(17, 17, 17, 0.10) 70%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 44px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

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

  .values div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values div:last-child {
    border-bottom: 0;
  }

  .value-icon {
    margin-bottom: 28px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .turtle-bubble {
    left: 50%;
    top: calc(100% + 14px);
    transform: translateX(-50%);
  }

  .turtle-bubble::after {
    left: 50%;
    top: -7px;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media (max-width: 520px) {
  .header-stamp {
    max-width: 138px;
    line-height: 1.1;
  }

  .cta {
    width: 100%;
  }
}
