:root{
  --bg: #050814;
  --navy: #0a1022;
  --navy-soft: #0b1226;
  --border: #2a3550;
  --border-2: #3a4a70;

  --text: #e9eefc;
  --silver: #c8d0e6;
  --muted: #aab3cd;

  --accent: #f0d38a;       /* warm gold */
  --accent-blue: #9bb7ff;  /* cool accent */

  --shadow: 0 12px 28px rgba(0,0,0,.45);
  --radius: 18px;

  --container: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 40% 0%, rgba(155,183,255,.18), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, rgba(240,211,138,.14), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img{ max-width:100%; height:auto; }

a{ color: var(--accent-blue); }
a:hover{ opacity:.9; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section{ padding: 44px 0; }

.panel{
  background: rgba(10,16,34,.62);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

h1,h2,h3{ margin: 0 0 10px; }
h1{
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--text);
  letter-spacing: .2px;
}
h2{
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.0rem);
  color: var(--accent);
}
h3{
  font-size: 1.05rem;
  color: var(--text);
}

.lead{ color: var(--silver); font-size: 1.08rem; margin: 14px 0; }
.lead.small{ font-size: 1.0rem; opacity: .95; }
.muted{ color: var(--silver); }
.clean{ list-style:none; padding:0; margin:0; }
.clean li{ margin: 10px 0; }

/* Make internal pages match homepage header appearance */
.site-header {
  background: linear-gradient(
    135deg,
    rgba(10,16,32,0.96),
    rgba(6,10,22,0.98)
  );
}
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(5,8,20,.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42,53,80,.55);
}
.site-header {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .header-inner {
  padding: 18px 0;
}

.header-inner{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  color: var(--text);
  text-decoration:none;
  font-weight: 650;
}
.brand img{ height: 42px; width:auto; display:block; }

.brand span{ font-size: 1.05rem; }

.site-nav{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.site-nav a{
  color: var(--text);
  text-decoration:none;
  font-size: .95rem;
  opacity: .95;
}
.site-nav a:hover{ opacity:1; text-decoration: underline; }
/* Brand logo above hero */
/* Brand Logo Block (between header and hero) */
.brand-hero{
  padding: 26px 0 10px;
}

.brand-hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
}

/* Logo size: matches pre-rewrite feel */
.brand-hero-logo{
  height: 380px;
  width: auto;
  max-width: 90vw;
  display:block;
  filter: drop-shadow(0 0 10px rgba(0,0,0,.35));
}

/* Gold divider under logo */
.brand-divider{
  width: min(520px, 88vw);
  height: 1px;
  margin-top: 4px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(198, 166, 94, 0.85),  /* soft gold */
    transparent
  );
  box-shadow: 0 0 6px rgba(198, 166, 94, 0.35);
}





/* =========================
   HERO
========================= */

/* Hero logo */
.hero-logo {
  margin-bottom: 28px;
}

.hero-logo img {
  max-width: 200px;
  height: auto;
}


.hero {padding: 64px 0 32px;}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: center; /* ⬅️ THIS is the key change */
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 140px;
    margin-bottom: 22px;
  }
}

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero-cred{
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
}

.profile-card{
  background: rgba(10,16,34,.62);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align:center;
}
.headshot{
  width: 180px;
  height: 180px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: 0 10px 20px rgba(0,0,0,.45);
  margin: 6px auto 12px;
  display:block;
}
.profile-name{ font-weight: 750; }
.profile-title{ color: var(--muted); font-size: .95rem; margin-top: 6px; }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.lnc-title {
  white-space: nowrap;
}

@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; }
}
.bullets{ margin: 12px 0 0; }
.bullets li{ margin: 10px 0; color: var(--silver); }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
}
.card{
  background: rgba(11,18,38,.72);
  border: 1px solid rgba(42,53,80,.75);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.34);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(155,183,255,.55);
  text-decoration:none;
  color: var(--text);
  background: transparent;
  cursor:pointer;
  font-weight: 650;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(155,183,255,.18), rgba(240,211,138,.18));
  border-color: rgba(240,211,138,.55);
}
.btn-outline{
  border-color: rgba(155,183,255,.55);
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Pills (expand/collapse) */
.pill-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 980px){
  .pill-grid{ grid-template-columns: 1fr; }
}
.pill{
  background: rgba(11,18,38,.72);
  border: 1px solid rgba(42,53,80,.75);
  border-radius: 16px;
  overflow:hidden;
}
.pill-head{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px;
  background: transparent;
  border: none;
  color: var(--text);
  cursor:pointer;
  text-align:left;
}
.pill-title{ font-weight: 800; }
.pill-sub{ color: var(--muted); font-size: .92rem; margin-top: 4px; }
.pill-toggle{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(155,183,255,.45);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}
.pill-body{
  display:none;
  padding: 0 16px 16px;
  color: var(--silver);
}
.pill.is-open .pill-body{ display:block; }
.pill.is-open .pill-toggle{ transform: rotate(45deg); }

/* Forms */
label{ display:block; margin: 12px 0 6px; color: var(--accent); font-weight: 650; }
input, textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(42,53,80,.85);
  background: rgba(5,8,20,.55);
  color: var(--text);
  outline:none;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(155,183,255,.7);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.service-area{
  padding: 44px 0;
  text-align:center;
}
.site-footer{
  padding: 26px 0 90px;
  text-align:center;
  color: var(--muted);
}

/* Sticky CTA */
.sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  display:flex;
  justify-content:center;
  z-index: 60;
  pointer-events:none;
}
.sticky-cta a{
  pointer-events:auto;
  box-shadow: 0 18px 38px rgba(0,0,0,.5);
}
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.article-header {
  padding: 48px 0 24px;
  text-align: center;
}

.article-logo img {
  height: 96px;            /* ⬅️ smaller, more professional */
  width: auto;
  max-width: 90vw;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(0,0,0,.35));
}

.article-logo-divider {
  width: min(420px, 86vw);
  height: 1px;
  margin: 14px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(240, 211, 138, 0.85),
    transparent
  );
  box-shadow: 0 0 6px rgba(240, 211, 138, 0.35);
}

  /* Article content links: no default blue/underline */
.blog-container a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 211, 138, 0.35);
}

.blog-container a:hover {
  opacity: 0.95;
  border-bottom-color: rgba(240, 211, 138, 0.75);
}
.back-link {
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: none;
}

.back-link:hover {
  color: var(--accent);
}

/* =========================
   RESOURCES HUB
========================= */

.resources-hero {
  margin-bottom: 18px;
}

.resources-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.resources-hero .muted {
  max-width: 720px;
  margin-top: 6px;
}

/* Resource cards already use .card — just small polish */
.resource-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card p {
  margin-bottom: 0;
}

.resource-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Badge (if we ever use "Coming soon" again) */
.badge-soon {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
  background: rgba(5, 8, 20, 0.8);
}


/* =========================
   ARTICLE / BLOG PAGES
========================= */

.resource-article {
  max-width: 820px;
  margin: 0 auto;
}

.resource-article h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.resource-article h2 {
  margin-top: 24px;
}

.resource-article p,
.resource-article ul,
.resource-article li {
  font-size: 1rem;
}

.resource-article ul {
  padding-left: 1.2rem;
}

.resource-article ul li {
  margin: 6px 0;
}

/* Back link at top of articles */
.resource-article .back-link {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Utility for article CTAs */
.resource-article .cta-row {
  margin-top: 18px;
}


/* =========================
   SMALL SCREEN ADJUSTMENTS
========================= */

@media (max-width: 768px) {
  .panel {
    padding: 20px;
  }

  .brand-hero-logo {
    height: auto;
    max-height: 260px;
  }

  .grid-3 {
    gap: 12px;
  }

  .card {
    padding: 14px;
  }
}
/* Lead Magnet Styles */
.lead-magnet-panel {
  background: linear-gradient(145deg, rgba(10,16,34,0.8), rgba(20,30,60,0.4));
  border: 1px solid var(--accent-blue); /* Highlights it as special */
}

.badge {
  display: inline-block;
  background: rgba(240, 211, 138, 0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resource-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
}

.small-print {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 10px;
}

/* Mockup Visual for the PDF */
.mockup-card {
  background: var(--navy-soft);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 30px;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.mockup-line {
  height: 8px;
  background: var(--border);
  margin-bottom: 10px;
  border-radius: 4px;
}

.mockup-line.short { width: 60%; }

.mockup-check {
  color: var(--accent-blue);
  font-size: 0.9rem;
  margin-top: 15px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

/* Resource Section Styling */
.lead-magnet-panel {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
  margin-top: -40px; /* Overlaps slightly with hero for a modern look */
  position: relative;
  z-index: 10;
}

.badge {
  background: rgba(240, 211, 138, 0.1);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.resource-form {
  margin-top: 25px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input[type="email"] {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  border-radius: 8px;
}

/* PDF Mockup Visual */
.pdf-mockup {
  width: 200px;
  height: 260px;
  background: white;
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  padding: 15px;
  transform: rotate(3deg);
}

.mockup-header {
  height: 20px;
  background: var(--bg); /* Matches your logo navy */
  margin-bottom: 15px;
}

.mockup-line {
  height: 6px;
  background: #eee;
  margin-bottom: 8px;
  width: 100%;
}

.mockup-check {
  font-size: 0.7rem;
  color: var(--bg);
  font-weight: bold;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .form-row { flex-direction: column; }
  .lead-magnet-panel { margin-top: 20px; }
}














