/* ================================================================
   Wildcat Peninsula Ventures LLC — Shared Stylesheet
   ================================================================ */

:root {
  --navy-900: #0b1929;
  --navy-800: #0f2239;
  --navy-700: #172e4e;
  --navy-600: #1e3d6b;
  --navy-500: #2b5490;
  --accent:   #4a84c8;
  --accent-light: #6aa3e0;
  --white:    #ffffff;
  --off-white: #f5f7fa;
  --gray-100: #e8ecf2;
  --gray-300: #c4cdd9;
  --gray-500: #7a8ba0;
  --gray-700: #3d4f63;
  --text:     #0d1f33;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          'Helvetica Neue', Arial, sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  --radius: 4px;
  --shadow: 0 2px 12px rgba(11, 25, 41, 0.10);
  --shadow-md: 0 4px 24px rgba(11, 25, 41, 0.14);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); text-decoration: underline; }

/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--navy-800);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p,
.section--dark li {
  color: var(--gray-300);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section--dark .section-label {
  color: var(--accent-light);
}

.section-heading {
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 640px;
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.section--dark .section-intro {
  color: var(--gray-300);
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}

.nav__logo-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  text-decoration: none;
}

.nav__links .nav-cta {
  background: var(--navy-600);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.nav__links .nav-cta:hover {
  background: var(--accent);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
}

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

  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy-800);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav__links.open { display: flex; }

  .nav__links .nav-cta {
    align-self: flex-start;
  }
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */

.hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 6rem 0 5.5rem;
  border-bottom: 1px solid var(--navy-700);
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}

.hero__title {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero__title em {
  font-style: normal;
  color: var(--accent-light);
}

.hero__body {
  max-width: 560px;
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-300);
}

.btn--outline-dark:hover {
  border-color: var(--navy-600);
  color: var(--navy-600);
  text-decoration: none;
}

/* ----------------------------------------------------------------
   CARDS
   ---------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy-600);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   STAT BAR
   ---------------------------------------------------------------- */

.stat-bar {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin: 3rem 0;
}

.stat__num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------------- */

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1.25rem 0 1.75rem;
}

/* ----------------------------------------------------------------
   CONTACT FORM
   ---------------------------------------------------------------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 580px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy-700);
  letter-spacing: 0.01em;
}

input[type="text"],
input[type="email"],
textarea,
select {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.5;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 132, 200, 0.15);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

/* ----------------------------------------------------------------
   CONTACT INFO BLOCK
   ---------------------------------------------------------------- */

.contact-info {
  background: var(--navy-800);
  border-radius: 6px;
  padding: 2rem;
  color: var(--white);
  height: fit-content;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

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

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}

.contact-info-icon svg { width: 16px; height: 16px; }

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.contact-info-value a {
  color: var(--accent-light);
}

.contact-info-value a:hover {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 780px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */

.footer {
  background: var(--navy-900);
  color: var(--gray-500);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.footer__brand-desc {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--gray-500);
  max-width: 340px;
  margin: 0;
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}

@media (max-width: 600px) {
  .footer__nav { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
}

.footer__nav a {
  font-size: 0.825rem;
  color: var(--gray-500);
  text-decoration: none;
}

.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__legal a {
  color: var(--gray-500);
  text-decoration: none;
}

.footer__legal a:hover { color: var(--white); }

/* ----------------------------------------------------------------
   PROSE (privacy policy, long-form)
   ---------------------------------------------------------------- */

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--navy-800);
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--navy-700);
}

.prose p { color: var(--gray-700); }

.prose ul li { color: var(--gray-700); }

.prose a { color: var(--accent); }

.prose .last-updated {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

/* ----------------------------------------------------------------
   PAGE HEADER (inner pages)
   ---------------------------------------------------------------- */

.page-header {
  background: var(--navy-900);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--navy-700);
}

.page-header__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--gray-300);
  max-width: 520px;
  font-size: 1rem;
  margin: 0;
}

/* ----------------------------------------------------------------
   TRUST BADGE ROW
   ---------------------------------------------------------------- */

.trust-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 3rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ----------------------------------------------------------------
   UTILITY
   ---------------------------------------------------------------- */

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
