/*
Theme Name:  The SIPs Consultant
Theme URI:   https://sipsconsultant.com
Author:      Sonic — Built for Darryl L. Simpson
Description: Custom authority theme for sipsconsultant.com — national SIP consulting
Version:     1.0.0
License:     Proprietary
Text Domain: sips-consultant
*/

/* ============================================================
   DESIGN SYSTEM
============================================================ */
:root {
  --slate:       #1C2B39;
  --slate-light: #243548;
  --bronze:      #B8892A;
  --bronze-dark: #9A6E1F;
  --bronze-bg:   rgba(184,137,42,0.10);
  --white:       #FFFFFF;
  --off-white:   #F5F3EF;
  --text:        #2E2E2E;
  --text-muted:  #6B6B6B;
  --text-light:  #8A8A8A;
  --border:      #E8E4DE;

  --font-display: 'Barlow', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container:   1200px;
  --pad:         24px;
  --radius:      6px;
  --radius-sm:   4px;

  --shadow:      0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.07);
  --shadow-hover:0 8px 32px rgba(0,0,0,0.13);
  --t:           200ms ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── LABEL ── */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--bronze); color: #fff; }
.btn-primary:hover { background: var(--bronze-dark); }
.btn-ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.65); }
.btn-outline { background: transparent; color: var(--bronze); border-color: var(--bronze); }
.btn-outline:hover { background: var(--bronze); color: #fff; }

/* ── SECTIONS ── */
.section      { padding: 96px 0; }
.section-alt  { background: var(--off-white); }
.section-dark { background: var(--slate); }

.section-hd { margin-bottom: 56px; }
.section-hd h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.section-hd.dark h2 { color: #fff; }
.section-hd p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--slate);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  margin-right: auto;
}
.site-logo em { color: var(--bronze); font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-phone { font-weight: 600 !important; color: rgba(255,255,255,0.85) !important; margin-left: 6px; }
.nav-book  {
  background: var(--bronze) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  margin-left: 4px;
  padding: 8px 16px !important;
}
.nav-book:hover { background: var(--bronze-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--slate);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 199;
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:last-child { border: none; }
.mobile-cta {
  display: block;
  margin-top: 16px;
  text-align: center;
  background: var(--bronze);
  color: #fff !important;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
}

/* ── HERO ── */
.hero {
  padding-top: calc(68px + 88px);
  padding-bottom: 104px;
  background-color: var(--slate);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,137,42,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,137,42,0.07) 1px, transparent 1px);
  background-size: 240px 240px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--bronze); opacity: 0.5; }

.hero-headline { font-weight: 800; color: #fff; margin-bottom: 28px; letter-spacing: -0.025em; }
.hero-headline .line-proof {
  display: block;
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.hero-headline .line-claim {
  display: block;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.68);
  line-height: 1.68;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 13px 20px;
  transition: var(--t);
}
.hero-tel:hover { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ── CREDIBILITY BAR ── */
.cred-bar { background: var(--white); border-top: 3px solid var(--bronze); }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cred-item { text-align: center; padding: 40px 20px; border-right: 1px solid var(--border); }
.cred-item:last-child { border-right: none; }
.cred-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--slate);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.cred-lbl { font-size: 12px; font-weight: 600; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── PERSONA CARDS ── */
.personas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.persona-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: box-shadow var(--t), transform var(--t);
}
.persona-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.persona-icon { display: block; width: 44px; height: 44px; max-width: 44px; max-height: 44px; color: var(--bronze); margin-bottom: 20px; }
.persona-icon svg { width: 44px; height: 44px; }
.persona-card h3 { font-size: 19px; font-weight: 700; color: var(--slate); letter-spacing: -0.01em; margin-bottom: 10px; }
.persona-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  background: var(--border);
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--slate); color: #fff;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative; z-index: 1; flex-shrink: 0;
}
.step h3 { font-size: 20px; font-weight: 700; color: var(--slate); letter-spacing: -0.01em; margin-bottom: 12px; }
.step p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── PACKAGES ── */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--t);
}
.pkg-card:hover { box-shadow: var(--shadow-hover); }
.pkg-card.featured { border-color: var(--bronze); border-width: 2px; }
.pkg-scope { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze); margin-bottom: 8px; }
.pkg-name  { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--slate); letter-spacing: -0.01em; margin-bottom: 12px; }
.pkg-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.pkg-list  { list-style: none; margin-bottom: 28px; flex: 1; }
.pkg-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text);
  padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.4;
}
.pkg-list li:last-child { border-bottom: none; }
.chk { width: 16px; height: 16px; max-width: 16px; max-height: 16px; color: var(--bronze); flex-shrink: 0; margin-top: 1px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
.about-photo {
  aspect-ratio: 4/5;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 13px; color: var(--text-light); padding: 32px;
}
.about-bio { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin-bottom: 28px; }
.cred-list { list-style: none; margin-bottom: 32px; }
.cred-list li {
  font-size: 14px; color: var(--text);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.cred-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); flex-shrink: 0; }
.text-link { font-size: 14px; font-weight: 600; color: var(--bronze); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--t); }
.text-link:hover { gap: 10px; }
.pull-quote { margin-top: 44px; padding: 40px; background: var(--off-white); border-left: 4px solid var(--bronze); border-radius: 0 var(--radius) var(--radius) 0; position: relative; }
.pull-quote-mark { font-family: Georgia, serif; font-size: 72px; line-height: 1; color: var(--bronze); opacity: 0.25; position: absolute; top: 20px; left: 32px; }
.pull-quote blockquote { font-family: var(--font-display); font-size: clamp(18px,2.2vw,24px); font-weight: 600; font-style: italic; color: var(--slate); line-height: 1.4; margin-bottom: 20px; position: relative; z-index: 1; }
.pull-quote cite { font-size: 12px; font-weight: 600; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }

/* ── MYTHS ── */
.myths { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.myth-card { padding: 44px; border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); background: rgba(255,255,255,0.02); }
.myth-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(184,137,42,0.9); background: rgba(184,137,42,0.12); padding: 4px 10px; border-radius: 2px; margin-bottom: 18px; }
.myth-claim { font-family: var(--font-display); font-size: clamp(20px,2.5vw,28px); font-weight: 700; color: rgba(255,255,255,0.4); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.2); line-height: 1.2; margin-bottom: 24px; }
.truth-badge { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #6BBF6B; margin-bottom: 12px; }
.myth-truth { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.72; }

/* ── TESTIMONIALS ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; }
.testi-qmark { font-family: Georgia, serif; font-size: 52px; line-height: 1; color: var(--bronze); opacity: 0.35; position: absolute; top: 18px; left: 22px; }
.testi-text    { font-size: 15px; color: var(--text); line-height: 1.72; margin: 16px 0 24px; }
.testi-name    { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--slate); margin-bottom: 3px; }
.testi-project { font-size: 12px; font-weight: 600; color: var(--bronze); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── FINAL CTA ── */
.final-cta { padding: 104px 0; background: var(--slate); text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}
.final-cta .container { position: relative; z-index: 1; }
.cta-h   { font-family: var(--font-display); font-size: clamp(36px,5.5vw,64px); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.04; margin-bottom: 20px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.62); max-width: 500px; margin: 0 auto 44px; line-height: 1.65; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--slate); border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-logo em { color: var(--bronze); font-style: normal; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.65; margin-bottom: 20px; }
.footer-phone { font-size: 16px; font-weight: 600; color: var(--bronze); display: inline-block; }
.footer-col-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-copy a { color: inherit; transition: color var(--t); }
.footer-copy a:hover { color: rgba(255,255,255,0.6); }

/* ── INNER PAGE STYLES ── */
.page-hero { padding: calc(68px + 64px) 0 64px; background: var(--slate); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 48px 48px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.page-hero-breadcrumb a { color: var(--bronze); }
.page-hero h1 { font-size: clamp(32px,5vw,56px); font-weight: 800; color: #fff; letter-spacing: -0.025em; max-width: 800px; margin-bottom: 16px; }
.page-hero-meta { font-size: 15px; color: rgba(255,255,255,0.6); }

.page-content { padding: 80px 0; }
.page-content .prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
}
.page-content .prose h2 { font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--slate); letter-spacing: -0.02em; margin: 48px 0 16px; }
.page-content .prose h3 { font-size: clamp(20px,2.5vw,28px); font-weight: 700; color: var(--slate); letter-spacing: -0.01em; margin: 36px 0 12px; }
.page-content .prose p  { margin-bottom: 20px; }
.page-content .prose ul { list-style: none; margin-bottom: 20px; }
.page-content .prose ul li { padding: 6px 0 6px 20px; position: relative; }
.page-content .prose ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); position: absolute; left: 0; top: 14px; }

/* Sidebar CTA */
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.sidebar-cta { background: var(--slate); border-radius: var(--radius); padding: 36px; position: sticky; top: 88px; }
.sidebar-cta h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em; }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 24px; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.sidebar-cta .sidebar-phone { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; font-weight: 600; color: var(--bronze); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 340px 1fr; gap: 56px; }
  .personas { grid-template-columns: repeat(2, 1fr); }
  .page-layout { grid-template-columns: 1fr 300px; gap: 48px; }
}

@media (max-width: 900px) {
  .packages { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar-cta { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding-top: calc(68px + 56px); padding-bottom: 72px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cred-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .cred-item:last-child { border-bottom: none; }
  .cred-item:nth-last-child(2) { border-bottom: none; }
  .personas { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .packages { grid-template-columns: 1fr; }
  .myths { grid-template-columns: 1fr; gap: 20px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .myth-card { padding: 30px; }
  .pull-quote { padding: 28px 28px 28px 32px; }
}
