/* =========================================================
   B.I.G. Capital LLC — bespoke landing page
   Palette: navy #182244 + cyan #46b7e4 on white
   Type: Unica One (display, all caps), Lato (body)
   Mood: quiet family-office credibility. No gradients.
   ========================================================= */

:root {
  --navy: #182244;
  --navy-2: #182343;
  --navy-ink: #10162c;
  --cyan: #46b7e4;
  --cyan-deep: #3b97bf;
  --cyan-alt: #398eb6;
  --surface: #ffffff;
  --surface-muted: #eeefef;
  --body: #585858;
  --body-soft: #858585;
  --rule: rgba(16, 22, 44, 0.12);
  --rule-light: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 1px 3px rgba(16, 22, 44, 0.08);
  --shadow-md: 0 6px 24px rgba(16, 22, 44, 0.12);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--cyan-deep); text-decoration: none; transition: color 140ms ease; }
a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  padding-top: 28px;
  padding-bottom: 0;
  border-top: 4px solid var(--navy);
  background: var(--surface);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}

.logo-link { display: inline-block; }

.logo {
  height: 56px;
  width: auto;
}

.header-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eyebrow,
.eyebrow-sub {
  font-family: 'Unica One', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--navy);
}

.eyebrow-sub { color: var(--body-soft); font-size: 10px; }

.accent-rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 0;
  position: relative;
}

.accent-rule::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 96px;
  height: 3px;
  background: var(--cyan);
}

/* =========================================================
   SECTION LABELS (uppercase, letter-spaced — brand signature)
   ========================================================= */

.section-label {
  font-family: 'Unica One', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--navy);
  margin: 0 0 20px 0;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--cyan);
}
.section-label--light { color: #ffffff; }
.section-label--light::before { background: var(--cyan); }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 88px 0 72px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

.hero-headline {
  font-family: 'Unica One', 'Oswald', sans-serif;
  font-weight: 400;
  color: var(--navy);
  font-size: clamp(32px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 28px 0;
  max-width: 22ch;
  text-transform: none;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--body);
  max-width: 60ch;
  margin: 0;
  border-left: 2px solid var(--cyan);
  padding-left: 16px;
}

/* =========================================================
   SECTION LAYOUT
   ========================================================= */

.section {
  padding: 88px 0;
}

.section--framed {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

.section--dark {
  background: var(--navy);
  color: #e7ebf5;
  position: relative;
}
.section--dark::before,
.section--dark::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--cyan);
  width: 120px;
}
.section--dark::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section--credibility {
  background: var(--surface-muted);
}

.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.col-label { padding-top: 6px; }

.lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 24px 0;
  font-weight: 400;
}

.lede--light { color: #ffffff; }
.body--light { color: #c8cfe1; }

p { margin: 0 0 20px 0; }

.col-body p:last-child { margin-bottom: 0; }

/* =========================================================
   60/30/10 SPLIT CARDS
   ========================================================= */

.split-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 32px 0;
}

.split-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  position: relative;
}
.split-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: rgba(70, 183, 228, 0.35);
}

.split-card--accent {
  background: rgba(70, 183, 228, 0.08);
  border-color: rgba(70, 183, 228, 0.45);
}
.split-card--accent::before { background: var(--cyan); width: 56px; height: 3px; }

.split-pct {
  font-family: 'Unica One', 'Oswald', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: 0.02em;
}

.split-label {
  font-family: 'Unica One', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--cyan);
  margin: 0 0 10px 0;
}

.split-copy {
  font-size: 14px;
  line-height: 1.55;
  color: #c8cfe1;
  margin: 0;
}

.split-card--accent .split-copy { color: #dcebf4; }

/* =========================================================
   PORTFOLIO TILE GRID (white cards echoing brand pattern)
   ========================================================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 36px 0 8px 0;
}

.portfolio-tile {
  background: var(--navy);
  color: #ffffff;
  padding: 22px 20px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.portfolio-tile::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 3px;
  background: var(--cyan);
}

.tile-label {
  font-family: 'Unica One', 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}
.tile-note {
  font-size: 13px;
  color: #c8cfe1;
  margin: 0;
  line-height: 1.45;
}

/* =========================================================
   CREDIBILITY LIST
   ========================================================= */

.cred-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}
.cred-list li {
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--rule);
  position: relative;
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
}
.cred-list li:last-child { border-bottom: 1px solid var(--rule); }
.cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 16px;
  height: 2px;
  background: var(--cyan);
}
.cred-list strong {
  color: var(--navy);
  font-weight: 700;
}

.link-line { font-size: 15px; }

/* =========================================================
   QUOTE BLOCK (Lincoln-style, native to their brand)
   ========================================================= */

.quote-block {
  background: var(--navy-ink);
  padding: 72px 0;
  position: relative;
}
.quote-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
}

.quote-block blockquote {
  margin: 0;
  text-align: center;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.quote-block p {
  font-family: 'Unica One', 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin: 0 0 20px 0;
}
.quote-block cite {
  font-family: 'Unica One', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--cyan);
  font-style: normal;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  background: var(--navy-2);
  color: #ffffff;
  padding: 96px 0;
}

.cta-headline {
  font-family: 'Unica One', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin: 0 0 24px 0;
  max-width: 28ch;
}

.cta-body {
  color: #c8cfe1;
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 36px 0;
}

.cta-button {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy);
  font-family: 'Unica One', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
  min-height: 48px;
  line-height: 1;
}
.cta-button:hover {
  background: #ffffff;
  color: var(--navy);
  text-decoration: none;
}
.cta-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.cta-calendar-line {
  margin-top: 20px;
  color: #c8cfe1;
  font-size: 14px;
}
.inline-link { color: var(--cyan); }
.inline-link:hover { color: #ffffff; }

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--navy-ink);
  color: #c8cfe1;
  padding: 64px 0 40px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-label {
  font-family: 'Unica One', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--cyan);
  margin: 0 0 10px 0;
}

.footer-value {
  font-family: 'Unica One', 'Oswald', sans-serif;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.footer-meta { font-size: 13px; color: #a7b0c6; margin: 0 0 4px 0; }
.footer-link { color: var(--cyan); }
.footer-link:hover { color: #ffffff; }

.footer-rule {
  height: 1px;
  background: var(--rule-light);
  margin: 0 0 24px 0;
}

.footer-fineprint {
  font-size: 12px;
  color: #7d86a0;
  margin: 0;
  letter-spacing: 0.02em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .col-label { padding-top: 0; }
  .split-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .cta-section { padding: 72px 0; }
  .header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .header-meta { text-align: left; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .lede { font-size: 18px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .cta-button { width: 100%; text-align: center; padding: 18px 20px; }
  .quote-block { padding: 56px 0; }
  .split-card { padding: 22px 18px; }
  .split-pct { font-size: 40px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Print fallback */
@media print {
  .cta-section, .quote-block, .section--dark { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
