/* ==========================================================================
   Vibrant Enterprises Trading LLC FZ — design tokens
   Signature direction: "the manifest" — customs paper, cargo routes,
   stamped compliance marks. Navy + brass, drawn from the mark itself.
   ========================================================================== */

:root {
  --navy-950: #0a1730;
  --navy-900: #0f1e3c;
  --navy-800: #16294d;
  --navy-700: #223763;
  --gold-600: #a97a1f;
  --gold-500: #c08a2e;
  --gold-400: #d9a94d;
  --gold-100: #f1e4c6;
  --paper: #f3efe3;
  --paper-raised: #faf8f1;
  --ink: #191c22;
  --slate: #5b6472;
  --slate-light: #8890994d;
  --line: #dcd3ba;
  --line-dark: #33456d;
  --ok: #3f6b4d;

  --font-display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --container: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; color: var(--navy-900); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.005em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--slate); }
strong { color: var(--ink); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--gold-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-ghost-light { border-color: rgba(255,255,255,0.35); color: #f3efe3; }
.btn-ghost-light:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-ghost-dark { border-color: var(--navy-700); color: var(--navy-900); }
.btn-ghost-dark:hover { border-color: var(--gold-600); color: var(--gold-600); }
.btn-block { width: 100%; justify-content: center; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 34px; width: auto; }
.brand-text { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: #e9e4d3; text-transform: uppercase; line-height: 1.3; }
.brand-text span { display: block; color: var(--gold-400); font-size: 0.68rem; letter-spacing: 0.16em; margin-top: 2px; }

nav.primary-nav { display: flex; align-items: center; gap: 30px; }
nav.primary-nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cdd3e0;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav.primary-nav a:hover, nav.primary-nav a.active { color: var(--gold-400); border-color: var(--gold-400); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-dark); color: #e9e4d3; padding: 8px 10px; border-radius: var(--radius); }

@media (max-width: 860px) {
  nav.primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column; align-items: flex-start; gap: 0;
    max-height: 0; overflow: hidden; border-bottom: 1px solid var(--line-dark);
    transition: max-height 0.25s ease;
  }
  nav.primary-nav.open { max-height: 400px; }
  nav.primary-nav a { width: 100%; padding: 14px 32px; border-bottom: 1px solid var(--line-dark); }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 62%, var(--navy-800) 100%);
  color: #f3efe3;
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding-bottom: 64px; }
.hero h1 { color: #faf8f1; }
.hero-sub { color: #c7cede; font-size: 1.08rem; max-width: 46ch; margin-top: 20px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stamp {
  border: 1px solid rgba(217,169,77,0.5);
  border-radius: 50%;
  width: 190px; height: 190px;
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
  position: relative;
  color: var(--gold-400);
  font-family: var(--font-mono);
  text-align: center;
  transform: rotate(-8deg);
}
.hero-stamp::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px dashed rgba(217,169,77,0.4);
  border-radius: 50%;
}
.hero-stamp-inner { font-size: 0.68rem; letter-spacing: 0.14em; line-height: 1.9; text-transform: uppercase; }
.hero-stamp-inner strong { display: block; color: var(--gold-400); font-size: 0.95rem; letter-spacing: 0.06em; margin: 4px 0; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stamp { margin: 0 auto; }
}

/* manifest strip along hero base */
.manifest-strip {
  border-top: 1px solid var(--line-dark);
  background: var(--navy-950);
}
.manifest-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.manifest-item {
  padding: 22px 20px;
  border-left: 1px solid var(--line-dark);
}
.manifest-item:first-child { border-left: none; }
.manifest-item .m-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--gold-400); text-transform: uppercase; margin-bottom: 6px;
}
.manifest-item .m-value { font-family: var(--font-display); font-size: 1.05rem; color: #f3efe3; }
@media (max-width: 760px) {
  .manifest-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .manifest-item { border-left: none; border-top: 1px solid var(--line-dark); }
  .manifest-item:nth-child(odd) { border-left: none; }
}

/* ---------- sections (light) ---------- */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-navy { background: var(--navy-900); color: #e9e4d3; }
.section-navy h2 { color: #faf8f1; }
.section-navy p { color: #b9c0d1; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- feature grid ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: var(--paper-raised);
  padding: 34px 28px;
}
.card .card-code { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold-600); letter-spacing: 0.08em; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.94rem; }

@media (max-width: 860px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---------- trade route map (signature element) ---------- */
.route-map {
  position: relative;
  background: var(--navy-950);
  border: 1px solid var(--line-dark);
  padding: 56px 32px;
}
.route-svg { width: 100%; height: auto; display: block; }
.route-caption { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold-400); text-align: center; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 18px; }

/* ---------- process / how we work ---------- */
.process-list { border-top: 1px solid var(--line); }
.process-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.process-row .p-num { font-family: var(--font-mono); color: var(--gold-600); font-size: 1.6rem; }
.process-row h3 { margin-bottom: 8px; }
.process-row p { margin: 0; max-width: 60ch; }

/* ---------- why us list ---------- */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-body); color: var(--ink);
}
.check-list li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  margin-top: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy-900);
  color: #f3efe3;
  padding: 64px 0;
  text-align: center;
  border-top: 3px solid var(--gold-500);
}
.cta-banner h2 { color: #faf8f1; margin-bottom: 16px; }
.cta-banner p { color: #c7cede; max-width: 56ch; margin: 0 auto 30px; }

/* ---------- footer ---------- */
footer.site-footer { background: var(--navy-950); color: #9aa2b5; padding: 56px 0 28px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); margin: 0 0 16px; }
.footer-grid a, .footer-grid p { display: block; color: #9aa2b5; font-size: 0.9rem; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-grid .footer-brand-mark { display: flex; flex-direction: row; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-mark img { height: 30px; width: auto; margin-bottom: 0; flex: none; }
.footer-brand-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9e4d3;
  line-height: 1.3;
  display: block;
  margin-bottom: 0;
}
.footer-brand-text span {
  display: block;
  color: var(--gold-400);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  margin-top: 3px;
  text-transform: uppercase;
}
.footer-brand-mark:hover .footer-brand-text { color: var(--gold-400); }
.footer-brand-mark:hover .footer-brand-text span { color: #e9e4d3; }
.footer-brand p { max-width: 32ch; font-size: 0.86rem; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: #6c7488;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy-950);
  color: #f3efe3;
  padding: 70px 0 54px;
  border-bottom: 3px solid var(--gold-500);
}
.page-hero p { color: #c7cede; max-width: 60ch; margin-top: 16px; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  color: var(--ink);
  border-radius: var(--radius);
}
textarea { resize: vertical; min-height: 120px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.notice {
  border: 1px solid var(--ok);
  background: #eef4ee;
  color: var(--ok);
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 28px;
  border-radius: var(--radius);
}

.form-status { font-family: var(--font-mono); font-size: 0.82rem; margin-bottom: 16px; }
.form-status:empty { display: none; }
.form-status.is-error { color: #a3372e; }
.form-status.is-ok { color: var(--ok); }

/* ---------- contact info blocks ---------- */
.info-block { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-block .i-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold-600); text-transform: uppercase; letter-spacing: 0.08em; width: 120px; flex: none; }

/* ---------- values / two-col ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.stamp-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 96px; height: 96px; border-radius: 50%;
  border: 1px solid var(--gold-500);
  font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold-600); text-align: center; flex: none;
}
