/* ════════════════════════════════════════════
   VOBATEX EXPRESS — Global Design System
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #08101f;
  --navy-mid:    #0d1829;
  --navy-light:  #162035;
  --navy-card:   #111d30;
  --gold:        #c8a55a;
  --gold-light:  #e2c47a;
  --gold-pale:   #f4e8c4;
  --gold-dim:    rgba(200,165,90,0.18);
  --white:       #ffffff;
  --off-white:   #f2ede4;
  --text:        #d6dce8;
  --text-muted:  #7a8698;
  --border:      rgba(200,165,90,0.18);
  --border-dim:  rgba(255,255,255,0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:      10px;
  --radius-sm:   6px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(8,16,31,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: height var(--transition), background var(--transition);
}
.navbar.scrolled { height: 64px; background: rgba(8,16,31,0.97); }

.nav-brand {
  display: flex; align-items: center; gap: 14px;
}
.nav-logo-box {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600;
  color: var(--white); letter-spacing: 0.01em;
  line-height: 1.1;
}
.nav-logo-text small {
  display: block; font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-mono);
}

.nav-menu {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text); transition: color var(--transition), background var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); background: var(--gold-dim); }
.nav-menu .chevron { font-size: 10px; transition: transform var(--transition); }
.nav-menu li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  list-style: none;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-menu li:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text);
  transition: all var(--transition);
}
.nav-dropdown a:hover { color: var(--gold); background: var(--gold-dim); }
.nav-dropdown a .dd-icon { font-size: 16px; width: 22px; text-align: center; }

.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 22px !important; border-radius: var(--radius-sm) !important;
  font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.06em !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); color: var(--navy) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 6% 90px;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 60%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,165,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,165,90,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--white);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted); max-width: 560px;
  font-weight: 300; line-height: 1.75;
}

/* ─── SECTION BASICS ─── */
.section { padding: 100px 6%; }
.section-sm { padding: 70px 6%; }
.section-alt { background: var(--navy-mid); }
.section-dark { background: var(--navy-light); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 16px; color: var(--white);
}
.section-heading em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.75; max-width: 540px; font-weight: 300;
  margin-bottom: 52px;
}

.gold-bar { width: 52px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 22px 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--gold); color: var(--navy); }

/* ─── IMAGE PLACEHOLDER ─── */
.img-ph {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-card));
  border: 1px dashed rgba(200,165,90,0.25);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,165,90,0.04), transparent);
}
.img-ph-icon { font-size: 40px; opacity: 0.3; position: relative; }
.img-ph-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); position: relative; text-align: center; padding: 0 20px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.from-left { transform: translateX(-36px); }
.reveal.from-left.visible { transform: translateX(0); }
.reveal.from-right { transform: translateX(36px); }
.reveal.from-right.visible { transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ─── TICKER ─── */
.ticker { background: var(--gold); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; animation: tickerScroll 32s linear infinite; width: max-content; }
.ticker-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 32px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); white-space: nowrap;
}
.ticker-dot { width: 4px; height: 4px; background: rgba(8,16,31,0.4); border-radius: 50%; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── FOOTER ─── */
.footer {
  background: #050c1a;
  border-top: 1px solid var(--border);
  padding: 80px 6% 36px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.footer-about-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; margin-top: 16px; max-width: 270px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--navy-card); border: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); border-color: var(--gold); }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border-dim);
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-copy span { color: var(--gold); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 5%; }
}

/* Mobile nav open */
.nav-menu.open {
  display: flex; flex-direction: column; align-items: flex-start;
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--navy-mid);
  padding: 32px 6%;
  gap: 4px; overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-menu.open .nav-dropdown {
  position: static; transform: none; opacity: 1; pointer-events: all;
  background: transparent; border: none; box-shadow: none;
  padding: 4px 0 4px 16px;
}
