/* Fonts: Inter + Playfair Display */
:root {
  --bg: #ffffff;
  --panel: rgba(0,0,0,0.06);
  --panel-strong: rgba(0,0,0,0.12);
  --text: #0b0e17;
  --muted: #6b7280;
  --primary: #ff5921;
  --primary-700: #d44716;
  --accent: #00e0b8;
  --danger: #ff7c7c;
  --maxw: 1080px;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: 'Blauer Neu', 'Barlow', Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 200;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.logo { background:var(--primary);  }
.logo.container { position: relative;  padding: 0 0 0 12px;  }
.shadow {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: -2;
  top: 8px;
  left:-8px;
  height: 64px;
  right: 8px
}
.logo .brand,
.logo .nav-menu a,
.logo .hamburger span {
  color: #000;
  background-color: var(--primary);
}
.logo .brand {
  background-color: transparent;
}
.logo .nav-menu a {
  background-color: transparent;
}
.skip-link { position: absolute; left: -999px; top: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: #000; color: #fff; padding: 8px 12px; border-radius: 6px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(120%) blur(8px); background: rgba(10,13,22,0.6); }
.nav { display: flex; align-items: center; gap: 16px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-family: 'Anton', sans-serif; font-size: 21px; font-weight: 400; text-transform: uppercase; }
.brand img { width: 28px; height: 28px; }

.nav-menu { list-style: none; display: flex; align-items: center; gap: 16px; margin: 0 0 0 auto; padding: 0; }
.nav-menu a { color: var(--text); text-decoration: none; padding: 8px 10px; border-radius: 8px; font-weight: 700; text-transform: uppercase; }
.nav-menu a:hover { background: var(--panel); }

.hamburger { display: none; margin-left: auto; width: 46px; height: 40px; border: 1px solid var(--panel-strong); border-radius: 10px; background: transparent; cursor: pointer; position: relative; }
.hamburger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, top .2s ease, opacity .2s ease; }
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Hero */
.hero { padding: 72px 20px 40px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; align-items: center; }
.hero h1 { font-family: 'Anton', sans-serif; font-weight: 700; font-size: clamp(32px, 6vw, 56px); line-height: 1.1; margin: 0 0 12px; color: #000; }
.hero .subhead { font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); max-width: 720px; }
.hero-illustration { border-radius: 28px; padding: 14px;  }
.hero-illustration .hero-logo { width: 115px; height: 90px;  margin: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 16px; }
.hero-highlights { list-style: disc; padding-left: 22px; color: var(--muted); }

/* Sections */
.section { padding: 54px 20px; }
h2 { color: var(--primary); }
.section-header h2 { font-family: 'Anton', sans-serif; font-size: clamp(24px, 4vw, 34px); margin: 0 0 8px; }
.section-header p { color: var(--muted); margin: 0 0 20px; }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px) {
  .grid.three { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .grid.two, .grid.three { grid-template-columns: 1fr; }
}

.card { background: var(--panel);  padding: 20px;transition: transform 0.3s ease, box-shadow 0.3s ease; }

.card h3 { font-family: 'Anton', sans-serif; margin: 0 0 8px; font-size: 20px; }
.card p, .card li {  }
.card.service ul { margin: 0 0 12px; padding-left: 18px; }
.service-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--panel-strong); border-radius: 16px; }
.service-icon svg { width: 46px; height: 46px; }

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius);
  margin-bottom: 20px;
}

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.timeline li { background: var(--panel); border: 1px solid var(--panel-strong); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; position: relative; }
.timeline li::before { counter-increment: step; content: counter(step); position: absolute; left: -12px; top: -12px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #0b0e17; font-weight: 700; box-shadow: var(--shadow); }

/* Quotes */
.quote { background: var(--panel); border: 1px solid var(--panel-strong); border-radius: var(--radius); padding: 20px; }
.quote p { font-size: 18px; }
.quote cite { color: var(--muted); font-style: normal; display: block; margin-top: 8px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--panel-strong);
  border-radius: var(--radius);
  padding: 20px;
}
.about-image img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.form-status {
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--panel-strong);
}

.form-status-success {
  background: rgba(0, 224, 184, 0.12);
  border-color: rgba(0, 224, 184, 0.4);
}

.form-status-error {
  background: rgba(255, 124, 124, 0.12);
  border-color: rgba(255, 124, 124, 0.45);
}

.contact-form { background: transparent; border: 1px solid var(--panel-strong); border-radius: var(--radius); padding: 20px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 12px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid var(--panel-strong); color: var(--text);
  padding: 10px 12px; border-radius: 10px; outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,224,184,0.25); }
.form-foot { display: flex; align-items: center; gap: 12px; }
.privacy { color: var(--muted); }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.site-footer { border-top: 1px solid var(--panel-strong); margin-top: 24px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-grid a { color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border-radius: 12px; padding: 10px 14px; border: 1px solid transparent; font-weight: 600; }
.btn-primary { background: var(--primary); color: #ffffff; }
.btn-primary:hover { background: var(--primary-700); }
.btn-secondary { background: rgba(255,255,255,0.08); border-color: var(--panel-strong); color: var(--text); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.btn-ghost { color: var(--text); border: 1px solid var(--panel-strong); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* Responsive nav */
@media (max-width: 820px) {
  .hamburger { display: inline-block; }
  .nav-menu { position: fixed; right: 16px; top: 70px; width: calc(100% - 32px); background: rgba(10,13,22,0.9); border: 1px solid var(--panel-strong); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); flex-direction: column; gap: 6px; display: none; }
  .nav-menu.open { display: flex; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-illustration { order: -1; }
}

.contact-buttons {
  text-align: center;
  margin-top: 20px;
}

.contact-buttons .btn {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.contact-buttons .btn:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
  color: white;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
