/* ════════════════════════════════════════════════════════════
   LOKALE SCHRIFTEN — kein Datentransfer an Google
   Schriftdateien liegen in: /wp-content/themes/fuewo-theme/fonts/
   ════════════════════════════════════════════════════════════ */

/* Merriweather */
@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Source Sans 3 */
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/source-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/source-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/source-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/source-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #2c2c2c;
  background: #fafaf8;
  -webkit-font-smoothing: antialiased;
}

/* ── Anker-Navigation ───────────────────────────────────────── */
.fw-anchors {
  display: flex;
  background: #0a0a0a;
  border-bottom: 3px solid #fdc91a;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  position: sticky;
  top: 0;
  z-index: 100;
}
.fw-anchors::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.fw-anchors a {
  display: block;
  flex-shrink: 0; /* verhindert Abschneiden */
  padding: 16px 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s;
}
.fw-anchors a:hover { color: #fdc91a; border-bottom-color: #fdc91a; }
@media (max-width: 600px) {
  .fw-anchors a { padding: 14px 14px; font-size: 11px; letter-spacing: 0.8px; }
}

/* ── Container ──────────────────────────────────────────────── */
.fw-container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── HERO ───────────────────────────────────────────────────── */
.fw-hero {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1712 60%, #0f0e0a 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.fw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(253,201,26,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(253,201,26,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.fw-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.fw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fdc91a;
  margin-bottom: 28px;
}
.fw-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: #fdc91a; }
.fw-h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.fw-h1 em { font-style: normal; color: #fdc91a; }
.fw-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 580px;
  font-weight: 300;
}
.fw-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fdc91a;
  color: #0a0a0a;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  transition: background 0.2s;
}
.fw-cta:hover { background: #e0b00f; color: #0a0a0a; }
.fw-stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 60px; }
.fw-stat { padding: 20px 36px 20px 0; margin-right: 36px; border-right: 1px solid rgba(255,255,255,0.1); }
.fw-stat:last-child { border-right: none; }
.fw-stat-num { display: block; font-family: 'Merriweather', Georgia, serif; font-size: 2rem; font-weight: 900; color: #fdc91a; line-height: 1; }
.fw-stat-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── Sections ───────────────────────────────────────────────── */
.fw-section { padding: 96px 0; }
.fw-section-light { background: #fafaf8; }
.fw-section-dark  { background: #0a0a0a; }
.fw-section-warm  { background: #f2f0eb; }
.fw-section-soft  { background: #f5f3ee; }
section[id] { scroll-margin-top: 60px; }

.fw-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fdc91a;
  margin-bottom: 14px;
}
.fw-label::before { content: ''; display: block; width: 24px; height: 2px; background: #fdc91a; }
.fw-h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.fw-h2-light { color: #fff; }
.fw-intro { font-size: 18px; line-height: 1.75; color: #6b6b6b; max-width: 680px; font-weight: 300; }
.fw-intro-light { color: rgba(255,255,255,0.6); }

/* ── Über uns ───────────────────────────────────────────────── */
.fw-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 60px; }
.fw-story h3 { font-family: 'Merriweather', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #0a0a0a; margin-bottom: 10px; margin-top: 28px; }
.fw-story h3:first-child { margin-top: 0; }
.fw-story p { font-size: 16px; color: #6b6b6b; line-height: 1.8; margin-bottom: 14px; }
.fw-company-card { background: #0a0a0a; padding: 40px; position: relative; overflow: hidden; margin-bottom: 3px; }
.fw-company-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #fdc91a; }
.fw-card-name { font-family: 'Merriweather', Georgia, serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.fw-card-sub { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #fdc91a; margin-bottom: 28px; }
.fw-card-row { display: flex; gap: 12px; margin-bottom: 12px; font-size: 14px; }
.fw-card-key { color: rgba(255,255,255,0.4); min-width: 100px; font-size: 11px; font-weight: 600; text-transform: uppercase; padding-top: 2px; flex-shrink: 0; }
.fw-card-val { color: rgba(255,255,255,0.75); }
.fw-timeline { margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.fw-tl-item { display: flex; gap: 14px; margin-bottom: 10px; font-size: 13px; }
.fw-tl-year { color: #fdc91a; font-weight: 700; min-width: 52px; font-family: 'Merriweather', Georgia, serif; }
.fw-tl-text { color: rgba(255,255,255,0.55); }
.fw-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.fw-value { background: #f2f0eb; padding: 24px 20px; }
.fw-value-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.fw-value-title { font-family: 'Merriweather', Georgia, serif; font-weight: 700; font-size: 0.9rem; color: #0a0a0a; margin-bottom: 6px; }
.fw-value-text { font-size: 13px; color: #6b6b6b; line-height: 1.6; }

/* ── Projekt ────────────────────────────────────────────────── */
.fw-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin: 48px 0; }
.fw-fact { background: rgba(255,255,255,0.04); padding: 28px 24px; border-top: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.fw-fact:hover { border-top-color: #fdc91a; background: rgba(255,255,255,0.07); }
.fw-fact-num { display: block; font-family: 'Merriweather', Georgia, serif; font-size: 1.9rem; font-weight: 900; color: #fdc91a; line-height: 1; margin-bottom: 4px; }
.fw-fact-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fw-projekt-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.fw-projekt-col h3 { font-family: 'Merriweather', Georgia, serif; font-size: 1rem; font-weight: 700; color: #fdc91a; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fw-loc-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 15px; }
.fw-loc-name { color: rgba(255,255,255,0.72); }
.fw-loc-time { font-weight: 700; color: #fdc91a; font-family: 'Merriweather', Georgia, serif; }
.fw-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.fw-feature { background: rgba(255,255,255,0.04); padding: 14px 16px; font-size: 13px; color: rgba(255,255,255,0.62); display: flex; align-items: center; gap: 8px; }
.fw-feature::before { content: '✓'; font-weight: 700; color: #fdc91a; font-size: 13px; flex-shrink: 0; }

/* ── Wohnungen ──────────────────────────────────────────────── */
.fw-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 48px; }
.fw-price-card { background: #fff; padding: 36px 28px; border-top: 4px solid transparent; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.fw-price-card:hover { border-top-color: #fdc91a; transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.fw-price-card.fw-featured { background: #0a0a0a; border-top-color: #fdc91a; }
.fw-price-type { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fdc91a; margin-bottom: 10px; }
.fw-price-title { font-family: 'Merriweather', Georgia, serif; font-size: 1.2rem; font-weight: 700; color: #0a0a0a; margin-bottom: 8px; }
.fw-price-card.fw-featured .fw-price-title { color: #fff; }
.fw-price-size { font-size: 14px; color: #6b6b6b; margin-bottom: 20px; }
.fw-price-card.fw-featured .fw-price-size { color: rgba(255,255,255,0.45); }
.fw-price-from { font-size: 11px; color: #a8a8a8; text-transform: uppercase; letter-spacing: 1px; }
.fw-price-amount { font-family: 'Merriweather', Georgia, serif; font-size: 1.6rem; font-weight: 900; color: #0a0a0a; margin-bottom: 4px; }
.fw-price-card.fw-featured .fw-price-amount { color: #fdc91a; }
.fw-price-detail { margin-top: 20px; padding-top: 16px; border-top: 1px solid #f0ede8; font-size: 13px; color: #6b6b6b; line-height: 1.7; }
.fw-price-card.fw-featured .fw-price-detail { border-top-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.42); }
.fw-rendite { background: #fdc91a; padding: 32px 40px; margin-top: 40px; display: flex; align-items: center; gap: 40px; }
.fw-rendite-num { font-family: 'Merriweather', Georgia, serif; font-size: 2.8rem; font-weight: 900; color: #0a0a0a; line-height: 1; flex-shrink: 0; }
.fw-rendite-text { font-size: 15px; color: rgba(10,10,10,0.72); line-height: 1.6; }
.fw-rendite-text strong { display: block; font-family: 'Merriweather', Georgia, serif; font-size: 1.15rem; color: #0a0a0a; margin-bottom: 4px; font-weight: 700; }
.fw-rendite-fn { font-size: 12px; color: rgba(10,10,10,0.48); margin-top: 6px; }

/* ── Kontakt ────────────────────────────────────────────────── */
.fw-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 52px; align-items: start; }
.fw-contact-box { background: #0a0a0a; padding: 44px; position: relative; overflow: hidden; }
.fw-contact-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #fdc91a; }
.fw-contact-box h3 { font-family: 'Merriweather', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.fw-contact-sub { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fdc91a; margin-bottom: 28px; }
.fw-contact-line { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; font-size: 15px; }
.fw-contact-icon { width: 20px; flex-shrink: 0; margin-top: 1px; font-style: normal; }
.fw-contact-val { color: rgba(255,255,255,0.72); }
.fw-contact-val a { color: rgba(255,255,255,0.72); text-decoration: none; }
.fw-contact-val a:hover { color: #fdc91a; }
.fw-contact-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; }
.fw-partners h3 { font-family: 'Merriweather', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: #0a0a0a; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #f2f0eb; }
.fw-partner { padding: 18px 0; border-bottom: 1px solid #ece9e2; }
.fw-partner:last-child { border-bottom: none; }
.fw-partner-name { font-weight: 700; font-size: 15px; color: #0a0a0a; margin-bottom: 2px; }
.fw-partner-role { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #fdc91a; font-weight: 700; margin-bottom: 7px; }
.fw-partner-detail { font-size: 13.5px; color: #6b6b6b; }
.fw-partner-detail a { color: #6b6b6b; text-decoration: none; }
.fw-partner-detail a:hover { color: #fdc91a; }

/* ── Impressum ──────────────────────────────────────────────── */
.fw-impressum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.fw-impressum-col h3 { font-family: 'Merriweather', Georgia, serif; font-size: 1rem; font-weight: 700; color: #0a0a0a; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid #f2f0eb; }
.fw-impressum-col p, .fw-impressum-col address { font-size: 14px; color: #6b6b6b; line-height: 1.9; font-style: normal; }
.fw-imp-note { background: #fff; border-left: 3px solid #fdc91a; padding: 14px 18px; margin-top: 14px; font-size: 13px; color: #6b6b6b; }
.fw-placeholder { background: rgba(253,201,26,0.18); padding: 1px 5px; font-family: monospace; font-size: 12px; color: #8B6914; border-radius: 2px; }

/* ── Footer ─────────────────────────────────────────────────── */
.fw-footer { background: #0a0a0a; padding: 36px 0; border-top: 3px solid #fdc91a; }
.fw-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.fw-footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.fw-footer-links { display: flex; gap: 24px; list-style: none; }
.fw-footer-links a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; }
.fw-footer-links a:hover { color: #fdc91a; }

/* ── Scroll-Reveal ──────────────────────────────────────────── */
.fw-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fw-reveal.fw-visible { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .fw-about-grid, .fw-projekt-cols, .fw-contact-grid,
  .fw-impressum-grid, .fw-price-grid { grid-template-columns: 1fr; gap: 28px; }
  .fw-facts { grid-template-columns: repeat(2, 1fr); }
  .fw-features, .fw-values { grid-template-columns: repeat(2, 1fr); }
  .fw-rendite { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .fw-section { padding: 64px 0; }
  .fw-facts, .fw-features, .fw-values, .fw-price-grid { grid-template-columns: 1fr; }
  .fw-contact-box { padding: 28px 20px; }
  .fw-container { padding: 0 20px; }
}
