/* ============================================================
   VELO LIMO — SHARED DESIGN SYSTEM v3
   Light luxury · Gold accent · Cormorant + Outfit
   ============================================================ */

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

:root {
  /* -- Base palette -- */
  --canvas:    #FAFAF8;
  --panel:     #FFFFFF;
  --panel-2:   #F6F1E9;
  --black:     #1C1917;
  --border:    rgba(28,25,23,.08);
  --border-m:  rgba(28,25,23,.14);

  /* -- Text -- */
  --text:      #1C1917;
  --text-dim:  #6B5D4F;
  --text-mute: #A89880;

  /* -- Gold scale -- */
  --gold:      #CA8A04;
  --gold-l:    #D97706;
  --yellow:    #F59E0B;
  --gold-d:    #92400E;
  --gold-glow: rgba(202,138,4,.16);

  /* -- Semantic -- */
  --green:     #059669;
  --red:       #DC2626;
  --blue:      #2563EB;

  /* -- Legacy aliases (page-specific CSS compatibility) -- */
  --white:     #FFFFFF;
  --bg:        #F6F1E9;
  --ink:       #1C1917;
  --ink-mid:   #6B5D4F;
  --slate:     #9C8E82;
  --rule:      rgba(28,25,23,.1);
  --footer:    #141210;

  /* -- Motion -- */
  --ease:      cubic-bezier(.16,1,.3,1);
  --trans:     .25s cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
input, select, textarea { font-family: inherit; outline: none; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(250,250,248,.98);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(28,25,23,.06);
}

.nav-logo {
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform .2s var(--ease);
  transform-origin: left;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }

.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--text-dim);
  transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 14px; height: 14px; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-book {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--gold); color: #fff;
  padding: 10px 22px; border-radius: 6px;
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans);
}
.nav-book:hover {
  background: var(--gold-l);
  box-shadow: 0 4px 20px rgba(202,138,4,.35);
  transform: translateY(-1px);
}
.nav-book:active { transform: scale(.97); box-shadow: none; }

.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.ham span { width: 22px; height: 1.5px; background: var(--text); display: block; transition: all .3s; }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.mob-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--panel); z-index: 850;
  flex-direction: column; padding: 40px 28px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 28px; font-weight: 700;
  letter-spacing: .5px; color: var(--text);
  padding: 18px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mob-menu a:hover { color: var(--gold); }
.mob-book {
  background: var(--gold) !important;
  color: #fff !important;
  text-align: center; padding: 16px !important;
  border-radius: 8px; margin-top: 24px;
  border-bottom: none !important;
  font-size: 14px !important; letter-spacing: 1.5px !important;
}

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 160px 40px 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(20,18,16,.9) 0%,
    rgba(20,18,16,.65) 50%,
    rgba(20,18,16,.15) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,5.5vw,68px);
  font-weight: 300; font-style: italic;
  line-height: 1.1; margin-bottom: 16px;
  letter-spacing: -.5px; color: #fff;
  text-wrap: balance;
}
.page-hero p {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px; max-width: 460px;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(202,138,4,.15);
  border: 1px solid rgba(202,138,4,.35);
  border-radius: 100px; padding: 7px 16px;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 24px;
}
.page-hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%; display: block;
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.sec-hdr { display: flex; align-items: baseline; gap: 32px; padding: 72px 40px 40px; }
.sec-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px,8vw,96px); font-weight: 300;
  color: rgba(28,25,23,.05); line-height: 1;
  letter-spacing: -3px; flex-shrink: 0;
  user-select: none;
}
.sec-title {
  font-size: clamp(24px,3vw,36px); font-weight: 700;
  color: var(--text); letter-spacing: -.5px;
  text-wrap: balance;
}
.sec-hdr-center {
  padding: 64px 0 28px; text-align: center;
  border-bottom: 1px solid var(--border);
  margin: 0 40px 40px;
}
.sec-hdr-center .sec-title {
  font-size: clamp(24px,3.5vw,40px); font-weight: 700; letter-spacing: -.7px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  margin-top: 22px;
}
.pill-btn:hover {
  background: var(--gold-l);
  box-shadow: 0 6px 24px rgba(202,138,4,.35);
  transform: translateY(-1px);
}
.pill-btn:active { transform: scale(.97); box-shadow: none; }
.pill-btn-dark { background: var(--text); color: #fff; }
.pill-btn-dark:hover { background: #3d3530; box-shadow: 0 4px 16px rgba(28,25,23,.2); }

/* ── FLEET CARDS (shared) ────────────────────────────────── */
.fc {
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  display: none; flex-direction: column;
  transition: box-shadow .3s, border-color .3s, transform .3s;
  background: var(--panel);
}
.fc.vis { display: flex; }
.fc:hover {
  box-shadow: 0 8px 40px rgba(202,138,4,.18);
  border-color: rgba(202,138,4,.3);
  transform: translateY(-2px);
}
.fc-top {
  padding: 20px 22px 12px;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.fc-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.fc-price { font-size: 11px; color: var(--text-mute); white-space: nowrap; }
.fc-price b { color: var(--gold); font-size: 15px; font-weight: 700; }
.fc-img { overflow: hidden; min-height: 180px; background: var(--panel-2); }
.fc-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.fc:hover .fc-img img { transform: scale(1.06); }
.fc-bot {
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.fc-specs { display: flex; gap: 14px; flex-wrap: wrap; }
.fc-spec { font-size: 11px; color: var(--text-dim); display: flex; align-items: center; gap: 4px; }
.fc-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.fc-book {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--text-dim);
  background: none; border: none; cursor: pointer;
  transition: color .2s; white-space: nowrap;
}
.fc-book:hover { color: var(--gold); }
.fc-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; flex-shrink: 0;
}
.fc-book:hover .fc-circle { background: var(--gold-l); transform: scale(1.1); }
.fc-arrow {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  width: 6px; height: 6px; transform: rotate(45deg); margin-right: 2px;
}

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--text); color: #fff;
  padding: 14px 22px; font-size: 13px;
  border-radius: 10px; border-left: 3px solid var(--gold);
  transform: translateX(200%);
  transition: transform .4s var(--ease);
  z-index: 1000; max-width: 340px;
  box-shadow: 0 8px 32px rgba(28,25,23,.25);
  pointer-events: none;
}
.toast.show { transform: translateX(0); }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .35s; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--footer); border-top: 1px solid rgba(255,255,255,.06); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-logo { font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 8px; }
.ft-logo span { color: var(--yellow); }
.ft-addr { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.8; margin-bottom: 4px; }
.ft-email { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 28px; }
.ft-nl-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.ft-nl-row { display: flex; }
.ft-nl-in {
  flex: 1; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); border-right: none;
  padding: 11px 14px; font-size: 12px; color: rgba(255,255,255,.8);
  border-radius: 6px 0 0 6px;
}
.ft-nl-in::placeholder { color: rgba(255,255,255,.25); }
.ft-nl-btn {
  background: var(--gold); border: 1px solid var(--gold);
  width: 44px; border-radius: 0 6px 6px 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.ft-nl-btn:hover { background: var(--gold-l); border-color: var(--gold-l); }
.ft-nl-arr {
  border-right: 2px solid #fff; border-top: 2px solid #fff;
  width: 8px; height: 8px; transform: rotate(45deg); margin-right: 3px;
}
.ft-col h4 {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 18px;
}
.ft-links { display: flex; flex-direction: column; gap: 11px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.ft-links a:hover { color: rgba(255,255,255,.85); }
.footer-bot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; flex-wrap: wrap; gap: 12px;
}
.ft-copy { font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: 1px; text-transform: uppercase; }
.ft-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.ft-legal a { font-size: 11px; color: rgba(255,255,255,.25); transition: color .2s; }
.ft-legal a:hover { color: rgba(255,255,255,.55); }
.ft-socials { display: flex; gap: 8px; }
.ft-soc {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 9px; font-weight: 600;
  color: rgba(255,255,255,.3); transition: all .2s;
}
.ft-soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(202,138,4,.08); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav { padding: 0 28px; }
  .sec-hdr { padding: 56px 28px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 28px 40px; }
  .footer-bot { padding: 18px 28px; }
  .sec-hdr-center { margin: 0 28px 32px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .ham { display: flex; }
  .nav { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 20px 32px; }
  .footer-bot { padding: 18px 20px; flex-direction: column; gap: 16px; text-align: center; }
  .ft-legal { justify-content: center; }
  .ft-socials { justify-content: center; }
  .sec-hdr-center { margin: 0 20px 28px; }
  .page-hero { padding: 140px 20px 60px; }
  .sec-hdr { padding: 48px 20px 28px; }
}
@media (max-width: 480px) {
  .sec-num { font-size: 60px; }
  .sec-title { font-size: 22px; }
  /* Nav */
  .nav { padding: 0 16px; height: 60px; }
  .bk-nav { padding: 0 16px; }
  /* Page hero tighter padding */
  .page-hero { padding: 120px 16px 48px; }
  /* Footer tighter on very small screens */
  .footer-top { padding: 32px 16px 28px; gap: 28px; }
  .footer-bot { padding: 16px; gap: 12px; }
  .ft-legal { gap: 12px; }
  /* Mob menu */
  .mob-menu { padding: 32px 20px; }
  .mob-menu a { font-size: 24px; padding: 14px 0; }
  /* Buttons full-width on tiny screens */
  .pill-btn { padding: 13px 24px; font-size: 10px; }
}
