/* ─────────────────────────────────────────────────────────────────────
   viennaestate.ai — Base: Reset, Typography, Layout
   ───────────────────────────────────────────────────────────────────── */

/* Reset (modern, minimal) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ve-font-body);
  font-size: var(--ve-fs-body);
  line-height: var(--ve-lh-base);
  color: var(--ve-ink-deep);
  background: var(--ve-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--ve-gold); text-decoration: none; transition: color var(--ve-tx-quick); }
a:hover { color: var(--ve-gold-hover); }

/* Display / Headings — Bodoni Moda */
.ve-display, h1, h2, h3, h4 {
  font-family: var(--ve-font-display);
  font-weight: 500;
  color: var(--ve-ink);
  line-height: var(--ve-lh-tight);
  letter-spacing: var(--ve-ls-display);
}
.ve-display { font-size: var(--ve-fs-display); }
h1 { font-size: var(--ve-fs-h1); }
h2 { font-size: var(--ve-fs-h2); font-weight: 600; }
h3 { font-size: var(--ve-fs-h3); font-weight: 600; }

/* Versalien-Untertitel mit Gold-Hairline (klassisches Markenelement) */
.ve-eyebrow {
  display: inline-block;
  font-family: var(--ve-font-body);
  font-size: var(--ve-fs-micro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ve-ls-caps);
  color: var(--ve-gold);
  position: relative;
  padding-bottom: var(--ve-space-3);
  margin-bottom: var(--ve-space-4);
}
.ve-eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 2.5rem; height: 1px;
  background: var(--ve-gold);
}

/* Lead-Paragraph — größer, weicher */
.ve-lead {
  font-size: 1.1rem;
  line-height: var(--ve-lh-loose);
  color: var(--ve-ink-soft);
  max-width: 36rem;
}

/* Layout-Container */
.ve-container {
  width: 100%;
  max-width: var(--ve-content-wide);
  margin: 0 auto;
  padding: 0 var(--ve-space-5);
}
.ve-container--narrow { max-width: var(--ve-content-narrow); }
.ve-container--medium { max-width: var(--ve-content-medium); }
.ve-container--max    { max-width: var(--ve-content-max); }

/* Body-Layout — Sticky-Footer-Pattern */
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

/* Hairline-Divider in Gold (das ist DAS Markenzeichen der Live-Seite) */
.ve-hairline {
  border: 0;
  height: 1px;
  background: var(--ve-gold);
  width: 4rem;
  margin: var(--ve-space-5) auto;
}
.ve-hairline--left  { margin-left: 0; }
.ve-hairline--full  { width: 100%; background: var(--ve-line); }

/* Selection-Color in Bronze-Gold */
::selection { background: var(--ve-gold-tint); color: var(--ve-ink-deep); }
