
* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg:#e5dec7; --card:#fffbe9; --text:#33280f; --muted:#877449;
  --accent:#c58a12; --on-acc:#141414; --border:rgba(51,40,15,0.13); --soft:rgba(51,40,15,0.06);
  --accsoft:rgba(197,138,18,0.16); --shadow:rgba(0,0,0,0.16); --shadow2:rgba(197,138,18,0.30);
  --rad:8px; --pad:20px;
}
html { scroll-behavior:smooth; }
body { margin:0; color:var(--text); font-family:Optima, Candara, 'Segoe UI', sans-serif; line-height:1.6;
  background:radial-gradient(120% 70% at 50% 0%, var(--accsoft), transparent 55%), var(--bg);
  -webkit-font-smoothing:antialiased; overflow-x:hidden; }
h1,h2 { font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; line-height:1.1; letter-spacing:-.02em; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
.car-page { max-width:1160px; margin:0 auto; padding:0 20px 40px; }

.rnav { display:flex; align-items:center; justify-content:space-between;
  padding:18px 4px; }
.brand { font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; font-weight:800; font-size:20px;
  display:flex; align-items:center; gap:10px; }
.brand-ring { width:14px; height:14px; border-radius:50%; border:3px solid var(--accent); }
.rnav-hint { font-size:13px; color:var(--muted); }

.rhero { text-align:center; padding:26px 0 8px; }
.kicker { display:inline-block; font-size:13px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent); margin-bottom:12px; }
.rhero h1 { font-size:clamp(32px,5vw,58px); margin-bottom:14px; }
.rhero p { color:var(--muted); font-size:18px; max-width:52ch; margin:0 auto; }

.carousel-wrap { display:grid; grid-template-columns:1.35fr .8fr; gap:24px;
  align-items:center; padding:20px 0; }
.car-scene { grid-column:1 / -1; perspective:1400px; height:min(64vh,480px);
  display:flex; align-items:center; justify-content:center; }
.carousel { position:relative; width:300px; height:100%; transform-style:preserve-3d;
  transform:translateZ(-520px) rotateY(0deg); }
.car-cell { position:absolute; inset:0; margin:auto; width:280px; height:min(56vh,400px);
  transform-style:preserve-3d; }
.car-card { position:relative; width:100%; height:100%; border-radius:var(--rad);
  overflow:hidden; background:var(--card); border:1px solid var(--border);
  box-shadow:0 24px 54px var(--shadow); backface-visibility:hidden; }
.car-card img { width:100%; height:100%; object-fit:cover; }
.car-card figcaption { position:absolute; left:0; right:0; bottom:0; padding:16px;
  background:linear-gradient(to top, rgba(0,0,0,.62), transparent);
  color:#fff; display:flex; flex-direction:column; gap:2px; }
.car-card figcaption b { font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; font-size:19px; }
.car-card figcaption span { font-size:12px; opacity:.82; }
.car-cell.is-front .car-card { box-shadow:0 30px 66px var(--shadow2); }

.car-ctrl { grid-column:1 / -1; display:flex; justify-content:center; gap:16px; margin-top:8px; }
.nav-btn { width:50px; height:50px; border-radius:50%; border:1px solid var(--border);
  background:var(--card); color:var(--text); font-size:16px; cursor:pointer;
  box-shadow:0 8px 20px var(--shadow); transition:transform .14s, background .2s; }
.nav-btn:hover { transform:translateY(-2px); background:var(--accsoft); }

.car-detail { grid-column:1 / -1; text-align:center; max-width:60ch; margin:10px auto 0; }
.face-tag { display:inline-block; font-size:12px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--accent); background:var(--accsoft);
  padding:6px 12px; border-radius:999px; margin-bottom:12px; }
.car-detail h2 { font-size:clamp(24px,3.2vw,36px); margin-bottom:10px; }
.car-detail p { color:var(--muted); font-size:16px; }

.rstrip { display:grid; grid-template-columns:1.2fr 1fr; gap:30px; align-items:center;
  background:var(--card); border:1px solid var(--border); border-radius:calc(var(--rad) + 6px);
  padding:var(--pad); margin-top:30px; box-shadow:0 20px 50px var(--shadow); }
.rstrip-copy h2 { font-size:clamp(22px,3vw,32px); margin:8px 0 20px; }
.btn { display:inline-block; border-radius:999px; padding:13px 26px; font-weight:600;
  font-size:15px; cursor:pointer; border:1px solid transparent; font-family:inherit;
  transition:transform .14s, filter .14s; }
.primary { background:var(--accent); color:var(--on-acc); box-shadow:0 12px 26px var(--shadow2); }
.primary:hover { transform:translateY(-3px); filter:brightness(1.05); }
.rstrip-info { list-style:none; display:flex; flex-direction:column; gap:10px; }
.rstrip-info li { display:flex; gap:12px; padding:10px 0; border-bottom:1px solid var(--border); }
.rstrip-info li span { color:var(--muted); width:56px; flex:0 0 auto; }

.rfoot { display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding:30px 4px 0; margin-top:34px; border-top:1px solid var(--border); font-size:14px; }
.muted { color:var(--muted); }

@media (max-width:720px) {
  .rstrip { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .car-scene { perspective:none; height:auto; display:block; }
  .carousel { position:static; width:auto; height:auto; transform:none !important;
    transform-style:flat; display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
  .car-cell { position:relative; inset:auto; width:auto; height:auto; margin:0;
    transform:none !important; }
  .car-card { height:260px; }
  .car-ctrl { display:none; }
  .nav-btn:hover, .btn:hover { transform:none; }
}
@media (prefers-reduced-motion: reduce) and (max-width:640px) {
  .carousel { grid-template-columns:1fr 1fr; }
}


.xq{box-sizing:border-box;font-family:Optima, Candara, 'Segoe UI', sans-serif;color:#33280f;padding:56px 24px;width:100%}
.xq *{box-sizing:border-box;margin:0}
.xq .xq-wrap{max-width:1060px;margin:0 auto}
.xq h2{font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif;font-size:1.7rem;line-height:1.2;margin-bottom:8px}
.xq .xq-kick{display:block;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#c58a12;margin-bottom:10px;font-weight:700}

.xq-teamgrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:20px;margin-top:22px}
.xq-person img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:3px;display:block;filter:saturate(.9)}
.xq-person figcaption{padding-top:10px}
.xq-person strong{display:block;font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif}
.xq-person span{font-size:.82rem;color:#877449}


.xq-hours{border-top:1px solid rgba(51,40,15,0.14)}
.xq-hours-in{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:26px;align-items:start}
.xq-hours address{font-style:normal;color:#877449;line-height:1.8;margin-top:8px}
.xq-hourtable{width:100%;border-collapse:collapse}
.xq-hourtable th,.xq-hourtable td{text-align:left;padding:12px 6px;border-bottom:1px solid rgba(51,40,15,0.14)}
.xq-hourtable th{font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif}
.xq-hourtable td{color:#c58a12;font-weight:700;text-align:right}


/* =====================================================
   DESIGN DNA: vapor-sunset
   Whole-page visual system applied over the layout
   archetype. Appended last so it wins the cascade.
   ===================================================== */
html::before{content:'';position:fixed;inset:0;z-index:99980;pointer-events:none;background:repeating-linear-gradient(0deg,rgba(197,138,18,.55) 0 2px,transparent 2px 26px);opacity:.08;}
html::after{content:'';position:fixed;inset:0;z-index:99990;pointer-events:none;border:none;background:none;background:linear-gradient(90deg,#ff71ce,#01cdfe,#b967ff);background-size:100% 6px;background-repeat:no-repeat;background-position:top;opacity:.85}
h1,h2,h3{font-family:Futura, 'Century Gothic', 'Segoe UI', sans-serif !important;text-transform:uppercase !important;letter-spacing:.3em !important;font-weight:600 !important;font-style:italic !important;text-shadow:0 0 18px rgba(197,138,18,.7)}
img{filter:saturate(1.5) hue-rotate(-12deg) contrast(1.05);border-radius:8px !important;box-shadow:0 0 0 2px rgba(197,138,18,.7),0 18px 40px rgba(197,138,18,.35) !important}
a[class*="btn"],button,span[class*="btn"]{border-radius:8px !important;text-transform:uppercase;letter-spacing:.22em;box-shadow:0 0 18px rgba(197,138,18,.55) !important}
