/* ─── RESET ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; line-height: 1.65; color: #0a0c10; background: #f5f2ec; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── TOKENS ──────────────────────────────────── */
:root {
  --ink:      #0a0c10;
  --ink2:     #1c1f26;
  --chalk:    #f5f2ec;
  --flame:    #e85d04;
  --flame-lt: #ff7e2e;
  --navy:     #0d2257;
  --navy-lt:  #132f75;
  --mist:     #8a8f9e;
  --rule:     #dedad2;
  --rule-dk:  rgba(255,255,255,.09);
}

/* ─── TYPOGRAPHY ──────────────────────────────── */
.bc {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.01em;
}
.serif { font-family: 'DM Serif Display', serif; }
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.45); }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 15px 34px;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-flame { background: var(--flame); color: #fff; }
.btn-flame:hover { background: var(--flame-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,93,4,.35); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink2); }
.btn-white { background: #fff; color: var(--flame); }
.btn-white:hover { background: var(--ink); color: #fff; }

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(10,12,16,.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--rule-dk);
}

/* Logo — white pill so PNG always shows */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  max-width: 120px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--flame); }

.nav-links {
  display: flex; gap: 2.2rem;
}
.nav-links a {
  font-size: .74rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; border-bottom-color: var(--flame); }

.nav-cta {
  background: var(--flame); color: #fff;
  padding: 10px 24px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--flame-lt); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: .3s; }

/* ─── MOBILE NAV ──────────────────────────────── */
.mob-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 850;
  background: rgba(10,12,16,.97);
  padding: 24px 5% 32px;
  border-bottom: 1px solid var(--rule-dk);
}
.mob-nav.open { display: block; }
.mob-nav li { border-bottom: 1px solid var(--rule-dk); }
.mob-nav a {
  display: block; padding: 15px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.mob-nav a:hover, .mob-nav a.active { color: var(--flame); }

/* ─── PAGE WRAPPER ────────────────────────────── */
.page-wrap { padding-top: 68px; }

/* ─── SECTION SPACING ─────────────────────────── */
.section { padding: 110px 5%; }
.section--dark  { background: var(--ink); color: #fff; }
.section--navy  { background: var(--navy); color: #fff; }
.section--chalk { background: var(--chalk); }
.section--white { background: #fff; }

.container { max-width: 1260px; margin: 0 auto; width: 100%; }

/* ─── SECTION HEADER ──────────────────────────── */
.sec-head { margin-bottom: 64px; }
.sec-head--center { text-align: center; }
.sec-head--center .sec-rule { margin: 16px auto 0; }

.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5rem);
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.01em;
}
.sec-rule {
  width: 48px; height: 3px;
  background: var(--flame);
  margin-top: 16px;
  border-radius: 2px;
}

/* ─── CARD BASE ───────────────────────────────── */
.card {
  background: #fff;
  border-radius: 0;
  border: 1px solid var(--rule);
  transition: box-shadow .3s, transform .3s;
}
.card:hover {
  box-shadow: 0 16px 48px rgba(10,12,16,.1);
  transform: translateY(-4px);
}
.card--dark {
  background: var(--ink2);
  border-color: var(--rule-dk);
}
.card--navy {
  background: var(--navy-lt);
  border-color: var(--rule-dk);
}

/* ─── TICKER ──────────────────────────────────── */
.ticker {
  background: var(--navy);
  overflow: hidden; white-space: nowrap;
  padding: 13px 0;
}
.ticker-track {
  display: inline-flex;
  animation: tick 26s linear infinite;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .92rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 0 44px;
}
.ticker-dot { color: var(--flame); }

/* ─── FOOTER ──────────────────────────────────── */
footer { background: var(--ink); }

/* Agency bar */

/* Footer main */
.footer-main { padding: 72px 5% 0; }
.footer-grid {
  max-width: 1260px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-dk);
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
}
.footer-logo-wrap img { height: 40px; width: auto; object-fit: contain; }
.footer-about { font-size: .84rem; color: var(--mist); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: .82rem; color: var(--mist); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: .82rem; color: var(--mist); line-height: 1.9; }

.footer-bottom {
  max-width: 1260px; margin: 0 auto;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.22); }

/* ─── REVEAL ANIMATIONS ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ─── FORM ELEMENTS ───────────────────────────── */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink2); margin-bottom: 8px;
}
.field input, .field select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--rule);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--ink);
  background: #fafaf8;
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 0;
  appearance: none;
}
.field input:focus, .field select:focus {
  border-color: var(--flame);
  background: #fff;
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8f9e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 80px 5%; }
  /* Keep footer as 2-column grid on mobile — brand spans full width, then 2+2 */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  /* Brand column spans both columns */
  .footer-grid > div:first-child {
    grid-column: span 2;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .section { padding: 64px 5%; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}