/* Platinum Exotics — design system
   Brand tokens lifted from the original Webflow site:
   gold #cbaa5a · deep gold #9c7331 · soft gold #e8d29a · midnight #111
   Type: THICCCBOI (self-hosted woff2), as on the original site. */

@font-face { font-family: 'THICCCBOI'; src: url('/fonts/THICCCBOI-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'THICCCBOI'; src: url('/fonts/THICCCBOI-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'THICCCBOI'; src: url('/fonts/THICCCBOI-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'THICCCBOI'; src: url('/fonts/THICCCBOI-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'THICCCBOI'; src: url('/fonts/THICCCBOI-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'THICCCBOI'; src: url('/fonts/THICCCBOI-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }

:root {
  --gold: #cbaa5a;
  --deep-gold: #9c7331;
  --soft-gold: #e8d29a;
  --black: #111111;
  --ground: #0c0c0d;
  --panel: #17171a;
  --panel-2: #1d1d20;
  --line: #26262b;
  --ink: #ffffff;
  --body: #d6d6d6;
  --muted: #8d8d91;
  --slate: #616066;
  --radius: 10px;
  --shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ground); color: var(--body);
  font-family: 'THICCCBOI', Arial, sans-serif; font-weight: 400;
  font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 1.4rem; }

h1, h2, h3 { color: var(--ink); font-weight: 600; line-height: 1.15; margin: 0 0 1rem; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
.gold { color: var(--gold); }
.kicker {
  color: var(--gold); font-size: .8rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; margin: 0 0 1rem;
}
.lead { color: var(--body); font-size: 1.1rem; max-width: 38rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; background: var(--gold); color: var(--black);
  font-weight: 600; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 1rem 2.1rem; border-radius: 6px; border: 1px solid var(--gold);
  transition: background .2s, border-color .2s, transform .15s; cursor: pointer;
  font-family: inherit; text-align: center;
}
.btn:hover { background: var(--soft-gold); border-color: var(--soft-gold); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(203,170,90,.12); }
.btn-block { display: block; width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--soft-gold); outline-offset: 3px; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,12,13,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(203,170,90,.14);
}
.site-head .bar { display: flex; align-items: center; gap: 2rem; padding: .9rem 1.4rem; max-width: var(--shell); margin: 0 auto; }
.site-head .logo img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.7rem; margin-inline: auto; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  color: var(--gold); font-size: .88rem; font-weight: 600; letter-spacing: .04em;
}
.nav-phone svg { width: 16px; height: 16px; }
.nav-phone:hover { color: var(--soft-gold); }
.nav a {
  color: var(--ink); font-size: .82rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; transition: color .2s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.nav .btn { padding: .75rem 1.5rem; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  color: var(--ink); border-radius: 6px; padding: .5rem .8rem; font-size: 1.1rem; cursor: pointer;
}
/* brands dropdown */
.dd { position: relative; }
.dd > a::after { content: " ▾"; font-size: .7em; }
.dd-menu {
  visibility: hidden; opacity: 0; transition: opacity .18s;
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .6rem 0; min-width: 210px; box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.dd:hover .dd-menu, .dd:focus-within .dd-menu { visibility: visible; opacity: 1; }
.dd-menu a { display: block; padding: .55rem 1.3rem; text-transform: none; letter-spacing: .03em; font-size: .95rem; color: var(--body); }
.dd-menu a:hover { color: var(--gold); background: rgba(203,170,90,.07); }
@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ground); border-bottom: 1px solid var(--line); padding: .5rem 0 1rem;
  }
  .nav.open { display: flex; max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav a { padding: .7rem 1.6rem; }
  .nav .btn { margin: .6rem 1.6rem .4rem; }
  .nav-toggle { display: block; order: 3; }
  .nav-phone { margin-left: auto; margin-right: 1rem; order: 2; font-size: .82rem; }
  .dd-menu {
    display: none; position: static; transform: none; visibility: visible; opacity: 1;
    box-shadow: none; border: 0; background: transparent; padding: 0 0 .3rem 1.1rem; transition: none;
  }
  .dd.open .dd-menu { display: block; }
  .dd.open > a::after { content: " ▴"; }
  .dd-menu a { padding: .5rem 1.2rem; font-size: .92rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero .bg { position: absolute; inset: 0; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,12,13,.92) 22%, rgba(12,12,13,.55) 55%, rgba(12,12,13,.25));
}
.hero .shell { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 4rem; }
.hero .actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

/* ---------- hero v3 (full-bleed video, centered copy) ---------- */
.hero3 {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; border-bottom: 1px solid rgba(203,170,90,.16);
}
.hero3-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero3-video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.hero3-video::-webkit-media-controls { display: none !important; }
.hero3.vid-off .hero3-video { display: none; }
.hero3.vid-off { background: url('/images/poster.jpg') center/cover no-repeat; }
.hero3-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 42% 38% at 96% 96%, rgba(12,12,13,.55), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(12,12,13,.18), rgba(12,12,13,.66) 85%),
    linear-gradient(180deg, rgba(12,12,13,.55), rgba(12,12,13,.18) 30%, rgba(12,12,13,.24) 70%, var(--ground));
}
.hero3-copy { position: relative; z-index: 1; max-width: 46rem; padding: 6rem 1.4rem 7rem; animation: rise .7s ease both; }
.hero3-copy h1 { text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.hero3-copy .lead { margin: 0 auto 2.2rem; text-shadow: 0 1px 18px rgba(0,0,0,.5); }
.hero3-cta { padding: 1.1rem 3rem; font-size: .9rem; box-shadow: 0 12px 40px rgba(203,170,90,.25); }
.hero3-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 28px; height: 46px; border: 1.5px solid rgba(203,170,90,.65); border-radius: 999px;
}
.hero3-scroll span {
  position: absolute; top: 8px; left: 50%; width: 3px; height: 9px; margin-left: -1.5px;
  background: var(--gold); border-radius: 2px; animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0%,100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(14px); opacity: 0; } 60% { transform: translateY(0); opacity: 0; } }

/* ---------- hero v2 (framed image — native res, no blurry upscale) ---------- */
.hero2 {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 78% 40%, rgba(203,170,90,.13), transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 90%, rgba(156,115,49,.07), transparent 60%),
    var(--ground);
  border-bottom: 1px solid rgba(203,170,90,.14);
}
.hero2-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3.5rem; align-items: center; min-height: 82vh; padding-top: 3rem; padding-bottom: 3.5rem;
}
.hero2-copy { animation: rise .6s ease both; }
.hero2-proof { list-style: none; display: flex; gap: 2.4rem; padding: 0; margin: 2.6rem 0 0; flex-wrap: wrap; }
.hero2-proof li { display: flex; flex-direction: column; }
.hero2-proof b { color: var(--gold); font-size: 1.35rem; font-weight: 800; }
.hero2-proof span { color: var(--muted); font-size: .82rem; }
.hero2-frame {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(203,170,90,.4);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 6px rgba(203,170,90,.06);
  animation: rise .6s ease .12s both;
}
.hero2-frame img { width: 100%; height: auto; display: block; }
.hero2-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(12,12,13,.55)); }
.hero2-tag {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 1;
  color: var(--ink); font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  background: rgba(12,12,13,.55); border: 1px solid rgba(203,170,90,.35);
  border-radius: 999px; padding: .4rem 1rem; backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .hero2-grid { grid-template-columns: 1fr; min-height: 0; gap: 2.2rem; padding-top: 2.4rem; }
  .hero2-proof { gap: 1.6rem; }
}

/* ---------- book page picker ---------- */
.pick-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.pick-filters .pf {
  background: transparent; color: var(--muted); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1.25rem; font-family: inherit; font-size: .85rem;
  font-weight: 500; letter-spacing: .05em; cursor: pointer; transition: all .2s;
}
.pick-filters .pf:hover { border-color: var(--gold); color: var(--ink); }
.pick-filters .pf.on { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 700; }
.pick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 1.1rem; }
.pick-card {
  display: flex; flex-direction: column; text-align: left; padding: 0; width: 100%;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; font-family: inherit; color: var(--ink);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  animation: rise .5s ease both;
}
.pick-card:hover { transform: translateY(-4px); border-color: rgba(203,170,90,.55); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.pick-card .photo { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--panel-2); }
.pick-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pick-card:hover .photo img { transform: scale(1.05); }
.pick-card .body { display: flex; flex-direction: column; gap: .25rem; padding: 1.05rem 1.15rem 1.2rem; flex: 1; }
.pick-card .make { color: var(--gold); font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.pick-card .title { font-weight: 600; font-size: 1.04rem; }
.pick-card .meta { color: var(--muted); font-size: .84rem; }
.pick-card .foot { display: flex; justify-content: space-between; align-items: center; margin-top: .7rem; }
.pick-card .price { font-weight: 700; font-variant-numeric: tabular-nums; }
.pick-card .price small { color: var(--muted); font-weight: 400; }
.pick-card .go { color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.pick-card.ghost { border-style: dashed; justify-content: center; }
.pick-card.ghost .body { align-items: center; text-align: center; padding: 2rem 1.4rem; }
.pick-card.ghost .meta { max-width: 22rem; }

.picked-card {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--panel); border: 1px solid var(--gold); border-radius: var(--radius);
  padding: .9rem 1.1rem; margin-bottom: 1.7rem;
}
.picked-card img { width: 108px; aspect-ratio: 16/10; object-fit: cover; border-radius: 7px; }
.picked-card .pc-body { display: flex; flex-direction: column; gap: .1rem; flex: 1; min-width: 0; }
.picked-card .make { color: var(--gold); font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.picked-card b { color: var(--ink); font-size: 1.02rem; }
.picked-card .pc-price { color: var(--muted); font-size: .84rem; }
.picked-card .pc-change {
  background: none; border: none; color: var(--muted); font-family: inherit; font-size: .84rem;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: .2rem;
}
.picked-card .pc-change:hover { color: var(--ink); }

/* ---------- sections ---------- */
.section { padding: 5.5rem 0; }
.section.tint { background: var(--black); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.section-head p { margin: 0; }

/* ============ reveals + close section (scroll choreography retired) ============ */
.sc-ready .sc-in { opacity: 0; transform: translateY(14px); }
/* vehicles + brands flow in from alternating sides (low specificity via :where so the go-state wins) */
.sc-ready .sc-in:where(.car-row > :nth-child(odd), .car-grid > :nth-child(odd), .pick-grid > :nth-child(odd)) { transform: translateX(-44px); }
.sc-ready .sc-in:where(.car-row > :nth-child(even), .car-grid > :nth-child(even), .pick-grid > :nth-child(even)) { transform: translateX(44px); }
.sc-ready .sc-in.sc-in-go { opacity: 1; transform: none; transition: opacity .62s cubic-bezier(.22,.7,.3,1), transform .62s cubic-bezier(.22,.7,.3,1); }
.sc-reduce .sc-in { opacity: 1 !important; transform: none !important; }

/* whole-section entrances: locations glides in from the left, mission from the right */
.sc-clip { overflow-x: clip; }
.sc-ready .sc-slide { opacity: 0; transition: opacity .85s cubic-bezier(.22,.7,.3,1), transform .85s cubic-bezier(.22,.7,.3,1); }
.sc-ready .sc-slide-left { transform: translateX(-72px); }
.sc-ready .sc-slide-right { transform: translateX(72px); }
.sc-ready .sc-slide.sc-in-go { opacity: 1; transform: none; }
.sc-reduce .sc-slide { opacity: 1 !important; transform: none !important; }

.close-flow {
  position: relative; min-height: 68vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: #0a0a0b;
  border-top: 1px solid rgba(203,170,90,.14);
}
.close-stage { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; padding: 5.5rem 1.4rem; }
.spot {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; pointer-events: none;
  background: radial-gradient(ellipse 34% 42% at var(--sx, 50%) var(--sy, 42%), rgba(203,170,90,.14), transparent 70%);
}
.close-flow.lit .spot { opacity: 1; }
.close-inner { position: relative; z-index: 1; }
.close-inner h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 2rem; }
.close-cta { padding: 1.15rem 3.4rem; font-size: .92rem; box-shadow: 0 16px 50px rgba(203,170,90,.28); transition: transform .12s ease-out, background .2s; display: inline-block; }
.close-phone { display: block; margin-top: 1.6rem; color: var(--muted); font-size: 1rem; letter-spacing: .06em; }
.close-phone:hover { color: var(--gold); }
.close-tag { color: var(--body); max-width: 34rem; margin: 0 auto 1.4rem; font-size: 1.02rem; line-height: 1.7; }
.close-inner { width: 100%; max-width: 880px; }
.close-inner h2 { margin-bottom: 2.2rem; }

/* the seek bar — location / pick-up / return / find your car */
.seek {
  display: grid; grid-template-columns: 1.15fr 1fr 1fr auto; align-items: stretch;
  background: #101013; border: 1px solid var(--line); border-radius: 16px;
  padding: .55rem; gap: 0; text-align: left;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.seek-cell { display: flex; flex-direction: column; gap: .15rem; padding: .55rem 1.1rem; border-left: 1px solid var(--line); min-width: 0; }
.seek-cell:first-child { border-left: 0; }
.seek-cell > span { color: var(--faint, #6f7683); font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.seek-cell select, .seek-cell input {
  background: transparent; border: 0; color: var(--ink); font-family: inherit; font-size: .98rem;
  padding: 0; outline: none; min-width: 0; width: 100%;
}
.seek-cell input[type="date"] { color-scheme: dark; min-height: 1.5em; }
.seek-date { position: relative; }
.seek-date .date-ph {
  position: absolute; left: 1.1rem; bottom: .58rem; font-style: normal;
  color: var(--muted); font-size: .98rem; pointer-events: none;
}
.seek-date:not(.has-value) input[type="date"] { color: transparent; }
.seek-date:not(.has-value) input[type="date"]::-webkit-datetime-edit { color: transparent; }
.seek-date.has-value .date-ph { display: none; }
.seek-date:focus-within .date-ph { color: var(--soft-gold); }
.seek-cell select:focus-visible, .seek-cell input:focus-visible { outline: none; }
.seek-cell:focus-within > span { color: var(--gold); }
.seek-go { border-radius: 999px; margin-left: .55rem; padding: 0 2.1rem; white-space: nowrap; align-self: center; height: 54px; display: inline-flex; align-items: center; }
.seek-note { color: var(--muted); font-size: .86rem; margin: 1.4rem 0 0; }
.seek-note b { color: var(--soft-gold); font-weight: 600; }
@media (max-width: 760px) {
  .seek { grid-template-columns: 1fr 1fr; }
  .seek-cell { border-left: 0; border-top: 1px solid var(--line); }
  .seek-cell:first-child { grid-column: 1 / -1; border-top: 0; }
  .seek-go { grid-column: 1 / -1; margin: .55rem .55rem .2rem; height: 52px; justify-content: center; }
}

/* ---------- carousels (featured + brands) ---------- */
.carousel { position: relative; }
.car-row {
  display: flex; gap: 1.1rem; overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: .2rem .2rem .8rem;
  touch-action: pan-y; /* vertical swipes scroll the page; horizontal handled by the direction lock in scrollcraft.js */
  overscroll-behavior-x: contain;
}
@media (pointer: coarse) { .car-row { scroll-snap-type: none; } }
.car-row::-webkit-scrollbar { display: none; }
.car-row > .car-card { flex: 0 0 min(84vw, 330px); scroll-snap-align: start; }
.car-nav { display: flex; gap: .6rem; justify-content: center; margin-top: 1rem; }
.car-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--panel); border: 1px solid var(--line); color: var(--gold);
  font-size: 1.35rem; line-height: 1; cursor: pointer; transition: border-color .2s, background .2s;
}
.car-nav button:hover { border-color: var(--gold); background: var(--panel-2); }

.brand-row > .brand-card { flex: 0 0 158px; scroll-snap-align: start; }
.brand-card {
  background: #ffffff; border-radius: 14px; border: 1px solid rgba(17,17,17,.06);
  padding: 1.35rem 1rem 1.15rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  transition: transform .2s, box-shadow .2s;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.4); }
.brand-card img { width: 116px; height: 62px; object-fit: contain; display: block; }
.brand-card b { color: #111111; font-size: .92rem; font-weight: 600; line-height: 1.2; }
.brand-mono {
  width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: #111;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700;
}

/* ---------- car cards (v2 — bezeled photo, year badge, spec strip, details CTA) ---------- */
.car-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 1.5rem; }
.car-card {
  display: flex; flex-direction: column; text-align: left; width: 100%;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: .65rem; cursor: pointer; font-family: inherit; color: var(--ink);
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.car-card:hover { transform: translateY(-4px); border-color: rgba(203,170,90,.55); box-shadow: 0 18px 44px rgba(0,0,0,.4); }
.car-card .photo {
  position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: 10px; background: var(--panel-2);
}
.car-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.car-card:hover .photo img { transform: scale(1.045); }
.car-card .year {
  position: absolute; top: .7rem; right: .7rem;
  background: rgba(12,12,13,.62); border: 1px solid rgba(203,170,90,.5); color: var(--soft-gold);
  font-size: .74rem; font-weight: 600; letter-spacing: .06em;
  padding: .22rem .75rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.car-card .body { display: flex; flex-direction: column; padding: 1.05rem .55rem .55rem; flex: 1; }
.car-card .make { color: var(--gold); font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-bottom: .2rem; }
.car-card h3, .car-card .cc-name { margin: 0; font-size: 1.13rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.car-card .meta { color: var(--muted); font-size: .88rem; }
.car-card .rate { display: flex; align-items: baseline; gap: .15rem; margin: .45rem 0 .85rem; color: var(--ink); }
.car-card .rate em { font-style: normal; color: var(--gold); font-weight: 600; font-size: .9rem; }
.car-card .rate b { font-weight: 800; font-size: 1.35rem; font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.car-card .rate .per { color: var(--muted); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-left: .3rem; }
.spec-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px;
  padding: .6rem .2rem; margin-bottom: .9rem;
}
.spec-strip .cell {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  color: var(--muted); font-size: .72rem; letter-spacing: .02em;
  border-left: 1px solid var(--line); min-width: 0;
}
.spec-strip .cell:first-child { border-left: 0; }
.spec-strip .cell svg { width: 18px; height: 18px; color: var(--gold); }
.spec-strip .cell i { font-style: normal; white-space: nowrap; }
.btn-details {
  display: block; text-align: center; margin-top: auto;
  background: var(--gold); color: var(--black); border-radius: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .85rem 1rem; transition: background .2s;
}
.car-card:hover .btn-details { background: var(--soft-gold); }
button.car-card { appearance: none; -webkit-appearance: none; }
.car-card.ghost { border-style: dashed; justify-content: center; }
.car-card.ghost .body { align-items: center; text-align: center; padding: 2rem 1.2rem; gap: .4rem; }
.car-card.ghost .meta { max-width: 20rem; }
.car-card.ghost .btn-details { width: 100%; }

/* ---------- fleet page: sidebar + grid ---------- */
.fleet-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2.2rem; align-items: start; }
.side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1rem; }
.side-sec { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: .35rem .9rem; }
.side-sec summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--ink); font-weight: 600; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .85rem .2rem;
}
.side-sec summary:hover { color: var(--soft-gold); }
.side-sec summary::-webkit-details-marker { display: none; }
.side-sec summary::after { content: "▾"; color: var(--gold); font-size: .8rem; transition: transform .2s; }
.side-sec:not([open]) summary::after { transform: rotate(-90deg); }
.side-list { display: flex; flex-direction: column; gap: .15rem; padding: 0 .1rem .7rem; }
.side-opt {
  display: flex; justify-content: space-between; align-items: center; gap: .8rem;
  background: none; border: none; border-radius: 8px; padding: .55rem .7rem;
  font-family: inherit; font-size: .9rem; color: var(--body); cursor: pointer; text-align: left;
  transition: background .15s, color .15s;
}
.side-opt:hover { background: rgba(203,170,90,.08); color: var(--ink); }
.side-opt.on { background: var(--gold); color: var(--black); font-weight: 700; }
.side-opt span { font-size: .78rem; color: var(--muted); }
.side-opt.on span { color: rgba(17,17,17,.7); }
.side-help { background: var(--panel); border: 1px solid rgba(203,170,90,.3); border-radius: 12px; padding: 1.1rem 1.2rem; font-size: .88rem; }
.side-help p { margin: 0 0 .2rem; color: var(--ink); font-weight: 600; }
.side-help a { display: block; font-weight: 700; font-size: 1.05rem; margin-bottom: .2rem; }
.side-help span { color: var(--muted); font-size: .8rem; }
/* filters button + drawer (mobile) */
.filter-btn { display: none; }
.side-head, .side-apply { display: none; }
.filter-count {
  background: var(--gold); color: var(--black); border-radius: 999px;
  min-width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; padding: 0 .35rem;
}
@media (max-width: 900px) {
  .fleet-layout { grid-template-columns: 1fr; }
  .filter-btn {
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--panel); color: var(--ink); border: 1px solid var(--line);
    border-radius: 8px; padding: .7rem 1.3rem; font-family: inherit; font-size: .88rem;
    font-weight: 600; letter-spacing: .06em; cursor: pointer; margin-bottom: 1.4rem;
  }
  .filter-btn svg { width: 17px; height: 17px; color: var(--gold); }
  .side { display: none; }
  body.filters-open { overflow: hidden; }
  body.filters-open .side {
    display: flex; flex-direction: column; flex-wrap: nowrap; position: fixed; inset: 0; z-index: 130;
    background: var(--ground); padding: 1rem 1.2rem 1.2rem; overflow-y: auto; gap: .9rem;
  }
  body.filters-open .side-head {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--line); padding-bottom: .8rem;
  }
  .side-head b { color: var(--ink); font-size: 1.05rem; }
  .side-x { background: none; border: none; color: var(--muted); font-size: 1.8rem; line-height: 1; cursor: pointer; padding: .2rem .4rem; }
  body.filters-open .side-apply { display: block; position: sticky; bottom: 0; margin-top: auto; box-shadow: 0 -12px 24px rgba(12,12,13,.9); }
}

/* ---------- car detail ---------- */
.crumbs { font-size: .85rem; color: var(--muted); margin: 1.8rem 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.detail { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr); gap: 2.6rem; align-items: start; padding-bottom: 5rem; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; } }

.gallery .main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--panel-2); }
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; margin-top: .6rem; }
.gallery .thumbs button { padding: 0; border: 2px solid transparent; border-radius: 6px; overflow: hidden; cursor: pointer; background: none; aspect-ratio: 16/10; }
.gallery .thumbs button.on { border-color: var(--gold); }
.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .8rem; margin: 1.8rem 0; }
.spec {
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
  padding: .9rem 1rem; text-align: center;
}
.spec b { display: block; color: var(--ink); font-size: 1.05rem; font-weight: 600; }
.spec span { color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* detail page: pills, hairlines, spec rows */
.pill-row { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0 0 1.4rem; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: .42rem 1.05rem; font-size: .84rem; color: var(--body);
}
.pill svg { width: 16px; height: 16px; color: var(--gold); }
.hairline { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0 1.8rem; }
.sec-label { font-size: 1.15rem; margin: 0 0 1rem; letter-spacing: .01em; }
.spec-rows { list-style: none; padding: 0; margin: 0 0 2.4rem; }
.spec-rows li {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: .78rem 1.05rem; border-radius: 9px; font-size: .93rem;
}
.spec-rows li:nth-child(odd) { background: var(--panel); }
.spec-rows li span { color: var(--muted); }
.spec-rows li b { color: var(--ink); font-weight: 600; text-align: right; }

.chiprow { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; }
.chip {
  background: var(--panel); border: 1px solid var(--line); color: var(--body);
  border-radius: 999px; padding: .3rem .95rem; font-size: .85rem;
}

/* booking panel */
.book-panel {
  position: sticky; top: 96px;
  background: var(--panel); border: 1px solid rgba(203,170,90,.35); border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.book-panel .rate { display: flex; align-items: baseline; gap: .4rem; color: var(--ink); }
.book-panel .rate b { font-size: 2.1rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.book-panel .rate span { color: var(--muted); }
.book-panel .terms { list-style: none; padding: 0; margin: 1.2rem 0 1.5rem; border-top: 1px solid var(--line); }
.book-panel .terms li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .92rem;
}
.book-panel .terms b { color: var(--ink); font-weight: 600; }
.book-panel .stack { display: flex; flex-direction: column; gap: .7rem; }
.book-panel .call { text-align: center; font-size: .9rem; margin: 1.1rem 0 0; color: var(--muted); }
.book-panel .call a { font-weight: 600; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #58b97c; margin-right: .45rem; }

/* inline reserve calendar (car pages) */
.or-line { text-align: center; color: var(--faint); font-size: .78rem; letter-spacing: .06em; margin: 0 0 .9rem; }
.cal-label { color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin: .2rem 0 .6rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.cal-head b { color: var(--ink); font-size: .92rem; font-weight: 600; }
.cal-nav {
  background: var(--panel-2); border: 1px solid var(--line); color: var(--gold);
  border-radius: 6px; width: 30px; height: 30px; font-size: 1rem; cursor: pointer; line-height: 1;
}
.cal-nav:hover:not(:disabled) { border-color: var(--gold); }
.cal-nav:disabled { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { text-align: center; color: var(--faint); font-size: .68rem; font-weight: 600; padding: .25rem 0; }
.cal-day {
  aspect-ratio: 1; border: none; background: none; color: var(--body); font-family: inherit;
  font-size: .82rem; border-radius: 7px; cursor: pointer; font-variant-numeric: tabular-nums;
  transition: background .12s, color .12s;
}
.cal-day:hover:not(.off) { background: rgba(203,170,90,.18); color: var(--ink); }
.cal-day.off { color: var(--faint); opacity: .35; cursor: default; }
.cal-day.booked { color: var(--faint); opacity: .45; cursor: not-allowed; text-decoration: line-through; background: rgba(212,115,95,.08); }
.cal-day.in { background: rgba(203,170,90,.22); color: var(--ink); border-radius: 0; }
.cal-day.sel { background: var(--gold); color: var(--black); font-weight: 700; }
.cal-sum { color: var(--body); font-size: .9rem; text-align: center; background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: .6rem .8rem; margin: .8rem 0 0; }
.cal-sum b { color: var(--gold); }
#resForm { margin-top: 1rem; animation: rise .35s ease both; }
#resForm .field { margin-bottom: .8rem; }
#resForm input.bad { border-color: #d4735f; }
.fine-print { color: var(--faint); font-size: .74rem; text-align: center; margin: .7rem 0 0; }
.seal-sm {
  width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto .7rem;
  color: var(--gold); font-size: 1.1rem;
}

/* ---------- steps / how it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; color: var(--gold); font-weight: 800; font-size: 1.5rem; margin-bottom: .8rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { margin: 0; font-size: .93rem; color: var(--muted); }

/* ---------- reviews (white cards on light band, Google-review styling) ---------- */
.reviews-band { padding: 5rem 0; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-w {
  background: #ffffff; border-radius: 14px; padding: 1.6rem 1.7rem 1.5rem;
  box-shadow: 0 6px 24px rgba(17,17,17,.08); border: 1px solid rgba(17,17,17,.05);
  display: flex; flex-direction: column; gap: .7rem;
}
.review-w .stars { color: #f5b301; letter-spacing: .18em; font-size: 1.05rem; }
.review-w .rname { color: #111111; font-size: .98rem; font-weight: 700; }
.review-w p { margin: 0; color: #4a4a4f; font-size: .95rem; line-height: 1.7; flex: 1; }
.review-w .rmeta { color: #8d8d91; font-size: .8rem; }
.review-foot { text-align: center; font-size: .9rem; margin: 2.4rem 0 0; }

/* ---------- mission ---------- */
.mission {
  background:
    radial-gradient(ellipse 70% 90% at 85% 20%, rgba(203,170,90,.10), transparent 60%),
    var(--ground);
  border-block: 1px solid rgba(203,170,90,.16);
}
.mission-inner { max-width: 820px; text-align: center; }
.mission-inner h2 { margin-bottom: 1.3rem; }
.mission-inner p { color: var(--body); font-size: 1.06rem; line-height: 1.85; margin: 0; }

.mission-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-grid p { color: var(--body); font-size: 1.05rem; line-height: 1.85; margin: 0; }
.mission-photo img, .about-photo img {
  width: 100%; height: auto; border-radius: 16px;
  border: 1px solid rgba(203,170,90,.35); box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* ---------- about page ---------- */
.about-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } .about-split.founder .about-photo { order: -1; } }
.about-split p { color: var(--body); line-height: 1.8; }
.about-photo.portrait { max-width: 420px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.value {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.7rem 1.5rem; border-top: 2px solid var(--gold);
}
.value h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.value p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ---------- light band (about values — matches original site's light section) ---------- */
.band-light { background: #f5f5f5; padding: 4.5rem 0; }
.values-light { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem 2rem; }
.value-i { text-align: center; }
.value-i img { width: 92px; height: 92px; margin: 0 auto 1.3rem; display: block; }
.value-i h3 { color: #111111; font-size: 1.08rem; font-weight: 600; margin: 0 0 .5rem; }
.value-i p { color: #616066; font-size: .95rem; line-height: 1.7; margin: 0; max-width: 21rem; margin-inline: auto; }

/* ---------- location photo cards (home) ---------- */
.loc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }
.loc-card {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  aspect-ratio: 16 / 11; border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
}
.loc-card:hover { transform: translateY(-4px); border-color: rgba(203,170,90,.55); }
.loc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.loc-card:hover img { transform: scale(1.05); }
.loc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(12,12,13,.72)); }
.loc-card span {
  position: absolute; left: 1.1rem; bottom: .95rem; z-index: 1;
  color: #fff; font-weight: 600; font-size: 1.02rem; letter-spacing: .02em;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

/* ---------- location ---------- */
.loc-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 3rem; align-items: center; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-list { list-style: none; padding: 0; margin: 1.6rem 0 2rem; }
.loc-list li { display: grid; grid-template-columns: 92px 1fr; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; align-items: baseline; }
.loc-list b { color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.loc-list span { color: var(--body); }
.loc-map iframe {
  width: 100%; aspect-ratio: 4 / 3; border: 1px solid rgba(203,170,90,.35); border-radius: 14px;
  filter: grayscale(.85) contrast(1.05) brightness(.92);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* ---------- contact page (light) ---------- */
.contact-band { background: #f5f5f5; padding: 4.5rem 0 5.5rem; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.gt-row { display: flex; gap: 1.1rem; align-items: center; margin-top: 1.9rem; }
.gt-ic {
  width: 60px; height: 60px; border-radius: 50%; background: var(--gold); color: #ffffff;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.gt-ic svg { width: 24px; height: 24px; }
.gt-row b { display: block; color: #111111; font-size: .97rem; margin-bottom: .1rem; }
.gt-row a, .gt-row span { color: #616066; font-size: .95rem; }
.gt-row a:hover { color: var(--deep-gold); }
.contact-card {
  background: #ffffff; border-radius: 18px; padding: 2.3rem 2.2rem 2rem;
  box-shadow: 0 14px 44px rgba(17,17,17,.10);
}
.contact-card label { color: #111111; text-transform: none; letter-spacing: 0; font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.contact-card input, .contact-card textarea {
  background: #f5f5f6; border: 1px solid #ececee; color: #111111; border-radius: 8px;
}
.contact-card input::placeholder, .contact-card textarea::placeholder { color: #9a9aa0; }
.contact-card input:focus, .contact-card textarea:focus { border-color: var(--gold); background: #ffffff; }
.card-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .4rem; }
.socials { display: flex; gap: .7rem; }
.soc {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #ffffff;
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .15s;
}
.soc svg { width: 20px; height: 20px; }
.soc:hover { background: var(--deep-gold); transform: translateY(-1px); }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.modal[hidden] { display: none; }
.modal-veil { position: absolute; inset: 0; background: rgba(12,12,13,.78); backdrop-filter: blur(6px); }
.modal-card {
  position: relative; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
  background: var(--panel); border: 1px solid rgba(203,170,90,.4); border-radius: 16px;
  padding: 2.1rem 2rem 1.8rem; box-shadow: 0 40px 100px rgba(0,0,0,.6);
  animation: rise .35s ease both;
}
.modal-x {
  position: absolute; top: .9rem; right: 1rem; background: none; border: none;
  color: var(--muted); font-size: 1.7rem; line-height: 1; cursor: pointer; padding: .2rem;
}
.modal-x:hover { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, rgba(203,170,90,.16), rgba(156,115,49,.10)); border-block: 1px solid rgba(203,170,90,.25); text-align: center; }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------- forms ---------- */
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .45rem; }
.field label em { color: var(--slate); font-style: normal; text-transform: none; letter-spacing: .02em; }
input, select, textarea {
  width: 100%; background: var(--panel); color: var(--ink); border: 1px solid var(--line);
  border-radius: 6px; padding: .85rem 1rem; font-family: inherit; font-size: 1rem;
  transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
input.bad { border-color: #d4735f; }
.err { color: #d4735f; font-size: .84rem; margin: .35rem 0 0; display: none; }
.err.show { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 480px) { .row2 { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-foot { background: var(--black); border-top: 1px solid rgba(203,170,90,.15); padding: 4rem 0 2.5rem; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot .logo img { height: 52px; width: auto; margin-bottom: 1rem; }
.site-foot h4 { color: var(--ink); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 1rem; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin: .45rem 0; }
.site-foot a { color: var(--muted); font-size: .95rem; }
.site-foot a:hover { color: var(--gold); }
.site-foot p { color: var(--muted); font-size: .95rem; margin: .3rem 0; }
.foot-legal { border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--slate); font-size: .82rem; }

/* ---------- utility ---------- */
.stage { display: none; animation: rise .45s ease both; }
.stage.on { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* small-phone refinements */
@media (max-width: 480px) {
  .site-head .logo img { height: 38px; }
  .nav-phone { font-size: .78rem; gap: .35rem; }
  .hero3-copy { padding: 4.5rem 1.2rem 5.5rem; }
  .shell { padding-inline: 1.1rem; }
}
.cal-save { color: #58b97c; font-size: .8rem; font-weight: 600; }
