/* Performance Rentals — Shared Stylesheet */
:root {
  --ink: #0a0a0a; --ink-2: #141414; --ink-3: #1c1c1c;
  --bone: #f5f5f3; --bone-2: #b8b3a8; --paper: #faf6ee;
  --terra: #c8102e; --terra-2: #e3142f; --gold: #d4a574;
  --line: rgba(244, 237, 224, 0.12); --line-strong: rgba(244, 237, 224, 0.25);
  --grid: 1440px; --pad: clamp(20px, 4vw, 56px);
  --display: 'Anton', sans-serif; --serif: 'Playfair Display', serif; --body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--ink); color: var(--bone); font-weight: 300; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--terra); color: var(--bone); }
body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>"); opacity: 0.05; pointer-events: none; z-index: 9999; mix-blend-mode: overlay; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px var(--pad); display: flex; align-items: center; justify-content: space-between; transition: all 0.4s var(--ease); background: linear-gradient(to bottom, rgba(10,10,10,0.85), transparent); }
.nav.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); padding: 12px var(--pad); }
.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo img { height: 44px; width: 44px; object-fit: contain; }
.nav__logo-text { font-family: var(--display); font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }
.nav__logo-text small { display: block; font-family: var(--body); font-size: 9px; letter-spacing: 0.25em; color: var(--bone-2); font-weight: 500; margin-top: 4px; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__link { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; position: relative; padding: 4px 0; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--terra); transition: width 0.3s var(--ease); }
.nav__link:hover::after { width: 100%; }
.nav__cta { background: var(--bone); color: var(--ink); padding: 12px 22px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.nav__cta:hover { background: var(--terra); color: var(--bone); transform: translateY(-2px); }
.nav__cta::after { content: '→'; transition: transform 0.3s var(--ease); }
.nav__cta:hover::after { transform: translateX(4px); }
.nav__burger { display: none; }
.nav__mobile { display: none; }
@media (max-width: 900px) {
  .nav__logo-text { display: none; }
  .nav__links { display: none; }
  .nav__burger { display: flex; flex-direction: column; gap: 5px; width: 32px; cursor: pointer; }
  .nav__burger span { width: 100%; height: 2px; background: var(--bone); }
  .nav__mobile { position: fixed; inset: 0; background: var(--ink); z-index: 99; display: none; flex-direction: column; padding: 100px var(--pad) 40px; gap: 24px; }
  .nav__mobile.open { display: flex; }
  .nav__mobile a { font-family: var(--display); font-size: 32px; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
}

.car-hero { min-height: 95vh; position: relative; display: grid; align-items: center; padding: 140px var(--pad) 80px; overflow: hidden; background: var(--ink); }
.car-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.4) 70%, rgba(10,10,10,0.85) 100%); z-index: 1; pointer-events: none; }
.car-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,16,46,0.15), transparent 60%); z-index: 1; pointer-events: none; }
.car-hero__inner { max-width: var(--grid); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; width: 100%; position: relative; z-index: 2; }
.car-hero__breadcrumb { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-2); margin-bottom: 24px; }
.car-hero__breadcrumb a { color: var(--bone-2); transition: color 0.2s; }
.car-hero__breadcrumb a:hover { color: var(--terra); }
.car-hero__title { font-family: var(--display); font-size: clamp(56px, 9vw, 140px); line-height: 0.85; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 24px; }
.car-hero__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--terra); text-transform: none; }
.car-hero__lede { font-size: clamp(15px, 1.4vw, 18px); color: var(--bone-2); margin-bottom: 32px; line-height: 1.5; max-width: 540px; }
.car-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.car-hero__visual { position: relative; aspect-ratio: 4/3; background: var(--ink-2); border: 1px solid rgba(200,16,46,0.3); display: grid; place-items: center; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(200,16,46,0.15); }
.car-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.car-hero__visual-placeholder { font-family: var(--display); font-size: clamp(40px, 6vw, 80px); color: rgba(245,245,243,0.08); text-transform: uppercase; letter-spacing: 0.05em; text-align: center; padding: 20px; }
@media (max-width: 900px) { .car-hero__inner { grid-template-columns: 1fr; } .car-hero { min-height: auto; padding: 120px var(--pad) 60px; } }

.btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.4s var(--ease); }
.btn--primary { background: var(--terra); color: var(--bone); }
.btn--primary:hover { background: var(--terra-2); transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(200,16,46,0.5); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--bone); }
.btn--ghost:hover { border-color: var(--bone); background: var(--bone); color: var(--ink); }
.btn::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn:hover::after { transform: translateX(4px); }

.section { padding: clamp(80px, 12vw, 160px) var(--pad); max-width: var(--grid); margin: 0 auto; position: relative; }
.section--alt { background: var(--ink-2); max-width: none; }
.section--alt .section__inner { max-width: var(--grid); margin: 0 auto; }
.section__head { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: end; margin-bottom: 60px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.section__num { font-family: var(--display); font-size: 14px; letter-spacing: 0.2em; color: var(--terra); }
.section__title { font-family: var(--display); font-size: clamp(40px, 6vw, 88px); line-height: 0.9; letter-spacing: -0.01em; text-transform: uppercase; }
.section__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--terra); text-transform: none; }
.section__subtitle { font-size: clamp(15px, 1.4vw, 17px); color: var(--bone-2); max-width: 520px; line-height: 1.6; }
@media (max-width: 768px) { .section__head { grid-template-columns: 1fr; } }

.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.spec-item { background: var(--ink); padding: 32px 24px; }
.section--alt .spec-item { background: var(--ink-2); }
.spec-item__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-2); margin-bottom: 8px; }
.spec-item__value { font-family: var(--display); font-size: clamp(28px, 3.5vw, 44px); line-height: 1; color: var(--bone); letter-spacing: -0.01em; }
.spec-item__value small { font-size: 14px; color: var(--bone-2); margin-left: 4px; }
@media (max-width: 768px) { .specs-grid { grid-template-columns: 1fr 1fr; } }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); }
.deal { background: var(--ink); padding: 40px 32px; display: flex; flex-direction: column; gap: 16px; position: relative; transition: background 0.4s var(--ease); }
.section--alt .deal { background: var(--ink-2); }
.deal:hover { background: var(--ink-2); }
.deal--featured { background: var(--ink-2); }
.section--alt .deal--featured { background: var(--ink-3); }
.deal--featured::before { content: 'BELIEBT'; position: absolute; top: 16px; right: 16px; background: var(--terra); color: var(--bone); font-size: 10px; letter-spacing: 0.2em; padding: 4px 8px; font-weight: 700; }
.deal__name { font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.deal__period { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-2); }
.deal__price { font-family: var(--display); font-size: 64px; line-height: 1; color: var(--bone); margin-top: 8px; }
.deal__price small { font-size: 24px; color: var(--bone-2); }
.deal__features { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.deal__features li { font-size: 13px; color: var(--bone-2); display: flex; align-items: center; gap: 10px; }
.deal__features li::before { content: '✓'; color: var(--terra); font-weight: 700; }
.deal__btn { margin-top: 24px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.deal__btn:hover { color: var(--terra); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(200px, auto); gap: 16px; }
.gallery__item { background: var(--ink-2); border: 1px solid var(--line); overflow: hidden; position: relative; transition: all 0.4s var(--ease); }
.gallery__item:hover { border-color: var(--terra); transform: translateY(-2px); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item-placeholder { font-family: var(--display); font-size: 24px; color: rgba(245,245,243,0.1); letter-spacing: 0.1em; text-transform: uppercase; padding: 20px; text-align: center; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall img { aspect-ratio: 2/3; }
.gallery__item--wide img { aspect-ratio: 16/9; }
.gallery__item:not(.gallery__item--tall):not(.gallery__item--wide) img { aspect-ratio: 4/3; }
@media (max-width: 768px) { 
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(180px, auto); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item--tall img { aspect-ratio: 4/3; }
}

.description { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.description h3 { font-family: var(--display); font-size: clamp(32px, 4vw, 56px); line-height: 1; text-transform: uppercase; margin-bottom: 24px; }
.description h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--terra); text-transform: none; }
.description p { color: var(--bone-2); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.description strong { color: var(--bone); font-weight: 600; }
@media (max-width: 768px) { .description { grid-template-columns: 1fr; gap: 32px; } }

.cities { background: var(--ink-2); padding: 80px var(--pad); }
.cities__inner { max-width: var(--grid); margin: 0 auto; }
.cities__title { font-family: var(--display); font-size: clamp(28px, 3.5vw, 44px); text-transform: uppercase; margin-bottom: 16px; letter-spacing: -0.01em; }
.cities__title em { font-family: var(--serif); font-style: italic; color: var(--terra); text-transform: none; font-weight: 400; }
.cities__sub { color: var(--bone-2); margin-bottom: 32px; max-width: 600px; }
.cities__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cities__item { background: var(--ink-2); padding: 24px 20px; transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: space-between; color: var(--bone); }
.cities__item:hover { background: var(--ink-3); color: var(--terra); padding-left: 28px; }
.cities__item span { font-family: var(--display); font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.cities__item::after { content: '→'; opacity: 0; transition: all 0.3s var(--ease); }
.cities__item:hover::after { opacity: 1; }

.cta { position: relative; padding: clamp(100px, 14vw, 200px) var(--pad); text-align: center; overflow: hidden; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,16,46,0.20), transparent 60%), var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.cta__title { font-family: var(--display); font-size: clamp(56px, 11vw, 160px); line-height: 0.85; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 32px; }
.cta__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--terra); text-transform: none; }
.cta__sub { font-size: 17px; color: var(--bone-2); max-width: 540px; margin: 0 auto 48px; }
.cta__buttons { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.faq__inner { max-width: 980px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-size: clamp(18px, 2.2vw, 26px); text-transform: uppercase; text-align: left; transition: color 0.3s; }
.faq__q:hover { color: var(--terra); }
.faq__q-icon { font-family: var(--body); font-size: 24px; color: var(--terra); transition: transform 0.4s var(--ease); }
.faq__item.open .faq__q-icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); color: var(--bone-2); line-height: 1.7; }
.faq__item.open .faq__a { max-height: 500px; padding: 0 0 28px 0; }

.footer { padding: 80px var(--pad) 32px; background: var(--ink); border-top: 1px solid var(--line); }
.footer__inner { max-width: var(--grid); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer__brand { font-family: var(--display); font-size: clamp(48px, 8vw, 96px); line-height: 0.85; text-transform: uppercase; margin-bottom: 16px; }
.footer__tagline { color: var(--bone-2); max-width: 320px; font-size: 14px; }
.footer__col h4 { font-family: var(--display); font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 20px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--bone-2); transition: color 0.2s; }
.footer__col a:hover { color: var(--terra); }
.footer__bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 24px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-2); flex-wrap: wrap; gap: 16px; }
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; } }

.fab { position: fixed; bottom: 24px; right: 24px; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5); z-index: 50; transition: 0.3s var(--ease); }
.fab:hover { transform: scale(1.1) rotate(-8deg); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Nav Dropdown — added */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav__dropdown-trigger::after { content: '▾'; font-size: 9px; opacity: 0.6; transition: transform 0.3s var(--ease); }
.nav__dropdown:hover .nav__dropdown-trigger::after { transform: rotate(180deg); }
.nav__dropdown-menu { position: absolute; top: 100%; left: -16px; padding-top: 16px; opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); pointer-events: none; min-width: 280px; }
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__dropdown-inner { background: var(--ink); border: 1px solid var(--line); padding: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.nav__dropdown-item { display: flex; align-items: center; gap: 14px; padding: 12px 14px; text-decoration: none; color: var(--bone); transition: background 0.2s var(--ease); }
.nav__dropdown-item:hover { background: var(--ink-2); }
.nav__dropdown-item img { width: 60px; height: 45px; object-fit: cover; flex-shrink: 0; }
.nav__dropdown-item-text { flex: 1; }
.nav__dropdown-item-name { font-family: var(--display); font-size: 16px; line-height: 1; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 4px; }
.nav__dropdown-item-meta { font-size: 11px; color: var(--bone-2); letter-spacing: 0.08em; text-transform: uppercase; }

/* Hero quick-links */
.hero__quick-link { font-family: var(--display); font-size: 11px; letter-spacing: 0.15em; color: var(--bone-2); text-transform: uppercase; text-decoration: none; padding: 10px 16px; border: 1px solid var(--line); transition: all 0.3s var(--ease); background: rgba(20,20,20,0.6); backdrop-filter: blur(10px); }
.hero__quick-link:hover { border-color: var(--terra); color: var(--bone); background: rgba(200,16,46,0.15); transform: translateY(-2px); }

/* Trust-Bar (Social Proof unter Hero) */
.trust-bar { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px var(--pad); }
.trust-bar__inner { max-width: var(--grid); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.trust-bar__item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.trust-bar__big { font-family: var(--display); font-size: 24px; color: var(--terra); letter-spacing: 0.02em; line-height: 1; }
.trust-bar__label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bone-2); }
@media (max-width: 768px) { .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* Subtle entry animations für Cards */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.car { animation: fadeUp 0.8s var(--ease) backwards; }
.car:nth-child(1) { animation-delay: 0.1s; }
.car:nth-child(2) { animation-delay: 0.2s; }
.car:nth-child(3) { animation-delay: 0.3s; }
.car:nth-child(4) { animation-delay: 0.4s; }

/* Sticky Mobile-Conversion-Bar */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,10,10,0.96); backdrop-filter: blur(20px); border-top: 1px solid var(--terra); padding: 14px var(--pad); z-index: 95; }
.sticky-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 12px; max-width: 600px; margin: 0 auto; align-items: center; }
.sticky-cta__txt { font-size: 12px; color: var(--bone-2); line-height: 1.3; }
.sticky-cta__txt strong { display: block; color: var(--bone); font-size: 13px; font-weight: 600; }
.sticky-cta__btn { background: var(--terra); color: var(--bone); padding: 12px 18px; font-family: var(--display); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: all 0.3s var(--ease); }
.sticky-cta__btn:hover { background: var(--terra-2); }
@media (max-width: 768px) { .sticky-cta { display: block; } body { padding-bottom: 80px; } }

/* Premium glow accent on hovers */
.btn--primary { box-shadow: 0 8px 32px rgba(200,16,46,0.25); }
.btn--primary:hover { box-shadow: 0 12px 40px rgba(200,16,46,0.45); }
