:root {
  --bg: #131013;
  --bg-soft: #1a1418;
  --ink: #f0e8e4;
  --dim: #a09090;
  --peach: #e9a184;
  --rose: #cf7f8e;
  --line: rgba(160, 144, 144, 0.28);
}

* { box-sizing: border-box; }

html, body { min-width: 320px; min-height: 100%; margin: 0; }

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(138, 74, 82, 0.34), transparent 34rem),
    radial-gradient(circle at 12% 88%, rgba(233, 161, 132, 0.11), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.ambient { position: fixed; z-index: -2; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.ambient-one { width: 26rem; height: 32rem; top: -8rem; right: -8rem; background: rgba(92, 58, 74, 0.72); }
.ambient-two { width: 18rem; height: 20rem; bottom: -8rem; left: -6rem; background: rgba(207, 127, 142, 0.16); }

a { color: inherit; text-decoration-color: rgba(233, 161, 132, 0.6); text-underline-offset: 0.25em; }
a:hover { color: var(--peach); }

.shell { width: min(92vw, 820px); min-height: 100vh; margin: 0 auto; display: flex; flex-direction: column; }

.brandbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 1.3rem;
  border-bottom: 1px solid var(--line);
}

.brandbar .brand {
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1;
  text-decoration: none;
}

.brandbar > span, .brand-meta, .eyebrow, .kicker, .site-footer {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.brand-meta { display: flex; align-items: center; gap: 1.2rem; color: var(--dim); }
.lang-switch { padding: 0.42rem 0.58rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; font: 500 0.62rem/1 "Manrope", system-ui, sans-serif; letter-spacing: 0.16em; }
.lang-switch:hover, .lang-switch:focus-visible { border-color: var(--peach); color: var(--peach); outline: none; }

[data-lang-block="en"] { display: none; }
html[data-ui-lang="en"] [data-lang-block="de"] { display: none; }
html[data-ui-lang="en"] [data-lang-block="en"] { display: inline; }

.panel {
  width: min(100%, 690px);
  margin: auto 0;
  padding: clamp(4.5rem, 11vh, 7.5rem) 0;
}

.kicker { margin: 0 0 1.3rem; color: var(--peach); }

h1, h2, h3 { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
h1 { max-width: 12ch; font-size: clamp(3.3rem, 10vw, 6.4rem); line-height: 0.95; letter-spacing: -0.02em; }

.lead, .message-copy {
  max-width: 52ch;
  margin: 1.8rem 0 0;
  color: var(--dim);
  font-size: 1rem;
  font-weight: 300;
}

.optin-form { margin-top: 3.2rem; }
.eyebrow { margin: 0 0 0.75rem; color: var(--rose); }

.list-summary { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 2.2rem; padding: 0; list-style: none; }
.list-summary li { border: 1px solid rgba(233, 161, 132, 0.5); border-radius: 999px; padding: 0.48rem 1rem; color: var(--ink); font-size: 0.78rem; letter-spacing: 0.08em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-bottom: 1px solid var(--peach);
  border-radius: 0;
  background: transparent;
  color: var(--peach);
  cursor: pointer;
  font: 500 0.7rem/1 "Manrope", system-ui, sans-serif;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s, letter-spacing 0.25s, border-color 0.25s;
}

.button:hover { color: var(--ink); border-color: var(--ink); letter-spacing: 0.29em; }
.button:focus-visible { outline: 2px solid var(--peach); outline-offset: 5px; }
.button-link { margin-top: 2.5rem; }

.fineprint { margin: 1.5rem 0 0; color: var(--dim); font-size: 0.76rem; font-weight: 300; }
.message-copy p { margin: 0.8rem 0; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: auto;
  padding: 1.35rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
}

.site-footer nav { display: flex; gap: 1.4rem; }
.site-footer a { text-decoration: none; }

input[type="text"], input[type="email"], input[type="password"], select {
  width: 100%; padding: 0.85rem 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); font: inherit;
}

label { color: var(--dim); }
.error { color: #ff7098; }
.lists { padding: 0; list-style: none; }
.row { margin-bottom: 1.3rem; }

@media (max-width: 620px) {
  .shell { width: min(88vw, 820px); }
  .brandbar { align-items: flex-start; }
  .brand-meta { max-width: 15rem; align-items: flex-end; flex-direction: column-reverse; gap: 0.7rem; text-align: right; line-height: 1.7; }
  .panel { padding: 4.5rem 0 5rem; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
