/* ===== Design Tokens — DARK MODE ===== */
:root {
  --wood:        #c98a4a;   /* warm amber/wood accent (etwas heller für Kontrast) */
  --wood-dark:   #dcab72;   /* im Dark Mode heller: Eyebrows, Zahlen, Hover */
  --wood-light:  #e2b57e;
  --charcoal:    #0f0c09;   /* tiefe Bänder: Motto & Footer */
  --bg:          #14110d;   /* dunkle Basis */
  --bg-alt:      #1c1813;   /* leicht erhöhte Abschnitte */
  --surface:     #211c16;   /* Karten & Panels */
  --surface-2:   #191510;   /* Formularfelder */
  --ink:         #ece4d8;   /* helle Primärschrift */
  --muted:       #a89e8f;   /* gedämpfte Schrift */
  --line:        #332c24;   /* Ränder */
  --white:       #ffffff;   /* reine Lichtschrift auf Holz/Bildern */

  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 20px 50px rgba(0, 0, 0, 0.55);
  --shadow-sm:   0 6px 22px rgba(0, 0, 0, 0.40);
  --maxw:        1140px;

  --font-head:   "Fraunces", Georgia, serif;
  --font-body:   "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood-dark);
  margin: 0 0 0.75rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--wood); color: #17130f; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--wood-light); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--wood); color: var(--wood-dark); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 17, 13, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-head); font-weight: 700; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-name { font-size: 1.12rem; color: var(--ink); }

.nav-list { list-style: none; display: flex; align-items: center; gap: 2rem; margin: 0; padding: 0; }
.nav-list a { font-weight: 500; color: var(--ink); transition: color .2s; }
.nav-list a:hover { color: var(--wood-dark); }
.nav-cta { padding: 0.55rem 1.2rem; border-radius: 100px; background: var(--wood); color: #17130f !important; }
.nav-cta:hover { background: var(--wood-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(217, 165, 106, 0.16), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-lead { font-size: 1.18rem; color: var(--muted); max-width: 52ch; margin: 1.5rem 0 0; }
.hero-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
/* Hero zeigt das Adler-Logo statt eines Fotos */
.hero-media-logo { display: flex; justify-content: center; }
.hero-media-logo img {
  width: 100%; max-width: 340px; aspect-ratio: 1/1; object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.55));
}

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 620px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin: 0.75rem 0 0; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--wood); }
.card-media { aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.6rem 1.7rem 2rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); margin: 0 0 1.2rem; }
.card-list { list-style: none; margin: 0; padding: 0; }
.card-list li { position: relative; padding-left: 1.4rem; margin: 0.4rem 0; font-size: 0.95rem; }
.card-list li::before { content: "✓"; position: absolute; left: 0; color: var(--wood); font-weight: 700; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-text p { color: var(--muted); margin: 1rem 0; }
.stats { display: flex; gap: 2.2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--wood-dark); }
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ===== Features / Warum wir ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--wood); }
.feature-num {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(201, 138, 74, 0.16); color: var(--wood-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1.1rem;
}
.feature h3 { margin-bottom: 0.55rem; font-size: 1.25rem; }
.feature p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ===== Zufriedene Kunden ===== */
#kunden { border-bottom: 1px solid var(--line); }
.clients {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.client-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
  white-space: nowrap; display: inline-block;
}
.client:hover .client-name { color: var(--ink); transform: translateY(-2px); }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item {
  position: relative; margin: 0; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: flex-end;
  color: var(--white); font-weight: 600; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7)); }
.gallery-item figcaption { position: relative; z-index: 1; padding: 1rem 1.1rem; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== Contact ===== */
.contact-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.contact-intro {
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(10,8,6,0.78), rgba(10,8,6,0.88)),
    url("../images/photo-2.jpg") center/cover no-repeat;
  color: var(--white);
}
.contact-intro .eyebrow { color: var(--wood-light); }
.contact-intro p { color: #e6ddd0; }
.contact-details { list-style: none; margin: 2rem 0 0; padding: 0; }
.contact-details li { margin: 1.1rem 0; }
.contact-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: #c3b7a5; margin-bottom: 0.15rem; }
.contact-details a { color: var(--white); border-bottom: 1px solid rgba(226, 181, 126, 0.6); }
.contact-details a:hover { color: var(--wood-light); }

/* Social-Media-Icons */
.social-icons { display: inline-flex; gap: 0.6rem; margin-top: 0.3rem; }
.social-icons a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 50%;
  color: var(--white);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.social-icons a:hover {
  background: var(--wood); border-color: var(--wood); color: #17130f;
  transform: translateY(-2px);
}
.social-icons svg { width: 20px; height: 20px; fill: currentColor; display: block; }

.contact-form { padding: clamp(2rem, 4vw, 3rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--ink); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
  font-family: inherit; font-size: 0.98rem; resize: vertical;
}
.field select option { color: #17130f; }
.field input::placeholder, .field textarea::placeholder { color: #7c7264; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--wood); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,138,74,0.22);
}
.form-status { margin: 1rem 0 0; font-size: 0.95rem; min-height: 1.2em; }
.form-status.ok { color: #5cc47f; }
.form-status.err { color: #ef6f5b; }

/* ===== Footer ===== */
.site-footer { background: var(--charcoal); color: #b8ae9e; padding: 3rem 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-footer .brand-name { color: var(--white); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: #b8ae9e; transition: color .2s; }
.footer-nav a:hover { color: var(--wood-light); }
.copyright { width: 100%; font-size: 0.85rem; color: #7d7565; margin: 0.5rem 0 0; border-top: 1px solid #262019; padding-top: 1.2rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
    padding: 0.5rem 24px 1.2rem;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { display: inline-block; text-align: center; margin-top: 0.5rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
