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

:root {
  --navy:      #1a2b52;
  --navy-dk:   #111d38;
  --navy-lt:   #243566;
  --gold:      #b8942a;
  --gold-lt:   #d4ab3a;
  --white:     #ffffff;
  --offwhite:  #f7f5f1;
  --light:     #edeae4;
  --text:      #1a2b52;
  --muted:     #5a6680;
  --border:    rgba(26,43,82,0.12);
  --font-ser:  'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo-link { display: flex; align-items: center; text-decoration: none; }

.nav-logo {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  padding-top: 84px;
  background: linear-gradient(150deg, #e8ecf5 0%, #f4f3f0 45%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 380px;
  max-width: 100%;
  height: auto;
}

.hero-divider {
  background: var(--border);
  height: 280px;
  width: 1px;
}

.hero-text h1 {
  font-family: var(--font-ser);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.hero-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 420px;
}

/* ── BUTTON ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: background 0.25s, color 0.25s;
}
.btn:hover {
  background: transparent;
  color: var(--navy);
}

/* ── SECTIONS ── */
.section { padding: 7rem 0; }
.bg-light    { background: var(--light); }
.bg-offwhite { background: var(--offwhite); }
.bg-navy     { background: var(--navy); }

.label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.label-light { color: var(--gold-lt); }

h2 {
  font-family: var(--font-ser);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
}
h2.light { color: var(--white); }

.intro {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.intro.light { color: rgba(255,255,255,0.65); }

/* ── TWO-COL ── */
.two-col {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
}

.section-label-col {
  padding-top: 0.5rem;
}

.two-col h2 { margin-top: 0; }

.two-col p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ── STATS ── */
.stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-family: var(--font-ser);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── SECTION HEADER CENTERED ── */
.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header-center .intro {
  margin: 0 auto 3.5rem;
}

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--gold-lt);
  transform: translateY(-4px);
}

.card-monogram {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ser);
  font-size: 1.1rem;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-family: var(--font-ser);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  display: block;
}

/* ── TEAM ── */
.team-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(26,43,82,0.08);
}

.team-avatar {
  width: 60px;
  height: 60px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ser);
  font-size: 1.2rem;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
}

.team-card h3 {
  font-family: var(--font-ser);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── KONTAKT ── */
.contact-list {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.contact-key {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 80px;
  font-weight: 500;
}

.contact-row a,
.contact-row span:last-child {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-row a:hover { color: var(--gold); }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dk);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-lt); }

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .hero-logo { width: 300px; }
  .hero-inner { gap: 3rem; }
}

/* ── TABLET PORTRAIT (max 900px) ── */
@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 84px 0 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-divider { display: none; }
  .hero-logo { width: 260px; margin: 0 auto; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-text h1 { font-size: clamp(2rem, 6vw, 3rem); }

  .two-col { grid-template-columns: 1fr; gap: 0.5rem; }
  .section-label-col { padding-top: 0; }

  .stats { gap: 2rem; flex-wrap: wrap; }

  .section-header-center { text-align: left; }
  .section-header-center .intro { margin-left: 0; }

  .team-grid { justify-content: flex-start; }
  .team-card { max-width: 100%; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-nav { flex-wrap: wrap; gap: 1.2rem; }
}

/* ── MOBIL (max 768px) ── */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* Nav */
  .nav { height: 72px; }
  .nav-logo { height: 52px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--white);
    padding: 2.5rem 1.5rem;
    gap: 0;
    z-index: 99;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open a {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    padding: 1.1rem 0;
    letter-spacing: 0.1em;
  }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding: 72px 0 3rem; }
  .hero-logo { width: 200px; }
  .hero-text h1 { font-size: 2rem; }

  /* Sections */
  .section { padding: 4rem 0; }

  /* Stats */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    flex-wrap: unset;
  }
  .stat-number { font-size: 2rem; }

  /* Cards */
  .cards { grid-template-columns: 1fr; }

  /* Contact */
  .contact-row { flex-direction: column; gap: 0.25rem; }

  /* Footer */
  .footer-logo { height: 44px; }
  .footer-nav { gap: 1rem; }
  .footer-inner { align-items: flex-start; }
}

/* ── LITEN MOBIL (max 400px) ── */
@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.75rem; }
  .btn { width: 100%; text-align: center; }
}
