/* Big Cat Capital Grp — shared styles
   Palette + type inspired by richardsancho.com's soft gradient/grain art direction.
   Note: the reference site's actual typefaces (Roslindale, GT America) are paid
   commercial fonts and can't be embedded without a license. Fraunces (serif display)
   and Space Grotesk (grotesque sans) are used here as free, similarly-voiced stand-ins,
   alongside EB Garamond (free) for italic accent text, which the reference site also uses. */
:root {
  --brand-900: #2b2a5c;
  --brand-800: #3a3a78;
  --brand-700: #4b4b9a;
  --brand-600: #5f60bd;
  --brand-500: #8285d6;
  --brand-100: #e8e8f7;
  --brand-50: #f4f4fb;
  --coral: #d97360;
  --coral-600: #c25c49;
  --coral-100: #f8e4de;
  --teal: #4f9c90;
  --teal-100: #e2f1ef;
  --ink: #211f2e;
  --muted: #6b6558;
  --gold: #c9a265;
  --white: #ffffff;
  --cream: #f6f1e7;
  --cream-100: #efe6d5;
  --border: #e4dbc9;
  --shadow: 0 10px 30px rgba(32, 29, 23, 0.06);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Space Grotesk", "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --font-accent: "EB Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--md { max-width: 880px; }
.container--sm { max-width: 800px; }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--brand-900);
  letter-spacing: 0.2px;
}

.logo-cat {
  height: 100px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transform: translateY(-26px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-900);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav a:hover,
nav a.active {
  border-bottom-color: var(--brand-500);
  color: var(--brand-700);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--brand-600);
  color: var(--white);
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--brand-800);
  border-color: var(--brand-600);
}
.btn-outline:hover { background: var(--brand-50); }

.btn-gold {
  background: var(--gold);
  color: var(--brand-900);
}
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

.phone-pill {
  font-weight: 700;
  color: var(--brand-800);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--brand-50); }
.nav-toggle-bars {
  position: relative;
  width: 20px;
  height: 14px;
}
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
header.nav-open .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
header.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
header.nav-open .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Skip link (accessibility) */
/* Consistent keyboard focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 10% -10%, rgba(130, 133, 214, 0.32), transparent 70%),
    radial-gradient(520px 420px at 45% -14%, rgba(217, 115, 96, 0.24), transparent 70%),
    radial-gradient(560px 440px at 78% -6%, rgba(201, 162, 101, 0.28), transparent 70%),
    radial-gradient(500px 380px at 98% 30%, rgba(79, 156, 144, 0.16), transparent 70%),
    var(--cream);
  padding: 88px 0 64px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

/* Cursor-reactive color glow — follows the pointer over hero banners */
.cursor-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    460px circle at var(--mx, 50%) var(--my, 40%),
    rgba(217, 115, 96, 0.38),
    rgba(201, 162, 101, 0.28) 32%,
    rgba(79, 156, 144, 0.22) 55%,
    transparent 72%
  );
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cursor-glow.is-active { opacity: 1; }

@media (any-hover: none) {
  .cursor-glow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-700);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
}

h1 {
  font-size: 2.9rem;
  line-height: 1.14;
  margin: 0 0 18px;
  color: var(--brand-900);
  letter-spacing: -0.5px;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 46ch;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-800);
}
.stat-label { font-size: 0.85rem; color: var(--muted); }

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-card h3 {
  margin: 0 0 6px;
  color: var(--brand-900);
  font-size: 1.15rem;
}
.hero-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 18px; }

.mini-form { display: flex; flex-direction: column; gap: 12px; }

.mini-form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: -6px;
}

.mini-form input, .mini-form select {
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
}
.mini-form input:focus, .mini-form select:focus { outline: 2px solid var(--brand-500); border-color: var(--brand-500); }

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 14px;
}

.form-success {
  display: none;
  color: var(--brand-700);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 16px;
}
.form-success.visible { display: block; }

.btn-submit-block {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}
.mt-sm { margin-top: 6px; }

/* Sections */
section { padding: 64px 0; }

.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 2rem; color: var(--brand-900); margin: 0 0 12px; letter-spacing: -0.3px; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.alt-bg { background: var(--cream-100); }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-100);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.card .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }

.card h3 { margin: 0 0 10px; font-size: 1.15rem; color: var(--brand-900); }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Utility / composition classes (replace one-off inline styles) */
.items-center { align-items: center; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mb-lg { margin-bottom: 26px; }
.mt-lg { margin-top: 28px; }
.section-title-lg { font-size: 2rem; color: var(--brand-900); margin: 0 0 14px; }
.section-title-md { font-size: 1.9rem; color: var(--brand-900); margin: 0 0 14px; }
.subsection-title { color: var(--brand-900); font-size: 1.8rem; margin-top: 0; }
.form-card h3 { margin-top: 0; color: var(--brand-900); }
.flex-row-center { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.checklist { display: flex; flex-direction: column; gap: 18px; }
.checklist-item { display: flex; gap: 14px; align-items: flex-start; }
.checklist-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--brand-100);
  color: var(--brand-700);
  display: flex; align-items: center; justify-content: center;
}
.checklist-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.checklist-item h4 { margin: 0 0 4px; color: var(--brand-900); }
.checklist-item p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.stat-row { display: flex; flex-direction: column; gap: 16px; margin-top: 6px; }
.stat-row-item { display: flex; gap: 12px; align-items: center; }
.stat-row-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--brand-100);
  color: var(--brand-700);
  display: flex; align-items: center; justify-content: center;
}
.stat-row-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.stat-row-item strong { color: var(--brand-900); display: block; }
.stat-row-item span { color: var(--muted); font-size: 0.85rem; }

.testimonial-card { max-width: 760px; margin: 0 auto; text-align: center; padding: 44px; }
.testimonial-quote { font-family: var(--font-accent); font-size: 1.5rem; color: var(--brand-900); font-style: italic; margin: 0 0 18px; }
.testimonial-attribution { margin: 0; font-weight: 700; color: var(--brand-900); }
.testimonial-attribution span { font-weight: 400; color: var(--muted); }

.quote-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.quote-chip {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--brand-800);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
}

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step .num {
  counter-increment: step;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.step .num::before { content: counter(step); }
.step h3 { margin: 0 0 8px; color: var(--brand-900); font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
th { background: var(--brand-900); color: var(--white); font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .plus { transition: transform 0.2s ease; color: var(--brand-600); font-size: 1.3rem; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 20px 20px; }

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid.full-span, .field.span-2 { grid-column: span 2; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--brand-900); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brand-500);
  border-color: var(--brand-500);
}
.field small { color: var(--muted); font-size: 0.78rem; }

fieldset { border: none; padding: 0; margin: 0 0 30px; }
legend {
  font-weight: 800;
  color: var(--brand-900);
  font-size: 1.05rem;
  padding: 0 0 14px;
  border-bottom: 2px solid var(--brand-100);
  width: 100%;
  margin-bottom: 20px;
}

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 10px; }
.checkbox-row input { margin-top: 4px; }
.checkbox-row label { font-size: 0.85rem; color: var(--muted); font-weight: 400; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--brand-800), var(--brand-900));
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { margin: 0 0 8px; font-size: 1.7rem; }
.cta-banner p { margin: 0; color: #d5d6f2; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-info .item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-100); color: var(--brand-700);
  display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0;
}
.contact-info .icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.contact-info h4 { margin: 0 0 4px; color: var(--brand-900); }
.contact-info p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Footer */
footer {
  background: var(--brand-900);
  color: #d5d6f2;
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-grid h4 { color: var(--white); margin: 0 0 16px; font-size: 0.95rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--white); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 1.3rem; margin-bottom: 14px; }
.footer-tagline { color: #d5d6f2; font-size: 0.9rem; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-fine { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; font-size: 0.78rem; color: #a8aad9; line-height: 1.7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; margin-top: 18px; font-size: 0.8rem; color: #a8aad9; flex-wrap: wrap; gap: 8px;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(480px 260px at 12% 0%, rgba(130, 133, 214, 0.20), transparent 70%),
    radial-gradient(420px 260px at 55% 0%, rgba(217, 115, 96, 0.14), transparent 70%),
    radial-gradient(440px 260px at 92% 0%, rgba(201, 162, 101, 0.18), transparent 70%),
    var(--cream);
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: var(--brand-600); font-weight: 700; margin-bottom: 12px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  header.nav-open nav { max-height: 400px; }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  nav ul li { border-top: 1px solid var(--border); }
  nav ul li:first-child { border-top: none; }
  nav a {
    display: block;
    padding: 14px 2px;
    border-bottom: none;
  }
  nav a.active, nav a:hover { color: var(--brand-700); }

  h1 { font-size: 2rem; }
  .grid-3, .grid-2, .steps, .form-grid { grid-template-columns: 1fr; }
  .form-grid.full-span, .field.span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .nav-actions .phone-pill { display: none; }
}
