:root {
  --bg: #d5b057;
  --panel: #f8f5e8;
  --panel-soft: #fffdf6;
  --border: #bca66d;
  --text: #2f281d;
  --muted: #635846;
  --olive: #7d8b40;
  --olive-dark: #5f6a2f;
  --shadow: 0 16px 50px rgba(81, 59, 17, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  background: linear-gradient(180deg, #e5cf89 0%, var(--bg) 100%);
  color: var(--text);
}

.page-shell {
  min-height: 100vh;
  padding: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 24px;
  align-items: end;
  padding: 34px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at left top, rgba(255,255,255,.82), rgba(248,245,232,.88) 38%, rgba(248,245,232,.95) 100%);
  box-shadow: var(--shadow);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(248,245,232,0.08) 55%, rgba(248,245,232,0.7) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('banner-blatt.png') right top / cover no-repeat;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.hero-map {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: min(38vw, 520px);
  opacity: 0.14;
  filter: saturate(0) contrast(1.05);
  pointer-events: none;
}

.hero-map img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-copy,
.hero-brand {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #7e6a40;
}

h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 0;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.92;
  max-width: 11ch;
}

.lead {
  margin: 18px 0 0;
  max-width: 57ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(95, 106, 47, 0.24);
  background: rgba(255,255,255,0.7);
  color: var(--olive-dark);
  font-size: 0.84rem;
}

.hero-brand {
  display: grid;
  place-items: center;
  min-height: 240px;
}

.hero-brand img {
  width: min(100%, 360px);
  height: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
}

.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.announcement,
.signup-panel {
  padding: 22px;
}

.panel-header p,
.panel-note {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.feature-list strong {
  display: block;
  font-size: 1rem;
}

.feature-list p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.notice {
  padding: 12px 14px;
  margin: 18px 0 0;
  border: 1px solid var(--border);
  background: var(--panel-soft);
  line-height: 1.5;
}

.notice-success {
  border-color: rgba(95, 106, 47, 0.45);
  color: var(--olive-dark);
}

.notice-error {
  border-color: #c7937f;
  color: #7b3023;
}

.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.signup-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 700;
}

.signup-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c9bb93;
  background: var(--panel-soft);
  padding: 0 12px;
  font-size: 0.96rem;
}

.signup-form button,
.verify-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid #6e5a2b;
  background: linear-gradient(180deg, #8e6b21 0%, #7c5e1d 100%);
  color: #fff8ea;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 6px 0;
  color: #5e522f;
  font-size: 0.86rem;
}

.verify-shell {
  display: grid;
  place-items: center;
}

.verify-panel {
  width: min(720px, 100%);
  padding: 28px;
}

.verify-lead,
.verify-mail {
  margin: 14px 0 0;
}

@media (max-width: 980px) {
  .hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    min-height: 180px;
  }

  .hero-map {
    width: min(62vw, 460px);
    right: 8px;
  }
}

@media (max-width: 640px) {
  .page-shell { padding: 14px; }
  .hero,
  .announcement,
  .signup-panel,
  .verify-panel { padding: 18px; }
  .hero h1 { font-size: 2.4rem; }
  .footer { padding-bottom: 8px; }
}
