/*
 * RICKMERS IMMOBILIEN WOHNUNGEN GMBH
 * Design: Hamburger Kontorhausviertel — Burgund, Elfenbein, Anthrazit
 * Typografie: Cormorant Garamond (Display) + Jost (Body)
 * Philosophie: Exklusiv, hanseatisch, selbstbewusst — Backstein trifft Moderne
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  --burgundy:      #7a1a2e;
  --burgundy-dark: #5a1020;
  --burgundy-mid:  #8c2038;
  --burgundy-light:#f5eaed;
  --anthracite:    #1e1e22;
  --anthracite-mid:#2d2d33;
  --ivory:         #f8f4ef;
  --ivory-warm:    #f0e9e0;
  --white:         #ffffff;
  --ink:           #1a1a1e;
  --ink-mid:       #3a3a40;
  --ink-muted:     #7a7a82;
  --gold:          #c9a84c;
  --gold-light:    #e8d5a0;
  --border:        #e2dbd4;
  --border-light:  #ede8e3;
  --transition:    0.28s ease;
  --radius:        0px;
  --shadow-sm:     0 2px 12px rgba(26,26,30,0.06);
  --shadow-md:     0 8px 32px rgba(26,26,30,0.10);
  --shadow-lg:     0 20px 60px rgba(26,26,30,0.14);
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
  color: var(--anthracite);
}
.section-eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 600px;
}
.divider {
  width: 40px;
  height: 2px;
  background: var(--burgundy);
  margin-bottom: 1.5rem;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all var(--transition);
  min-height: 48px;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-burgundy:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }
.btn-outline-dark {
  background: transparent;
  color: var(--anthracite);
  border-color: var(--anthracite);
}
.btn-outline-dark:hover { background: var(--anthracite); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--ivory); }
.btn-arrow span { transition: transform var(--transition); }
.btn-arrow:hover span { transform: translateX(4px); }

/* ── Container ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ── Navigation ──────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}
#nav.scrolled {
  background: rgba(248,244,239,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}
.nav-logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.nav-logo-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color var(--transition);
  padding: 0.25rem 0;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.nav-cta-link {
  color: var(--burgundy) !important;
  font-weight: 700 !important;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--anthracite);
  transition: all var(--transition);
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────────────────── */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,30,0.55);
  z-index: 199;
  backdrop-filter: blur(3px);
}
.mobile-drawer-overlay.active { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--anthracite);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}
.mobile-drawer.open { transform: translateX(0); }
.modal-handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  position: absolute;
  top: 1rem; left: 50%; transform: translateX(-50%);
}
.mobile-drawer-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.mobile-drawer-close:hover { color: var(--white); }
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-drawer nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-drawer nav a:hover { color: var(--white); }
.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-drawer-footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,30,0.88) 0%,
    rgba(26,26,30,0.5) 40%,
    rgba(26,26,30,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4rem;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 1rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-metric-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-metric-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* ── Intro Strip ─────────────────────────────────────────────────── */
.intro-strip {
  background: var(--anthracite);
  padding: 1.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.intro-strip::-webkit-scrollbar { display: none; }
.intro-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
}
.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
}
.intro-strip-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.intro-strip-icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.intro-strip-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.intro-strip-text strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.intro-strip-text span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.intro-strip-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Leistungen ──────────────────────────────────────────────────── */
.leistungen {
  padding: 5rem 0;
  background: var(--ivory);
}
.leistungen-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 900px) {
  .leistungen-header { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
}
.leistungen-header-right p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: var(--border);
}
@media (min-width: 640px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .leistungen-grid { grid-template-columns: repeat(3, 1fr); } }
.leistung-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.leistung-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); z-index: 1; }
.leistung-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.leistung-card:hover .leistung-img { transform: scale(1.03); }
.leistung-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.leistung-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--burgundy-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.leistung-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 0.75rem;
}
.leistung-desc {
  font-size: 0.88rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  flex: 1;
}
.leistung-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.leistung-link:hover { gap: 0.7rem; }

/* ── Verwaltung Detail ───────────────────────────────────────────── */
.verwaltung {
  padding: 5rem 0;
  background: var(--ivory-warm);
}
.verwaltung-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .verwaltung-layout { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}
.verwaltung-img-wrap {
  position: relative;
}
.verwaltung-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.verwaltung-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.verwaltung-img-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.verwaltung-img-badge-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 0.25rem;
}
.aufgaben-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.aufgaben-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.aufgaben-item:last-child { border-bottom: none; }
.aufgaben-check {
  width: 20px; height: 20px;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.aufgaben-check svg {
  width: 10px; height: 10px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aufgaben-text strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.aufgaben-text span {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Prozess ─────────────────────────────────────────────────────── */
.prozess {
  padding: 5rem 0;
  background: var(--anthracite);
}
.prozess-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 900px) {
  .prozess-header { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
}
.prozess-header .section-title { color: var(--white); }
.prozess-header-right .section-lead { color: rgba(255,255,255,0.55); }
.prozess-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .prozess-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .prozess-grid { grid-template-columns: repeat(4, 1fr); } }
.prozess-step {
  padding: 2rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prozess-step:nth-child(2n) { border-right: none; }
@media (min-width: 1024px) {
  .prozess-step { border-bottom: none; }
  .prozess-step:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .prozess-step:last-child { border-right: none; }
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.step-icon {
  width: 36px; height: 36px;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 16px; height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.step-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.75;
}

/* ── Mieter ──────────────────────────────────────────────────────── */
.mieter {
  padding: 5rem 0;
  background: var(--ivory);
}
.mieter-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .mieter-layout { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}
.mieter-img-wrap { position: relative; }
.mieter-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.mieter-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,30,0.85) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.25rem;
}
.mieter-img-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}
.mieter-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 2rem;
}
@media (min-width: 480px) { .mieter-cards { grid-template-columns: repeat(2, 1fr); } }
.mieter-card {
  background: var(--white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mieter-card-icon {
  width: 32px; height: 32px;
  background: var(--burgundy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mieter-card-icon svg {
  width: 14px; height: 14px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mieter-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--anthracite);
}
.mieter-card-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.75;
}

/* ── Über uns ────────────────────────────────────────────────────── */
.ueber-uns {
  padding: 5rem 0;
  background: var(--ivory-warm);
}
.ueber-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .ueber-layout { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}
.ueber-text p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.vorteile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 0.5rem;
}
@media (min-width: 480px) { .vorteile-grid { grid-template-columns: repeat(2, 1fr); } }
.vorteil {
  background: var(--white);
  padding: 1.5rem;
}
.vorteil-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--burgundy-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.vorteil-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
}
.vorteil-desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.75;
}

/* ── CTA Band ────────────────────────────────────────────────────── */
.cta-band {
  background: var(--burgundy);
  padding: 3.5rem 0;
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  max-width: 560px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); font-weight: 300; }

/* ── Kontakt ─────────────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr 1.4fr; }
}

/* ── Formular ────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-note {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 0.75rem;
}
.form-success-msg {
  display: none;
  background: var(--burgundy);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 300;
  margin-top: 1rem;
  line-height: 1.7;
}
.form-success-msg.visible { display: block; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  background: var(--anthracite);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── Modals ──────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,30,0.65);
  z-index: 300;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
}
@media (max-width: 640px) {
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-box { max-height: 85vh; width: 100%; padding: 2rem 1.5rem; padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.1rem;
  color: var(--ink-muted);
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--burgundy); }
.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 1rem;
}
.modal-box p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

/* ── Scroll Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Mobile Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-metrics { gap: 1.5rem; }
  .section-title { font-size: 1.8rem; }
  .btn { padding: 0.85rem 1.5rem; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 1.9rem; }
  .container { padding: 0 1rem; }
}
