*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:"Segoe UI",Helvetica,Arial,sans-serif;
  color:var(--text-dark);
  background:var(--paper);
  line-height:1.5;
}
img,.ph-img{max-width:100%;display:block;}
.ph-img{
  background:linear-gradient(135deg,var(--fog-dark),var(--fog));
  border:1px dashed var(--graphite-light);
  color:var(--graphite-light);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:0.8rem;
  padding:1rem;
  min-height:180px;
}
.container{max-width:1200px;margin:0 auto;padding:0 24px;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}

/* NAV */
.navbar{
  background:var(--navy-deep);
  color:#fff;
  position:sticky;
  top:0;
  z-index:100;
}
.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.logo{
  font-weight:700;
  font-size:1.25rem;
  letter-spacing:0.5px;
  color:#fff;
}
.logo span{color:var(--gold-light);}
.nav-links{
  display:flex;
  gap:34px;
  align-items:center;
}
.nav-links a{
  font-size:0.92rem;
  color:#E7ECE8;
  font-weight:500;
}
.nav-links a:hover{color:var(--gold-light);}
.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
}
.btn-subscribe{
  border:1px solid var(--gold-light);
  color:var(--gold-light);
  padding:9px 22px;
  font-size:0.88rem;
  font-weight:600;
  border-radius:2px;
}
.btn-subscribe:hover{background:var(--gold-light);color:var(--navy-deep);}
.search-icon{
  width:20px;height:20px;
  border:1.5px solid #E7ECE8;
  border-radius:50%;
  position:relative;
  display:inline-block;
}
.search-icon::after{
  content:"";
  position:absolute;
  width:8px;height:1.5px;
  background:#E7ECE8;
  transform:rotate(45deg);
  bottom:-3px;right:-4px;
}

/* HERO */
.hero{
  background:linear-gradient(180deg,var(--navy-deep) 0%,var(--forest) 100%);
  color:#fff;
  text-align:center;
  padding:110px 24px 120px;
}
.hero h1{
  font-size:2.9rem;
  font-weight:700;
  max-width:820px;
  margin:0 auto 22px;
  line-height:1.25;
}
.hero p.sub{
  font-size:1.15rem;
  color:#C9D4CC;
  max-width:640px;
  margin:0 auto 40px;
}
.hero-ctas{
  display:flex;
  justify-content:center;
  gap:18px;
}
.btn-solid{
  background:var(--gold);
  color:var(--navy-deep);
  padding:15px 34px;
  font-weight:700;
  font-size:0.95rem;
  border-radius:2px;
  border:1px solid var(--gold);
}
.btn-solid:hover{background:var(--gold-light);border-color:var(--gold-light);}
.btn-outline{
  border:1px solid #fff;
  color:#fff;
  padding:15px 34px;
  font-weight:700;
  font-size:0.95rem;
  border-radius:2px;
}
.btn-outline:hover{background:#fff;color:var(--navy-deep);}

/* PAGE HEADER (interior pages) */
.page-header{
  background:linear-gradient(180deg,var(--navy-deep) 0%,var(--forest) 100%);
  color:#fff;
  text-align:center;
  padding:70px 24px 76px;
}
.page-header h1{
  font-size:2.2rem;
  font-weight:700;
  max-width:760px;
  margin:0 auto 16px;
}
.page-header p.sub{
  font-size:1.05rem;
  color:#C9D4CC;
  max-width:620px;
  margin:0 auto;
}
.page-breadcrumb{
  font-size:0.82rem;
  color:#B9C7BE;
  margin-bottom:18px;
}
.page-breadcrumb a{color:var(--gold-light);}

/* GENERIC CONTENT SECTION */
.content-section{
  padding:90px 24px;
  background:var(--paper);
}
.content-section.alt{background:var(--fog);}
.content-narrow{max-width:840px;margin:0 auto;}
.content-narrow h2{
  font-size:1.9rem;
  color:var(--forest);
  margin:44px 0 18px;
}
.content-narrow h2:first-child{margin-top:0;}
.content-narrow h3{
  font-size:1.3rem;
  color:var(--forest);
  margin:32px 0 14px;
}
.content-narrow p{
  color:var(--text-mid);
  margin-bottom:18px;
  font-size:1rem;
}
.content-narrow ul,.content-narrow ol{
  margin:0 0 20px 22px;
  color:var(--text-mid);
}
.content-narrow li{margin-bottom:8px;list-style:disc;}
.content-narrow ol li{list-style:decimal;}

/* SECTION 3 - AUDIENCE CARDS */
.section-audience{
  padding:100px 24px;
  text-align:center;
  background:var(--paper);
}
.section-audience h2{
  font-size:2.2rem;
  font-weight:700;
  color:var(--forest);
  max-width:760px;
  margin:0 auto 20px;
}
.section-audience p.lead{
  color:var(--text-mid);
  max-width:640px;
  margin:0 auto 60px;
  font-size:1.05rem;
}
.audience-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  text-align:left;
}
.audience-card{
  position:relative;
  background:var(--fog);
  border:1px solid var(--line);
  border-radius:4px;
  padding:36px;
  overflow:hidden;
  transition:box-shadow .2s ease;
}
.audience-card:hover{box-shadow:0 8px 24px rgba(15,42,34,0.12);}
.audience-card::before{
  content:"";
  position:absolute;
  right:-30px;
  bottom:-40px;
  width:160px;
  height:160px;
  border-radius:50%;
  background:repeating-radial-gradient(circle at center,var(--fog-dark) 0 2px,transparent 2px 8px);
  opacity:0.7;
}
.audience-card h3{
  font-size:1.25rem;
  color:var(--forest);
  margin-bottom:12px;
  position:relative;
  z-index:1;
}
.audience-card p{
  color:var(--text-mid);
  font-size:0.95rem;
  margin-bottom:20px;
  position:relative;
  z-index:1;
}
.card-arrow{
  position:absolute;
  bottom:24px;
  right:24px;
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--forest);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  z-index:1;
}

/* SECTION 4 - LEFT TEXT RIGHT IMAGE */
.split-section{
  background:var(--fog);
  padding:100px 24px;
}
.split-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.split-inner.reverse .text-col{order:2;}
.split-inner.reverse .img-col{order:1;}
.text-col h4{
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--gold);
  font-size:0.85rem;
  font-weight:700;
  margin-bottom:14px;
}
.text-col h2{
  font-size:2rem;
  color:var(--forest);
  margin-bottom:20px;
  line-height:1.3;
}
.text-col p{
  color:var(--text-mid);
  margin-bottom:28px;
  font-size:1rem;
}
.btn-forest{
  display:inline-block;
  background:var(--forest);
  color:#fff;
  padding:14px 30px;
  font-weight:600;
  font-size:0.92rem;
  border-radius:2px;
}
.btn-forest:hover{background:var(--forest-mid);}

/* SECTION 6 - IN THE PRESS */
.press-section{
  background:var(--paper);
  padding:90px 24px;
  text-align:center;
}
.press-section h2{
  font-size:1.9rem;
  color:var(--forest);
  margin-bottom:50px;
}
.press-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
  margin-bottom:36px;
}
.press-badge{
  min-height:60px;
  width:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 12px;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.5px;
  color:var(--graphite-light);
  border-top:2px solid var(--line);
  border-bottom:2px solid var(--line);
}
.see-more{
  color:var(--forest);
  font-weight:600;
  border-bottom:2px solid var(--gold);
  padding-bottom:3px;
}

/* SECTION 7 - TESTIMONIALS */
.testimonial-section{
  background:var(--fog);
  padding:90px 24px;
  text-align:center;
}
.testimonial-section h2{
  font-size:1.9rem;
  color:var(--forest);
  margin-bottom:50px;
}
.testimonial-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.testimonial-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:4px;
  padding:32px;
  text-align:left;
}
.testimonial-card .quote-mark{
  font-size:2.4rem;
  color:var(--gold);
  font-weight:700;
  line-height:1;
  margin-bottom:12px;
}
.testimonial-card p.quote{
  color:var(--text-mid);
  font-size:0.95rem;
  margin-bottom:22px;
}
.testimonial-author{
  font-weight:700;
  color:var(--forest);
  font-size:0.92rem;
}
.testimonial-author span{
  display:block;
  font-weight:400;
  color:var(--graphite-light);
  font-size:0.82rem;
  margin-top:2px;
}

/* SECTION 8 - CLIENT LOGO WALL */
.logo-wall{
  background:var(--paper);
  padding:60px 24px 100px;
}
.logo-wall-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  max-width:1000px;
  margin:0 auto;
}
.client-badge{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  font-weight:700;
  letter-spacing:1px;
  color:var(--graphite-light);
  background:var(--fog);
  border:1px solid var(--line);
  border-radius:4px;
  opacity:0.8;
}

/* SECTION 9 - LATEST INSIGHTS CAROUSEL */
.insights-section{
  background:var(--fog);
  padding:100px 24px;
}
.insights-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:0 auto 46px;
}
.insights-header h2{
  font-size:2rem;
  color:var(--forest);
}
.carousel-nav{
  display:flex;
  gap:12px;
}
.carousel-nav button{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--forest);
  background:transparent;
  color:var(--forest);
  font-size:1.1rem;
  cursor:pointer;
}
.carousel-nav button:hover{background:var(--forest);color:#fff;}
.insights-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.insight-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:4px;
  overflow:hidden;
}
.insight-card .ph-img{min-height:170px;border-radius:0;border:none;border-bottom:1px solid var(--line);}
.insight-card-body{padding:24px;}
.insight-card-body h3{
  font-size:1.1rem;
  color:var(--text-dark);
  margin-bottom:14px;
  line-height:1.4;
}
.insight-card-body a.read-link{
  color:var(--forest);
  font-weight:700;
  font-size:0.88rem;
  border-bottom:2px solid var(--gold);
  padding-bottom:2px;
}

/* SECTION 10 - CONSULTATION FORM */
.form-section{
  background:linear-gradient(180deg,var(--forest) 0%,var(--navy-deep) 100%);
  padding:100px 24px;
  display:flex;
  justify-content:center;
}
.form-card{
  background:var(--paper);
  border-radius:6px;
  max-width:820px;
  width:100%;
  padding:56px;
  text-align:center;
}
.form-card h2{
  font-size:1.9rem;
  color:var(--forest);
  margin-bottom:14px;
}
.form-card p.sub{
  color:var(--text-mid);
  margin-bottom:36px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  text-align:left;
}
.form-grid label{
  display:block;
  font-size:0.82rem;
  font-weight:600;
  color:var(--graphite);
  margin-bottom:6px;
}
.form-grid input,.form-grid select,.form-grid textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:3px;
  font-size:0.92rem;
  font-family:inherit;
  color:var(--text-dark);
  background:var(--fog);
}
.form-grid .full{grid-column:1 / -1;}
.form-checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:0.82rem;
  color:var(--text-mid);
  text-align:left;
  margin-top:8px;
}
.form-checkbox input{width:auto;margin-top:3px;}
.btn-submit{
  background:var(--navy-deep);
  color:#fff;
  border:none;
  padding:16px 0;
  width:100%;
  font-weight:700;
  letter-spacing:1px;
  font-size:0.92rem;
  border-radius:3px;
  margin-top:24px;
  cursor:pointer;
}
.btn-submit:hover{background:var(--forest-mid);}

/* CONTACT INFO GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  max-width:1000px;
  margin:0 auto;
}
.contact-info-card{
  background:var(--fog);
  border:1px solid var(--line);
  border-radius:4px;
  padding:32px;
}
.contact-info-card h3{
  color:var(--forest);
  font-size:1.15rem;
  margin-bottom:14px;
}
.contact-info-card p{
  color:var(--text-mid);
  margin-bottom:10px;
  font-size:0.95rem;
}

/* SIMPLE TABLE */
.simple-table{
  width:100%;
  border-collapse:collapse;
  margin:20px 0 30px;
}
.simple-table th,.simple-table td{
  text-align:left;
  padding:12px 14px;
  border:1px solid var(--line);
  font-size:0.92rem;
  color:var(--text-mid);
}
.simple-table th{
  background:var(--fog);
  color:var(--forest);
  font-weight:700;
}

/* BLOG LISTING GRID */
.blog-listing-section{
  padding:90px 24px;
  background:var(--fog);
}
.blog-listing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1200px;
  margin:0 auto;
}
.article-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:4px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.article-thumb{
  min-height:170px;
  border-radius:0;
  border:none;
  border-bottom:1px solid var(--line);
  background-size:cover;
  background-position:center;
}
.article-body{padding:22px;display:flex;flex-direction:column;flex:1;}
.article-meta{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
  font-size:0.78rem;
}
.article-cat{
  color:var(--gold);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.article-date{color:var(--graphite-light);}
.article-excerpt{
  color:var(--text-mid);
  font-size:0.92rem;
  margin-bottom:18px;
  flex:1;
}
.article-link{
  color:var(--forest);
  font-weight:700;
  font-size:0.88rem;
  border-bottom:2px solid var(--gold);
  padding-bottom:2px;
  align-self:flex-start;
}

/* FOOTER */
footer{
  background:var(--graphite);
  color:#D8DAD8;
  padding:80px 24px 0;
}
.footer-top{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1.1fr;
  gap:40px;
  padding-bottom:60px;
  border-bottom:1px solid #454745;
}
.footer-col h4{
  color:#fff;
  font-size:1rem;
  margin-bottom:20px;
  font-weight:700;
}
.footer-col ul li{margin-bottom:12px;}
.footer-col ul li a{
  color:#B7BAB7;
  font-size:0.9rem;
}
.footer-col ul li a:hover{color:var(--gold-light);}
.footer-col.contact p{
  color:#B7BAB7;
  font-size:0.9rem;
  margin-bottom:10px;
}
.badge-row{
  display:flex;
  gap:12px;
  margin-top:18px;
}
.affiliation-badge{
  min-height:60px;
  width:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.5px;
  background:#3A3C3A;
  border:1px solid #5A5C5A;
  border-radius:3px;
  color:#9A9C9A;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 0;
  font-size:0.82rem;
  color:#9A9C9A;
}
.social-icons{display:flex;gap:14px;}
.social-icons span{
  width:32px;height:32px;
  border-radius:50%;
  border:1px solid #5A5C5A;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.75rem;
}

@media(max-width:900px){
  .nav-links{display:none;}
  .audience-grid,.split-inner,.testimonial-row,.insights-grid,.form-grid,.footer-top,.contact-grid,.blog-listing-grid{grid-template-columns:1fr;}
  .logo-wall-grid{grid-template-columns:repeat(2,1fr);}
  .split-inner.reverse .text-col,.split-inner.reverse .img-col{order:0;}
}
