/* Bellasell - holding page.
   Deliberately small and server-rendered: a scanner must see real text, not a script.
   No web fonts, no trackers, no external requests - everything comes from our own server. */

:root {
  --page: #ffffff;
  --ink: #14130f;
  --body: #55524b;
  --soft: #8d897f;
  --gold: #fcab16;
  --gold-deep: #e0940a;
  --cream: #fdf7ee;
  --brown: #79401c;
  --line: #ece8e1;

  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI Variable Display', 'Segoe UI',
          Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.narrow { max-width: 46rem; }

/* ---------- top bar ---------- */

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.bar img { width: 40px; height: 40px; display: block; }

.bar .name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.bar .status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--cream);
  border: 1px solid #f3e4cd;
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
}

/* ---------- hero ---------- */

.hero {
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

/* Der Stand ist die Marke - er gehoert sichtbar auf die Seite, nicht nur ins Symbol. */
.hero picture { display: block; justify-self: center; }

.hero .stall {
  width: min(100%, 420px);
  height: auto;
  justify-self: center;
  order: -1;
}

@media (min-width: 58rem) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
  .hero .stall { order: 0; justify-self: end; width: 100%; }
  /* Neben der Zeichnung bestimmt die Rasterspalte die Breite, nicht die Zeichenzahl. */
  .hero h1 { max-width: none; }
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  max-width: 17ch;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-deep);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  max-width: 38ch;
  margin: 2rem 0 0;
}

.hero .cta { margin-top: 2.5rem; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover { background: #2e2b24; color: #fff; transform: translateY(-1px); }

.btn.gold { background: var(--gold); color: var(--ink); }
.btn.gold:hover { background: #ffbc3d; color: var(--ink); }

/* ---------- cards ---------- */

.cards {
  display: grid;
  /* Eine oder drei Spalten, nie zwei: bei zwei bleibt eine Zelle leer. */
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.card {
  background: #fff;
  padding: 2rem 1.75rem 2.25rem;
}

.card h2 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 0.9rem;
}

.card p { margin: 0; font-size: 1rem; }

.card strong { color: var(--ink); font-weight: 600; }

/* ---------- closing band ---------- */

.band {
  margin: clamp(3.5rem, 8vw, 6rem) 0 0;
  background: var(--ink);
  border-radius: 24px;
  color: #d9d5cc;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}

.band h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.band p {
  max-width: 44ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.band .mail {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  color: #8d897f;
}

.band .mail a { color: #d9d5cc; }

/* ---------- links ---------- */

a { color: var(--brown); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

p { margin: 0 0 1.1rem; }
strong { color: var(--ink); font-weight: 600; }

/* ---------- legal pages ---------- */

.legal { padding: 1rem 0 5rem; font-size: 16px; }

.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 2.5rem;
}

.legal .lead {
  font-size: 1.15rem;
  color: var(--ink);
  background: var(--cream);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 0 0 3rem;
}

.legal h2 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 2.75rem 0 0.7rem;
}

.legal dl { margin: 0 0 1.5rem; }
.legal dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 1.6rem;
}
.legal dd { margin: 0; color: var(--ink); }

.legal .todo {
  background: #fff8e1;
  border: 1px dashed var(--gold-deep);
  color: #7a5a00;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.82em;
}

.legal small { color: var(--soft); }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: 2rem 0 3rem;
  font-size: 0.85rem;
  color: var(--soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

footer nav a {
  margin-right: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft);
}

footer nav a:hover { color: var(--ink); }

footer p { margin: 0; }

/* ---------- small screens ---------- */

@media (min-width: 62rem) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .cards { border-radius: 16px; }
  .card { padding: 1.6rem 1.35rem 1.8rem; }
  .band { border-radius: 18px; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
