/* ===== PAGE HERO ===== */
.page-body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
  } 
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #3a4147 60%, #3a4147 100%);
  padding: 150px 48px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%2300a99d' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.4;
}
.page-hero-inner { position: relative; max-width: 1120px; margin: 0 auto; }
.breadcrumb span { color: rgba(255,255,255,0.85); font-weight: 500; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}
.page-hero h1 em { font-style: italic; color: var(--steel); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.hero-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--steel-deep); display: block; }

/* ===== CREDENTIALS STRIP ===== */
.creds-strip { background: #ffffff; border-bottom: 1px solid var(--line); padding: 0 48px; }
.creds-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.cred-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; }
.cred-badge {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 2px 8px;
  border-radius: 4px;
}
.cred-label { color: var(--charcoal); line-height: 1.3; }

/* ===== PAGE BODY ===== */
.page-body-full{
    max-width: 1120px;
    margin: 0 auto;
   padding-top: 60px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(46,73,92,0.18);
}
.sidebar-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #3a4147 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.sidebar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.sidebar-photo-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(160deg, #3a4147, var(--ink));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.sidebar-photo-placeholder svg { opacity: 0.3; }
.sidebar-photo-placeholder p { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.sidebar-info { padding: 24px; }
.sidebar-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.sidebar-role { font-size: 0.8rem; color: var(--steel-deep); font-weight: 500; margin-bottom: 16px; }
.sidebar-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-badge {
  background: rgba(0,169,157,0.15);
  border: 1px solid rgba(0,169,157,0.3);
  color: var(--steel-deep);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ===== CONTACT CARD ===== */
.contact-card {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-location { font-size: 0.82rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 16px; }
.contact-location li { list-style: none; padding: 4px 0; border-bottom: 1px solid var(--line); }
.contact-location li:last-child { border-bottom: none; }
.contact-location li::before { content: '📍 '; font-size: 0.7rem; }
.contact-secretary { font-size: 0.82rem; }
.contact-secretary strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; }
.contact-secretary a { color: var(--steel-deep); font-weight: 600; }

.btn-appt {
  display: block;
  background: linear-gradient(135deg, var(--steel), var(--steel-deep));
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn-appt:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== MAIN CONTENT ===== */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel-deep);
  margin-bottom: 8px;
}

.bio-section { margin-bottom: 48px; }
.bio-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 20px;
}
.bio-section h2 em { font-style: italic; color: var(--steel-deep); }
.bio-section p { font-size: 17px; color: var(--charcoal); line-height: 1.85; margin-bottom: 16px; }
.bio-section p strong { color: var(--ink); }

.interests-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.interest-tag {
  background: #e6f7f6;
  border-left: 3px solid var(--steel-deep);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

/* ===== PUBLICATIONS ===== */
.publications-section { margin-bottom: 48px; }
.publications-section h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--steel-deep);
  display: inline-block;
}
.pub-count { font-size: 17px; color: var(--charcoal); margin-bottom: 28px; margin-top: 8px; }
.pub-list { list-style: none; }
.pub-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.7;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.pub-item:last-child { border-bottom: none; }
.pub-num { color: var(--steel-deep); font-weight: 700; font-size: 0.72rem; padding-top: 2px; }
.pub-item em { font-style: italic; color: var(--ink); font-weight: 500; }
.pub-item strong { color: var(--steel-deep); }

/* ===== CHAPTER CARD ===== */
.chapter-card {
  background: linear-gradient(135deg, var(--ink) 0%, #3a4147 100%);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.chapter-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(0,169,157,0.15);
}
.chapter-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--steel-deep);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.chapter-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.chapter-card p strong { color: #ffffff; }


/**19-june**/


/* PAGE HERO */
.breadcrumb { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .3s; }
.breadcrumb a:hover { color: var(--steel); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .cur { color: rgba(255,255,255,.85); }

.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--steel); display: block; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; line-height: 1.15; }
.page-hero h1 em { font-style: italic; color: var(--steel); }
 
/* SECTION SHARED */
.eyebrow { font-size: 14px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--steel-deep); }
.sec-head { max-width: 560px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(26px, 3vw, 38px); margin: 14px 0 0; }
 
/* AFFILIATES GRID */
.affiliates-section { padding: 90px 32px; background: linear-gradient(180deg, var(--offwhite), var(--mist)); }
.affiliates-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
 
/* 4th card spans or sits alone — match original layout: 3 top, 1 bottom-left */
.affiliates-grid .acard:nth-child(4) { grid-column: 1; }
 
.acard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all .45s var(--ease);
  position: relative; overflow: hidden;
}
.acard::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(94,159,200,.05), transparent 60%); opacity: 0; transition: opacity .45s; }
.acard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(94,159,200,.35); }
.acard:hover::before { opacity: 1; }
.acard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(94,159,200,.05), transparent 60%);
    opacity: 0;
    transition: opacity .45s;
}
 
 .logo-nv {
    color: #6B3FA0;
}
.logo-syn {
    color: #1a6fa8;
}
.logo-hca {
    color: #003764;
}
.logo-cb {
    color: #1D73C9;
}
.acard-logo {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
/* CONTACT BAND */
.contact-band { background: linear-gradient(135deg, var(--ink), #3a4147); padding: 72px 32px; }
.contact-band-inner { max-width: 1240px; margin: 0 auto; }
.cb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cb-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 32px; transition: background .4s var(--ease); }
.cb-card:hover { background: rgba(255,255,255,.12); }
.cb-label { font-size: 14px;  text-transform: uppercase; font-weight: 700; color: var(--steel); margin-bottom: 14px; }
.cb-card .cname { font-family: var(--serif); font-size: 20px; color: #fff; margin-bottom: 10px; }
.cb-card p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.8; }
.cb-card a { color: var(--steel); font-weight: 600; transition: color .3s; }
.cb-card a:hover { color: #fff; }
 


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .page-body-full{ grid-template-columns: 1fr; padding: 40px 24px; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-card { margin-bottom: 0; }
  .page-hero { padding: 100px 24px 40px; }
  .contact-band { grid-template-columns: 1fr; gap: 24px; }
  .title-bar { padding-top: 100px; padding-left: 33px; }
  .title-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
   .logo-strip-item { border-right: none; border-bottom: 1px solid var(--line); min-width: 45%; }
    .page-body { grid-template-columns: 1fr; padding: 40px 24px; }
   .body-wrap { padding: 50px 24px; }
   .causes-list { grid-template-columns: 1fr;}
  
}

@media (max-width: 600px) {
  .sidebar { grid-template-columns: 1fr; }
  .interests-grid { grid-template-columns: 1fr; }
  .logo-strip-item { min-width: 100%; }
   .causes-list { grid-template-columns: 1fr;}
  
  
}

@media (max-width: 768px) {
  .affiliates-grid { grid-template-columns: repeat(2, 1fr); }
  .affiliates-grid .acard:nth-child(4) { grid-column: auto; }
  .cb-grid { grid-template-columns: 1fr; }
   .causes-list { grid-template-columns: 1fr;}
  

}
@media (max-width: 480px) {
  .affiliates-grid { grid-template-columns: 1fr; }
   .causes-list { grid-template-columns: 1fr;}
  
}

/*** Testimonials*/
 .body-wrap { max-width: 1180px; margin: 0 auto; padding: 70px 48px; }
 
  .section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
  .section-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--steel-deep);
    font-weight: 700;
    margin-bottom: 14px;
  }
  .section-head h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 2rem;
    color: var(--ink);
  }
  .section-head h2 em { font-style: italic; color: var(--steel-deep); font-weight: 500; }
  .section-head p { margin-top: 14px; color: var(--charcoal); font-size: 0.95rem; line-height: 1.8; }
 
  .verified-row {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-bottom: 36px;
    font-size: 18px;
    color: var(--charcoal);
  }
  .verified-row strong { color: var(--ink); font-weight: 700; }
  .verified-row .stars { color: var(--steel-deep); }
 
  /* ===== REVIEW CARDS GRID ===== */
  .review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 70px;
  }
  .review-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0 4px 18px rgba(46,73,92,0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .review-stars { color: var(--steel-deep); font-size: 18px; letter-spacing: 2px; }
  .review-text { font-size: 16px; color: var(--charcoal); line-height: 1.7; flex-grow: 1; }
  .review-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; color: var(--charcoal);
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  .review-meta strong { color: var(--charcoal); font-weight: 600; }
 
  /* ===== QUOTE WALL ===== */
  .quote-section { margin-bottom: 30px; }
  .quote-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .quote-card {
    background: #ffffff;
    border-left: 3px solid var(--steel-deep);
    border-radius: 4px;
    padding: 26px 24px;
    box-shadow: 0 2px 10px rgba(46,73,92,0.04);
  }
  .quote-mark {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--steel-deep);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
  }
  .quote-text {
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 14px;
  }
  .quote-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
  }
  .quote-author span {
    display: block;
    font-weight: 400;
    color: var(--charcoal);
    font-size: 16px;
    margin-top: 2px;
  }
  .quote-card.featured {
    grid-column: span 1;
    background: var(--ink);
    border-left: 3px solid #7aa8cc;
  }
  .quote-card.featured .quote-mark { color: #7aa8cc; }
  .quote-card.featured .quote-text { color: #cdd9e3; }
  .quote-card.featured .quote-author { color: #ffffff; }
  .quote-card.featured .quote-author span { color: #9fb3c4; }
 
  .clinician-tag {
    display: inline-block;
    background: var(--mist);
    border: 1px solid var(--line);
    color: var(--steel-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
  }
 .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .review-grid, .quote-wall { grid-template-columns: repeat(2, 1fr); /* already 2-col, keeps it */ }
    .body-wrap { padding: 50px 24px; }
	.venue-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 620px) {
    .review-grid, .quote-wall { grid-template-columns: 1fr; }
	.venue-grid { grid-template-columns: 1fr; }
   }
  
  
  
  /***Venues***/
  
  /* ===== VENUE GRID ===== */
  .venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .venue-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(46,73,92,0.06);
    display: flex;
    flex-direction: column;
  }
  .venue-image {
    height: 160px;
    background: var(--line);
    background-image:
      linear-gradient(135deg, #dde5ee 25%, transparent 25%),
      linear-gradient(225deg, #dde5ee 25%, transparent 25%),
      linear-gradient(315deg, #dde5ee 25%, transparent 25%),
      linear-gradient(45deg, #dde5ee 25%, #e9eef4 25%);
    background-size: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .venue-image svg { width: 36px; height: 36px; opacity: 0.35; }
  .venue-image span {
    position: absolute;
    bottom: 10px; right: 12px;
    font-size: 0.65rem;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.7);
    padding: 2px 8px;
    border-radius: 10px;
  }
  .venue-body { padding: 24px 26px 28px; flex-grow: 1; display: flex; flex-direction: column; }
  .venue-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .venue-address {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 16px;
    flex-grow: 1;
  }
  .venue-meta {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.8;
  }
 
  @media (max-width: 620px) {
   
	.venue-grid { grid-template-columns: 1fr; }
   }
  /***Fees***/
  .intro-text { margin-bottom: 44px; }
  .intro-text p { font-size: 17px; color: var(--charcoal); margin-bottom: 10px; line-height: 1.85; }
  .intro-text p strong { color: var(--ink); }
 
  .fee-table-wrap {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(46,73,92,0.06);
    margin-bottom: 28px;
  }
  table.fee-table { width: 100%; border-collapse: collapse; }
  .fee-table thead tr.venue-row th {
    background: var(--ink);
    color: #ffffff;
    text-align: center;
    padding: 16px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }
  .fee-table thead tr.col-row th {
    background: var(--mist);
    color: var(--ink);
    text-align: left;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid var(--line);
  }
  .fee-table thead tr.col-row th:first-child { color: var(--steel-deep); }
  .fee-table tbody td {
    padding: 18px;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--line);
  }
  .fee-table tbody tr:last-child td { border-bottom: none; }
  .fee-table tbody td:first-child { font-weight: 600; color: var(--ink); }
  .fee-table tbody td.price { font-family: var(--serif); font-weight: 700; color: var(--steel-deep); }
  .fee-table tbody tr:hover { background: var(--mist); }
 
  .fee-note {
    font-size: 16px;
    color: var(--charcoal);
    max-width: 720px;
    padding: 18px 22px;
    background: #ffffff;
    border-left: 3px solid var(--steel-deep);
    border-radius: 0 6px 6px 0;
  }
  
   .venue-meta a { color: var(--steel-deep); font-weight: 600; }
   @media (max-width: 960px) {
    
	.venue-grid { grid-template-columns: repeat(2, 1fr); }
	.fee-table-wrap { overflow-x: auto; }
    .fee-table { min-width: 720px; }
  }
  
  /***22-june-2026****/

/*** Media ****/

  .media-block { margin-bottom: 70px; }
  .media-block:last-child { margin-bottom: 0; }
 
  .media-text { margin-bottom: 24px; }
  .media-text h3 {
    font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--ink); margin-bottom: 12px;
  }
  .media-text p { font-size: 17px; color: var(--charcoal); line-height: 1.85; margin-bottom: 10px; }
  .media-text ol { margin: 10px 0 0 20px; }
  .media-text ol li { font-size: 17px; color: var(--charcoal); margin-bottom: 6px; }
 
  .video-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(46,73,92,0.12);
    background: var(--ink);
  }
  .video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #3a4147, var(--ink));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .play-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    z-index: 2;
  }
  .play-btn svg { width: 22px; height: 22px; fill: #ffffff; margin-left: 2px; }
 
  .video-caption-bar {
    position: absolute;
    bottom: 44px; left: 0; right: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(46,73,92,0.55);
  }
  .video-caption-bar .src-logo {
    background: #ffffff;
    color: var(--steel-deep);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 4px;
  }
  .video-caption-bar .src-text {
    color: #ffffff;
    font-size: 0.92rem;
  }
  .video-caption-bar .src-text strong { font-weight: 700; }
 
  .video-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: var(--ink);
    color: #cdd9e3;
    font-size: 0.78rem;
  }
  .video-controls .progress {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .video-controls .progress span {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 12%;
    background: var(--steel-deep);
  }
 
  /* Variant: dark purple-style placeholder card */
  .video-thumb.brand-dark { background: linear-gradient(135deg, #3a4147, var(--ink)); }
  .brand-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 0 48px;
  }
  .brand-overlay h4 {
     font-family: var(--serif);
    font-weight: 700;
    font-style: italic;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 24px;
  }
  .brand-overlay .play-btn { margin-bottom: 0; }
  .brand-footer-logo {
    position: absolute;
    bottom: 16px; right: 24px;
    color: #ffffff;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0.85;
  }
  
  /** contact page***/
    /* ===== TWO COLUMN: image + quick info ===== */
  .top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
    align-items: stretch;
  }
  .calendar-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(46,73,92,0.1);
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, var(--ink), #3a4147);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .calendar-card svg { width: 70%; opacity: 0.9; }
 
  .quick-info-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(46,73,92,0.06);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .quick-info-card h3 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .quick-info-row {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .quick-info-row:last-child { border-bottom: none; }
  .quick-info-row svg { width: 18px; height: 18px; color: var(--steel-deep); flex-shrink: 0; margin-top: 2px; }
  .quick-info-row .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal); margin-bottom: 3px; }
  .quick-info-row .value { font-size: 0.88rem; color: var(--charcoal); line-height: 1.6; }
  .quick-info-row a { color: var(--steel-deep); font-weight: 600; }
 p.lede { margin-top: 16px; font-size: 0.98rem; color: #cdd9e3; }
 
 
  /* ===== MAP ===== */
  .map-section h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 20px;
	padding-top:50px;
  }
  .map-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(46,73,92,0.1);
  }
  .map-card-header {
    background: #3a4147;
    color: #ffffff;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
  }
  .map-card-header strong { font-weight: 700; }
  .map-card-header .sub { color: #9fb3c4; font-size: 0.78rem; }
  .map-iframe-wrap { width: 100%; aspect-ratio: 16/9; background: var(--line); }
  .map-iframe-wrap iframe { width: 100%; height: 100%; border: 0; }
  
  .form-intro { font-size: 15px; color: var(--steel); line-height: 1.7; margin: -4px 0 28px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-field { display: flex; flex-direction: column; }
  .form-field label {
    font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--steel-deep); font-weight: 700; margin-bottom: 8px;
  }
  .form-field input, .form-field textarea {
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--mist);
    transition: border-color 0.2s, background 0.2s;
  }
  .form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--steel-deep);
    background: #ffffff;
  }
  .form-field textarea { resize: vertical; min-height: 120px; }
 
  /* ── Submit button & states ── */
  .btn-submit {
    background: var(--steel-deep);
    color: #ffffff;
    border: none;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--sans);
    transition: background 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-submit:hover:not(:disabled) { background: #3f6f93; }
  .btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }
 
  /* ── Alert messages ── */
  .form-alert {
    display: none;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 20px;
    align-items: center;
    gap: 10px;
  }
  .form-alert.show { display: flex; }
  .form-alert.success {
    background: #eaf6f0;
    border: 1px solid #6dbf99;
    color: #1a6644;
  }
  .form-alert.error {
    background: #fef2f2;
    border: 1px solid #f5a8a8;
    color: #8b2020;
  }
  
  /**** 23-june-26**/
  
  .article-image {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin: 0 0 32px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
  }
  .article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 380px;
  }

  .causes-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(46,73,92,0.06);
    padding: 32px 36px;
    margin-bottom: 48px;
  }
  .causes-card h3 {
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .causes-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border: 0.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 20px 0;
    background: #fff;
}
  .causes-list li {
    font-size: 17px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .causes-list li::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--steel-deep);
    flex-shrink: 0;
  }
 
  .treatment-text {
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.85;
    margin-bottom: 32px;
  }
 
  .author-credit {
    font-size: 16px;
    color: var(--charcoal);
  }
  .author-credit a { color: var(--steel-deep); font-weight: 600; }
 

  .subhead {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .body-text p {
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.85;
    margin-bottom: 22px;
  }

 
  .cta-note {
    font-size:17px;
    color: var(--charcoal);
    padding: 20px 24px;
    background: #ffffff;
    border-left: 3px solid var(--steel-deep);
    border-radius: 0 8px 8px 0;
    margin-bottom: 32px;
  }
  .cta-note a { color: var(--steel-deep); font-weight: 600; }
 
  .author-credit { font-size: 17px; color: var(--charcoal); }
  .author-credit a { color: var(--steel-deep); font-weight: 600; }
  
  
  .treatment-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(46,73,92,0.06);
    padding: 32px 36px;
    margin-bottom: 32px;
  }
  .treatment-card h3 {
      font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .treatment-list { list-style: none; }
  .treatment-list li {
    font-size: 0.92rem;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
  }
  .treatment-list li:last-child { border-bottom: none; }
  .treatment-list li::before {
    content: '';
    width: 7px; height: 7px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--steel-deep);
    flex-shrink: 0;
  }
  .warning-note {
    font-size: 17px;
    color: var(--charcoal);
    padding: 20px 24px;
    background: #ffffff;
    border-left: 3px solid #c0392b;
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
}

/* ─── INTRO CARD ─── */
.intro-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 4px 18px rgba(46,73,92,0.07);
  margin-bottom: 32px;
  border: 1px solid #e4edf5;
}
.intro-card h2 {
 font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.intro-card p {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 16px;
}
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.6;
}
.bullet-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--steel-deep);
  flex-shrink: 0;
  margin-top: 7px;
}
 
/* ─── HERO IMAGE ─── */
.hero-image-block {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(46,73,92,0.12);
  height: 400px;
}
.hero-image-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
 
/* ─── PRESENTATION CARD ─── */
.presentation-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 4px 18px rgba(46,73,92,0.07);
  margin-bottom: 32px;
  border: 1px solid #e4edf5;
}
.presentation-card p {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 16px;
}
.presentation-card p:last-child { margin-bottom: 0; }
 
/* ─── TWO-COL GRID CARD ─── */

.causes-card p {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 16px;
}
.procedures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.proc-item {
  background: #eaf3fa;
  border: 1px solid #c8dff0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #3a4147;
}
.proc-item::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--steel-deep);
  flex-shrink: 0;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .causes-list { grid-template-columns: 1fr; padding-left: 0; }
  .procedures-grid { grid-template-columns: 1fr 1fr; }
  .page-body { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
}
@media (max-width: 600px) {
  .procedures-grid { grid-template-columns: 1fr; }
  .causes-card { padding: 24px 20px; }
}

/* ===== ABOUT-US PAGE ===== */
.about-intro { margin-bottom: 48px; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.about-intro-img { position: relative; }
.about-intro-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.about-intro-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.about-intro-text .about-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 20px 0;
}

.about-doctor {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(46,73,92,0.06);
  padding: 40px 40px 32px;
  margin-bottom: 48px;
}
.about-doctor h2 { margin-bottom: 20px; }
.about-doctor p { margin-bottom: 14px; }
.about-interests { margin-top: 28px; }
.about-interests h3 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; color: var(--ink); }
.about-cta-row { margin-top: 28px; }

.about-why { margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46,73,92,0.10);
  border-color: transparent;
}
.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; stroke: #fff; }
.why-text { flex: 1; }
.why-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-card p { font-size: 0.85rem; color: var(--charcoal); line-height: 1.6; margin: 0; }

/* Venues V2 */
.about-venues { margin-bottom: 56px; }
.venue-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.venue-card-v2 {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.venue-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46,73,92,0.10);
  border-color: transparent;
}
.venue-icon-v2 {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(74,134,173,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-icon-v2 svg { width: 22px; height: 22px; stroke: var(--steel-deep); }
.venue-text { flex: 1; }
.venue-card-v2 h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.venue-card-v2 p { font-size: 0.82rem; color: var(--charcoal); margin: 0 0 6px; line-height: 1.4; }
.venue-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--steel-deep);
  background: rgba(74,134,173,0.08);
  padding: 2px 8px;
  border-radius: 4px;
}
.venue-arr {
  font-size: 1.2rem;
  color: var(--steel);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.venue-card-v2:hover .venue-arr {
  opacity: 1;
  transform: translateX(3px);
}

/* Dr profile intro grid */
.dr-intro-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}
.dr-intro-img img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.dr-intro-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin: 0;
}

@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-img { max-width: 300px; margin: 0 auto; }
  .dr-intro-grid { grid-template-columns: 1fr; }
  .dr-intro-img { max-width: 240px; }
  .why-grid { grid-template-columns: 1fr; }
  .venue-grid-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-doctor { padding: 24px 20px; }
}

/**24-june-2026****/

.info-card { background: #ffffff; border-radius: 10px; box-shadow: 0 4px 18px rgba(46,73,92,0.06); padding: 28px 32px; margin: 28px 0; }
.info-card h3 {font-weight: 700; font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.info-card .intro { font-size: 0.9rem; color: var(--charcoal); margin-bottom: 16px; }
.bullet-list { list-style: none; padding-left: 0; }

/* ===== PREMIUM TYPOGRAPHY & SPACING REFINEMENTS ===== */

/* Responsive subheads */
.subhead { font-size: clamp(20px, 2.5vw, 24px); }
.causes-card h3,
.intro-card h2,
.info-card h3 { font-size: clamp(20px, 2.5vw, 24px); }

/* Refined page hero */
.page-hero { padding: 160px 48px 64px; }
.page-hero .lede {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 18px;
}

/* Section eyebrow — consistent premium style */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--steel-deep);
  margin-bottom: 12px;
}

/* Premium body-wrap spacing */
.body-wrap {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 48px);
}

/* Refined card hover */
.causes-card,
.intro-card,
.presentation-card,
.info-card {
  transition: box-shadow .35s ease, transform .35s ease;
}
.causes-card:hover,
.intro-card:hover,
.presentation-card:hover,
.info-card:hover {
  box-shadow: 0 12px 36px rgba(46,73,92,0.12);
  transform: translateY(-2px);
}

/* Premium warning/cta note refinements */
.warning-note,
.cta-note {
  border-radius: 10px;
  padding: 20px 24px;
}

/* Sidebar cards — refined */
.sidebar-badge {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--offwhite);
}

/* Contact band refined */
.contact-band {
  background: linear-gradient(135deg, var(--ink) 0%, #3a4147 100%);
}
.cb-card {
  transition: transform .35s ease, box-shadow .35s ease;
}
.cb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* Premium smooth scroll for anchor links */
html { scroll-behavior: smooth; }

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Refined footer typography */
footer h4 {
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: .08em;
}

/* ===== SIDEBAR LAYOUT ===== */
.body-wrap.has-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.body-wrap.has-sidebar > .content-area {
  min-width: 0;
}

/* Sidebar component */
.sidebar {
  position: sticky;
  top: 100px;
}
.sb-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(46,73,92,0.06);
  border: 1px solid rgba(46,73,92,0.08);
}
.sb-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
}
.sb-icon {
  width: 36px;
  height: 36px;
  background: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.sb-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--steel-deep);
}
.sb-venues {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sb-venues li {
  font-size: 13px;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sb-venues li:last-child { border-bottom: none; }
.sb-venues li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
  margin-top: 6px;
}
.sb-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 10px;
}
.sb-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}
.sb-detail svg {
  width: 14px;
  height: 14px;
  stroke: var(--steel-deep);
  flex-shrink: 0;
}
.sb-detail a {
  color: var(--steel-deep);
  font-weight: 500;
  word-break: break-all;
  transition: color .3s;
}
.sb-detail a:hover { color: var(--ink); }
.sb-cta { background: none; border: none; box-shadow: none; padding: 0; }
.btn-block { width: 100%; justify-content: center; text-align: center; }

@media (max-width: 960px) {
  .body-wrap.has-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .sb-card { margin-bottom: 0; }
}

/* ============ STATS STRIP ============ */
.stats-strip {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: #3b82c4;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--steel);
  margin-top: 6px;
  letter-spacing: .02em;
}

/* ============ CATEGORY SECTIONS ============ */
.cat-section { margin-bottom: 40px; }
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.cat-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.cat-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}

/* ============ INDEX GRID (listing pages) ============ */
.index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.index-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.index-card:hover {
  border-color: #3b82c4;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.ic-number {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: #3b82c4;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.ic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59,130,196,.08);
  margin-bottom: 14px;
}
.ic-icon svg {
  width: 20px;
  height: 20px;
  color: #3b82c4;
}
.index-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}
.index-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel);
  margin: 0;
  flex: 1;
}
.ic-arrow {
  font-size: 18px;
  color: #3b82c4;
  margin-top: 14px;
  transition: transform .2s;
  align-self: flex-end;
}
.index-card:hover .ic-arrow { transform: translateX(4px); }
.index-card:hover .ic-icon { background: rgba(59,130,196,.14); }

/* ============ CTA BANNER ============ */
.cta-banner {
  margin-top: 48px;
  padding: 40px 36px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2a5a8a 100%);
  border-radius: 14px;
  text-align: center;
}
.cta-banner h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
.cta-banner p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 0 0 22px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #1e3a5f;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.cta-banner .btn-primary:hover {
  background: #f0f4f8;
  transform: translateY(-1px);
}
.cta-banner .btn-primary .arr { margin-left: 6px; }

@media (max-width: 680px) {
  .index-grid { grid-template-columns: 1fr; gap: 14px; }
  .index-card { padding: 22px 20px 20px; }
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); padding: 18px 16px; }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 26px; }
  .cat-title { font-size: 19px; }
  .cta-banner { padding: 32px 24px; }
  .cta-banner h3 { font-size: 20px; }
}

/* ===== SERVICE CARDS ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  overflow: hidden;
}
.svc-card:hover {
  border-color: rgba(59,130,196,.3);
  box-shadow: 0 8px 32px rgba(59,130,196,.10), 0 2px 8px rgba(0,0,0,.04);
  transform: translateY(-3px);
}
.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59,130,196,.08);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: #3b82c4;
}
.svc-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: rgba(59,130,196,.35);
  letter-spacing: .02em;
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--steel);
  margin: 0;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #3b82c4;
  margin-top: 16px;
  letter-spacing: .02em;
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: 8px; }

@media (max-width: 680px) {
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 24px 20px 22px; }
  .svc-card h3 { font-size: 16px; }
}

/* Better mobile spacing */
@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 48px; }
  .body-wrap { padding: 32px 16px; }
  .creds-strip { padding: 0 16px; }
  .creds-inner { gap: 20px; padding: 14px 0; }
  .sidebar { grid-template-columns: 1fr; }
}
