/* ============================================================
   MARCUSMAUTE.COM — Shared Design System
   Navy #0d2252 | Red #c8192c | Black #06090f
   Fonts: Barlow Condensed (headings) + Lora (body)
   ============================================================ */

:root {
  --black:  #06090f;
  --deep:   #0b1220;
  --navy:   #0d2252;
  --navy-m: #1a3470;
  --red:    #c8192c;
  --red-h:  #e01e32;
  --red-d:  #9e1222;
  --white:  #ffffff;
  --bg:     #f7f8fb;
  --bg2:    #f0f2f6;
  --border: #e2e8f2;
  --text:   #0d1a30;
  --muted:  #4a5d7a;
  --dim:    #8a9ab8;
  --r:      4px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg2);
  padding: 12px;
  min-height: 100vh;
  box-sizing: border-box;
}
body {
  font-family: 'Lora', serif;
  background: var(--bg2);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Site frame — visual wrapper, never clips scroll */
.site-frame {
  background: var(--white);
  max-width: 1480px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.07), 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden; /* safe here — it's not body, doesn't block scroll */
  position: relative;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 66px;
  background: rgba(6,9,15,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-thin { font-weight: 300; color: #fff; }
.logo-bold { font-weight: 700; color: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--r);
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--red-h) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all .2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(6,9,15,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px 20px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: #fff; }

/* ── SHARED SECTION UTIL ── */
.section-wrap { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-eyebrow.light { color: rgba(255,255,255,0.4); }
.section-eyebrow.light::before { background: rgba(255,255,255,0.2); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 15px 30px;
  border-radius: var(--r);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background .15s;
  border: none;
  cursor: pointer;
}
.btn-red:hover { background: var(--red-h); }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all .15s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 15px 30px;
  border-radius: var(--r);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background .15s;
}
.btn-navy:hover { background: var(--navy-m); }

/* ── FOOTER ── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  text-decoration: none;
}
.flogo-thin { font-weight: 300; color: var(--text); }
.flogo-bold { font-weight: 700; color: var(--text); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: #c8d0df;
  letter-spacing: 0.04em;
}

/* ── NL FORM ── */
.nl-form { display: flex; gap: 10px; }
.nl-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--r);
  font-family: 'Lora', serif;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}
.nl-form input.dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.nl-form input.dark::placeholder { color: rgba(255,255,255,0.3); }
.nl-form input.dark:focus { border-color: rgba(255,255,255,0.3); }
.nl-form input.light {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}
.nl-form input.light::placeholder { color: var(--dim); }
.nl-form input.light:focus { border-color: var(--navy); }

/* ── RESPONSIVE BASE ── */
@media (max-width: 768px) {
  html { padding: 0; }
  .site-frame { border-radius: 0; box-shadow: none; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
  .nl-form { flex-direction: column; }
}
