/* ==========================================================================
   Blue Oak Processing — shared stylesheet
   Design tokens pulled from the actual Blue Oak brand (logo + business card):
   deep navy, warm gold, cream, with an oak-leaf motif as the signature device.
   ========================================================================== */

:root {
  --navy:        #0B1D33;
  --navy-deep:   #071527;
  --navy-soft:   #14304F;
  --gold:        #C9A24B;
  --gold-bright: #E4C06B;
  --cream:       #F3EEE1;
  --cream-dim:   #E9E2CF;
  --ink:         #1B2430;
  --slate:       #5B6B7D;
  --line:        #E2DCC9;
  --shadow:      0 24px 60px rgba(7, 21, 39, 0.16);

  /* Added for the Home redesign (Claude Design project) — same brand family,
     just a few extra tones the original token set didn't need yet. */
  --card-alt:    #FDFBF5;
  --body-deep:   #415063;
  --mist:        #C8CDD6;
  --mist-dim:    #7C8798;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--navy);
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; scroll-margin-top: 90px; }
section.tight { padding: 56px 0; }
section.on-navy { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: rgba(255,255,255,0.88); }
section.on-navy h1, section.on-navy h2, section.on-navy h3 { color: var(--cream); }
section.on-cream-dim { background: var(--cream-dim); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 29, 51, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 226, 207, 0.14);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1140px; margin: 0 auto; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.brand-mark { width: 30px; height: 30px; color: var(--gold); flex: 0 0 auto; }
.brand-name {
  font-family: "Fraunces", "Playfair Display", serif;
  font-size: 19px; letter-spacing: 0.02em; font-weight: 600; color: var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav-links a { color: rgba(243,238,225,0.78); padding: 6px 0; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important; font-weight: 700;
  padding: 10px 18px; border-radius: 999px; border-bottom: none !important;
}
.nav-cta:hover { background: var(--gold-bright); color: var(--navy-deep) !important; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 82% 8%, rgba(201,162,75,0.16), transparent 40%), linear-gradient(165deg, var(--navy), var(--navy-deep));
  color: var(--cream);
  padding: 100px 0 84px;
}
.hero-leaf {
  position: absolute; right: -60px; top: -40px; width: 460px; height: auto;
  opacity: 0.1; color: var(--gold); pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); line-height: 1.05; color: var(--cream); }
.hero p.lede { font-size: 19px; color: rgba(243,238,225,0.82); max-width: 620px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Page hero (secondary pages, shorter) ---------- */
.page-hero { padding: 64px 0 52px; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 46px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 14px 30px rgba(201,162,75,0.28); }
.btn-primary:hover { background: var(--gold-bright); }
.btn-ghost { border: 1px solid rgba(243,238,225,0.35); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-dark { border: 1px solid rgba(27,36,48,0.2); color: var(--navy); }
.btn-dark:hover { border-color: var(--navy); }

/* ---------- Section headers ---------- */
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; }
.section-head p { color: var(--slate); font-size: 17.5px; margin: 0; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  box-shadow: 0 12px 34px rgba(11,29,51,0.06);
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--slate); margin: 0; font-size: 15.5px; }
.card .mark { width: 34px; height: 34px; color: var(--gold); margin-bottom: 14px; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 22px; }
.step { display: flex; gap: 16px; }
.step .idx {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
}
.step h3 { font-size: 17px; margin-bottom: 4px; }
.step p { margin: 0; color: var(--slate); font-size: 15.5px; }

/* ---------- Stat / credibility box ---------- */
.stat-box {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  color: var(--cream); border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
}
.stat-box .num { font-family: "Fraunces", serif; font-size: 58px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.stat-box p { color: rgba(243,238,225,0.82); margin: 0; }

/* ---------- Quote / CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--cream); border-radius: 24px; padding: 46px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: var(--cream); font-size: clamp(26px, 3vw, 36px); }
.cta-band p { color: rgba(243,238,225,0.78); margin: 0 0 0; }
.cta-contacts { display: grid; gap: 10px; font-weight: 700; font-size: 15.5px; }
.cta-contacts a:hover { color: var(--gold-bright); }

/* ---------- Coming soon panel ---------- */
.coming-soon {
  border: 1px dashed rgba(201,162,75,0.5); border-radius: 18px; padding: 32px;
  background: rgba(201,162,75,0.06);
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(243,238,225,0.6); padding: 40px 0; font-size: 13px; }
.footer a { color: rgba(243,238,225,0.75); }
.footer a:hover { color: var(--gold-bright); }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal { border-top: 1px solid rgba(243,238,225,0.1); padding-top: 18px; line-height: 1.7; }

/* ---------- Home redesign additions ---------- */
.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-tagline {
  display: block; font-size: 9px; letter-spacing: 0.28em; color: var(--gold);
  margin-top: 5px; font-weight: 600; white-space: nowrap;
}
.hero-kicker {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
  font-size: 13px; letter-spacing: 0.24em; color: var(--gold); font-weight: 600;
}
.hero-kicker-line { width: 44px; height: 1px; background: var(--gold); flex: 0 0 auto; }
.btn-caps { text-transform: uppercase; letter-spacing: 0.04em; }

.feature-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--card-alt); border: 1px solid rgba(11,29,51,0.1); border-top: 3px solid var(--gold);
  padding: 34px 30px; color: var(--navy);
  transition: border-color .18s ease, background .18s ease;
}
.feature-card:hover { border-top-color: var(--navy); background: #fff; }
.feature-title-row { display: flex; align-items: center; gap: 10px; }
.feature-title { font-family: "Fraunces", "Playfair Display", serif; font-size: 23px; font-weight: 600; }
.feature-desc { font-size: 15.5px; line-height: 1.6; color: var(--slate); }
.feature-link { color: var(--gold); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: auto; }
.badge-soon {
  font-size: 11px; letter-spacing: 0.12em; font-weight: 700; text-transform: uppercase;
  color: var(--navy); background: var(--gold); padding: 3px 8px;
}

.has-leaf { position: relative; overflow: hidden; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
.why-side { display: flex; flex-direction: column; gap: 22px; }
.mist-text { font-size: 16.5px; line-height: 1.7; color: var(--mist); margin: 0 0 16px; }
.link-gold { display: inline-block; margin-top: 8px; color: var(--gold); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.link-gold:hover { color: var(--cream); }

.stat-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.stat-mini { border: 1px solid rgba(201,162,75,0.35); padding: 26px 24px; }
.stat-mini .stat-num { font-family: "Fraunces", "Playfair Display", serif; font-size: 42px; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-mini .stat-label { font-size: 14px; letter-spacing: 0.08em; color: var(--mist); margin-top: 6px; }

.testimonial-box { border: 1px dashed rgba(201,162,75,0.4); padding: 26px 24px; }
.testimonial-box .quote { font-family: "Fraunces", "Playfair Display", serif; font-size: 19px; line-height: 1.55; font-style: italic; color: var(--cream); margin: 0; }
.testimonial-box .attribution { font-size: 13px; letter-spacing: 0.14em; color: var(--gold); margin: 14px 0 0; font-weight: 600; }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; align-items: start; margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-heading { font-size: 12px; letter-spacing: 0.22em; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(243,238,225,0.1); padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ---------- Secondary-page redesign additions ---------- */
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--gold); color: var(--navy); }

/* Numbered process list (Payment Processing) */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 26px 0;
  border-top: 1px solid rgba(11,29,51,0.14);
}
.process-list .process-item:last-child { border-bottom: 1px solid rgba(11,29,51,0.14); }
.process-num { font-family: "Fraunces", "Playfair Display", serif; font-size: 34px; font-weight: 600; color: var(--gold); }
.process-item h3 { font-size: 21px; margin-bottom: 8px; }
.process-item p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body-deep); max-width: 64ch; }

/* Bordered info card on navy (Payment Processing "ways to take payment") */
.navy-card { border: 1px solid rgba(201,162,75,0.35); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; }
.navy-card-title { font-family: "Fraunces", "Playfair Display", serif; font-size: 22px; font-weight: 600; color: var(--gold); }
.navy-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--mist); }

/* Numbered step card on cream (Statement Review "how it works") */
.step-card { background: var(--card-alt); border: 1px solid rgba(11,29,51,0.1); padding: 34px 30px; }
.step-num { font-family: "Fraunces", "Playfair Display", serif; font-size: 34px; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.step-card h3 { font-size: 21px; margin-bottom: 10px; }
.step-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--body-deep); }

/* Bullet list on navy (Statement Review "what you'll learn") */
.bullet-list { display: flex; flex-direction: column; gap: 18px; }
.bullet-item { display: flex; gap: 16px; align-items: baseline; }
.bullet-dot { width: 10px; height: 10px; background: var(--gold); flex: none; transform: translateY(1px); }
.bullet-item p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--cream); }
.fine-mist { font-size: 14px; color: var(--mist-dim); margin: 18px 0 0; }

/* Centered divider (AI Coaching hero) */
.divider-center { width: 44px; height: 1px; background: var(--gold); margin: 36px auto; }

/* Pull-quote panel on navy (About) */
.quote-panel { background: var(--navy); color: var(--cream); padding: 34px 30px; position: relative; overflow: hidden; }
.quote-panel .quote { font-family: "Fraunces", "Playfair Display", serif; font-size: 21px; line-height: 1.5; font-style: italic; margin: 0; position: relative; }
.quote-panel .quote-label { font-size: 13px; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; margin: 16px 0 0; position: relative; }

/* Stacked value blocks (About Security/Service/Savings) */
.value-block { border-top: 2px solid var(--gold); padding-top: 20px; }
.value-block h3 { font-size: 19px; margin-bottom: 8px; }
.value-block p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--slate); }

/* Contact cards */
.contact-card {
  background: var(--card-alt); border: 1px solid rgba(11,29,51,0.1); border-top: 3px solid var(--gold);
  padding: 34px 30px; color: var(--navy); display: flex; flex-direction: column; gap: 10px;
  transition: border-color .18s ease, background .18s ease;
}
a.contact-card:hover { border-top-color: var(--navy); background: #fff; }
.contact-label { font-size: 12px; letter-spacing: 0.22em; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.contact-value { font-family: "Fraunces", "Playfair Display", serif; font-size: 21px; font-weight: 600; overflow-wrap: anywhere; line-height: 1.35; }
.contact-desc { font-size: 15px; line-height: 1.6; color: var(--slate); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .stat-mini-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 48px 1fr; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .hero { padding: 76px 0 60px; }
  .cta-band { padding: 30px; }
}
