  :root{
    --bg: #0b0b0d;
    --bg-alt: #141416;
    --bg-alt-2: #1b1b1e;
    --gold-1: #f0d38f;
    --gold-2: #c8963f;
    --gold-3: #8a6425;
    --chrome: #c9ced3;
    --chrome-dim: #6d7176;
    --text: #f2efe9;
    --text-muted: #96938c;
    --line: rgba(212,166,86,0.16);
    --gold-grad: linear-gradient(100deg, var(--gold-3) 0%, var(--gold-1) 45%, var(--gold-2) 70%, var(--gold-1) 100%);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:'Manrope', sans-serif;
    font-weight:300;
    line-height:1.6;
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Bebas Neue', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.02em;
    font-weight:600;
  }
  .mono{ font-family:'JetBrains Mono', monospace; }
  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  .wrap{ max-width:1120px; margin:0 auto; padding:0 24px; }
  .eyebrow{
    font-family:'JetBrains Mono', monospace;
    font-size:0.72rem;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--gold-1);
    display:flex;
    align-items:center;
    gap:12px;
  }
  .eyebrow::before{
    content:'';
    width:28px; height:1px;
    background:var(--gold-2);
  }
  ::selection{ background:var(--gold-2); color:#0a0a0c; }

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:18px; left:50%; transform:translateX(-50%); z-index:100;
    width:min(1120px, calc(100% - 32px));
    background:rgba(20,20,22,0.55);
    backdrop-filter:blur(18px) saturate(1.3);
    -webkit-backdrop-filter:blur(18px) saturate(1.3);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:100px;
    box-shadow:0 10px 40px rgba(0,0,0,0.35);
  }
  nav{
    max-width:1120px; margin:0 auto; padding:10px 10px 10px 22px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .brand{ display:flex; align-items:center; gap:10px; font-family:'Bebas Neue',sans-serif; letter-spacing:0.04em; font-size:1.05rem; }
  .brand img{ height:52px; width:auto; }
  .nav-links{ display:flex; gap:34px; font-size:0.82rem; letter-spacing:0.04em; text-transform:uppercase; }
  .nav-links a{ color:var(--text-muted); transition:color .25s; position:relative; }
  .nav-links a:hover, .nav-links a:focus-visible{ color:var(--gold-1); }
  .nav-links a.active{ color:var(--gold-1); }
  .nav-links a.active::after{
    content:''; position:absolute; left:0; right:0; bottom:-8px; height:1px; background:var(--gold-2);
  }

  /* mobile menu */
  .mobile-menu{
    display:none; position:fixed; inset:0; z-index:99;
    background:rgba(10,10,12,0.98);
    flex-direction:column; align-items:center; justify-content:safe center;
    gap:22px; overflow-y:auto; padding:90px 24px 40px;
  }
  .mobile-menu.open{ display:flex; }
  .mobile-menu a{
    font-family:'Bebas Neue',sans-serif; font-size:1.6rem; text-transform:uppercase; letter-spacing:0.04em;
    color:var(--text);
  }
  .mobile-menu a.active{ color:var(--gold-1); }
  .mobile-close{
    position:absolute; top:20px; right:24px; background:none; border:none; color:var(--text);
    font-size:1.8rem; cursor:pointer;
  }

  /* generic page hero (for sub-pages) */
  .page-hero{
    padding:150px 24px 70px; text-align:center;
    background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(200,150,63,0.12), transparent 60%), var(--bg);
    border-bottom:1px solid var(--line);
  }
  .page-hero h1{ font-size:clamp(2.2rem,5vw,3.6rem); margin-top:18px; }
  .page-hero p{ color:var(--text-muted); max-width:520px; margin:20px auto 0; }
  .crumb{ font-family:'JetBrains Mono',monospace; font-size:0.72rem; color:var(--text-muted); margin-top:22px; }
  .crumb a{ color:var(--gold-1); }
  .nav-cta{
    border:1px solid var(--gold-2); padding:9px 22px; font-size:0.78rem;
    letter-spacing:0.06em; text-transform:uppercase; white-space:nowrap;
    transition:background .25s, color .25s, transform .25s;
    border-radius:100px;
  }
  .nav-cta:hover{ background:var(--gold-2); color:#0a0a0c; transform:translateY(-1px); }
  .menu-btn{ display:none; background:none; border:none; color:var(--text); font-size:1.6rem; cursor:pointer; padding:6px; }
  .mobile-menu .mobile-call{
    margin-top:10px; border:1px solid var(--gold-2); padding:12px 28px; border-radius:100px;
    font-family:'JetBrains Mono',monospace; font-size:0.95rem; color:var(--gold-1); letter-spacing:0.03em;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center;
    padding:140px 24px 80px;
    background:
      radial-gradient(ellipse 900px 500px at 50% 15%, rgba(200,150,63,0.14), transparent 60%),
      var(--bg);
  }
  .hero-eyebrow{ margin-bottom:22px; }
  .hero h1{
    font-size:clamp(2.6rem, 7vw, 5.4rem);
    line-height:0.98;
    color:var(--text);
  }
  .hero h1 span{
    display:block;
    background:var(--gold-grad);
    background-size:200% 100%;
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    animation: sheen 7s linear infinite;
  }
  @keyframes sheen{
    0%{ background-position:0% 50%; }
    100%{ background-position:200% 50%; }
  }
  .hero p{
    max-width:520px; margin:26px auto 0;
    color:var(--text-muted); font-size:1.05rem; font-weight:300;
  }
  .hero-actions{ display:flex; gap:16px; margin-top:38px; flex-wrap:wrap; justify-content:center; }
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:15px 32px; font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase;
    font-family:'Bebas Neue', sans-serif; font-weight:500;
    transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s, color .3s;
    border-radius:100px;
  }
  .btn-primary{ background:var(--gold-grad); background-size:200% 100%; color:#0a0a0c; }
  .btn-primary:hover{ transform:translateY(-3px); box-shadow:0 14px 34px rgba(200,150,63,0.32); }
  .btn-ghost{ border:1px solid var(--line); color:var(--text); background:rgba(255,255,255,0.02); backdrop-filter:blur(6px); }
  .btn-ghost:hover{ border-color:var(--gold-2); color:var(--gold-1); transform:translateY(-3px); }

  /* car svg */
  .car-wrap{ width:min(720px, 88vw); margin:56px auto 0; opacity:0.95; }
  .car-line{
    fill:none;
    stroke:url(#carGrad);
    stroke-width:2.4;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:1400;
    stroke-dashoffset:1400;
    animation: draw 2.6s ease forwards 0.3s;
  }
  @keyframes draw{ to{ stroke-dashoffset:0; } }
  .glare{
    fill:url(#glareGrad);
    mix-blend-mode:screen;
    animation: glide 5s ease-in-out infinite 3s;
  }
  @keyframes glide{
    0%{ transform:translateX(-120%); opacity:0; }
    12%{ opacity:0.9; }
    50%{ transform:translateX(120%); opacity:0.9; }
    62%{ opacity:0; }
    100%{ transform:translateX(120%); opacity:0; }
  }

  .trust-bar{
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:26px 0;
  }
  .trust-bar .wrap{
    display:flex; flex-wrap:wrap; gap:28px; justify-content:center; align-items:center;
    font-family:'JetBrains Mono', monospace; font-size:0.82rem; color:var(--text-muted);
  }
  .trust-bar strong{ color:var(--gold-1); font-weight:500; }
  .stars{ color:var(--gold-1); letter-spacing:2px; }
  .dot{ color:var(--gold-3); }

  section{ padding:110px 0; }
  .section-head{ margin-bottom:56px; max-width:640px; }
  .section-head h2{ font-size:clamp(2rem, 4vw, 2.9rem); margin-top:16px; }
  .section-head p{ color:var(--text-muted); margin-top:16px; font-size:1.02rem; }

  /* ---------- UEBER UNS ---------- */
  .about{ background:var(--bg-alt); }
  .about-grid{
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:70px; align-items:center;
  }
  .about-text p{ color:var(--text-muted); margin-bottom:18px; font-size:1.02rem; }
  .about-text p:last-child{ margin-bottom:0; }
  .about-stats{
    display:grid; grid-template-columns:1fr 1fr; gap:14px;
    background:transparent; border:none;
  }
  .stat{ background:rgba(255,255,255,0.03); backdrop-filter:blur(10px); padding:32px 26px; border-radius:20px; transition:transform .3s, background .3s; }
  .stat:hover{ transform:translateY(-4px); background:rgba(255,255,255,0.05); }
  .stat .num{ font-family:'Bebas Neue',sans-serif; font-size:2.1rem; color:var(--gold-1); }
  .stat .lbl{ font-size:0.78rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.05em; margin-top:6px; }

  /* ---------- PRICING SPEC SHEET (signature) ---------- */
  .pricing{ background:var(--bg); }
  .spec-cols{
    display:grid; grid-template-columns:1fr 1fr; gap:0;
    border:1px solid var(--line);
    border-radius:24px; overflow:hidden;
    background:rgba(255,255,255,0.015);
  }
  .spec-col{ padding:0; }
  .spec-col + .spec-col{ border-left:1px solid var(--line); }
  .spec-col-head{
    padding:26px 32px; border-bottom:1px solid var(--line);
    display:flex; align-items:baseline; justify-content:space-between;
    background:var(--bg-alt);
  }
  .spec-col-head h3{ font-size:1.15rem; letter-spacing:0.06em; }
  .spec-col-head span{ font-family:'JetBrains Mono',monospace; font-size:0.7rem; color:var(--text-muted); }
  .pkg{ padding:28px 32px; border-bottom:1px solid var(--line); }
  .pkg:last-child{ border-bottom:none; }
  .pkg-top{ display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom:10px; }
  .pkg-top h4{ font-family:'Bebas Neue',sans-serif; font-size:1.05rem; letter-spacing:0.03em; display:flex; align-items:baseline; gap:10px; }
  .pkg-num{ color:var(--gold-2); font-family:'JetBrains Mono',monospace; font-size:0.85rem; }
  .pkg-price{ font-family:'JetBrains Mono',monospace; color:var(--gold-1); font-size:1.02rem; white-space:nowrap; }
  .pkg-desc{ color:var(--text-muted); font-size:0.92rem; }
  .pkg-desc b{ color:var(--text); font-weight:500; }
  .pricing-note{
    margin-top:20px; font-family:'JetBrains Mono',monospace; font-size:0.75rem;
    color:var(--text-muted); line-height:1.9;
  }

  /* ---------- GALLERY ---------- */
  .gallery{ background:var(--bg-alt); }
  .gallery-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); gap:2px;
  }
  .gtile{
    aspect-ratio:1; position:relative; overflow:hidden;
    background:var(--bg-alt-2);
    display:flex; align-items:center; justify-content:center;
    border-radius:20px;
  }
  .gtile svg{ width:46%; opacity:0.5; }
  .gtile::after{
    content:attr(data-label);
    position:absolute; bottom:14px; left:14px;
    font-family:'JetBrains Mono',monospace; font-size:0.68rem;
    color:var(--text-muted); letter-spacing:0.04em;
  }

  /* ---------- CONTACT ---------- */
  .contact{ background:var(--bg); }
  .contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; }
  .info-row{
    display:flex; justify-content:space-between; padding:16px 0;
    border-bottom:1px solid var(--line); gap:20px;
  }
  .info-row .k{ color:var(--text-muted); font-size:0.85rem; text-transform:uppercase; letter-spacing:0.05em; }
  .info-row .v{ text-align:right; }
  .info-row .v a:hover{ color:var(--gold-1); }
  .hours-table{ width:100%; }
  .hours-table tr{ border-bottom:1px solid var(--line); }
  .hours-table td{ padding:11px 0; font-family:'JetBrains Mono',monospace; font-size:0.86rem; }
  .hours-table td:first-child{ color:var(--text-muted); }
  .hours-table td:last-child{ text-align:right; }
  .map-card{
    border:1px solid var(--line); padding:36px; height:100%;
    display:flex; flex-direction:column; justify-content:space-between;
    background:rgba(255,255,255,0.03); backdrop-filter:blur(10px);
    border-radius:24px;
  }
  .map-card address{ font-style:normal; font-size:1.15rem; line-height:1.5; margin:14px 0 26px; }
  .social-row{ display:flex; gap:14px; margin-top:26px; }
  .social-btn{
    width:44px; height:44px; border:1px solid var(--line); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    transition:border-color .25s, color .25s, transform .25s;
    background:rgba(255,255,255,0.02);
  }
  .social-btn:hover{ transform:translateY(-3px); }
  .social-btn:hover{ border-color:var(--gold-2); color:var(--gold-1); }

  footer{
    border-top:1px solid var(--line); padding:40px 0;
    text-align:center; color:var(--text-muted); font-size:0.8rem;
  }
  footer .brand{ justify-content:center; margin-bottom:14px; }

  /* ---------- FEATURE BLOCKS (alternating image/text) ---------- */
  .feature-block{
    display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
    padding:70px 0; border-bottom:1px solid var(--line);
  }
  .feature-block:last-child{ border-bottom:none; }
  .feature-block.reverse .fb-media{ order:2; }
  .feature-block.reverse .fb-text{ order:1; }
  .fb-media{ overflow:hidden; border:1px solid var(--line); aspect-ratio:4/3; border-radius:24px; }
  .fb-media img{ transition:transform .6s cubic-bezier(.2,.8,.2,1); }
  .fb-media:hover img{ transform:scale(1.06); }
  .fb-media img{ width:100%; height:100%; object-fit:cover; }
  .fb-text h3{ font-size:1.5rem; margin-bottom:12px; }
  .fb-text .kicker{ color:var(--gold-1); font-family:'JetBrains Mono',monospace; font-size:0.8rem; margin-bottom:10px; display:block; }
  .fb-text p{ color:var(--text-muted); }

  /* ---------- CHECKLIST PACKAGES ---------- */
  .check-list{ list-style:none; margin:18px 0 0; }
  .check-list li{
    display:flex; align-items:center; gap:10px; padding:7px 0;
    color:var(--text-muted); font-size:0.92rem; border-bottom:1px dashed var(--line);
  }
  .check-list li:last-child{ border-bottom:none; }
  .check-list li::before{
    content:'✓'; color:var(--gold-1); font-family:'JetBrains Mono',monospace; font-weight:600; flex-shrink:0;
  }

  /* ---------- VIDEO HERO ---------- */
  .video-hero{
    position:relative; min-height:88vh; display:flex; align-items:center; justify-content:center;
    overflow:hidden; margin:100px 16px 0; border-radius:32px;
    box-shadow:0 30px 80px rgba(0,0,0,0.5);
  }
  .video-hero video{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(0.42) saturate(1.15);
  }
  .video-hero::before{
    content:''; position:absolute; inset:0; z-index:1; border-radius:32px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    pointer-events:none;
  }
  .video-hero::after{
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 70% 60% at 50% 45%, rgba(11,11,13,0.15), rgba(11,11,13,0.55) 100%);
  }
  .video-hero .hero-inner{ position:relative; z-index:2; text-align:center; padding:0 24px; }

  /* ---------- SHOWROOM ---------- */
  .showroom-row{ padding:60px 0; border-bottom:1px solid var(--line); }
  .showroom-row:last-child{ border-bottom:none; }
  .showroom-row h3{ font-size:1.4rem; margin:18px 0 8px; }
  .showroom-row p{ color:var(--text-muted); max-width:560px; margin-bottom:26px; }
  .showroom-imgs{ display:grid; grid-template-columns:1fr 1fr; gap:2px; }
  .showroom-imgs img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; border:1px solid var(--line); }

  /* ---------- CONTACT FORM ---------- */
  .contact-form{ display:flex; flex-direction:column; gap:16px; }
  .contact-form input, .contact-form textarea{
    background:rgba(255,255,255,0.03); border:1px solid var(--line); color:var(--text);
    padding:14px 18px; font-family:'Manrope',sans-serif; font-size:0.95rem; border-radius:14px;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder{ color:var(--text-muted); }
  .contact-form input:focus, .contact-form textarea:focus{ outline:none; border-color:var(--gold-2); }
  .contact-form textarea{ resize:vertical; min-height:120px; }
  .map-embed{ border:1px solid var(--line); filter:grayscale(1) invert(0.92) contrast(0.9); border-radius:20px; overflow:hidden; }
  .map-embed iframe{ width:100%; height:340px; border:0; display:block; }

  /* ---------- CHROME TEXT ---------- */
  .chrome-text{
    color:transparent;
    -webkit-text-stroke:1px var(--chrome);
    text-stroke:1px var(--chrome);
  }

  /* ---------- MARQUEE ---------- */
  .marquee{
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    overflow:hidden; white-space:nowrap; padding:20px 0;
  }
  .marquee-track{
    display:inline-flex; gap:40px;
    animation: scroll-left 32s linear infinite;
  }
  .marquee-track span{
    font-family:'Bebas Neue', sans-serif; font-size:1.4rem; letter-spacing:0.04em;
    color:var(--chrome-dim); display:inline-flex; align-items:center; gap:40px;
  }
  .marquee-track span::after{ content:'◆'; color:var(--gold-2); font-size:0.7rem; }
  @keyframes scroll-left{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  /* ---------- BEFORE / AFTER REVEAL SLIDER (signature) ---------- */
  .reveal{
    position:relative; width:100%; aspect-ratio:16/10; overflow:hidden;
    border:1px solid var(--line); user-select:none; cursor:ew-resize;
    background:var(--bg-alt-2);
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
  }
  .reveal img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
    pointer-events:none;
  }
  .reveal .reveal-after{ z-index:1; }
  .reveal .reveal-before{
    z-index:2;
    clip-path: inset(0 50% 0 0);
  }
  .reveal-tag{
    position:absolute; top:16px; z-index:3;
    font-family:'JetBrains Mono',monospace; font-size:0.68rem; letter-spacing:0.1em;
    background:rgba(10,10,12,0.55); color:var(--chrome); padding:7px 14px;
    border:1px solid rgba(255,255,255,0.12); pointer-events:none;
    border-radius:100px; backdrop-filter:blur(8px);
  }
  .reveal-tag.before{ left:16px; }
  .reveal-tag.after{ right:16px; }
  .reveal-handle{
    position:absolute; top:0; bottom:0; left:50%; z-index:4;
    width:2px; background:var(--gold-1);
    transform:translateX(-1px);
    pointer-events:none;
  }
  .reveal-handle::before{
    content:'⇔'; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:44px; height:44px; border-radius:50%;
    background:var(--gold-grad); background-size:200% 100%;
    color:#0b0b0d; display:flex; align-items:center; justify-content:center;
    font-size:1.1rem; box-shadow:0 6px 20px rgba(0,0,0,0.4);
  }
  .reveal-caption{
    text-align:center; margin-top:18px; color:var(--text-muted);
    font-family:'JetBrains Mono',monospace; font-size:0.78rem; letter-spacing:0.04em;
  }

  /* ---------- STATEMENT BAND (gold reversed panel) ---------- */
  .statement-band{
    background:var(--gold-grad); background-size:200% 100%;
    color:#0b0b0d; padding:100px 24px; text-align:center;
    margin:0 16px 16px; border-radius:32px;
  }
  .statement-band h2{ color:#0b0b0d; font-size:clamp(2rem,5vw,3.4rem); }
  .statement-band p{ color:rgba(11,11,13,0.72); max-width:520px; margin:18px auto 30px; }
  .statement-band .btn-primary{ background:#0b0b0d; color:var(--gold-1); }
  .statement-band .btn-primary:hover{ box-shadow:0 10px 30px rgba(11,11,13,0.3); }

  /* ---------- INSTAGRAM FEED ---------- */
  .insta-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; margin-top:40px;
  }
  .insta-tile{
    aspect-ratio:1; border-radius:20px; overflow:hidden; position:relative;
    border:1px solid var(--line); display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:10px; text-align:center; padding:20px;
    background:linear-gradient(135deg, #2a1d3a, #7a2f5e 35%, #c8963f 65%, #f0d38f 100%);
    transition:transform .3s;
  }
  .insta-tile:hover{ transform:translateY(-4px); }
  .insta-tile svg{ width:30px; height:30px; opacity:0.9; }
  .insta-tile span{
    font-family:'JetBrains Mono',monospace; font-size:0.68rem; color:rgba(255,255,255,0.9); letter-spacing:0.04em;
  }
  .insta-follow{
    display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
    margin-top:16px;
  }
  .reveal-up{
    opacity:0; transform:translateY(28px);
    transition:opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  }
  .reveal-up.in-view{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){
    .reveal-up{ opacity:1; transform:none; transition:none; }
  }

  /* ---------- COOKIE BANNER ---------- */
  .cookie-banner{
    position:fixed; left:16px; right:16px; bottom:16px; z-index:300;
    max-width:640px; margin:0 auto;
    background:rgba(18,18,20,0.92); backdrop-filter:blur(20px) saturate(1.3);
    border:1px solid rgba(255,255,255,0.1); border-radius:20px;
    padding:24px; box-shadow:0 30px 70px rgba(0,0,0,0.5);
    transform:translateY(140%); transition:transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .cookie-banner.open{ transform:translateY(0); }
  .cookie-banner p{ color:var(--text-muted); font-size:0.86rem; line-height:1.6; margin-bottom:16px; }
  .cookie-banner p a{ color:var(--gold-1); text-decoration:underline; }
  .cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; }
  .cookie-actions button{
    font-family:'Bebas Neue',sans-serif; font-size:0.8rem; letter-spacing:0.05em; text-transform:uppercase;
    padding:11px 20px; border-radius:100px; cursor:pointer; transition:transform .2s, opacity .2s;
  }
  .cookie-actions button:hover{ transform:translateY(-2px); }
  #cookieAcceptAll{ background:var(--gold-grad); background-size:200% 100%; color:#0b0b0d; border:none; }
  #cookieNecessaryOnly{ background:transparent; border:1px solid var(--line); color:var(--text); }

  .map-consent{
    position:relative; width:100%; height:340px; border-radius:20px; overflow:hidden;
    border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
    background:var(--bg-alt); text-align:center; padding:24px;
  }
  .map-consent p{ color:var(--text-muted); font-size:0.88rem; max-width:320px; margin-bottom:16px; }
  .map-consent button{
    font-family:'Bebas Neue',sans-serif; font-size:0.8rem; letter-spacing:0.05em; text-transform:uppercase;
    padding:11px 24px; border-radius:100px; background:var(--gold-grad); background-size:200% 100%;
    color:#0b0b0d; border:none; cursor:pointer;
  }

  /* ---------- CHATBOT WIDGET ---------- */
  .chat-toggle{
    position:fixed; bottom:24px; right:24px; z-index:200;
    width:60px; height:60px; border-radius:50%;
    background:var(--gold-grad); background-size:200% 100%;
    border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 14px 34px rgba(200,150,63,0.35);
    transition:transform .3s;
  }
  .chat-toggle:hover{ transform:translateY(-3px) scale(1.04); }
  .chat-toggle svg{ width:26px; height:26px; color:#0b0b0d; }
  .chat-toggle .icon-close{ display:none; }
  .chat-toggle.open .icon-chat{ display:none; }
  .chat-toggle.open .icon-close{ display:block; }
  .chat-badge{
    position:absolute; top:-2px; right:-2px; width:14px; height:14px; border-radius:50%;
    background:#e0574a; border:2px solid var(--bg);
  }

  .quick-contact{
    position:fixed; bottom:96px; right:24px; z-index:199;
    display:flex; flex-direction:column; gap:12px;
  }
  .quick-contact a{
    width:48px; height:48px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 26px rgba(0,0,0,0.35);
    transition:transform .25s;
  }
  .quick-contact a:hover{ transform:translateY(-3px) scale(1.06); }
  .quick-contact a svg{ width:22px; height:22px; }
  .qc-whatsapp{ background:#25D366; color:#0b0b0d; }
  .qc-instagram{ background:linear-gradient(135deg,#3a1c71,#c72a7d 45%,#f2a03c 100%); color:#fff; }

  .chat-footer-links{
    display:flex; gap:8px; padding:0 16px 14px;
  }
  .chat-footer-links a{
    flex:1; display:flex; align-items:center; justify-content:center; gap:6px;
    font-family:'JetBrains Mono',monospace; font-size:0.68rem; letter-spacing:0.02em;
    padding:9px 10px; border-radius:100px; border:1px solid var(--line);
    color:var(--text-muted); transition:border-color .2s, color .2s;
  }
  .chat-footer-links a svg{ width:13px; height:13px; }
  .chat-footer-links a:hover{ border-color:var(--gold-2); color:var(--gold-1); }

  .chat-panel{
    position:fixed; bottom:98px; right:24px; z-index:200;
    width:min(360px, calc(100vw - 32px)); height:min(520px, calc(100vh - 150px));
    background:rgba(20,20,22,0.85); backdrop-filter:blur(20px) saturate(1.3);
    border:1px solid rgba(255,255,255,0.1); border-radius:24px;
    box-shadow:0 30px 70px rgba(0,0,0,0.5);
    display:flex; flex-direction:column; overflow:hidden;
    opacity:0; transform:translateY(16px) scale(0.98); pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
  }
  .chat-panel.open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }

  .chat-head{
    padding:16px 18px; border-bottom:1px solid var(--line);
    display:flex; align-items:center; gap:10px;
  }
  .chat-head img{ width:32px; height:32px; border-radius:50%; background:#000; object-fit:contain; padding:2px; }
  .chat-head .name{ font-family:'Bebas Neue',sans-serif; font-size:1.05rem; letter-spacing:0.03em; }
  .chat-head .status{ font-family:'JetBrains Mono',monospace; font-size:0.65rem; color:var(--gold-1); display:flex; align-items:center; gap:5px; }
  .chat-head .status::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--gold-1); }

  .chat-body{
    flex:1; overflow-y:auto; padding:16px 18px; display:flex; flex-direction:column; gap:12px;
  }
  .chat-body::-webkit-scrollbar{ width:5px; }
  .chat-body::-webkit-scrollbar-thumb{ background:var(--line); border-radius:10px; }

  .msg{
    max-width:82%; padding:10px 14px; border-radius:16px; font-size:0.86rem; line-height:1.5;
  }
  .msg.bot{
    align-self:flex-start; background:rgba(255,255,255,0.06); border:1px solid var(--line);
    border-bottom-left-radius:4px; color:var(--text);
  }
  .msg.user{
    align-self:flex-end; background:var(--gold-grad); background-size:200% 100%;
    color:#0b0b0d; border-bottom-right-radius:4px; font-weight:600;
  }
  .msg a{ color:var(--gold-1); text-decoration:underline; }
  .msg.bot a{ color:var(--gold-2); }

  .chat-quick{
    display:flex; flex-wrap:wrap; gap:8px; padding:0 18px 14px;
  }
  .chat-quick button{
    font-family:'JetBrains Mono',monospace; font-size:0.7rem; letter-spacing:0.02em;
    padding:8px 12px; border-radius:100px; border:1px solid var(--line);
    background:rgba(255,255,255,0.03); color:var(--text-muted); cursor:pointer;
    transition:border-color .2s, color .2s;
  }
  .chat-quick button:hover{ border-color:var(--gold-2); color:var(--gold-1); }

  .chat-input-row{
    display:flex; gap:8px; padding:14px 16px; border-top:1px solid var(--line);
  }
  .chat-input-row input{
    flex:1; background:rgba(255,255,255,0.04); border:1px solid var(--line); color:var(--text);
    border-radius:100px; padding:11px 16px; font-family:'Manrope',sans-serif; font-size:0.86rem;
  }
  .chat-input-row input:focus{ outline:none; border-color:var(--gold-2); }
  .chat-input-row button{
    width:40px; height:40px; border-radius:50%; border:none; flex-shrink:0;
    background:var(--gold-grad); background-size:200% 100%; color:#0b0b0d; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
  }

  /* ---------- SCROLL PROGRESS ---------- */
  .scroll-progress{
    position:fixed; top:0; left:0; height:3px; width:0%; z-index:998;
    background:var(--gold-grad); background-size:200% 100%;
    transition:width .1s linear;
  }

  /* ---------- 3D TILT ---------- */
  .tilt{ transform-style:preserve-3d; transition:transform .15s ease-out; will-change:transform; }

  /* ---------- COUNT UP ---------- */
  .count-num{ font-variant-numeric:tabular-nums; }

  /* ---------- STICKY CTA BAR ---------- */
  .sticky-cta{
    position:fixed; left:0; right:0; bottom:0; z-index:150;
    background:rgba(14,14,16,0.9); backdrop-filter:blur(16px);
    border-top:1px solid var(--line);
    padding:14px 24px; display:flex; align-items:center; justify-content:center; gap:18px;
    transform:translateY(100%); transition:transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .sticky-cta.show{ transform:translateY(0); }
  .sticky-cta span{ font-family:'JetBrains Mono',monospace; font-size:0.78rem; color:var(--text-muted); }
  .sticky-cta span strong{ color:var(--gold-1); }
  @media (max-width:640px){ .sticky-cta span{ display:none; } }

  /* ---------- BOOKING ASSISTANT ---------- */
  .booking{
    border:1px solid var(--line); border-radius:24px; padding:36px;
    background:rgba(255,255,255,0.02); backdrop-filter:blur(10px);
  }
  .booking-step{ margin-bottom:26px; }
  .booking-step:last-child{ margin-bottom:0; }
  .booking-label{ font-family:'JetBrains Mono',monospace; font-size:0.72rem; color:var(--text-muted); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:12px; display:block; }
  .booking-options{ display:flex; flex-wrap:wrap; gap:10px; }
  .booking-opt{
    padding:11px 18px; border:1px solid var(--line); border-radius:100px; cursor:pointer;
    font-size:0.84rem; color:var(--text-muted); transition:border-color .2s, color .2s, background .2s;
    background:rgba(255,255,255,0.02);
  }
  .booking-opt.active{ border-color:var(--gold-2); color:var(--gold-1); background:rgba(200,150,63,0.12); }
  .booking input[type="date"], .booking input[type="text"]{
    width:100%; background:rgba(255,255,255,0.03); border:1px solid var(--line); color:var(--text);
    padding:13px 16px; border-radius:12px; font-family:'Manrope',sans-serif; font-size:0.9rem;
    color-scheme:dark;
  }
  .booking input:focus{ outline:none; border-color:var(--gold-2); }
  .booking-summary{
    margin-top:28px; padding-top:24px; border-top:1px solid var(--line);
    font-size:0.86rem; color:var(--text-muted); line-height:1.8;
  }
  .booking-summary strong{ color:var(--gold-1); }

  /* ---------- CONFIGURATOR ---------- */
  .configurator{
    border:1px solid var(--line); border-radius:24px; padding:40px;
    background:rgba(255,255,255,0.02); backdrop-filter:blur(10px);
  }
  .config-row{ margin-bottom:28px; }
  .config-row:last-child{ margin-bottom:0; }
  .config-label{ font-family:'JetBrains Mono',monospace; font-size:0.72rem; color:var(--text-muted); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:12px; display:block; }
  .config-options{ display:flex; flex-wrap:wrap; gap:10px; }
  .config-opt{
    padding:12px 20px; border:1px solid var(--line); border-radius:100px; cursor:pointer;
    font-size:0.86rem; color:var(--text-muted); transition:border-color .2s, color .2s, background .2s;
    background:rgba(255,255,255,0.02);
  }
  .config-opt.active{ border-color:var(--gold-2); color:var(--gold-1); background:rgba(212,166,86,0.1); }
  .config-result{
    margin-top:34px; padding-top:28px; border-top:1px solid var(--line);
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
  }
  .config-price{ font-family:'Bebas Neue',sans-serif; font-size:2.6rem; color:var(--gold-1); line-height:1; }
  .config-price span{ font-family:'JetBrains Mono',monospace; font-size:0.85rem; color:var(--text-muted); display:block; margin-top:4px; }

  /* ---------- FAQ ACCORDION ---------- */
  .faq-item{ border-bottom:1px solid var(--line); }
  .faq-q{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    padding:22px 4px; cursor:pointer; font-size:1.02rem; font-weight:600;
  }
  .faq-q .plus{
    font-family:'Bebas Neue',sans-serif; font-size:1.4rem; color:var(--gold-2);
    transition:transform .3s; flex-shrink:0;
  }
  .faq-item.open .faq-q .plus{ transform:rotate(45deg); }
  .faq-a{
    max-height:0; overflow:hidden; transition:max-height .35s ease;
  }
  .faq-a p{ color:var(--text-muted); padding:0 4px 22px; font-size:0.92rem; line-height:1.7; }
  .faq-item.open .faq-a{ max-height:240px; }

  /* Nav collapses earlier than other layout changes — 5 links + logo + phone
     button need more room than 860px gives them */
  @media (max-width: 1100px){
    .nav-links{ display:none; }
    .menu-btn{ display:block; }
    .nav-cta{ display:none; }
    nav{ padding:8px 8px 8px 16px; }
    .brand img{ height:40px; }
    header{ top:12px; border-radius:22px; }
  }

  @media (max-width: 860px){
    .feature-block, .feature-block.reverse{ grid-template-columns:1fr; }
    .feature-block.reverse .fb-media, .feature-block.reverse .fb-text{ order:unset; }
    .showroom-imgs{ grid-template-columns:1fr; }
    .about-grid, .contact-grid{ grid-template-columns:1fr; gap:44px; }
    .spec-cols{ grid-template-columns:1fr; }
    .spec-col + .spec-col{ border-left:none; border-top:1px solid var(--line); }
    .gallery-grid{ grid-template-columns:repeat(2,1fr); }
    section{ padding:76px 0; }

    /* svc-card descriptions must not depend on hover on touch devices */
    .svc-card p{ opacity:1 !important; max-height:none !important; margin-top:6px !important; }
    .svc-grid{ grid-template-columns:1fr 1fr; grid-auto-rows:auto; }
    .svc-big, .svc-wide, .svc-small{ grid-column:span 2; grid-row:auto; min-height:200px; }

    /* Bento (homepage) same touch fix if present */
    .bento{ grid-template-columns:1fr; grid-auto-rows:auto; }
    .bento-big, .bento-tall, .bento-wide, .bento-small{ grid-column:1; grid-row:auto; min-height:220px; }
    .bento-card p{ opacity:1; }

    /* Floating action stack: align consistently and stay clear of the sticky CTA bar */
    .chat-toggle{ right:16px; bottom:82px; }
    .quick-contact{ right:16px; bottom:154px; }
    .chat-panel{ right:16px; bottom:150px; }

    /* Package headers: long titles + price tag no longer fight for one line */
    .spec-col-head{ flex-direction:column; align-items:flex-start; gap:8px; }
    .spec-col-head h3{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
    .pkg-top{ flex-direction:column; align-items:flex-start; gap:6px; }
  }

  @media (max-width: 480px){
    .page-hero{ padding:120px 20px 50px; }
    .booking, .map-card{ padding:24px; }
    .stat{ padding:24px 18px; }
    .spec-col-head, .pkg{ padding-left:20px; padding-right:20px; }
    .hero-actions{ flex-direction:column; width:100%; }
    .hero-actions .btn{ width:100%; justify-content:center; }
    .svc-grid{ grid-template-columns:1fr; }
    .svc-big, .svc-wide, .svc-small{ grid-column:1; }
    .insta-grid{ grid-template-columns:repeat(2,1fr); }
  }

  @media (prefers-reduced-motion: reduce){
    .car-line, .hero h1 span, .glare{ animation:none !important; stroke-dashoffset:0 !important; }
  }
