/* ============================================================
   BCCJ HOLDINGS, LLC — Main Stylesheet
   Dark theme · steel-blue accent · pale gold secondary
   ============================================================ */

:root {
  --bg: #0D1117;
  --bg-deep: #0A0E13;
  --surface: #151E29;
  --surface-2: #1B2A38;
  --steel: #5B7C99;
  --steel-soft: #6F8DA8;
  --steel-text: #8FA8C0;
  --steel-text-2: #A9BFD3;
  --gold: #E2C476;
  --gold-deep: #C7A54F;
  --ink: #E9EDF2;
  --ink-soft: #C3CDD8;
  --ink-dim: #9AA7B5;
  --border: #23303D;
  --border-soft: #1C2833;
  --flag: #3A556B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background-color: #0D1117;
  color: #E9EDF2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: #8FA8C0;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

a:hover {
  color: #E2C476;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #5B7C99;
  color: #0A0E13;
  border-color: #5B7C99;
}

.btn-primary:hover {
  background-color: #6F8DA8;
  border-color: #6F8DA8;
  color: #0A0E13;
}

.btn-outline {
  background-color: transparent;
  color: #E2C476;
  border-color: #C7A54F;
}

.btn-outline:hover {
  background-color: #C7A54F;
  color: #0A0E13;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

/* ============================================================
   NAVIGATION — COLOR-STRIP TOP BAR
   ============================================================ */
.flag-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0A0E13;
  border-bottom: 1px solid #23303D;
}

.flag-strip {
  height: 6px;
  width: 100%;
  background-color: #5B7C99;
}

.flag-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.flag-brand {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #8FA8C0;
  white-space: nowrap;
}

.flag-brand span {
  color: #E2C476;
}

.flag-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.flag-nav a {
  color: #C3CDD8;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.flag-nav a:hover {
  color: #E2C476;
}

.flag-nav a.active {
  color: #E9EDF2;
}

.flag-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #5B7C99;
}

.flag-cta {
  flex-shrink: 0;
}

.flag-cta .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #23303D;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #E9EDF2;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO — PORTFOLIO BARS HERO
   ============================================================ */
.bars-hero {
  background: radial-gradient(1100px 500px at 78% -10%, #1B2A38 0%, #0D1117 60%);
  border-bottom: 1px solid #1C2833;
}

.bars-hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E2C476;
  margin-bottom: 22px;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background-color: #C7A54F;
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9EDF2;
  margin-bottom: 24px;
}

.hero-copy h1 em {
  font-style: normal;
  color: #8FA8C0;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #C3CDD8;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Portfolio bars panel */
.bars-panel {
  background-color: #151E29;
  border: 1px solid #3A556B;
  border-radius: 12px;
  padding: 30px 28px 34px;
  position: relative;
}

.panel-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E2C476;
  background-color: #1B2A38;
  border: 1px solid #23303D;
  border-radius: 4px;
  padding: 5px 12px;
  margin-bottom: 26px;
}

.bar-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.bar-row:last-child {
  margin-bottom: 0;
}

.bar-label {
  font-size: 13px;
  font-weight: 600;
  color: #C3CDD8;
  letter-spacing: 0.01em;
}

.bar-track {
  height: 40px;
  background-color: #0A0E13;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid #23303D;
}

.bar-fill {
  height: 100%;
  border-radius: 6px 0 0 6px;
  position: relative;
}

.bar-fill.steel {
  background-color: #5B7C99;
}

.bar-fill.gold {
  background-color: #E2C476;
}

.bar-fill.w1 { width: 40%; }
.bar-fill.w2 { width: 55%; }
.bar-fill.w3 { width: 70%; }
.bar-fill.w4 { width: 90%; }

.bar-pct {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 700;
  color: #0A0E13;
}

.bar-fill.gold .bar-pct {
  color: #1B2A38;
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */
.statement-row {
  background-color: #0D1117;
  border-bottom: 1px solid #1C2833;
}

.statement-row .container {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.statement-kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8FA8C0;
  margin-bottom: 22px;
}

.statement-text {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #E9EDF2;
  max-width: 900px;
  margin: 0 auto;
}

.statement-text span {
  color: #E2C476;
}

.statement-note {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: #9AA7B5;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PORTFOLIO LIST — two-column index
   ============================================================ */
.portfolio-list {
  background-color: #0A0E13;
  border-bottom: 1px solid #1C2833;
}

.portfolio-list .container {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E2C476;
  margin-bottom: 14px;
}

.section-title {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9EDF2;
}

.section-desc {
  margin-top: 16px;
  font-size: 17px;
  color: #C3CDD8;
}

.portfolio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}

.portfolio-col {
  display: flex;
  flex-direction: column;
}

.pf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid #23303D;
}

.pf-row:last-child {
  border-bottom: none;
}

.pf-name {
  font-size: 19px;
  font-weight: 700;
  color: #E9EDF2;
}

.pf-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8FA8C0;
  text-align: right;
  white-space: nowrap;
}

.portfolio-note {
  margin-top: 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #C3CDD8;
  max-width: 760px;
}

/* ============================================================
   HISTORY TIMELINE — vertical
   ============================================================ */
.history-timeline {
  background-color: #0D1117;
  border-bottom: 1px solid #1C2833;
}

.history-timeline .container {
  padding-top: 90px;
  padding-bottom: 90px;
}

.timeline {
  position: relative;
  margin-top: 12px;
  padding-left: 44px;
  max-width: 760px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background-color: #23303D;
}

.tl-item {
  position: relative;
  padding-bottom: 44px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -44px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #5B7C99;
  border: 4px solid #0D1117;
  box-shadow: 0 0 0 2px #5B7C99;
}

.tl-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #E2C476;
  margin-bottom: 6px;
}

.tl-title {
  font-size: 22px;
  font-weight: 700;
  color: #E9EDF2;
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 16px;
  color: #C3CDD8;
  max-width: 560px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background-color: #0A0E13;
  border-bottom: 1px solid #1C2833;
}

.faq-section .container {
  padding-top: 90px;
  padding-bottom: 90px;
}

.faq-wrap {
  max-width: 820px;
}

.faq-item {
  border: 1px solid #23303D;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  background-color: #0D1117;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #E9EDF2;
  font-family: inherit;
}

.faq-q:hover {
  color: #E2C476;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #3A556B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #8FA8C0;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: #5B7C99;
  color: #0A0E13;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #C3CDD8;
}

/* ============================================================
   CTA BAND — steel background
   ============================================================ */
.cta-band {
  background-color: #1B2A38;
  border-bottom: 1px solid #23303D;
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.cta-band h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9EDF2;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 17px;
  color: #C3CDD8;
  max-width: 560px;
}

.cta-band .btn-primary {
  background-color: #E2C476;
  border-color: #E2C476;
  color: #1B2A38;
}

.cta-band .btn-primary:hover {
  background-color: #C7A54F;
  border-color: #C7A54F;
  color: #1B2A38;
}

/* ============================================================
   FOOTER — ASYMMETRIC TWO-COLUMN
   ============================================================ */
.asym-2col-footer {
  background-color: #0A0E13;
}

.asym-2col-footer .container {
  padding-top: 70px;
  padding-bottom: 28px;
}

.footer-zones {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #3A556B;
}

.footer-brand-zone h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #E9EDF2;
  margin-bottom: 14px;
}

.footer-brand-zone p {
  font-size: 15px;
  line-height: 1.7;
  color: #9AA7B5;
  max-width: 520px;
  margin-bottom: 18px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  font-size: 15px;
  color: #C3CDD8;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #8FA8C0;
}

.footer-contact a:hover {
  color: #E2C476;
}

.footer-link-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8FA8C0;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #C3CDD8;
  font-size: 15px;
}

.footer-links a:hover {
  color: #E2C476;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  font-size: 14px;
  color: #9AA7B5;
}

.footer-bottom .fb-brand {
  color: #8FA8C0;
  font-weight: 600;
}

/* ============================================================
   PAGE HERO (secondary pages)
   ============================================================ */
.page-hero {
  background: radial-gradient(900px 420px at 20% -10%, #1B2A38 0%, #0D1117 60%);
  border-bottom: 1px solid #1C2833;
}

.page-hero .container {
  padding-top: 76px;
  padding-bottom: 76px;
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E2C476;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E9EDF2;
  margin-bottom: 18px;
}

.page-hero .lead {
  font-size: 18px;
  line-height: 1.7;
  color: #C3CDD8;
  max-width: 680px;
}

/* ============================================================
   SERVICE SECTIONS
   ============================================================ */
.service-section {
  border-bottom: 1px solid #1C2833;
}

.service-section .container {
  padding-top: 70px;
  padding-bottom: 70px;
}

.service-section.alt {
  background-color: #0A0E13;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-card {
  background-color: #151E29;
  border: 1px solid #23303D;
  border-radius: 10px;
  padding: 34px 32px;
}

.service-card .num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E2C476;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #E9EDF2;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #C3CDD8;
}

.process-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.process-step {
  counter-increment: step;
}

.process-step::before {
  content: "0" counter(step);
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #5B7C99;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #E9EDF2;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  color: #C3CDD8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-form .field {
  margin-bottom: 20px;
}

.form-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #C3CDD8;
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #C3CDD8;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background-color: #0A0E13;
  border: 1px solid #23303D;
  border-radius: 6px;
  color: #E9EDF2;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5B7C99;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 14px;
  color: #9AA7B5;
  margin-top: 12px;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #E9EDF2;
  margin-bottom: 14px;
}

.contact-info .info-block {
  margin-bottom: 26px;
}

.contact-info .info-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2C476;
  margin-bottom: 6px;
}

.contact-info p {
  font-size: 16px;
  color: #C3CDD8;
}

.contact-info a {
  color: #8FA8C0;
}

.contact-info a:hover {
  color: #E2C476;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .bars-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .statement-text {
    font-size: 27px;
  }

  .portfolio-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-zones {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-band .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .flag-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #0A0E13;
    border-bottom: 1px solid #23303D;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    display: none;
  }

  .flag-nav.open {
    display: flex;
  }

  .flag-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #1C2833;
  }

  .flag-nav a.active::after {
    display: none;
  }

  .flag-cta {
    margin-top: 14px;
  }

  .flag-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .statement-text {
    font-size: 23px;
  }

  .bar-row {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}
