/*
Theme Name: HopeRiver Domains
Theme URI: https://www.hoperiverdomains.com
Author: HopeRiver Domains / The WealthGen Institute
Author URI: https://wealthgen56.com
Description: Custom theme for HopeRiver Domains — a managed all-in-one web service (domain, hosting, security, email, website build) for one flat fee. Navy/gold "river journey" design system.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: hoperiver
*/

:root{
  --navy-deep:   #04194E;
  --navy-mid:    #0B2A6B;
  --navy-line:   rgba(255,255,255,0.14);
  --gold:        #FFCD2A;
  --gold-deep:   #C9A227;
  --off-white:   #F7F5EF;
  --ink:         #0C1220;
  --ink-soft:    #4A5170;
  --white:       #FFFFFF;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --max: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion:reduce){
    html{ scroll-behavior:auto; }
    *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  }

  body{
    margin:0;
    font-family:var(--body);
    color:var(--ink);
    background:var(--off-white);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }

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

  .wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }

  :focus-visible{
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

  /* ---------- Eyebrow / labels ---------- */
  .eyebrow{
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    gap:8px;
  }
  .eyebrow::before{
    content:'';
    width:18px; height:1px;
    background:currentColor;
    display:inline-block;
  }

  /* ---------- Header ---------- */
  .site-header{
    background:var(--navy-deep);
    color:var(--white);
    position:sticky; top:0; z-index:50;
    border-bottom:1px solid var(--navy-line);
  }
  .site-header .wrap{
    display:flex; align-items:center; justify-content:space-between;
    height:76px;
    position:relative;
  }
  .logo{
    font-family:var(--display);
    font-weight:600;
    font-size:21px;
    letter-spacing:0.01em;
    text-decoration:none;
    display:flex; align-items:baseline; gap:2px;
  }
  .logo .accent{ color:var(--gold); }

  .main-nav{
    display:flex; align-items:center; gap:32px;
  }
  .main-nav ul{
    list-style:none; display:flex; gap:28px; margin:0; padding:0;
  }
  .main-nav a{
    text-decoration:none;
    font-size:14.5px;
    font-weight:500;
    color:rgba(255,255,255,0.82);
    transition:color .15s ease;
  }
  .main-nav a:hover{ color:var(--gold); }

  .main-nav a.nav-highlight{
    position:relative;
    color:var(--navy-deep) !important;
    background:var(--gold);
    font-weight:800;
    font-size:15px;
    padding:11px 22px;
    border-radius:24px;
    box-shadow:0 0 0 0 rgba(255,205,42,0.6), 0 4px 14px rgba(0,0,0,0.25);
    animation:nav-pulse 2.2s ease-in-out infinite;
  }
  .main-nav a.nav-highlight:hover{
    color:var(--navy-deep) !important;
    background:#ffd94f;
    transform:translateY(-2px) scale(1.04);
    animation-play-state:paused;
  }
  @keyframes nav-pulse{
    0%   { box-shadow:0 0 0 0 rgba(255,205,42,0.55), 0 4px 14px rgba(0,0,0,0.25); }
    70%  { box-shadow:0 0 0 10px rgba(255,205,42,0), 0 4px 14px rgba(0,0,0,0.25); }
    100% { box-shadow:0 0 0 0 rgba(255,205,42,0), 0 4px 14px rgba(0,0,0,0.25); }
  }
  @media (prefers-reduced-motion:reduce){
    .main-nav a.nav-highlight{ animation:none; }
  }

  .header-actions{
    display:flex;
    align-items:center;
    gap:20px;
  }
  .contact-link{
    display:flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    color:rgba(255,255,255,0.82);
    transition:color .15s ease;
    white-space:nowrap;
  }
  .contact-link:hover{ color:var(--gold); }
  .contact-link svg{ width:16px; height:16px; }

  .nav-cta{
    background:var(--gold);
    color:var(--navy-deep);
    font-weight:600;
    font-size:14px;
    padding:10px 20px;
    border-radius:3px;
    text-decoration:none;
    white-space:nowrap;
    transition:transform .15s ease, background .15s ease;
    border:none;
    cursor:pointer;
  }
  .nav-cta:hover{ background:#ffd94f; transform:translateY(-1px); }

  .menu-toggle{
    display:none;
    background:none; border:none; color:var(--white);
    font-size:26px; cursor:pointer;
  }

  @media (max-width:820px){
    .main-nav{
      position:absolute;
      top:100%; left:0; right:0;
    }
    .main-nav ul{
      display:none;
      flex-direction:column;
      gap:0;
      background:var(--navy-deep);
      border-bottom:1px solid var(--navy-line);
      padding:8px 28px 16px;
    }
    .main-nav.nav-open ul{ display:flex; }
    .main-nav ul li{ width:100%; }
    .main-nav ul li a{
      display:block;
      padding:12px 0;
      border-bottom:1px solid var(--navy-line);
    }
    .main-nav ul li:last-child a{ border-bottom:none; }
    .main-nav a.nav-highlight{
      display:inline-block;
      margin-top:10px;
    }
    .menu-toggle{ display:block; }
    .nav-cta{ display:none; }
  }

  /* ---------- Hero ---------- */
  .hero{
    background:
      radial-gradient(ellipse 900px 500px at 82% -10%, rgba(255,205,42,0.14), transparent 60%),
      var(--navy-deep);
    color:var(--white);
    padding:88px 0 96px;
    position:relative;
    overflow:hidden;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:56px;
    align-items:center;
  }
  .hero-eyebrow{ color:var(--gold); margin-bottom:22px; }
  .hero h1{
    font-family:var(--display);
    font-weight:600;
    font-size:clamp(34px, 4.6vw, 54px);
    line-height:1.08;
    margin:0 0 22px;
    letter-spacing:-0.01em;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--gold);
    position:relative;
  }
  .hero .lede{
    font-size:17.5px;
    color:rgba(255,255,255,0.78);
    max-width:46ch;
    margin:0 0 34px;
  }

  /* ---------- Hero CTA ---------- */
  .hero-cta{
    display:inline-block;
    background:var(--gold);
    color:var(--navy-deep);
    text-decoration:none;
    font-weight:700;
    font-size:15.5px;
    padding:15px 34px;
    border-radius:6px;
    transition:background .15s ease, transform .15s ease;
  }
  .hero-cta:hover{ background:#ffd94f; transform:translateY(-1px); }

  .trust-line{
    margin-top:20px;
    font-size:13.5px;
    color:rgba(255,255,255,0.55);
  }
  .trust-line strong{ color:rgba(255,255,255,0.85); font-weight:600; }

  /* Hero side panel */
  .hero-panel{
    background:var(--navy-mid);
    border:1px solid var(--navy-line);
    border-radius:10px;
    padding:32px;
  }
  .hero-panel .panel-label{
    font-family:var(--mono);
    font-size:11.5px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold);
    display:block;
    margin-bottom:14px;
  }
  .hero-panel h2{
    font-family:var(--display);
    font-size:23px;
    font-weight:600;
    line-height:1.3;
    margin:0 0 12px;
  }
  .hero-panel p{
    font-size:14.5px;
    color:rgba(255,255,255,0.72);
    margin:0 0 20px;
  }
  .hero-panel .phone{
    display:flex; align-items:center; gap:10px;
    font-size:19px; font-weight:700;
    color:var(--white);
    text-decoration:none;
  }
  .hero-panel .phone-label{
    display:block;
    font-size:12px; font-weight:500;
    color:rgba(255,255,255,0.55);
    margin-top:2px;
  }

  @media (max-width:900px){
    .hero .wrap{ grid-template-columns:1fr; }
    .hero-panel{ order:-1; }
  }

  /* ---------- River journey section ---------- */
  .journey{
    padding:104px 0 96px;
    position:relative;
  }
  .journey-head{
    text-align:center;
    max-width:640px;
    margin:0 auto 72px;
  }
  .journey-head .eyebrow{ color:var(--gold-deep); justify-content:center; margin-bottom:16px; }
  .journey-head h2{
    font-family:var(--display);
    font-size:clamp(28px, 3.4vw, 38px);
    font-weight:600;
    margin:0 0 14px;
    color:var(--navy-deep);
  }
  .journey-head p{
    color:var(--ink-soft);
    font-size:16px;
    margin:0;
  }

  .river{
    position:relative;
    max-width:760px;
    margin:0 auto;
  }
  .river-svg{
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:3px;
    transform:translateX(-50%);
    z-index:0;
  }
  .river-svg svg{ height:100%; width:100%; display:block; }

  .waypoint{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1fr 44px 1fr;
    align-items:center;
    gap:0 28px;
    margin-bottom:56px;
  }
  .waypoint:last-child{ margin-bottom:0; }

  .waypoint-card{
    background:var(--white);
    border:1px solid rgba(4,25,78,0.08);
    border-radius:10px;
    padding:24px 26px;
    box-shadow:0 4px 18px rgba(4,25,78,0.05);
  }
  .waypoint-card .step-num{
    font-family:var(--mono);
    font-size:12px;
    color:var(--gold-deep);
    letter-spacing:0.1em;
    display:block;
    margin-bottom:8px;
  }
  .waypoint-card h3{
    font-family:var(--display);
    font-size:20px;
    font-weight:600;
    margin:0 0 8px;
    color:var(--navy-deep);
  }
  .waypoint-card p{
    font-size:14.5px;
    color:var(--ink-soft);
    margin:0 0 12px;
  }
  .included-tag{
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.04em;
    text-transform:uppercase;
    color:var(--gold-deep);
  }
  .included-tag::before{
    content:'\2713';
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:15px; height:15px;
    background:var(--gold-deep);
    color:var(--white);
    border-radius:50%;
    font-size:10px;
  }

  .waypoint-dot{
    width:44px; height:44px;
    background:var(--gold);
    border:5px solid var(--off-white);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 0 0 1px rgba(4,25,78,0.1);
  }
  .waypoint-dot svg{ width:18px; height:18px; }

  .waypoint:nth-child(odd) .waypoint-card{ grid-column:1; }
  .waypoint:nth-child(odd) .spacer{ grid-column:3; }
  .waypoint:nth-child(even) .waypoint-card{ grid-column:3; }
  .waypoint:nth-child(even) .spacer{ grid-column:1; }

  @media (max-width:700px){
    .waypoint{
      grid-template-columns:44px 1fr;
      gap:0 16px;
    }
    .waypoint .waypoint-dot{ grid-column:1; grid-row:1; }
    .waypoint:nth-child(odd) .waypoint-card,
    .waypoint:nth-child(even) .waypoint-card{
      grid-column:2; grid-row:1;
    }
    .spacer{ display:none; }
    .river-svg{ left:22px; transform:none; }
  }

  /* ---------- Pricing ---------- */
  .pricing{
    padding:100px 0 96px;
    background:var(--white);
  }
  .pricing-head{
    text-align:center;
    max-width:640px;
    margin:0 auto 56px;
  }
  .pricing-head .eyebrow{ color:var(--gold-deep); justify-content:center; margin-bottom:16px; }
  .pricing-head h2{
    font-family:var(--display);
    font-size:clamp(28px,3.4vw,38px);
    font-weight:600;
    margin:0 0 14px;
    color:var(--navy-deep);
  }
  .pricing-head p{ color:var(--ink-soft); font-size:16px; margin:0; }

  .pricing-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    max-width:1080px;
    margin:0 auto;
    align-items:stretch;
  }
  .price-card{
    background:var(--off-white);
    border:1px solid rgba(4,25,78,0.1);
    border-radius:12px;
    padding:32px 28px;
    display:flex;
    flex-direction:column;
  }
  .price-card.featured{
    background:var(--navy-deep);
    color:var(--white);
    border-color:var(--navy-deep);
    box-shadow:0 14px 34px rgba(4,25,78,0.18);
    position:relative;
    transform:translateY(-8px);
  }
  .price-card .plan-badge{
    position:absolute;
    top:-13px; left:50%;
    transform:translateX(-50%);
    background:var(--gold);
    color:var(--navy-deep);
    font-family:var(--mono);
    font-size:11px;
    font-weight:700;
    letter-spacing:0.06em;
    text-transform:uppercase;
    padding:5px 14px;
    border-radius:12px;
  }
  .price-card h3{
    font-family:var(--display);
    font-size:21px;
    font-weight:600;
    margin:0 0 6px;
  }
  .price-card .plan-for{
    font-size:13.5px;
    color:var(--ink-soft);
    margin:0 0 20px;
  }
  .price-card.featured .plan-for{ color:rgba(255,255,255,0.65); }

  .price-card .price-line{
    display:flex;
    align-items:baseline;
    gap:6px;
    margin-bottom:4px;
  }
  .price-card .price-amount{
    font-family:var(--display);
    font-size:38px;
    font-weight:600;
  }
  .price-card .price-period{
    font-size:14px;
    color:var(--ink-soft);
  }
  .price-card.featured .price-period{ color:rgba(255,255,255,0.65); }
  .price-card .price-setup{
    font-size:13px;
    color:var(--ink-soft);
    margin:0 0 22px;
  }
  .price-card.featured .price-setup{ color:rgba(255,255,255,0.65); }

  .price-card ul{
    list-style:none;
    margin:0 0 26px;
    padding:0;
    flex:1;
  }
  .price-card li{
    display:flex;
    align-items:flex-start;
    gap:9px;
    font-size:14px;
    margin-bottom:11px;
    color:var(--ink-soft);
  }
  .price-card.featured li{ color:rgba(255,255,255,0.85); }
  .price-card li::before{
    content:'\2713';
    flex-shrink:0;
    width:16px; height:16px;
    background:var(--gold-deep);
    color:var(--white);
    border-radius:50%;
    font-size:10px;
    display:flex; align-items:center; justify-content:center;
    margin-top:2px;
  }

  .price-card .price-cta{
    display:block;
    text-align:center;
    text-decoration:none;
    font-weight:700;
    font-size:14.5px;
    padding:13px;
    border-radius:5px;
    background:var(--navy-deep);
    color:var(--white);
    transition:background .15s ease;
  }
  .price-card .price-cta:hover{ background:var(--navy-mid); }
  .price-card.featured .price-cta{
    background:var(--gold);
    color:var(--navy-deep);
  }
  .price-card.featured .price-cta:hover{ background:#ffd94f; }

  .pricing-note{
    text-align:center;
    max-width:600px;
    margin:36px auto 0;
    font-size:13.5px;
    color:var(--ink-soft);
  }

  @media (max-width:900px){
    .pricing-grid{ grid-template-columns:1fr; max-width:420px; }
    .price-card.featured{ transform:none; }
  }

  /* ---------- Trust / about ---------- */
  .trust{
    background:var(--navy-mid);
    color:var(--white);
    padding:88px 0;
  }
  .trust .wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
  }
  .trust .eyebrow{ color:var(--gold); margin-bottom:18px; }
  .trust h2{
    font-family:var(--display);
    font-size:clamp(26px,3vw,32px);
    font-weight:600;
    margin:0 0 18px;
    line-height:1.25;
  }
  .trust p{
    color:rgba(255,255,255,0.75);
    font-size:15.5px;
    margin:0 0 16px;
  }
  .trust-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
  }
  .stat{
    border-left:2px solid var(--gold);
    padding-left:16px;
  }
  .stat .num{
    font-family:var(--display);
    font-size:30px;
    font-weight:600;
    color:var(--gold);
    display:block;
    line-height:1;
    margin-bottom:6px;
  }
  .stat .label{
    font-size:13px;
    color:rgba(255,255,255,0.65);
  }

  @media (max-width:820px){
    .trust .wrap{ grid-template-columns:1fr; gap:40px; }
  }

  /* ---------- CTA band ---------- */
  .cta-band{
    background:var(--gold);
    color:var(--navy-deep);
    padding:64px 0;
    text-align:center;
  }
  .cta-band h2{
    font-family:var(--display);
    font-size:clamp(24px,3vw,32px);
    font-weight:600;
    margin:0 0 12px;
  }
  .cta-band p{
    margin:0 0 28px;
    font-size:15.5px;
    color:rgba(4,25,78,0.75);
  }
  .cta-band .button{
    display:inline-block;
    background:var(--navy-deep);
    color:var(--white);
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    padding:15px 32px;
    border-radius:4px;
    transition:transform .15s ease, background .15s ease;
  }
  .cta-band .button:hover{ background:var(--navy-mid); transform:translateY(-1px); }

  /* ---------- Footer ---------- */
  .site-footer{
    background:var(--navy-deep);
    color:rgba(255,255,255,0.62);
    padding:56px 0 32px;
    font-size:13.5px;
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:36px;
    padding-bottom:36px;
    margin-bottom:28px;
    border-bottom:1px solid var(--navy-line);
  }
  .footer-brand .logo{ margin-bottom:10px; }
  .footer-brand p{ max-width:32ch; color:rgba(255,255,255,0.5); margin:0; }
  .footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
  .footer-col h4{
    font-family:var(--mono);
    font-size:11.5px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.85);
    margin:0 0 14px;
  }
  .footer-col ul{ list-style:none; margin:0; padding:0; }
  .footer-col li{ margin-bottom:10px; }
  .footer-col a{ text-decoration:none; color:rgba(255,255,255,0.6); transition:color .15s ease; }
  .footer-col a:hover{ color:var(--gold); }

  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
  }
  .footer-social{ display:flex; gap:14px; }
  .footer-social a{
    width:34px; height:34px;
    border:1px solid var(--navy-line);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,0.7);
    text-decoration:none;
    transition:border-color .15s ease, color .15s ease;
  }
  .footer-social a:hover{ border-color:var(--gold); color:var(--gold); }
  .footer-social svg{ width:16px; height:16px; }

  /* Fade-in on scroll */
  .fade-in{
    opacity:0;
    transform:translateY(16px);
    transition:opacity .6s ease, transform .6s ease;
  }
  .fade-in.visible{ opacity:1; transform:translateY(0); }
  /* ---------- Build-for-you form ---------- */
  .build-section{
    padding:96px 0;
    background:var(--off-white);
  }
  .build-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:64px;
    align-items:start;
  }
  .build-intro .eyebrow{ color:var(--gold-deep); margin-bottom:16px; }
  .build-intro h2{
    font-family:var(--display);
    font-size:clamp(26px,3vw,34px);
    font-weight:600;
    color:var(--navy-deep);
    line-height:1.2;
    margin:0 0 16px;
  }
  .build-intro p{
    color:var(--ink-soft);
    font-size:15.5px;
    margin:0 0 14px;
  }
  .build-intro ul{
    list-style:none;
    margin:24px 0 0;
    padding:0;
  }
  .build-intro li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:14.5px;
    color:var(--ink-soft);
    margin-bottom:12px;
  }
  .build-intro li svg{
    flex-shrink:0;
    margin-top:3px;
    width:16px; height:16px;
    color:var(--gold-deep);
  }

  .build-form{
    background:var(--white);
    border:1px solid rgba(4,25,78,0.08);
    border-radius:12px;
    padding:36px;
    box-shadow:0 6px 24px rgba(4,25,78,0.06);
  }
  .form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
  }
  .field{
    margin-bottom:18px;
  }
  .field label{
    display:block;
    font-family:var(--mono);
    font-size:11.5px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--navy-mid);
    margin-bottom:7px;
  }
  .field input,
  .field select,
  .field textarea{
    width:100%;
    font-family:var(--body);
    font-size:14.5px;
    color:var(--ink);
    background:var(--off-white);
    border:1px solid rgba(4,25,78,0.14);
    border-radius:5px;
    padding:11px 13px;
  }
  .field textarea{
    resize:vertical;
    min-height:100px;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus{
    outline:none;
    border-color:var(--gold-deep);
    background:var(--white);
  }
  .build-form button{
    width:100%;
    background:var(--navy-deep);
    color:var(--white);
    border:none;
    border-radius:5px;
    font-weight:600;
    font-size:15px;
    padding:15px;
    cursor:pointer;
    transition:background .15s ease;
  }
  .build-form button:hover{ background:var(--navy-mid); }

  .form-fallback{
    text-align:center;
    font-size:13px;
    color:var(--ink-soft);
    margin-top:14px;
  }
  .form-fallback a{
    color:var(--navy-mid);
    font-weight:600;
    text-decoration:underline;
  }

  .form-status{
    display:none;
    margin-top:16px;
    padding:12px 14px;
    border-radius:6px;
    font-size:14px;
  }
  .form-status.success{
    display:block;
    background:rgba(201,162,39,0.14);
    color:var(--navy-deep);
    border:1px solid var(--gold-deep);
  }
  .form-status.error{
    display:block;
    background:rgba(207,46,46,0.08);
    color:#7a1414;
    border:1px solid rgba(207,46,46,0.3);
  }

  @media (max-width:860px){
    .build-grid{ grid-template-columns:1fr; gap:36px; }
    .form-row{ grid-template-columns:1fr; }
    .build-form{ padding:26px; }
  }


/* ---------- Blog: article list / archive ---------- */
.blog-header{
  background:var(--navy-deep);
  color:var(--white);
  padding:64px 0 56px;
  text-align:center;
}
.blog-header .eyebrow{ color:var(--gold); justify-content:center; margin-bottom:14px; }
.blog-header h1{
  font-family:var(--display);
  font-size:clamp(30px,4vw,44px);
  font-weight:600;
  margin:0;
}
.blog-header p{
  color:rgba(255,255,255,0.7);
  font-size:15.5px;
  margin:14px 0 0;
}

.article-list{
  padding:80px 0;
  background:var(--off-white);
}
.article-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:36px;
  max-width:var(--max);
  margin:0 auto;
}
.article-card{
  background:var(--white);
  border:1px solid rgba(4,25,78,0.08);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(4,25,78,0.05);
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  transition:transform .15s ease, box-shadow .15s ease;
}
.article-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(4,25,78,0.1);
}
.article-card .card-thumb{
  aspect-ratio:16/10;
  background:var(--navy-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.article-card .card-thumb svg{ width:100%; height:100%; }
.article-card .card-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.article-card .card-body{ padding:22px 24px 26px; }
.article-card .card-eyebrow{
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:10px;
  display:block;
}
.article-card h2{
  font-family:var(--display);
  font-size:19px;
  font-weight:600;
  color:var(--navy-deep);
  margin:0 0 10px;
  line-height:1.3;
}
.article-card p{
  font-size:14px;
  color:var(--ink-soft);
  margin:0;
  line-height:1.6;
}

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

/* ---------- Blog: single post ---------- */
.post-hero{
  background:var(--navy-deep);
  padding:56px 0 0;
}
.post-hero .wrap{ max-width:820px; }
.post-hero .eyebrow{ color:var(--gold); margin-bottom:16px; }
.post-hero h1{
  font-family:var(--display);
  font-size:clamp(28px,4vw,42px);
  font-weight:600;
  color:var(--white);
  line-height:1.2;
  margin:0 0 22px;
}
.post-meta-line{
  color:rgba(255,255,255,0.6);
  font-size:13.5px;
  padding-bottom:32px;
}

.post-thumb{
  max-width:820px;
  margin:0 auto;
  padding:0 28px;
}
.post-thumb svg{
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
  margin-top:-1px;
}

.post-content-wrap{
  padding:56px 0 90px;
  background:var(--off-white);
}
.post-content-wrap .wrap{ max-width:740px; }
.post-body{
  font-size:16.5px;
  line-height:1.75;
  color:var(--ink);
}
.post-body h2{
  font-family:var(--display);
  font-size:26px;
  font-weight:600;
  color:var(--navy-deep);
  margin:44px 0 16px;
}
.post-body h3{
  font-family:var(--display);
  font-size:20px;
  font-weight:600;
  color:var(--navy-deep);
  margin:32px 0 12px;
}
.post-body p{ margin:0 0 20px; }
.post-body ul, .post-body ol{ margin:0 0 20px; padding-left:22px; }
.post-body li{ margin-bottom:8px; }
.post-body strong{ color:var(--navy-deep); }
.post-body a{ color:var(--navy-mid); text-decoration:underline; text-decoration-color:var(--gold); text-underline-offset:2px; }
.post-body blockquote{
  border-left:3px solid var(--gold);
  margin:28px 0;
  padding:4px 0 4px 20px;
  font-style:italic;
  color:var(--ink-soft);
}

.post-cta{
  margin-top:52px;
  background:var(--navy-deep);
  border-radius:12px;
  padding:36px;
  text-align:center;
}
.post-cta h3{
  font-family:var(--display);
  color:var(--white);
  font-size:22px;
  font-weight:600;
  margin:0 0 10px;
}
.post-cta p{ color:rgba(255,255,255,0.7); font-size:14.5px; margin:0 0 20px; }
.post-cta a{
  display:inline-block;
  background:var(--gold);
  color:var(--navy-deep);
  text-decoration:none;
  font-weight:700;
  font-size:14.5px;
  padding:13px 28px;
  border-radius:5px;
  transition:background .15s ease;
}
.post-cta a:hover{ background:#ffd94f; }
