/* ============================================
   A Better Way Insurance Agency
   Color palette pulled from logo:
   Navy #1B2A4A  |  Blue #2B4F9E  |  Red #8B1A24
   Gold accent #C8952A  |  Light #F5F7FA
   ============================================ */

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

:root {
  --navy:     #1B2A4A;
  --blue:     #2B4F9E;
  --red:      #8B1A24;
  --gold:     #C8952A;
  --light:    #F5F7FA;
  --mid:      #E2E7EF;
  --text:     #1E2532;
  --muted:    #5A6476;
  --white:    #ffffff;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(27,42,74,.10);
  --shadow-md:0 8px 40px rgba(27,42,74,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: #a67a1e; transform: translateY(-1px); }

/* ---- LAYOUT ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.bg-light { background: var(--light); }
.bg-navy  { background: var(--navy); }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}
.section-eyebrow.light { color: var(--gold); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h2.light { color: var(--white); }

.section-sub {
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.section-sub.light { color: rgba(255,255,255,.75); }

/* ---- NAV ---- */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mid);
  box-shadow: 0 2px 12px rgba(27,42,74,.07);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img { height: 44px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  transition: color .15s;
}
nav a:hover { color: var(--blue); }
nav a.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
}
nav a.nav-cta:hover { background: var(--navy); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--mid);
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--navy); }
.mobile-nav.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #243558 60%, #2B4F9E 100%);
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 42, 74, 0.82) 0%,
    rgba(27, 42, 74, 0.72) 40%,
    rgba(27, 42, 74, 0.35) 70%,
    rgba(27, 42, 74, 0.15) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,79,158,.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; align-items: baseline; gap: .5rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  line-height: 1.3;
}
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Hero contact card */
.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.card-title { font-size: 0.88rem; color: var(--muted); margin: .3rem 0 1rem; line-height: 1.5; }
.card-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .01em;
}
.card-phone:hover { color: var(--navy); }

/* ---- ALERT BAR ---- */
.alert-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: .85rem 1.5rem;
  font-size: 0.92rem;
}

/* ---- PRODUCTS ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--mid);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.product-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(43,79,158,.1), var(--shadow);
  grid-column: span 1;
}

.product-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .25rem .8rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.product-icon { font-size: 2rem; }
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.product-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.product-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
}
.tag.green { background: #E8F5EE; color: #1A6B3C; }
.tag.yellow { background: #FEF9EC; color: #8B6200; }
.tag.red    { background: #FDECEA; color: var(--red); }

.product-detail { background: var(--light); border-radius: 8px; padding: .9rem; }
.detail-row {
  display: flex;
  gap: .7rem;
  font-size: 0.85rem;
  padding: .25rem 0;
  border-bottom: 1px solid var(--mid);
}
.detail-row:last-child { border-bottom: none; }
.detail-label { font-weight: 600; color: var(--navy); min-width: 80px; }

/* ---- COMPARISON TABLE ---- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 700px;
}
.compare-table thead tr { background: var(--navy); color: var(--white); }
.compare-table th {
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
}
.compare-table th:first-child { border-radius: 10px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 10px 0 0; }

.compare-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--mid);
  vertical-align: middle;
}
.compare-table tbody tr:hover { background: rgba(43,79,158,.04); }
.compare-table td.feat { font-weight: 600; color: var(--navy); }
.compare-table td.yes  { color: #1A6B3C; }
.compare-table td.no   { color: var(--red); }
.compare-table td.warn { color: #8B6200; }

.table-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 1.5rem;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--light);
  border-radius: 14px;
  padding: 1.8rem;
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.why-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ---- PARTNER SECTION ---- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.partner-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background .2s;
}
.partner-card:hover { background: rgba(255,255,255,.12); }
.partner-icon { font-size: 1.8rem; margin-bottom: .7rem; }
.partner-card h4 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.partner-card p { font-size: 0.88rem; color: rgba(255,255,255,.7); line-height: 1.6; }

.partner-cta {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 2.5rem;
}
.partner-cta p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

/* ---- LIFE EVENTS ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.event-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--light);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--mid);
}
.event-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.agent-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mid);
}
.agent-avatar {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.agent-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.agent-title { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: flex-start; gap: .9rem; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
a.contact-value:hover { color: var(--blue); }

/* FORM */
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--mid);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem .9rem;
  border: 1.5px solid var(--mid);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: border-color .15s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,79,158,.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-disclaimer { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: .8rem; }
.form-success {
  background: #E8F5EE;
  color: #1A6B3C;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-logo { height: 42px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,.65); }
.footer-contact strong { color: var(--white); }
.footer-contact a { font-size: 1rem; font-weight: 700; color: var(--gold); }

.footer-states { display: flex; gap: .5rem; margin-top: .8rem; }
.state-badge {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 0.72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 20px;
}

.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.4); }
.footer-disc { margin-top: .6rem; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 400px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { display: none; }
  .hamburger { display: block; }
  .hero { padding: 6rem 1.2rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---- BLOG PREVIEW (homepage) ---- */
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--mid);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card.featured-post { border-color: var(--blue); }

.blog-meta { display: flex; align-items: center; gap: .75rem; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(43,79,158,.1);
  color: var(--blue);
  padding: .2rem .6rem;
  border-radius: 20px;
}
.blog-date { font-size: 0.78rem; color: var(--muted); }

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
}
.read-more:hover { color: var(--navy); }

/* ---- BLOG INDEX PAGE ---- */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243558 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .8rem;
}
.blog-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}

.blog-list { display: flex; flex-direction: column; gap: 2rem; }

.blog-list-card {
  background: var(--white);
  border: 1.5px solid var(--mid);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: box-shadow .2s;
}
.blog-list-card:hover { box-shadow: var(--shadow); }
.blog-list-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0;
}
.blog-list-card h2 a { color: inherit; }
.blog-list-card h2 a:hover { color: var(--blue); }
.blog-list-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* Blog sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--light);
  border-radius: 12px;
  padding: 1.5rem;
}
.sidebar-widget h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--mid);
}
.sidebar-widget ul { display: flex; flex-direction: column; gap: .6rem; }
.sidebar-widget ul li a {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 500;
}
.sidebar-widget ul li a:hover { color: var(--navy); }
.sidebar-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); border-color: rgba(255,255,255,.2); letter-spacing: .06em; }
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.sidebar-cta a.btn-gold { display: block; }

/* ---- BLOG POST PAGE ---- */
.post-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243558 100%);
  padding: 8rem 1.5rem 3rem;
}
.post-hero-inner { max-width: 780px; margin: 0 auto; }
.post-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: .8rem 0 1rem;
}
.post-hero p.excerpt { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.65; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}

.post-body {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 .8rem;
}
.post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 .6rem;
}
.post-body p { margin-bottom: 1.2rem; }
.post-body ul, .post-body ol {
  margin: 1rem 0 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body strong { color: var(--navy); }
.post-body .callout {
  background: rgba(43,79,158,.07);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.post-body .callout strong { color: var(--blue); }
.post-cta-box {
  background: var(--navy);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.post-cta-box h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: .6rem; }
.post-cta-box p { color: rgba(255,255,255,.75); font-size: 0.92rem; font-family: 'Inter', sans-serif; margin-bottom: 1.2rem; }

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-layout, .post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
}

.blog-coming-soon {
  background: var(--white);
  border: 1.5px dashed var(--mid);
  border-radius: 14px;
  padding: 1.8rem;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}
.blog-coming-soon a { color: var(--blue); font-weight: 600; }
