
  :root{
    --forest:#1A3B32;
    --forest-dark:#123029;
    --gold:#C7A15E;
    --ice:#F1EEE6;
    --card:#FBF9F3;
    --ivory:#F9F6EE;
    --text:#262626;
    --muted:#6B7280;
    --line: rgba(26,59,50,0.12);
    --serif: Cambria, Georgia, 'Times New Roman', serif;
    --sans: Calibri, Carlito, 'Segoe UI', Arial, sans-serif;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--sans);
    color:var(--text);
    background:#F9F6EE;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  button{font-family:inherit; cursor:pointer;}

  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  @media (max-width:640px){ .wrap{padding:0 20px;} }

  /* ---------------- NAV ---------------- */
  header.site-nav{
    position:sticky; top:0; z-index:100;
    background:rgba(26,59,50,0.97);
    backdrop-filter:saturate(180%) blur(8px);
    border-bottom:1px solid rgba(199,161,94,0.38);
  }
  .nav-inner{
    max-width:1180px; margin:0 auto; padding:6px 32px;
    display:flex; align-items:center; justify-content:space-between;
  }
   .brand-lockup{display:flex;align-items:center;gap:18px;min-width:410px;text-decoration:none;}
  .brand-mark{width:120px;height:102px;object-fit:contain;object-position:center;background:var(--forest);flex:0 0 auto;}
  .brand-divider{width:1px;height:62px;background:var(--gold);opacity:.9;flex:0 0 auto;}
  .brand-copy{display:flex;flex-direction:column;justify-content:center;line-height:1;}
  .brand-name{font-family:var(--serif);font-size:27px;font-weight:700;letter-spacing:3.2px;text-transform:uppercase;color:var(--ivory);white-space:nowrap;}
  .brand-sub{margin-top:10px;font-size:12px;font-weight:700;letter-spacing:6px;text-transform:uppercase;color:var(--gold);white-space:nowrap;}
  nav.nav-links{display:flex; align-items:center; gap:34px;}
  nav.nav-links a{
    font-size:14px; font-weight:600; color:var(--ivory); opacity:0.84;
    padding:6px 0; border-bottom:2px solid transparent; transition:all .2s ease;
  }
  nav.nav-links a:hover, nav.nav-links a.active{ opacity:1; border-bottom-color:var(--gold); }
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:11px 22px; border-radius:6px; font-size:14px; font-weight:700;
    border:1.5px solid transparent; transition:all .2s ease; white-space:nowrap;
  }
  .btn-primary{ background:var(--gold); color:var(--forest); }
  .btn-primary:hover{ background:#D4B574; }
  .btn-outline{ border-color:var(--forest); color:var(--forest); background:transparent; }
  .btn-outline:hover{ background:var(--forest); color:var(--ivory); }
  .btn-gold{ background:var(--gold); color:var(--forest); }
  .btn-gold:hover{ background:#D2AE6D; }
  .nav-cta{display:flex; align-items:center; gap:14px;}
  .nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;}
  .nav-toggle span{width:24px; height:2px; background:var(--gold);}

  @media (max-width:860px){
    nav.nav-links{
      position:absolute; top:100%; left:0; right:0; background:var(--forest);
      flex-direction:column; align-items:flex-start; padding:18px 32px; gap:16px;
      border-bottom:1px solid var(--line); display:none;
    }
    nav.nav-links.open{display:flex;}
    .brand-lockup{min-width:auto;gap:10px;}
    .brand-mark{width:72px;height:62px;}
    .brand-divider{height:42px;}
    .brand-name{font-size:18px;letter-spacing:2px;}
    .brand-sub{font-size:9px;letter-spacing:4px;margin-top:7px;}
    .nav-toggle{display:flex;}
    .nav-cta .btn-outline{display:none;}
  }

  /* ---------------- HERO ---------------- */
  .hero{
    background:var(--forest-dark); color:var(--ivory); position:relative; overflow:hidden;
  }
  .hero::before{
    content:""; position:absolute; top:-140px; right:-120px; width:520px; height:520px;
    border-radius:50%; background:rgba(255,255,255,0.045);
  }
  .hero::after{
    content:""; position:absolute; bottom:-180px; left:-140px; width:420px; height:420px;
    border-radius:50%; background:rgba(255,255,255,0.03);
  }
  .hero-inner{
    max-width:1180px; margin:0 auto; padding:104px 32px 96px;
    display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
    position:relative; z-index:1;
  }
  @media (max-width:900px){ .hero-inner{grid-template-columns:1fr; padding:64px 24px 56px;} }

  .eyebrow{
    font-size:12.5px; font-weight:700; letter-spacing:2.2px; color:#E5D2A8;
    text-transform:uppercase; margin-bottom:18px; display:block;
  }
  .hero h1{
    font-family:var(--serif); font-weight:700; font-size:44px; line-height:1.15;
    margin-bottom:20px;
  }
  @media (max-width:640px){ .hero h1{font-size:32px;} }
  .hero p.lede{ font-size:17px; font-style:italic; color:#52615B; max-width:540px; margin-bottom:34px; line-height:1.5; }
  .hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}

  /* Signature: rotating pain-point quote card */
  .quote-card{
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
    border-radius:10px; padding:34px 32px; position:relative; min-height:200px;
  }
  .quote-card .mark{
    font-family:var(--serif); font-size:44px; color:var(--gold); line-height:1; margin-bottom:6px; display:block;
  }
  .quote-text{
    font-family:var(--serif); font-style:italic; font-size:19px; line-height:1.45; color:var(--ivory);
    min-height:96px; transition:opacity .4s ease;
  }
  .quote-dots{display:flex; gap:7px; margin-top:22px;}
  .quote-dots button{
    width:7px; height:7px; border-radius:50%; border:none; background:rgba(255,255,255,0.28); padding:0;
  }
  .quote-dots button.active{ background:var(--gold); width:20px; border-radius:4px; }
  .quote-label{ font-size:11.5px; letter-spacing:1.5px; text-transform:uppercase; color:#E3D2AE; margin-top:16px; display:block; }

  /* ---------------- SECTIONS ---------------- */
  section{ padding:88px 0; }
  @media (max-width:640px){ section{padding:56px 0;} }
  section.alt{ background:var(--ice); }
  .section-head{ max-width:640px; margin-bottom:52px; }
  .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section-eyebrow{
    font-size:12px; font-weight:700; letter-spacing:1.8px; color:var(--gold); text-transform:uppercase; display:block; margin-bottom:12px;
  }
  h2{ font-family:var(--serif); font-size:32px; color:var(--forest); font-weight:700; margin-bottom:14px; }
  @media (max-width:640px){ h2{font-size:26px;} }
  .section-head p{ color:var(--muted); font-size:16px; }

  .grid{ display:grid; gap:24px; }
  .grid-2{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(3,1fr); }
  .grid-5{ grid-template-columns:repeat(5,1fr); }
  @media (max-width:900px){ .grid-3{grid-template-columns:repeat(2,1fr);} .grid-5{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:640px){ .grid-2,.grid-3,.grid-5{grid-template-columns:1fr;} }

  .card{
    background:var(--card); border-radius:10px; padding:30px 28px; border:1px solid var(--line);
  }
  .card h3{ font-family:var(--serif); font-size:18px; color:var(--forest); margin-bottom:10px; font-weight:700; }
  .card p{ color:var(--muted); font-size:14.5px; }

  .pain-card{
    background:var(--ivory); border-radius:10px; padding:28px 26px; border-left:3px solid var(--gold);
    box-shadow:0 2px 14px rgba(31,56,100,0.06);
  }
  .pain-card .mark{ font-family:var(--serif); font-size:28px; color:var(--gold); display:block; margin-bottom:6px; }
  .pain-card p{ font-family:var(--serif); font-style:italic; color:var(--forest); font-size:16px; line-height:1.45; }

  .step-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; position:relative; }
  @media (max-width:800px){ .step-row{grid-template-columns:1fr; gap:28px;} }
  .step{ padding:0 28px; position:relative; }
  .step:first-child{ padding-left:0; }
  .step:last-child{ padding-right:0; }
  .step-num{
    width:42px; height:42px; border-radius:50%; background:var(--forest); color:var(--ivory);
    display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-weight:700; font-size:17px;
    margin-bottom:18px;
  }
  .step h3{ font-family:var(--serif); font-size:18px; color:var(--forest); margin-bottom:8px; }
  .step p{ color:var(--muted); font-size:14.5px; }
  .step-arrow{
    position:absolute; top:20px; right:-10px; color:var(--gold); font-size:20px; font-weight:700;
  }
  @media (max-width:800px){ .step-arrow{display:none;} }

  .specialism-strip{
    background:var(--forest); color:var(--ivory); border-radius:10px; padding:30px 36px;
    display:flex; align-items:center; gap:24px; justify-content:space-between; flex-wrap:wrap;
  }
  .specialism-strip .tag{
    background:var(--gold); font-size:11px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase;
    padding:5px 12px; border-radius:20px; display:inline-block; margin-bottom:10px;
  }
  .specialism-strip h3{ font-family:var(--serif); font-size:19px; margin-bottom:6px; }
  .specialism-strip p{ color:#E5D2A8; font-size:14.5px; max-width:560px; }

  .cta-band{
    background:var(--forest-dark); color:var(--ivory); text-align:center; padding:80px 0; position:relative; overflow:hidden;
  }
  .cta-band::before{ content:""; position:absolute; top:-100px; right:-100px; width:340px; height:340px; border-radius:50%; background:rgba(255,255,255,0.04); }
  .cta-band h2{ color:var(--ivory); }
  .cta-band p{ color:#E3DDD0; font-style:italic; max-width:520px; margin:0 auto 30px; font-size:16px; }

  /* ---------------- ABOUT PAGE ---------------- */
  .about-intro{background:var(--forest-dark); color:var(--ivory); position:relative; overflow:hidden;}
  .about-intro::after{content:"";position:absolute;width:360px;height:360px;border-radius:50%;right:-140px;top:-150px;background:rgba(255,255,255,0.035);}
  .about-hero{display:grid; grid-template-columns:220px minmax(0,1fr); gap:44px; align-items:center; margin-bottom:0; position:relative; z-index:1;}
  .about-hero h1{font-family:var(--serif); font-size:34px; color:var(--ivory); margin-bottom:4px;}
  .about-name-creds{
    color:#E3DDD0; font-size:12.5px; font-weight:600; letter-spacing:.35px;
    margin-bottom:9px; line-height:1.35;
  }
  .about-hero .role{color:var(--gold); font-weight:700; font-size:14.5px; margin-bottom:14px;}
  .about-hero p.bio{color:#E8E2D7; font-size:15px; max-width:none; line-height:1.62;}
  .about-hero .creds-line{color:#F5F0E7;}

  @media (max-width:700px){ .about-hero{grid-template-columns:1fr; gap:24px; text-align:center; justify-items:center;} .about-hero p.bio{max-width:640px;} }
  .photo-ring{
    width:200px; height:200px; border-radius:50%; border:3px solid var(--gold); padding:6px;
    background:var(--ice);
  }
  .photo-ring img{ border-radius:50%; width:100%; height:100%; object-fit:cover; }
  .creds-line{ margin-top:16px; font-weight:700; color:var(--forest); font-size:14px; }
  .creds-line span{ color:var(--gold); margin:0 8px; }

  .foundation-card{ border-radius:10px; padding:32px 30px; }
  .foundation-card.left{ background:var(--card); }
  .foundation-card.right{ background:var(--ice); }
  .foundation-card h3{ font-family:var(--serif); color:var(--forest); font-size:18px; margin-bottom:18px; }
  .foundation-card ul{ list-style:none; }
  .foundation-card li{ position:relative; padding-left:20px; margin-bottom:14px; font-size:14.5px; color:var(--text); }
  .foundation-card li::before{ content:""; position:absolute; left:0; top:7px; width:8px; height:8px; border-radius:50%; background:var(--gold); }

  .diff-strip{
    background:var(--forest); color:var(--ivory); border-radius:10px; padding:22px 30px; text-align:center; font-size:15px; font-weight:600; margin-top:28px;
  }
  .diff-strip .tag{ color:var(--gold); font-weight:800; margin-right:6px; }

  /* ---------------- SERVICES PAGE ---------------- */
  .service-card{
    background:var(--ivory); border:1px solid var(--line); border-radius:10px; padding:30px 28px;
    box-shadow:0 2px 14px rgba(26,59,50,0.045);
  }
  .service-card .kicker{ font-size:11px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; display:block; }
  .service-card h3{ font-family:var(--serif); font-size:19px; color:var(--forest); margin-bottom:12px; }
  .service-card ul{ list-style:none; margin-bottom:14px; }
  .service-card li{ position:relative; padding-left:18px; margin-bottom:9px; font-size:14px; color:var(--text); }
  .service-card li::before{ content:""; position:absolute; left:0; top:7px; width:6px; height:6px; border-radius:50%; background:var(--gold); }
  .service-card .fit{ font-size:13px; color:var(--muted); border-top:1px solid var(--line); padding-top:12px; margin-top:auto; }

  .ladder{ display:flex; align-items:stretch; gap:0; margin-top:20px; }
  @media (max-width:800px){ .ladder{flex-direction:column; gap:16px;} }
  .ladder-step{
    flex:1; background:var(--card); border-radius:10px; padding:26px 24px; position:relative; margin-right:20px;
  }
  .ladder-step:last-child{ margin-right:0; }
  .ladder-step.mid{ background:var(--ice); border:1.5px solid var(--forest); }
  .ladder-step .lnum{ font-family:var(--serif); font-size:13px; color:var(--gold); font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:8px; display:block;}
  .ladder-step h4{ font-family:var(--serif); color:var(--forest); font-size:17px; margin-bottom:8px; }
  .ladder-step p{ font-size:13.5px; color:var(--muted); }
  .ladder-arrow{
    display:flex; align-items:center; color:var(--gold); font-size:20px; font-weight:700; padding:0 4px;
  }
  @media (max-width:800px){ .ladder-arrow{display:none;} }

  .support-note{
    margin-top:42px; padding:20px 22px; background:var(--card); border-left:3px solid var(--gold);
    border-radius:8px; color:var(--muted); font-size:13.5px; line-height:1.6;
  }
  .support-note strong{ color:var(--forest); }

  .pricing-note{
    background:var(--ice); border-radius:10px; padding:22px 28px; text-align:center; color:var(--forest);
    font-size:14.5px; font-style:italic; margin-top:36px;
  }


  /* ---------------- FAQ ---------------- */
  .faq-section{ margin-top:78px; }
  .faq-list{ max-width:900px; margin:0 auto; border-top:1px solid var(--line); }
  .faq-item{ border-bottom:1px solid var(--line); }
  .faq-question{
    width:100%; background:transparent; border:0; color:var(--forest);
    padding:22px 4px; display:flex; align-items:center; justify-content:space-between;
    gap:24px; text-align:left; font-family:var(--serif); font-size:18px; font-weight:700;
    line-height:1.35;
  }
  .faq-question:hover{ color:#244D42; }
  .faq-icon{
    width:30px; height:30px; flex:0 0 30px; border-radius:50%; border:1px solid rgba(199,161,94,.75);
    color:var(--gold); display:flex; align-items:center; justify-content:center;
    font-family:var(--sans); font-size:20px; font-weight:500; transition:transform .2s ease, background .2s ease;
  }
  .faq-question[aria-expanded="true"] .faq-icon{ transform:rotate(45deg); background:rgba(199,161,94,.10); }
  .faq-answer{ display:none; padding:0 52px 22px 4px; color:var(--muted); font-size:15px; line-height:1.7; max-width:820px; }
  .faq-answer.open{ display:block; }
  .faq-note{ max-width:760px; margin:18px auto 0; text-align:center; color:var(--muted); font-size:13px; font-style:italic; }
  @media (max-width:640px){
    .faq-section{ margin-top:58px; }
    .faq-question{ font-size:16px; padding:18px 2px; gap:14px; }
    .faq-answer{ padding:0 36px 18px 2px; font-size:14px; }
    .faq-icon{ width:26px; height:26px; flex-basis:26px; font-size:18px; }
  }

  /* ---------------- CONTACT PAGE ---------------- */
  .contact-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; }
  @media (max-width:800px){ .contact-grid{grid-template-columns:1fr;} }
  .form-group{ margin-bottom:20px; }
  .form-group label{ display:block; font-size:13px; font-weight:700; color:var(--forest); margin-bottom:7px; }
  .form-group input, .form-group textarea{
    width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:6px; font-family:var(--sans);
    font-size:14.5px; color:var(--text); background:var(--ivory); transition:border-color .2s ease;
  }
  .form-group input:focus, .form-group textarea:focus{ outline:none; border-color:var(--gold); }
  .form-group textarea{ min-height:130px; resize:vertical; }
  .form-note{ font-size:12.5px; color:var(--muted); margin-top:6px; }

  .contact-card{ background:var(--forest); color:var(--ivory); border-radius:10px; padding:36px 32px; }
  .contact-card h3{ font-family:var(--serif); font-size:19px; margin-bottom:20px; }
  .contact-row{ display:flex; align-items:center; gap:12px; margin-bottom:16px; font-size:14.5px; }
  .contact-row .ico{ width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
  .contact-card a{ color:var(--ivory); border-bottom:1px solid rgba(255,255,255,0.35); }
  .reassure{ margin-top:26px; padding-top:22px; border-top:1px solid rgba(255,255,255,0.16); font-style:italic; color:#E5D2A8; font-size:14px; line-height:1.5; }

  .form-success{
    display:none; background:var(--card); border:1.5px solid var(--gold); border-radius:8px; padding:18px 20px;
    color:var(--forest); font-size:14.5px; font-weight:600; margin-top:18px;
  }
  .form-success.show{ display:block; }

  /* ---------------- FLOATING WHATSAPP ---------------- */
  .whatsapp-float{position:fixed;right:22px;bottom:22px;width:54px;height:54px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;z-index:120;box-shadow:0 8px 24px rgba(0,0,0,.18);transition:transform .2s ease,box-shadow .2s ease;}
  .whatsapp-float:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(0,0,0,.24);}
  .whatsapp-float svg{width:27px;height:27px;fill:currentColor;}
  @media(max-width:640px){.whatsapp-float{right:16px;bottom:16px;width:50px;height:50px;}}

  /* ---------------- FOOTER ---------------- */
  footer{ background:var(--forest-dark); color:#E3DDD0; padding:52px 0 30px; border-top:1px solid rgba(199,161,94,0.25); }
  .footer-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:28px; margin-bottom:30px; }
  .footer-brand-mark{width:230px;height:auto;object-fit:contain;background:transparent;margin-bottom:12px;}
  .footer-nav{ display:flex; gap:26px; flex-wrap:wrap; align-items:center; }
  .footer-nav a{ font-size:13.5px; color:#E3DDD0; }
  .footer-nav a:hover{ color:var(--ivory); }
  .footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#AEB9B3; }

  /* page visibility */
  .page{ display:none; }
  .page.active{ display:block; }

  /* fade-in on scroll */
  .reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  @media (prefers-reduced-motion: reduce){
    *{ transition:none !important; scroll-behavior:auto !important; }
    .reveal{ opacity:1; transform:none; }
  }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
    outline:2px solid var(--gold); outline-offset:2px;
  }


/* ===== Static multi-page production overrides ===== */
.page{display:block;}
.site-nav .nav-links a.active{opacity:1;border-bottom-color:var(--gold);}
main.static-page{min-height:60vh;}
.breadcrumbs{font-size:13px;color:var(--muted);margin-bottom:22px;}
.breadcrumbs a{color:var(--forest);border-bottom:1px solid rgba(26,59,50,.22);}
.breadcrumbs span{margin:0 7px;color:#9B9B94;}

/* ===== Insights hub ===== */
.insights-hero{background:var(--forest-dark);color:var(--ivory);padding:80px 0 74px;position:relative;overflow:hidden;}
.insights-hero:after{content:"";position:absolute;width:420px;height:420px;border-radius:50%;right:-170px;top:-170px;background:rgba(255,255,255,.035);}
.insights-hero .wrap{position:relative;z-index:1;}
.insights-hero h1{font-family:var(--serif);font-size:40px;line-height:1.14;margin-bottom:18px;max-width:760px;}
.insights-hero p{max-width:720px;color:#E3DDD0;font-size:16.5px;}
.insights-intro{max-width:840px;margin:0 auto;text-align:center;}
.insight-group{margin-top:64px;}
.insight-group:first-of-type{margin-top:0;}
.insight-group-head{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:26px;border-bottom:1px solid var(--line);padding-bottom:14px;}
.insight-group-head h2{margin-bottom:0;}
.insight-group-head p{color:var(--muted);max-width:530px;font-size:14px;}
.insights-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.insight-card{background:var(--card);border:1px solid var(--line);border-radius:11px;overflow:hidden;display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease;}
.insight-card:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(26,59,50,.09);}
.insight-card img{width:100%;aspect-ratio:1200/630;object-fit:cover;}
.insight-card-body{padding:24px 24px 25px;display:flex;flex-direction:column;flex:1;}
.insight-card .category{font-size:10.5px;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold);font-weight:800;margin-bottom:10px;}
.insight-card h3{font-family:var(--serif);font-size:19px;line-height:1.25;color:var(--forest);margin-bottom:10px;}
.insight-card p{font-size:14px;color:var(--muted);margin-bottom:20px;}
.insight-card .read-link{margin-top:auto;font-size:13.5px;font-weight:800;color:var(--forest);}
.insight-card .read-link span{color:var(--gold);margin-left:5px;}

/* ===== Insight article ===== */
.article-hero{background:var(--forest-dark);color:var(--ivory);padding:60px 0 64px;}
.article-hero .article-wrap{max-width:900px;margin:0 auto;padding:0 32px;}
.article-kicker{font-size:11.5px;letter-spacing:1.8px;text-transform:uppercase;color:var(--gold);font-weight:800;margin-bottom:14px;}
.article-hero h1{font-family:var(--serif);font-size:39px;line-height:1.14;margin-bottom:18px;}
.article-byline{font-size:13.5px;color:#E3DDD0;}
.article-shell{max-width:980px;margin:0 auto;padding:56px 32px 84px;}
.article-visual{margin:0 0 42px;border-radius:12px;overflow:hidden;border:1px solid var(--line);box-shadow:0 8px 24px rgba(26,59,50,.07);}
.article-visual img{width:100%;height:auto;}
.article-content{max-width:760px;margin:0 auto;}
.article-content h2{font-family:var(--serif);font-size:25px;line-height:1.25;margin:38px 0 13px;color:var(--forest);}
.article-content h3{font-family:var(--serif);font-size:18px;line-height:1.35;margin:26px 0 8px;color:var(--forest);}
.article-content p{font-size:16px;line-height:1.72;color:#333;margin-bottom:18px;}
.article-content ul{margin:0 0 23px 22px;}
.article-content li{font-size:15.5px;line-height:1.65;margin-bottom:8px;color:#333;}
.answer-box,.takeaway-box,.fd-lens{border-radius:10px;margin:0 0 30px;padding:24px 26px;}
.answer-box{background:var(--ice);border-left:4px solid var(--gold);}
.takeaway-box{background:var(--card);border:1px solid var(--line);}
.takeaway-box h2,.answer-box h2,.fd-lens h2{font-size:19px;margin:0 0 12px;}
.takeaway-box ul{margin-bottom:0;}
.fd-lens{background:var(--forest);color:var(--ivory);}
.fd-lens h2{color:var(--gold);}
.fd-lens p{color:#F1ECE2;margin-bottom:0;}
.common-questions{margin-top:46px;padding-top:8px;border-top:1px solid var(--line);}
.common-questions h2{margin-top:28px;}
.related-reading{margin-top:54px;padding:28px;background:var(--ice);border-radius:10px;}
.related-reading h2{font-size:21px;margin:0 0 14px;}
.related-reading ul{list-style:none;margin:0;padding:0;}
.related-reading li{margin:9px 0;}
.related-reading a{color:var(--forest);font-weight:700;border-bottom:1px solid rgba(26,59,50,.22);}
.article-cta{margin-top:54px;background:var(--forest-dark);color:var(--ivory);border-radius:12px;padding:34px 36px;text-align:center;}
.article-cta h2{color:var(--ivory);margin:0 0 10px;font-size:25px;}
.article-cta p{color:#E3DDD0;max-width:620px;margin:0 auto 20px;}
.article-nav{display:flex;justify-content:space-between;gap:24px;margin-top:36px;padding-top:26px;border-top:1px solid var(--line);}
.article-nav a{max-width:46%;font-size:13.5px;font-weight:700;color:var(--forest);}
.article-nav .next{text-align:right;margin-left:auto;}

@media(max-width:900px){
  .insights-grid{grid-template-columns:repeat(2,1fr);}
  .insight-group-head{align-items:flex-start;flex-direction:column;gap:8px;}
}
@media(max-width:640px){
  .insights-hero{padding:56px 0 50px;}
  .insights-hero h1{font-size:31px;}
  .insights-grid{grid-template-columns:1fr;}
  .article-hero .article-wrap,.article-shell{padding-left:20px;padding-right:20px;}
  .article-hero h1{font-size:30px;}
  .article-content p{font-size:15.5px;}
  .article-content h2{font-size:22px;}
  .answer-box,.takeaway-box,.fd-lens{padding:21px 20px;}
  .article-nav{flex-direction:column;}
  .article-nav a{max-width:100%;}
  .article-nav .next{text-align:left;margin-left:0;}
}

/* Step 3 navigation and article-hero refinements */
.article-hero .breadcrumbs{color:#C8C3B8;}
.article-hero .breadcrumbs a{color:#F2EBDD;border-bottom-color:rgba(242,235,221,.35);}
.article-hero .breadcrumbs span{color:var(--gold);}
@media(min-width:1021px){
  .nav-inner{gap:16px;}
  .brand-lockup{min-width:370px;}
  nav.nav-links{gap:24px;}
}
@media(max-width:1020px){
  nav.nav-links{
    position:absolute;top:100%;left:0;right:0;background:var(--forest);
    flex-direction:column;align-items:flex-start;padding:18px 32px;gap:16px;
    border-bottom:1px solid var(--line);display:none;
  }
  nav.nav-links.open{display:flex;}
  .brand-lockup{min-width:auto;gap:10px;}
  .brand-mark{width:72px;height:62px;}
  .brand-divider{height:42px;}
  .brand-name{font-size:18px;letter-spacing:2px;}
  .brand-sub{font-size:9px;letter-spacing:4px;margin-top:7px;}
  .nav-toggle{display:flex;}
}

.page-title{font-family:var(--serif);font-size:32px;color:var(--forest);font-weight:700;margin-bottom:14px;}
@media(max-width:640px){.page-title{font-size:26px;}}

/* ===== Insight library media/title separation ===== */
.insight-card-media{
  width:100%;
  aspect-ratio:1200/630;
  overflow:hidden;
  background:#F1EDE4;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.insight-card-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  margin:0;
  padding:0;
  font-size:12px;
  line-height:1.35;
  color:var(--muted);
  text-align:center;
}
.insight-card-body{position:relative;z-index:1;background:var(--card);}
.insight-card h3{position:relative;z-index:2;}
.article-back-row{margin:18px 0 0;}
.article-back-btn{
  display:inline-flex;align-items:center;gap:8px;text-decoration:none;
  font-size:13.5px;font-weight:800;color:var(--ivory);
  border:1px solid rgba(199,161,94,.65);padding:9px 13px;border-radius:999px;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.article-back-btn:hover{background:var(--gold);color:var(--forest);border-color:var(--gold);}

/* ===== Insights library visual fix v3 ===== */
.insight-card-media{
  width:100%;
  aspect-ratio:1200/630;
  overflow:hidden;
  background:var(--ivory);
  border-bottom:1px solid var(--line);
  display:block;
}
.insight-card-media img,
.insight-card > a > img{
  display:block;
  width:100%;
  aspect-ratio:1200/630;
  object-fit:cover;
  object-position:center;
  margin:0;
  padding:0;
  border:0;
}
.insight-card-body{
  position:relative;
  background:var(--card);
  padding-top:24px;
}
.insight-card h3{
  margin-top:0;
}
.article-back-row{margin:18px 0 0;}
.article-back-btn{
  display:inline-flex;align-items:center;gap:8px;text-decoration:none;
  font-size:13.5px;font-weight:800;color:var(--ivory);
  border:1px solid rgba(199,161,94,.7);padding:9px 14px;border-radius:999px;
}
.article-back-btn:hover{background:var(--gold);color:var(--forest);border-color:var(--gold);}


/* ===== Step 5 review fix v4 ===== */
.insight-card-media {
  width: 100%;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.insight-card-media img,
.insight-card > a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: var(--ivory);
}
.article-visual {
  background: var(--ivory);
}
.article-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.article-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 800;
  color: #1A3B32;
  background: #C7A15E;
  border: 1px solid #C7A15E;
  padding: 10px 16px;
  border-radius: 999px;
  transition: filter .2s ease, transform .2s ease;
}
.article-back-btn:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
  color: #1A3B32;
}

/* ===== Step 5 v5: Insight spacing + title restoration ===== */
.insight-group{margin-top:48px;}
.insight-group-head{margin-bottom:18px;padding-bottom:10px;}
.insights-grid{gap:20px;}
.insight-card-media{aspect-ratio:1200/420;min-height:0;}
.insight-card-media img,
.insight-card > a > img{
  width:100%;
  height:auto;
  aspect-ratio:1200/420;
  object-fit:cover;
  display:block;
}
.insight-card-body{padding:18px 24px 21px;}
.insight-card .category{margin-bottom:7px;}
.insight-card h3{margin-bottom:8px;line-height:1.2;}
.insight-card p{margin-bottom:14px;line-height:1.52;}
.article-shell{padding-top:34px;}
.article-visual{margin-bottom:26px;}
.answer-box,.takeaway-box,.fd-lens,.common-questions{margin-top:20px;}
.article-back-btn{
  background:#C7A15E;
  border-color:#C7A15E;
  color:#1A3B32;
}

/* v7 clean redraw */
.insight-card-media{aspect-ratio:1200/340!important;background:#F9F6EE!important}.insight-card-media img,.insight-card>a>img{display:block!important;width:100%!important;height:auto!important;aspect-ratio:1200/340!important;object-fit:cover!important}.article-visual img{display:block!important;width:100%!important;height:auto!important}.article-back-btn{background:#C7A15E!important;border-color:#C7A15E!important;color:#1A3B32!important}

/* Production V1 additions */
.footer-trademark-note{font-size:11px;opacity:.68;margin-top:10px;text-align:center;}
.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;}
.form-privacy-note,.regional-contact-note,.regional-note{font-size:13px;line-height:1.5;color:var(--muted);margin:10px 0;}
.cta-band .regional-note{color:#E3DDD0;margin-top:-16px;margin-bottom:26px;}
.article-published{display:block;font-size:12px;color:var(--muted);margin-top:6px;}
.legal-copy h2{font-size:22px;margin-top:28px;} .legal-copy h2:first-child{margin-top:0;} .legal-copy p,.legal-copy li{color:var(--muted);font-size:15px;line-height:1.7;} .legal-copy ul{margin:10px 0 10px 22px;} .legal-copy a{text-decoration:underline;}
