/* ─────────────────────────────────────────────
   SELF-HOSTED FONTS (DSGVO-konform)
   Dateien herunterladen: https://gwfh.mranftl.com/fonts/playfair-display
   und https://gwfh.mranftl.com/fonts/inter
   → woff2-Dateien nach public/fonts/ legen
───────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-v37-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-v37-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-v19-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v19-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v19-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v19-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v19-latin-700.woff2') format('woff2');
}

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────────── */
:root {
  --bg-primary:   #070707;
  --bg-secondary: #0d0d0d;
  --bg-card:      #121212;
  --bg-card-hover:#161616;
  --gold:         #d4ab64;
  --gold-light:   #e8c97e;
  --gold-dark:    #b8942e;
  --gold-shine:   #f5e4a0;
  --text-white:   #ffffff;
  --text-off:     #e8e8e8;
  --text-gray:    #aaaaaa;
  --text-muted:   #777777;
  --border-gold:  rgba(212, 171, 100, 0.18);
  --border-gold-hover: rgba(212, 171, 100, 0.45);

  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;
  --sp-40: 160px;
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  background:  var(--bg-primary);
  color:       var(--text-white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  overflow-x:  hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.12;
  font-weight: 700;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }

/* ─────────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────────── */
::-webkit-scrollbar            { width: 5px; }
::-webkit-scrollbar-track      { background: #070707; }
::-webkit-scrollbar-thumb      { background: #d4ab64; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover{ background: #e8c97e; }

/* ─────────────────────────────────────────────
   SELECTION & FOCUS
───────────────────────────────────────────── */
::selection    { background: rgba(212,171,100,.25); color: #fff; }
:focus-visible { outline: 2px solid #d4ab64; outline-offset: 2px; }

/* ─────────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulseGold {
  0%,100% { box-shadow: 0 0  0  0 rgba(212,171,100,.35); }
  50%     { box-shadow: 0 0  0 14px rgba(212,171,100,0);  }
}

@keyframes pulseGreen {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%     { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollDot {
  0%,100% { transform: translateY(0);   opacity: 1; }
  60%     { transform: translateY(6px); opacity: 0; }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes lineGrow {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─────────────────────────────────────────────
   GOLD TEXT UTILITIES
───────────────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, #d4ab64, #e8c97e, #d4ab64, #b8942e, #d4ab64);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.gold-shimmer {
  background: linear-gradient(90deg, #c9973a 0%, #d4ab64 20%, #f5e4a0 50%, #d4ab64 80%, #c9973a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav-transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%) !important;
}

#site-nav.nav-transparent a,
#site-nav.nav-transparent button,
#site-nav.nav-transparent span {
  text-shadow: 0 1px 8px rgba(0,0,0,1), 0 2px 16px rgba(0,0,0,0.8) !important;
}

.nav-scrolled {
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,171,100,.1);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}

/* Footer grid responsive */
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr !important; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr !important; } }
@media (min-width: 640px)  { .footer-bottom { flex-direction: row !important; justify-content: space-between !important; } }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-gold {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #9a7728, #b8942e, #c9973a, #d4ab64);
  background-size: 200% 100%;
  color: #060606;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background-position .5s ease;
  box-shadow: 0 2px 14px rgba(212,171,100,.16);
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,171,100,.28);
  background-position: right center;
}
.btn-gold:hover::after { left: 160%; }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #d4ab64;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid rgba(212,171,100,.5);
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all .25s ease;
}
.btn-outline:hover {
  background: rgba(212,171,100,.08);
  border-color: #d4ab64;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,171,100,.15);
  color: #e8c97e;
}
.btn-outline:active { transform: translateY(0); }

@media (max-width: 480px) {
  .btn-full-mobile { width: 100%; }
  .btn-gold    { padding: 13px 24px; font-size: 0.75rem; }
  .btn-outline { padding: 12px 24px; font-size: 0.75rem; }
}

/* ─────────────────────────────────────────────
   GLASS CARD
───────────────────────────────────────────── */
.glass-card {
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.glass-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: 0 16px 48px rgba(212,171,100,0.07), 0 4px 12px rgba(0,0,0,.5);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   PREMIUM CARD
───────────────────────────────────────────── */
.glass-card-premium {
  background: rgba(16, 16, 16, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 171, 100, 0.2);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
  position: relative;
}
.glass-card-premium::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,171,100,0.6), transparent);
  border-radius: 0 0 2px 2px;
  z-index: 2;
}
.glass-card-premium:hover {
  border-color: rgba(212, 171, 100, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212,171,100,0.06);
  transform: translateY(-6px);
}

/* ─────────────────────────────────────────────
   SECTION PADDING
───────────────────────────────────────────── */
.section-padding {
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 1280px) { .section-padding { padding-top: 128px; padding-bottom: 128px; } }
@media (max-width: 1024px) { .section-padding { padding-top: 100px; padding-bottom: 100px; } }
@media (max-width: 768px)  { .section-padding { padding-top: 80px;  padding-bottom: 80px;  } }
@media (max-width: 480px)  { .section-padding { padding-top: 64px;  padding-bottom: 64px;  } }

/* ─────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 96px;
}
@media (max-width: 1024px) { .section-header { margin-bottom: 72px; } }
@media (max-width: 768px)  { .section-header { margin-bottom: 56px; } }
@media (max-width: 480px)  { .section-header { margin-bottom: 48px; } }

/* ─────────────────────────────────────────────
   CONTAINER SYSTEM
───────────────────────────────────────────── */
.cx    { max-width: 80rem;  margin-left: auto; margin-right: auto; width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }
.cx-lg { max-width: 64rem;  margin-left: auto; margin-right: auto; width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }
.cx-md { max-width: 56rem;  margin-left: auto; margin-right: auto; width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }
.cx-sm { max-width: 48rem;  margin-left: auto; margin-right: auto; width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }

@media (min-width: 768px)  { .cx, .cx-lg, .cx-md, .cx-sm { padding-left: 2rem;   padding-right: 2rem;   } }
@media (min-width: 1280px) { .cx, .cx-lg, .cx-md, .cx-sm { padding-left: 3rem;   padding-right: 3rem;   } }

/* ─────────────────────────────────────────────
   GRID UTILITIES
───────────────────────────────────────────── */
.grid-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px)  { .grid-services { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .grid-services { grid-template-columns: repeat(3, 1fr); gap: 36px; } }

.grid-vehicles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) { .grid-vehicles { grid-template-columns: repeat(2, 1fr); gap: 48px; } }

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

/* ─────────────────────────────────────────────
   HERO LAYOUT
───────────────────────────────────────────── */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 7, 0.62) 0%,
    rgba(7, 7, 7, 0.38) 30%,
    rgba(7, 7, 7, 0.52) 60%,
    rgba(7, 7, 7, 0.98) 100%
  );
}

.hero-text-block {
  text-align: center;
  width: 100%;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 160px;
  padding-bottom: 128px;
}
@media (min-width: 768px)  { .hero-text-block { padding-left: 2rem; padding-right: 2rem; padding-top: 180px; padding-bottom: 140px; } }
@media (min-width: 1280px) { .hero-text-block { padding-top: 200px; padding-bottom: 160px; } }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

/* ─────────────────────────────────────────────
   TEXT SIZES
───────────────────────────────────────────── */
.text-hero {
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.text-section-title {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────
   SECTION DECORATORS
───────────────────────────────────────────── */
.section-divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4ab64, transparent);
  margin: 2rem auto;
  border-radius: 1px;
}
.section-divider-left {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, #d4ab64, transparent);
  margin: 1.5rem 0;
  border-radius: 1px;
}

.section-label {
  color: #d4ab64;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.eyebrow {
  display: inline-block;
  color: #d4ab64;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────── */
.marquee-container {
  overflow: hidden;
  width: 100%;
}
.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-content:hover { animation-play-state: paused; }

/* ─────────────────────────────────────────────
   SCROLL INDICATOR
───────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.6;
  transition: opacity .3s;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-dot { animation: scrollDot 1.8s ease infinite; }
.scroll-dot:nth-child(2) { animation-delay: 0.3s; }
.scroll-dot:nth-child(3) { animation-delay: 0.6s; }

/* ─────────────────────────────────────────────
   FORM ELEMENTS
───────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 171, 100, 0.82);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 171, 100, 0.2);
  border-radius: 6px;
  color: white;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-input:focus {
  border-color: #d4ab64;
  box-shadow: 0 0 0 3px rgba(212,171,100,.1);
  background: rgba(212,171,100,.02);
}
.form-input::placeholder { color: rgba(255,255,255,.28); }

.form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 171, 100, 0.2);
  border-radius: 6px;
  color: white;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
  appearance: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4ab64' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select:focus {
  border-color: #d4ab64;
  box-shadow: 0 0 0 3px rgba(212,171,100,.1);
}
.form-select option { background: #141414; color: white; }

/* ─────────────────────────────────────────────
   PAGE HERO (subpages)
───────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 90px;
  min-height: 52vh;
  margin-top: -80px;
  padding-top: 220px;
}
@media (max-width: 768px) { .page-hero { padding: 120px 16px 70px; padding-top: 200px; min-height: 44vh; } }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   CARDS & HOVER
───────────────────────────────────────────── */
.card-hover {
  transition: transform .35s ease, box-shadow .35s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.4);
}

.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform .7s ease; display: block; width: 100%; }
.img-zoom:hover img { transform: scale(1.05); }

/* ─────────────────────────────────────────────
   FEATURE LIST
───────────────────────────────────────────── */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.feature-item::before {
  content: '✦';
  color: #d4ab64;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 0.55rem;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   SPEC GRID
───────────────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spec-item {
  background: rgba(212, 171, 100, 0.04);
  border: 1px solid rgba(212, 171, 100, 0.14);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  transition: border-color .3s ease;
}
.spec-item:hover { border-color: rgba(212,171,100,.32); }

/* ─────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────── */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content.open { max-height: 700px; }

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────────────────────────────────
   TOAST
───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  animation: fadeInUp .3s ease;
  min-width: 280px;
  max-width: calc(100vw - 2rem);
  text-align: center;
  backdrop-filter: blur(12px);
}
.toast-success {
  background: rgba(10, 28, 16, 0.98);
  border: 1px solid #4ade80;
  color: #4ade80;
}
.toast-error {
  background: rgba(28, 10, 10, 0.98);
  border: 1px solid #f87171;
  color: #f87171;
}

/* ─────────────────────────────────────────────
   FLOATING BUTTONS
───────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
  animation: pulseGreen 2.5s ease infinite;
}
.whatsapp-fab:hover { transform: scale(1.12); }

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #d4ab64, #b8942e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(212,171,100,.28);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212,171,100,.45);
}

/* ─────────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.99);
  border-top: 1px solid rgba(212,171,100,.18);
  backdrop-filter: blur(20px);
}

/* ─────────────────────────────────────────────
   ORNAMENT
───────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,171,100,.4), transparent);
  max-width: 80px;
}

/* ─────────────────────────────────────────────
   GLOW
───────────────────────────────────────────── */
.glow-gold { box-shadow: 0 0 32px rgba(212,171,100,.18); }

/* ─────────────────────────────────────────────
   TRUST PILLS
───────────────────────────────────────────── */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(212, 171, 100, 0.18);
  border-radius: 999px;
  font-size: 0.66rem;
  color: rgba(212, 171, 100, 0.75);
  letter-spacing: 0.07em;
  white-space: nowrap;
  background: rgba(212,171,100,.04);
}

/* ─────────────────────────────────────────────
   GHOST DISPLAY TEXT
───────────────────────────────────────────── */
.ghost-text {
  font-size: clamp(5rem, 14vw, 16rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   DECORATIVE QUOTE MARK
───────────────────────────────────────────── */
.deco-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(212, 171, 100, 0.07);
  font-family: Georgia, 'Times New Roman', serif;
  user-select: none;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   GOLD HAIRLINE
───────────────────────────────────────────── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 171, 100, 0.3), transparent);
  width: 100%;
}

/* ─────────────────────────────────────────────
   MISC UTILITIES
───────────────────────────────────────────── */
.break-word { word-break: break-word; overflow-wrap: anywhere; }

/* ─────────────────────────────────────────────
   BOOKING FORM GRIDS
───────────────────────────────────────────── */
.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .form-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Range slider */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #d4ab64;
  border: 2px solid #080808;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(212,171,100,0.18);
  transition: box-shadow .2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(212,171,100,0.22); }
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #d4ab64;
  border: 2px solid #080808;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(212,171,100,0.18);
}

/* Date / time */
input[type="date"],
input[type="time"] { color-scheme: dark; }
