/* ════════════════════════════════════════
   VELOX WORK — Global Stylesheet
   veloxwork.com
════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:    #080808;
  --black2:   #0f0f0f;
  --black3:   #161616;
  --black4:   #1e1e1e;
  --gold:     #C9A84C;
  --gold2:    #E2C169;
  --gold3:    #F5DFA0;
  --gold-dim: #7A6128;
  --white:    #F8F4EC;
  --grey:     #888;
  --border:   rgba(201,168,76,0.18);
  --glow:     rgba(201,168,76,0.12);
  --red:      #c0392b;
  --green:    #27ae60;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(8,8,8,0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: 'V';
  transform: rotate(-45deg);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(248,244,236,0.65);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}

.nav-links a:hover { color: var(--gold2); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold2) !important; color: var(--black) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  z-index: 899;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(248,244,236,0.7);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 14px 36px;
  border: none;
  border-radius: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 36px;
  border: 1px solid rgba(248,244,236,0.25);
  border-radius: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  padding: 13px 36px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── SECTION BASICS ── */
section { padding: 100px 5%; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::before { display: none; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold2); }

.section-sub {
  font-size: 16px;
  color: rgba(248,244,236,0.5);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-dot { color: rgba(8,8,8,0.35); font-size: 8px; vertical-align: middle; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 5% 80px;
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06), transparent 65%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--gold2); }
.page-hero p {
  font-size: 17px;
  color: rgba(248,244,236,0.5);
  max-width: 500px;
  line-height: 1.75;
  margin-top: 20px;
  font-weight: 300;
  position: relative;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}
.breadcrumb a { color: var(--gold-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--grey); }
.breadcrumb .current { color: var(--white); }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.25s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black3); }

/* ── CARDS COMMON ── */
.card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 5%;
  display: flex;
  justify-content: center;
}
.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--black);
  padding: 120px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07), transparent 65%);
  pointer-events: none;
}
.cta-frame {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px;
  border: 1px solid var(--border);
}
.cta-frame::before {
  content: ''; position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.cta-frame::after {
  content: ''; position: absolute;
  bottom: -1px; right: -1px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.cta-corner-tr {
  position: absolute;
  top: -1px; right: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.cta-corner-bl {
  position: absolute;
  bottom: -1px; left: -1px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.cta-frame h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 20px;
}
.cta-frame h2 em { font-style: italic; color: var(--gold2); }
.cta-frame p {
  font-size: 16px;
  color: rgba(248,244,236,0.5);
  margin-bottom: 44px;
  line-height: 1.75;
  font-weight: 300;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 72px 5% 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(248,244,236,0.4);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 12px; margin-top: 28px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.07); }
.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(248,244,236,0.45); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(248,244,236,0.3); }
.footer-bottom a { color: rgba(248,244,236,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* WhatsApp */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(201,168,76,0.5); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 88px; right: 28px;
  z-index: 800;
  width: 40px; height: 40px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gold);
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.back-top.show { opacity: 1; }
.back-top:hover { background: var(--gold); color: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 72px 5%; }
  .stats-bar { flex-direction: column; align-items: center; gap: 32px; }
  .stat-item::after { display: none; }
  .cta-frame { padding: 48px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .btn-primary, .btn-outline, .btn-gold-outline { padding: 13px 24px; font-size: 12px; }
}
