/* =========================================================
   VIP SCHUMANN - STYLE.CSS
   Vollständiges Design der One-Page-Webseite
   ========================================================= */

:root {
  --black: #000000;
  --near-black: #111111;
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --off-white: #f6f5f2;
  --gray: #686868;
  --line: #dedede;
  --gold: #d4af37;
  --gold-dark: #a9871f;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --content-width: 1240px;
  --header-height: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { background: var(--black); color: var(--white); font-family: var(--sans); line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.skip-link { position: fixed; top: -80px; left: 16px; z-index: 2000; background: var(--gold); color: var(--black); padding: 12px 18px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; background: rgba(255,255,255,.97); color: var(--black); border-bottom: 1px solid rgba(0,0,0,.08); backdrop-filter: blur(12px); }
.navbar { min-height: var(--header-height); max-width: var(--content-width); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.15rem; font-weight: 700; letter-spacing: .02em; }
.brand img { width: 58px; height: 52px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { position: relative; font-size: .9rem; font-weight: 600; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a.active::after { right: 0; }
.nav-cta { background: var(--black); color: var(--white); padding: 11px 20px; border-radius: 999px; transition: background .25s ease, color .25s ease; }
.nav-cta:hover { background: var(--gold); color: var(--black); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { width: 25px; height: 2px; margin: 0 auto; background: var(--black); transition: transform .25s ease, opacity .25s ease; }

.hero { min-height: 100svh; padding: calc(var(--header-height) + 70px) 24px 70px; position: relative; display: grid; place-items: center; text-align: center; isolation: isolate; background: url("Fuhrpark-Firstclass-Limo.png") center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55) 50%, rgba(0,0,0,.72)); }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.68)); }
.hero-content { width: min(860px, 100%); }
.hero-logo { width: min(360px, 72vw); max-height: 180px; margin: 0 auto 26px; object-fit: contain; border-radius: 12px; mix-blend-mode: screen; filter: grayscale(1) brightness(2.2); }
.eyebrow { color: var(--gold); margin-bottom: 10px; font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.16; }
h1 { font-size: clamp(2.6rem, 6vw, 5.7rem); text-wrap: balance; }
.hero-subtitle { margin-top: 18px; font-size: clamp(1rem, 2vw, 1.3rem); letter-spacing: .22em; text-transform: uppercase; }
.hero-actions { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.scroll-hint { position: absolute; bottom: 24px; display: flex; flex-direction: column; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; opacity: .82; }
.scroll-hint span { font-size: 1.2rem; animation: bounce 1.5s infinite; }
@keyframes bounce { 50% { transform: translateY(6px); } }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--black); }
.button-light:hover { background: var(--gold); }
.button-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.button-outline:hover { background: var(--white); color: var(--black); }
.button-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.button-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.section { width: min(var(--content-width), calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { text-align: center; margin-bottom: 42px; }
.section-heading h2 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.6rem); }
.card-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.content-card { min-height: 265px; position: relative; padding: 34px; background: var(--white); color: var(--near-black); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .25s ease; }
.content-card:hover { transform: translateY(-7px); }
.card-number { display: block; color: var(--gold-dark); margin-bottom: 42px; font-weight: 700; letter-spacing: .12em; }
.content-card h3 { margin-bottom: 12px; font-size: 1.55rem; }
.content-card p { color: #494949; }

.about-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; padding: clamp(30px, 6vw, 70px); background: var(--white); color: var(--near-black); border-radius: var(--radius); box-shadow: var(--shadow); }
.lead { margin-bottom: 20px; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.6rem); line-height: 1.35; }
.about-copy > p:not(.lead) { color: #4a4a4a; }
.text-link { display: inline-flex; gap: 8px; margin-top: 26px; padding-bottom: 4px; border-bottom: 2px solid var(--gold); font-weight: 700; }
.quality-list { list-style: none; display: grid; gap: 18px; }
.quality-list li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.quality-list li:last-child { border-bottom: 0; }
.quality-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--black); color: var(--gold); font-weight: 800; }
.quality-list strong, .quality-list small { display: block; }
.quality-list small { color: var(--gray); margin-top: 2px; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card { display: flex; flex-direction: column; background: var(--white); color: var(--near-black); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease; }
.fleet-card:hover { transform: translateY(-7px); }
.fleet-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.fleet-content { height: 100%; display: flex; flex-direction: column; padding: 28px; }
.fleet-category { color: var(--gold-dark); margin-bottom: 5px; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.fleet-content h3 { font-size: 1.6rem; }
.fleet-content > p:not(.fleet-category) { color: #555; margin: 12px 0 26px; }
.fleet-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.fleet-footer > span { font-size: .85rem; font-weight: 700; }
.fleet-footer .button { padding-inline: 17px; font-size: .82rem; }

.contact-section { padding-bottom: 120px; }
.form-panel { padding: clamp(26px, 5vw, 60px); background: var(--white); color: var(--near-black); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-intro { max-width: 720px; margin-bottom: 32px; }
.form-intro h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.form-intro p { color: var(--gray); margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { margin-bottom: 7px; font-size: .86rem; font-weight: 700; }
.form-field input, .form-field select { width: 100%; min-height: 52px; padding: 12px 14px; background: var(--white); color: var(--near-black); border: 1px solid #aaa; border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input:focus, .form-field select:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 4px rgba(212,175,55,.18); }
.form-field.invalid input, .form-field.invalid select { border-color: #a90000; }
.error-message { min-height: 20px; color: #a90000; margin-top: 4px; font-size: .76rem; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; color: #444; font-size: .84rem; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--black); flex: 0 0 auto; }
.consent-error { display: block; }
.submit-button { width: 100%; margin-top: 20px; }
.form-note { margin-top: 12px; color: var(--gray); text-align: center; font-size: .78rem; }
.form-status { min-height: 24px; margin-top: 12px; text-align: center; font-weight: 700; }
.form-status.success { color: #176c35; }
.form-status.error { color: #a90000; }

.site-footer { padding: 55px 24px 30px; background: var(--white); color: var(--black); text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.25rem; font-weight: 700; }
.footer-brand img { width: 52px; height: 46px; object-fit: contain; }
.site-footer > p { margin-top: 8px; color: #555; }
.footer-links { margin-top: 22px; display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; font-size: .86rem; font-weight: 600; }
.footer-links a:hover { color: var(--gold-dark); }
.copyright { padding-top: 20px; border-top: 1px solid var(--line); margin-top: 28px !important; font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { display: grid; grid-template-columns: 1fr 1fr; }
  .fleet-card > img { height: 100%; aspect-ratio: auto; }
  .about-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --header-height: 74px; }
  .navbar { padding-inline: 18px; }
  .brand img { width: 48px; height: 44px; }
  .brand span { font-size: 1rem; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: fixed; inset: var(--header-height) 0 auto; max-height: 0; overflow: hidden; display: grid; gap: 0; background: var(--white); transition: max-height .3s ease; box-shadow: 0 20px 30px rgba(0,0,0,.12); }
  .nav-links.open { max-height: 430px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 17px 24px; }
  .nav-cta { border-radius: 0; }
  .hero { min-height: 92svh; }
  .hero-logo { max-height: 135px; }
  .hero-subtitle { letter-spacing: .12em; }
  .section { width: min(100% - 30px, var(--content-width)); padding: 80px 0; }
  .services-grid, .form-grid { grid-template-columns: 1fr; }
  .fleet-card { display: flex; }
  .fleet-card > img { height: auto; aspect-ratio: 16/10; }
  .fleet-footer { align-items: flex-start; flex-direction: column; }
  .fleet-footer .button { width: 100%; }
}

@media (max-width: 460px) {
  h1 { font-size: 2.55rem; }
  .hero { padding-inline: 18px; }
  .hero-actions .button { width: 100%; }
  .content-card, .fleet-content { padding: 24px; }
  .about-panel, .form-panel { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
