:root {
  color-scheme: light;
  --ink: #171716;
  --muted: #615f58;
  --paper: #fbfaf6;
  --line: rgba(23, 23, 22, 0.14);
  --green: #174d36;
  --red: #8d1f2f;
  --gold: #d9ad4f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 17, 14, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(17, 17, 14, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 5px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-weight: 750;
}

nav a {
  padding: 10px 0;
}

.nav-social {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.96) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 8, 0.86), rgba(10, 10, 8, 0.46) 48%, rgba(10, 10, 8, 0.08)),
    linear-gradient(0deg, rgba(10, 10, 8, 0.54), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 92px) clamp(70px, 10vh, 120px);
}

.term-banner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  max-width: none;
  margin: 76px auto 14px;
  gap: 14px 18px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 77, 54, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 77, 54, 0.08), rgba(217, 173, 79, 0.12)),
    var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 17, 14, 0.08);
  overflow: hidden;
}

.term-banner img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  border: 1px solid rgba(23, 77, 54, 0.14);
}

.term-copy {
  display: grid;
  gap: 2px;
}

.term-banner span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.term-banner strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.04;
}

.term-banner em {
  justify-self: end;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 850;
  padding: 10px 14px;
  text-align: center;
}

.term-banner small {
  grid-column: 2 / 4;
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 10vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #1d1710;
}

.button.social-button {
  background: linear-gradient(135deg, #f7c94b, #d93673 45%, #6546d8);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  background: var(--green);
  color: var(--white);
  padding: 24px clamp(18px, 5vw, 72px);
}

.intro-band div {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.intro-band span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 205px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 17, 14, 0.05);
}

.feature-grid span {
  color: var(--red);
  font-weight: 950;
}

.culture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.culture-copy {
  padding: clamp(28px, 5vw, 60px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.culture-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 2px 16px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.timeline strong {
  font-size: 1.2rem;
}

.timeline p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  border-top: 1px solid var(--line);
}

.contact-form,
.join-panel,
.instagram-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 17, 14, 0.07);
}

.action-stack {
  display: grid;
  gap: 16px;
}

.join-panel {
  align-content: start;
  justify-items: start;
  background:
    linear-gradient(135deg, rgba(23, 77, 54, 0.08), rgba(141, 31, 47, 0.08)),
    var(--white);
}

.join-panel img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  border: 1px solid var(--line);
}

.join-panel strong {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
}

.join-panel p {
  margin-bottom: 4px;
}

.instagram-panel {
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(247, 201, 75, 0.44), transparent 38%),
    linear-gradient(135deg, #171716 0%, #5b1534 54%, #174d36 100%);
  color: var(--white);
  overflow: hidden;
}

.instagram-panel img {
  width: 190px;
  height: 190px;
  border-radius: 8px;
  background: var(--white);
}

.instagram-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.instagram-panel p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.instagram-panel .quiet-link {
  color: var(--gold);
}

.instagram-panel .eyebrow {
  margin-bottom: 8px;
}

.quiet-link {
  color: var(--muted);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 173, 79, 0.35);
  border-color: var(--gold);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--green);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.mobile-quickbar {
  display: none;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 88px) 0;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1;
}

.legal-page h2 {
  margin-top: 32px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
}

.schnacke {
  position: fixed;
  right: 18px;
  bottom: 12px;
  width: min(170px, 28vw);
  pointer-events: none;
  opacity: 0.1;
}

@media (max-width: 820px) {
  body {
    padding-bottom: 98px;
  }

  .site-header {
    padding: 12px 16px;
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    display: none;
  }

  nav {
    position: absolute;
    top: 12px;
    right: 16px;
    gap: 10px;
    font-size: 0.82rem;
  }

  nav a {
    display: none;
  }

  nav .nav-social {
    display: none;
    min-height: 44px;
    align-items: center;
    border-radius: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.95rem;
  }

  .hero {
    min-height: 64svh;
    align-items: end;
  }

  .hero-media img {
    object-position: 66% top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 8, 0.82), rgba(10, 10, 8, 0.48) 60%, rgba(10, 10, 8, 0.16)),
      linear-gradient(0deg, rgba(10, 10, 8, 0.88), rgba(10, 10, 8, 0.58) 48%, transparent 72%);
  }

  .hero-content {
    margin: 0 18px 34px;
    width: calc(100% - 28px);
    max-width: 360px;
  }

  .term-banner {
    width: calc(100% - 36px);
    grid-template-columns: 44px minmax(0, 1fr);
    margin-top: 70px;
    margin-bottom: 12px;
    padding: 12px;
    gap: 10px 12px;
  }

  .term-banner img {
    width: 44px;
    height: 44px;
  }

  .term-banner strong {
    font-size: 1.18rem;
  }

  .term-banner em {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: 100%;
    font-size: 0.96rem;
    padding: 10px 12px;
  }

  .term-banner small {
    grid-column: 1 / -1;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.25rem);
    line-height: 0.9;
    margin-bottom: 18px;
  }

  .hero p {
    max-width: 350px;
    font-size: 1.08rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button {
    min-height: 56px;
    padding: 14px 16px;
    font-size: 1.08rem;
  }

  .hero-actions .button.ghost {
    display: none;
  }

  .hero-actions .button.social-button {
    display: none;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  h2 {
    font-size: clamp(2.25rem, 9vw, 3rem);
    line-height: 1.04;
  }

  h3 {
    font-size: 1.34rem;
  }

  p {
    font-size: 1.06rem;
  }

  .split,
  .culture,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .feature-grid article,
  .join-panel,
  .instagram-panel,
  .culture-copy {
    padding: 24px;
  }

  .instagram-panel {
    grid-template-columns: 1fr;
  }

  .instagram-panel img {
    width: min(240px, 100%);
    height: auto;
    order: -1;
  }

  .intro-band div {
    display: grid;
    width: 100%;
    max-width: 330px;
    gap: 6px;
  }

  .intro-band {
    padding-bottom: 118px;
  }

  .intro-band span {
    max-width: 100%;
  }

  .schnacke {
    display: none;
  }

  .mobile-quickbar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(23, 23, 22, 0.86);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
  }

  .mobile-quickbar a {
    display: inline-flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    padding: 13px 8px;
    font-weight: 900;
    font-size: 1.08rem;
    white-space: nowrap;
  }

  .quickbar-social {
    background: linear-gradient(135deg, #f7c94b, #d93673 45%, #6546d8);
    color: var(--white);
  }

  .quickbar-join {
    background: var(--gold);
    color: #1d1710;
  }
}

@media (max-width: 520px) {
  nav a {
    font-size: 0.76rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (min-width: 821px) {
  .mobile-quickbar {
    display: none;
  }
}
