/* ============== Reset & Base ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1e2a38;
  --navy-soft: #2d3e54;
  --gold: #b8a878;
  --gold-dark: #9a8a5c;
  --cream: #f4f1ec;
  --cream-dark: #e8e2d5;
  --muted: #6b7a8a;
  --text: #2a3340;
  --line: #d8d1c5;
  --white: #ffffff;
  --shadow: 0 6px 24px rgba(30,42,56,0.08);
  --shadow-hover: 0 10px 32px rgba(30,42,56,0.14);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .6rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ============== Buttons ============== */
.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
  background: var(--navy);
  color: var(--white);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn.outline { background: transparent; color: var(--navy); }
.btn.outline:hover { background: var(--navy); color: var(--white); }
.btn.light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn.light:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============== Header / Nav ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand-link { display: flex; align-items: center; }
.brand-link svg { height: 48px; width: auto; }

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  font-size: 0.92rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all .25s ease;
  transform: translateX(-50%);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--gold-dark); }

.nav-cta { margin-left: 1rem; }
.nav-cta .btn { padding: 0.6rem 1.2rem; font-size: 0.78rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all .25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 73px; right: 0;
    width: min(320px, 80vw);
    height: calc(100vh - 73px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    padding: 2rem 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -10px 0 24px rgba(0,0,0,0.06);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav a::after { display: none; }
  .nav-cta { margin: 1.5rem 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; text-align: center; }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1e2a38 0%, #2d3e54 100%);
  color: var(--white);
  padding: 6rem 0 7rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'><g fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.06'><path d='M0 100 L800 100'/><path d='M0 200 L800 200'/><path d='M0 300 L800 300'/><path d='M0 400 L800 400'/><path d='M0 500 L800 500'/></g></svg>");
  background-size: cover;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 2.2rem;
}
.hero .eyebrow { color: var(--gold); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(184,168,120,0.18), rgba(184,168,120,0.04));
  border: 1px solid rgba(184,168,120,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before, .hero-visual::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
}
.hero-visual::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-visual::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-visual .mark {
  text-align: center;
  font-family: var(--serif);
  color: var(--gold);
}
.hero-visual .mark .big {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 4px;
}
.hero-visual .mark .small {
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 820px) {
  .hero { padding: 4rem 0 5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 320px; margin: 0 auto; aspect-ratio: 1; }
  .hero-visual .mark .big { font-size: 3.5rem; }
}

/* ============== Sections ============== */
section { padding: 5rem 0; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--gold); }

/* Cards: Services */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--line);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .3s ease;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card:hover::before { height: 100%; }
.card .icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
}
.card .icon svg { width: 24px; height: 24px; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat .lbl {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Two-column intro */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.split-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  position: relative;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--navy);
  text-align: center;
  padding: 2rem;
}
.split-img::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.split-img .quote {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.split-img .quote::before { content: '„'; font-size: 4rem; color: var(--gold); line-height: 0.4; vertical-align: -0.4em; }
.split-img .by {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.2rem;
  font-style: normal;
  font-family: var(--sans);
}

/* Process list */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 0; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); margin-bottom: 0; }

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 2rem; }

/* ============== Page Hero (sub-pages) ============== */
.page-hero {
  background: var(--cream);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ============== Team ============== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team-card { text-align: center; }
.team-card .avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--navy);
  letter-spacing: 2px;
}
.team-card h3 { margin-bottom: .2rem; }
.team-card .role {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: .8rem;
}
.team-card p { color: var(--muted); font-size: 0.92rem; }

/* ============== Contact ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-info .info-block {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-block:last-child { border-bottom: 0; }
.contact-info .lbl {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .4rem;
  font-weight: 600;
}
.contact-info .val { font-size: 1.05rem; color: var(--navy); }
.contact-info .val a { color: var(--navy); }

/* Form */
form.kontakt {
  background: var(--cream);
  padding: 2.4rem;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,168,120,0.18);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.form-check input { margin-top: 4px; flex-shrink: 0; }

.form-success {
  background: #e8f0e6;
  border: 1px solid #b9d2af;
  color: #2e5424;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
  display: none;
}
.form-success.show { display: block; }

/* Map */
.map-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============== Legal pages ============== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 1.5rem;
}
.legal-content h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-content h3 { margin-top: 1.5rem; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--text); }
.legal-content ul { margin: 0 0 1rem 1.4rem; }
.legal-content li { margin-bottom: .4rem; }
.legal-content strong { color: var(--navy); }

/* ============== Footer ============== */
.site-footer {
  background: #18222e;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--gold); }
.footer-brand .logo-mono {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .3rem;
  letter-spacing: 1px;
}
.footer-brand .sub {
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ============== Utility ============== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
