/* ===== Fonts ===== */
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-latin-300-normal.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Gold/Bronze accent */
  --gold-50: #fdf8f0;
  --gold-100: #f9edda;
  --gold-200: #f2d9b3;
  --gold-300: #e9c082;
  --gold-400: #d4a04e;
  --gold-500: #c49a47;
  --gold-600: #b08538;
  --gold-700: #936b2d;
  --gold-800: #7a5728;
  --gold-900: #654824;

  /* Dark surfaces */
  --surface-950: #171e23;
  --surface-900: #1e272e;
  --surface-800: #2d3940;
  --surface-750: #354349;
  --surface-700: #3f4f57;
  --surface-600: #4e6170;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--surface-950);
  color: #d1d5db;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== Skip link ===== */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 50;
  background: var(--gold-500); color: #fff; padding: .5rem 1rem; border-radius: .25rem;
}
.skip-link:focus { top: 1rem; }

/* ===== Utility ===== */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-gold { color: var(--gold-400); }
.text-gold-500 { color: var(--gold-500); }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-300 { color: #d1d5db; }
.text-white { color: #fff; }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-500);
  color: #fff;
  padding: .875rem 2rem;
  font-weight: 600;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--gold-400); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  padding: .875rem 2rem;
  font-weight: 600;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-400); }

.btn-contact-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  padding: .5rem 1.25rem;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: all .2s;
}
.btn-contact-outline:hover { background: var(--gold-500); color: #fff; }

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.section-heading p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-heading h2 { font-size: 1rem; }
  .section-heading p { font-size: 1.875rem; }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(23,30,35,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }

.header-logo img { height: 3.5rem; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 4rem; } }

.header-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .header-nav { display: flex; } }

.header-nav a {
  color: #9ca3af;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: color .2s;
}
.header-nav a:hover { color: var(--gold-400); }

.header-spacer { height: 4rem; }
@media (min-width: 768px) { .header-spacer { height: 5rem; } }

/* Mobile menu button */
.mobile-menu-btn {
  display: block;
  padding: .5rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-btn:hover { color: var(--gold-400); }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,.05);
  background: var(--surface-900);
  padding: 1rem;
}
.mobile-menu.is-open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu a {
  display: block;
  padding: .75rem 1rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .875rem;
  border-radius: .5rem;
  transition: all .2s;
}
.mobile-menu a:hover { color: var(--gold-400); background: rgba(255,255,255,.05); }

.mobile-menu .btn-contact-outline {
  display: block;
  text-align: center;
  margin-top: .75rem;
  padding: .75rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,30,35,.75);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23,30,35,.8), rgba(23,30,35,.5), rgba(23,30,35,.7));
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 6rem 0 8rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero h1 {
  color: var(--gold-400);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 1.25rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 1.5rem; } }

.hero-subtitle {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.625;
  font-style: italic;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.5rem; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.875rem; } }

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-logo-box {
  display: none;
  justify-content: center;
}
@media (min-width: 768px) { .hero-logo-box { display: flex; } }

.hero-logo-inner {
  background: rgba(45,57,64,.8);
  backdrop-filter: blur(4px);
  padding: 3rem;
}
@media (min-width: 1024px) { .hero-logo-inner { padding: 4rem; } }

.hero-logo-inner img {
  width: 16rem;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-logo-inner img { width: 20rem; } }

.hero-logo-divider {
  height: 1px;
  width: 75%;
  background: rgba(196,154,71,.5);
  margin: 1.5rem auto 0;
}
.hero-logo-tagline {
  color: #9ca3af;
  text-align: center;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-top: 1rem;
  line-height: 1.6;
}

.hero-bottom-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,154,71,.4), transparent);
}

/* ===== Sections ===== */
.section { padding: 4rem 0; scroll-margin-top: 5rem; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section--alt { background: var(--surface-750); }
.section--cta { background: var(--surface-700); padding: 5rem 0; }

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--surface-800);
  border: 1px solid rgba(255,255,255,.05);
  padding: 2rem 2.5rem;
  transition: border-color .3s;
  position: relative;
}
.service-card:hover { border-color: rgba(196,154,71,.3); }

.service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(196,154,71,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold-400);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: .75rem;
}
.service-card > p {
  color: #9ca3af;
  font-size: .875rem;
  line-height: 1.625;
  margin-bottom: 1.25rem;
}

.service-card__bullets {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.service-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: #9ca3af;
  margin-bottom: .5rem;
}
.service-card__bullets li span.dash {
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: .125rem;
}

/* ===== Values (Über uns) ===== */
.about-text {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
  color: #9ca3af;
  line-height: 1.625;
}
.about-text p + p { margin-top: 1.5rem; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-item { text-align: center; }
.value-item__icon {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(196,154,71,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-item__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold-400);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-item h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.value-item p { color: #9ca3af; font-size: .875rem; }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.team-card {
  position: relative;
  background: var(--surface-800);
  border: 1px solid rgba(255,255,255,.05);
  padding: 2.5rem;
  text-align: center;
  overflow: hidden;
  transition: border-color .3s;
}
.team-card:hover { border-color: rgba(196,154,71,.3); }

.team-card__avatar {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(196,154,71,.2);
  background: var(--surface-700);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__avatar svg {
  width: 3.5rem;
  height: 3.5rem;
  color: #4b5563;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-card h3 { font-size: 1.125rem; }
.team-card__role {
  color: var(--gold-400);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  margin-top: .25rem;
}

/* Bio overlay on hover */
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,30,35,.95);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s;
}
.team-card:hover .team-card__overlay { opacity: 1; }

.team-card__overlay-inner { text-align: center; }
.team-card__overlay .team-card__role { margin-bottom: .5rem; }
.team-card__overlay h3 { margin-bottom: 1rem; }
.team-card__overlay p { color: #d1d5db; font-size: .875rem; line-height: 1.625; }

/* ===== CTA Banner ===== */
.cta-banner p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .cta-banner p { font-size: 1.5rem; } }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.05);
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-item {
  background: var(--surface-950);
  text-align: center;
  padding: 2.5rem;
}
.contact-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold-400);
  margin: 0 auto 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #6b7280;
  margin-bottom: .5rem;
}
.contact-item a {
  color: #fff;
  font-weight: 600;
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold-400); }
.contact-item .address {
  color: #fff;
  font-weight: 600;
}

.contact-cta { margin-top: 3rem; text-align: center; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
  font-size: .875rem;
  color: #6b7280;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold-400); }

/* ===== Legal pages ===== */
.legal-page { padding: 4rem 0; }
@media (min-width: 768px) { .legal-page { padding: 6rem 0; } }

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}
.legal-content h1 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .legal-content h1 { font-size: 2.25rem; } }

.legal-content .block + .block { margin-top: 2rem; }
.legal-content h2 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #d1d5db;
  margin-top: 1rem;
  margin-bottom: .5rem;
}
.legal-content p { color: #9ca3af; }
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: .5rem;
  color: #9ca3af;
}
.legal-content ul li + li { margin-top: .25rem; }
.legal-content a { color: var(--gold-400); transition: color .2s; }
.legal-content a:hover { color: var(--gold-300); }

/* ===== 404 ===== */
.page-404 {
  padding: 6rem 0 9rem;
  text-align: center;
}
.page-404 .code {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 1rem;
}
.page-404 h1 { font-size: 1.875rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .page-404 h1 { font-size: 2.25rem; } }
.page-404 p { color: #9ca3af; font-size: 1.125rem; margin-bottom: 2rem; max-width: 28rem; margin-left: auto; margin-right: auto; }

/* ===== Arrow icon (inline SVG helper) ===== */
.icon-arrow { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-arrow--lg { width: 1.25rem; height: 1.25rem; }
