/* ── TOKENS ─────────────────────────────────── */
:root {
  --maroon:   #6A001F;
  --maroon-d: #4d0016;
  --gold:     #C9A227;
  --gold-l:   #e8c060;
  --gold-pale:#fdf8ee;
  --green:    #0B6B3A;
  --white:    #ffffff;
  --off:      #FAF9F7;
  --light:    #F5F2ED;
  --dark:     #1a1a1a;
  --mid:      #4a4a4a;
  --muted:    #7a7a7a;
  --border:   rgba(106,0,31,0.1);
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Jost', sans-serif;
  --ease: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
h1,h2,h3,h4 { font-family: var(--fd); line-height: 1.2; font-weight: 600; }
h1  { font-size: clamp(2rem,4.5vw,3.6rem); }
h2  { font-size: clamp(1.7rem,3vw,2.5rem); }
h3  { font-size: clamp(1.1rem,1.8vw,1.4rem); }
p   { line-height: 1.8; color: var(--mid); }

/* ── LAYOUT ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 90px 0; }
.light-sec  { background: var(--light); }
.dark-sec   { background: var(--maroon); }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  height: 100px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 92px; width: auto; }
.nav-links     { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a   {
  font-size: .82rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--dark);
  transition: color var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--maroon) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 2px;
}
.nav-cta:hover { background: var(--maroon-d) !important; }
.nav-cta::after { display: none !important; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: var(--ease); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 2px;
  font-family: var(--fb); font-size: .85rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer; transition: all var(--ease);
}
.btn-primary { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn-primary:hover { background: var(--maroon-d); border-color: var(--maroon-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #a8841f; border-color: #a8841f; }
.btn-sm { padding: 9px 18px; font-size: .78rem; }
.full-btn { width: 100%; text-align: center; margin-top: .5rem; }

/* ── LABELS / HEADINGS ───────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
.label::before { content: ''; display: block; width: 26px; height: 1.5px; background: var(--gold); }
.label.gold { color: var(--gold-l); }
.label.gold::before { background: var(--gold-l); }
.center.label { justify-content: center; }
.center.label::before { display: none; }
.rule { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: .8rem 0 2rem; }
.rule.center { margin-left: auto; margin-right: auto; }
.section-head.center { text-align: center; margin-bottom: 3rem; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }
.section-sub { color: var(--mid); max-width: 560px; margin: 0 auto; font-size: 1.02rem; }
.white { color: var(--white); }
.white-muted { color: rgba(255,255,255,.72); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--green); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; display: block; width: 30px; height: 1.5px; background: var(--green); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 70px; position: relative;
  background: var(--off); overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-d));
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--green));
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}
.hero h1 { color: var(--dark); margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--maroon); }
.hero-sub { font-size: 1.02rem; margin-bottom: 2rem; max-width: 460px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 3px; overflow: hidden;
}
.stat {
  padding: 1.8rem 1.2rem; background: rgba(255,255,255,.06);
  text-align: center; transition: background var(--ease);
}
.stat:hover { background: rgba(255,255,255,.12); }
.stat-n { display: block; font-family: var(--fd); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-l { display: block; font-size: .76rem; color: rgba(255,255,255,.78); margin-top: .3rem; letter-spacing: .04em; }

/* ── WHY CARDS ───────────────────────────────── */
.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: var(--border);
  border: 1px solid var(--border); border-radius: 3px; overflow: hidden;
}
.card {
  background: var(--white); padding: 2.2rem 1.8rem;
  transition: background var(--ease), transform var(--ease);
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.card:hover { background: var(--off); transform: translateY(-2px); }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--maroon); }
.card h3 { color: var(--maroon); margin-bottom: .6rem; }
.card p  { font-size: .9rem; }

/* ── MARKETS ─────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.market-card {
  border: 1px solid rgba(255,255,255,.15); border-radius: 3px;
  padding: 2.2rem 1.8rem; text-align: center;
  background: rgba(255,255,255,.04); transition: all var(--ease);
}
.market-card:hover {
  background: rgba(255,255,255,.09); border-color: var(--gold);
  transform: translateY(-4px);
}
.flag   { font-size: 2.8rem; display: block; margin-bottom: .8rem; }
.market-card h3 { color: var(--white); margin-bottom: .6rem; }
.market-card p  { color: rgba(255,255,255,.68); font-size: .9rem; }
.badge {
  display: inline-block; margin-top: 1rem;
  background: rgba(201,162,39,.2); color: var(--gold-l);
  padding: 3px 14px; border-radius: 20px; font-size: .75rem; font-weight: 500;
}

/* ── SPLIT ───────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.split-card {
  background: var(--white); border-radius: 3px;
  box-shadow: 0 6px 30px rgba(0,0,0,.09);
  overflow: hidden; transition: transform var(--ease), box-shadow var(--ease);
}
.split-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.13); }
.split-top {
  padding: 2.5rem 2rem 2rem; position: relative;
}
.split-top::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 28px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.maroon-top { background: var(--maroon); }
.green-top  { background: var(--green); }
.split-icon {
  width: 50px; height: 50px; background: rgba(255,255,255,.15);
  border-radius: 3px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.split-icon svg { width: 26px; height: 26px; stroke: var(--white); }
.split-top h3 { color: var(--white); font-size: 1.6rem; margin-bottom: .3rem; }
.split-top p  { color: rgba(255,255,255,.78); font-size: .92rem; }
.split-list   { padding: 1.8rem 2rem 0; }
.split-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .92rem; color: var(--mid);
}
.split-list li:last-child { border: none; }
.split-list li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); margin-top: 8px;
}
.split-cta { padding: 1.5rem 2rem 2rem; }

/* ── PROCESS ─────────────────────────────────── */
.process {
  display: flex; align-items: flex-start;
  gap: 0; justify-content: center;
}
.step { flex: 1; text-align: center; padding: 0 1.2rem; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--maroon);
  transition: all var(--ease);
}
.step:hover .step-num { background: var(--maroon); color: var(--white); border-color: var(--maroon); transform: scale(1.08); }
.step h3 { color: var(--maroon); font-size: 1.05rem; margin-bottom: .4rem; }
.step p  { font-size: .87rem; }
.step-arrow {
  color: var(--gold); font-size: 1.5rem; line-height: 1;
  padding-top: 20px; flex-shrink: 0;
}

/* ── JOBS ─────────────────────────────────────── */
.jobs { display: flex; flex-direction: column; gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.job {
  background: var(--white); padding: 1.8rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  transition: background var(--ease);
}
.job:hover { background: var(--off); }
.job-icon {
  flex-shrink: 0; width: 50px; height: 50px;
  background: var(--gold-pale); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.job-icon svg { width: 24px; height: 24px; stroke: var(--maroon); }
.job-info { flex: 1; }
.job-title { font-family: var(--fd); font-size: 1.15rem; color: var(--maroon); margin-bottom: .25rem; font-weight: 600; }
.job-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: .4rem; }
.job-meta span { font-size: .8rem; color: var(--muted); }
.job-info p { font-size: .88rem; }
.job-right { flex-shrink: 0; text-align: right; }
.job-sal { font-family: var(--fd); font-size: 1rem; color: var(--green); font-weight: 600; margin-bottom: .6rem; }
.jobs-note { text-align: center; margin-top: 1.5rem; color: var(--muted); font-size: .88rem; }
.jobs-note a { color: var(--maroon); font-weight: 500; }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.info-blocks  { margin-top: 2rem; }
.info-block   { margin-bottom: 1.5rem; }
.info-label   { font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.info-link    { color: var(--white); transition: color var(--ease); }
.info-link:hover { color: var(--gold-l); }
.contact-form-wrap {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 3px; padding: 2.5rem;
}
.tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,.15); margin-bottom: 2rem; }
.tab-btn {
  flex: 1; padding: .9rem 1rem; background: none; border: none; cursor: pointer;
  font-family: var(--fb); font-size: .82rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--ease);
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover  { color: rgba(255,255,255,.8); }
.tab-panel      { display: none; }
.tab-panel.active { display: block; }
.frow  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg    { margin-bottom: 1.2rem; }
.fg label {
  display: block; font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: .4rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px; color: var(--white); font-family: var(--fb); font-size: .92rem;
  transition: border-color var(--ease); outline: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.3); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.12); }
.fg select option { background: var(--maroon-d); color: var(--white); }
.fg textarea { resize: vertical; }

/* ── FOOTER ──────────────────────────────────── */
.foot-stripe { height: 4px; background: linear-gradient(90deg, var(--maroon), var(--gold), var(--green)); }
footer { background: #111; padding: 3.5rem 0 1.5rem; }
.foot-inner {}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.foot-logo { height: 44px; filter: brightness(0) invert(1); opacity: .8; margin-bottom: 1rem; }
.foot-brand p { color: rgba(255,255,255,.48); font-size: .88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: .82rem; letter-spacing: .05em;
  border: 1px solid rgba(255,255,255,.15); padding: 6px 14px; border-radius: 2px;
  transition: all var(--ease);
}
.linkedin-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.55); }
.linkedin-btn:hover { border-color: var(--gold); color: var(--gold); }
.linkedin-btn:hover svg { stroke: var(--gold); }
.foot-col h4 { font-family: var(--fd); color: var(--white); font-size: .95rem; margin-bottom: 1rem; }
.foot-col li { margin-bottom: .6rem; }
.foot-col a  { color: rgba(255,255,255,.45); font-size: .85rem; transition: color var(--ease); }
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.3rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.foot-bottom p { color: rgba(255,255,255,.3); font-size: .78rem; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 100px; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
    padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border);
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bg    { display: none; }
  .hero       { background: var(--off); }
  .hero-stats { display: none; }
  .cards-4    { grid-template-columns: 1fr 1fr; }
  .cards-3    { grid-template-columns: 1fr; }
  .split      { grid-template-columns: 1fr; }
  .process    { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .foot-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section    { padding: 60px 0; }
  h1          { font-size: 1.9rem; }
  .cards-4    { grid-template-columns: 1fr; }
  .frow       { grid-template-columns: 1fr; }
  .job        { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .job-right  { text-align: left; }
  .foot-grid  { grid-template-columns: 1fr; }
}
