/* ============================================================
   VESTOR — Design tokens
   Pure Typographic Approach. No dark mode. No color accent.
   Bright white ("gallery") background, sharp black type.
   ============================================================ */

:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --paper-dim: #f4f4f2;
  --line: #dcdcd8;
  --line-strong: #0a0a0a;
  --mid: #6b6b65;
  --mid-soft: #96968f;

  --font-display: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;

  --container: 1180px;
  --gutter: clamp(24px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

a { color: inherit; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

em {
  font-style: normal;
  font-weight: 400;
}

p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: transparent; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
  display: block;
}
.logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav a { text-decoration: none; color: var(--mid); transition: color 0.2s ease; }
.nav a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(56px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 0.96;
  margin-top: 18px;
}
.hero h1 em { font-weight: 300; }
.hero p.lede {
  font-size: 18px;
  color: var(--mid);
  max-width: 46ch;
  margin-top: 26px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.radar-figure {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #0a0a0a;
  border-radius: 50%;
  overflow: hidden;
}
.radar-figure canvas { width: 100%; height: 100%; display: block; }
.radar-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mid-soft);
  text-align: center;
  margin-top: 14px;
  text-transform: uppercase;
}

/* ---------- Section shell ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.05; }
.section-head p { margin-top: 18px; color: var(--mid); font-size: 17px; max-width: 56ch; }

.section--tint { background: var(--paper-dim); }

/* ---------- Services (triptych) ---------- */
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.funnel-col {
  position: relative;
  border-top: 2px solid var(--line-strong);
  padding-top: 22px;
}
.funnel-col .stage-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  margin-bottom: 6px;
}
.funnel-col .stage {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}
.funnel-col h3 { font-size: clamp(22px, 2.4vw, 26px); margin-bottom: 14px; }
.funnel-col .desc { color: var(--mid); font-size: 15.5px; }

/* ---------- Objekte ---------- */
.objekte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.objekt-card {
  background: transparent;
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease;
}
.objekt-card:hover { transform: translateY(-4px); }
.objekt-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.objekt-card .status {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-soft);
}

/* ---------- SEO / Region ---------- */
.region-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 60px);
}
.region-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mid);
}
.region-list li { padding: 10px 0; border-top: 1px solid var(--line); }
.region-body h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 20px; letter-spacing: -0.02em; }
.region-body p { color: var(--mid); font-size: 16px; }
.region-body p + p { margin-top: 16px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}
.contact-item { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-item .eyebrow { margin-bottom: 8px; }
.contact-item a, .contact-item span { font-size: 19px; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { padding: 40px 0; border-top: 1px solid var(--line); }
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mid-soft);
  letter-spacing: 0.04em;
}
.site-footer a { text-decoration: none; color: var(--mid-soft); }
.site-footer a:hover { color: var(--ink); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Impressum page ---------- */
.legal {
  padding: clamp(48px, 8vw, 96px) 0;
  max-width: 760px;
}
.legal h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 8px; letter-spacing: -0.02em; }
.legal .eyebrow { margin-bottom: 18px; }
.legal h2 { font-size: 19px; font-family: var(--font-body); font-weight: 600; margin-top: 40px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--mid); font-size: 16px; }
.legal .placeholder { color: var(--ink); background: var(--paper-dim); padding: 2px 6px; border-radius: 2px; }
.legal ul { padding-left: 20px; }
.legal .note {
  margin-top: 48px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mid);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.trust-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  justify-content: space-between;
}
.trust-item {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--mid);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.trust-item strong {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* ---------- Image placeholders (real photography goes here later) ---------- */
.img-slot {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--mid-soft);
  padding: 24px;
}
.img-slot .img-slot-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 26ch;
}

/* ---------- Founder / Über Vestor ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.founder-portrait.img-slot { aspect-ratio: 4 / 5; }
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  margin: 24px 0;
}
.founder-body p { color: var(--mid); font-size: 16px; }
.founder-body p + p { margin-top: 16px; }
.founder-signoff {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--mid);
}

/* ---------- Kosten & Transparenz ---------- */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.cost-card {
  border-top: 2px solid var(--line-strong);
  padding-top: 22px;
}
.cost-card h3 { font-size: 20px; margin-bottom: 12px; }
.cost-card p { color: var(--mid); font-size: 15.5px; }

/* ---------- Handwerker CTA strip ---------- */
.partner-strip {
  border: 1px solid var(--ink);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.partner-strip .partner-text { max-width: 52ch; }
.partner-strip h3 { font-size: clamp(20px, 2.2vw, 24px); margin-bottom: 8px; }
.partner-strip p { color: var(--mid); font-size: 15.5px; }

/* ---------- Objekte imagery ---------- */
.objekt-card .img-slot { aspect-ratio: 4 / 3; margin-bottom: 18px; }

/* ---------- Coming Soon page ---------- */
.cs-header {
  padding: clamp(40px, 7vw, 64px) 0 0;
}
.cs-header .logo { display: inline-block; }
.cs-header .logo img { height: clamp(48px, 7vw, 84px); width: auto; }
.coming-soon {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: clamp(40px, 8vw, 80px) 0;
}
.coming-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.coming-grid h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin-top: 18px;
}
.coming-grid h1 em { font-weight: 300; }
.coming-grid .lede {
  font-size: 18px;
  color: var(--mid);
  max-width: 48ch;
  margin-top: 24px;
}
.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mid);
  letter-spacing: 0.01em;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
}
.coming-grid .hero-ctas { margin-top: 36px; }

.cs-footer {
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
  padding: 20px 0;
  margin-top: 24px;
}
.cs-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mid-soft);
  letter-spacing: 0.03em;
}
.placeholder-inline {
  color: var(--ink);
  background: var(--paper-dim);
  padding: 1px 5px;
}

@media (max-width: 860px) {
  .coming-grid { grid-template-columns: 1fr; }
  .coming-grid .radar-figure { max-width: 300px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .radar-figure { max-width: 320px; }
  .triptych { grid-template-columns: 1fr; gap: 40px; }
  .objekte-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: 1fr; }
  .trust-bar .wrap { gap: 18px 32px; }
  .nav { display: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
