:root {
  --brand: #338c87;
  --brand-dark: #1e5c57;
  --brand-light: #78b8b3;
  --bg-top: #0f1f1e;
  --bg-bottom: #1a3331;
  --text: #1a3331;
  --text-muted: #4a6b67;
  --surface: #ffffff;
  --line: #c5ddd9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(51, 140, 135, 0.12), transparent 55%),
    linear-gradient(165deg, #eef5f4 0%, #e2ecea 100%);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.site-header {
  background: linear-gradient(165deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: #f4faf9;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(120, 184, 179, 0.2);
}

.site-header-inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #f4faf9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.brand-link img {
  width: 2rem;
  height: 2rem;
  border-radius: 22%;
}

.nav-legal a,
.nav-site a {
  color: var(--brand-light);
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 1rem;
}

.nav-legal a:hover,
.nav-site a:hover {
  text-decoration: underline;
}

.nav-site {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0;
}

.nav-site a {
  margin-left: 0;
}

/* Landing (Startseite) */
.landing-body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #f4faf9;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(51, 140, 135, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(120, 184, 179, 0.12), transparent 55%),
    linear-gradient(165deg, #0f1f1e 0%, #1a3331 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 5rem;
  text-align: center;
}

.landing-main .app-icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 2.5rem;
  border-radius: 22%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(51, 140, 135, 0.25);
}

.landing-main h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 400;
  line-height: 1.35;
  max-width: 36rem;
}

.landing-main h1 em {
  font-style: italic;
  color: var(--brand-light);
}

.landing-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(51, 140, 135, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f4faf9;
  border: 1px solid rgba(120, 184, 179, 0.35);
}

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

.store-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.store-card:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(51, 140, 135, 0.12);
}

.store-card.disabled {
  opacity: 0.65;
  pointer-events: none;
}

.store-card strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 0.2rem;
}

.store-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.article {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(26, 51, 49, 0.08);
}

.article h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.article .stand {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.article h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brand-dark);
  margin: 2rem 0 0.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.article h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.article h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 1.25rem 0 0.5rem;
}

.article p,
.article li {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.article ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.article a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article a:hover {
  color: var(--brand-dark);
}

.article address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.note {
  background: #eef7f6;
  border-left: 3px solid var(--brand);
  padding: 0.85rem 1rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-footer {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--brand);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .article {
    padding: 1.5rem 1.15rem;
    border-radius: 0;
  }

  main {
    padding: 1rem 0 3rem;
  }

  .nav-legal a {
    margin-left: 0.75rem;
  }
}
