/* ================================================================
   CISIHAB – Design System v2
   Palette: Warm amber / terracotta / deep slate
   Font: DM Sans + DM Serif Display
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- Tokens ---- */
:root {
  /* Amber / warm gold */
  --a50:  #fffbeb;
  --a100: #fef3c7;
  --a200: #fde68a;
  --a300: #fcd34d;
  --a400: #f59e0b;
  --a500: #d97706;
  --a600: #b45309;
  --a700: #92400e;

  /* Terracotta / rust */
  --t100: #fce7e0;
  --t300: #e07050;
  --t500: #c0442a;
  --t600: #9b3420;

  /* Deep slate */
  --s50:  #f8f7f5;
  --s100: #ede9e3;
  --s200: #d8d0c5;
  --s300: #b8ad9e;
  --s500: #6b5f52;
  --s700: #3d332a;
  --s900: #1e1712;

  /* Sage green (accent only) */
  --g100: #e8f0ea;
  --g300: #86a98e;
  --g600: #3f6e4a;

  /* State colors */
  --info:    #0369a1;
  --success: #3f6e4a;
  --warning: #d97706;
  --error:   #be123c;

  --body-font:    'DM Sans', system-ui, sans-serif;
  --display-font: 'DM Serif Display', Georgia, serif;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 36px;
  --radius-pill: 100px;

  --shadow-xs: 0 1px 3px rgba(30,23,18,.06);
  --shadow-sm: 0 2px 8px rgba(30,23,18,.08);
  --shadow-md: 0 6px 20px rgba(30,23,18,.10);
  --shadow-lg: 0 14px 40px rgba(30,23,18,.13);

  --max: 1160px;
  --gutter: 1.5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--s700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--s100);
}
.hdr-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1.5rem;
}
.site-logo {
  font-family: var(--display-font);
  font-size: 1.45rem;
  color: var(--s900);
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo em {
  font-style: normal;
  color: var(--a500);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--s500);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--a600); background: var(--a50); }
.site-nav a.active {
  color: var(--a600);
  background: var(--a100);
  font-weight: 600;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--s900);
  color: var(--s300);
  padding: 4rem var(--gutter) 2rem;
}
.ftr-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.ftr-brand .site-logo { color: #fff; font-size: 1.5rem; margin-bottom: .75rem; }
.ftr-brand p {
  font-size: .85rem;
  color: var(--s300);
  line-height: 1.7;
  max-width: 280px;
}
.ftr-col h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.ftr-col a {
  display: block;
  font-size: .875rem;
  color: var(--s300);
  margin-bottom: .55rem;
  transition: color .18s;
}
.ftr-col a:hover { color: var(--a300); }
.ftr-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: var(--s500);
}

/* ================================================================
   UTILITIES
================================================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.sec { padding: 5.5rem var(--gutter); }
.sec-sm { padding: 3.5rem var(--gutter); }
.bg-warm  { background: var(--s50); }
.bg-amber { background: var(--a50); }
.bg-slate { background: var(--s900); color: #fff; }
.bg-terra { background: var(--t100); }

/* Text utilities */
.label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--a600);
  margin-bottom: .9rem;
}
.label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--a400);
  border-radius: 2px;
}

.display {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--s900);
}
.display-sm {
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.22;
  color: var(--s900);
}
.sec-title {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  color: var(--s900);
  margin-bottom: .75rem;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--s500);
  max-width: 580px;
  line-height: 1.72;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--body-font);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .75rem 1.6rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-amber {
  background: var(--a500);
  color: #fff;
  border-color: var(--a500);
  box-shadow: 0 4px 14px rgba(217,119,6,.3);
}
.btn-amber:hover {
  background: var(--a600);
  border-color: var(--a600);
  box-shadow: 0 8px 22px rgba(217,119,6,.38);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--s900);
  border-color: var(--s200);
}
.btn-ghost:hover {
  border-color: var(--a400);
  color: var(--a600);
  background: var(--a50);
}

.btn-outline-amber {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-amber:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--a600);
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-white:hover { box-shadow: 0 8px 22px rgba(0,0,0,.18); color: var(--a700); }

.btn-form {
  width: 100%;
  background: var(--a500);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .85rem 1.5rem;
  font-family: var(--body-font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(217,119,6,.28);
}
.btn-form:hover {
  background: var(--a600);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217,119,6,.38);
}

/* ================================================================
   HERO — index.html (asymmetric full-bleed)
================================================================ */
.hero-home {
  background: var(--s900);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--a400), var(--t300), var(--a400));
}
.hero-home-text {
  padding: 7rem var(--gutter) 6rem calc((100vw - var(--max)) / 2 + var(--gutter));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-home-text .label { color: var(--a300); }
.hero-home-text .label::before { background: var(--a300); }
.hero-home-text .display { color: #fff; }
.hero-home-text .display em {
  font-style: italic;
  color: var(--a300);
}
.hero-home-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 440px;
  line-height: 1.7;
  margin: 1.25rem 0 2rem;
}
.hero-home-img {
  position: relative;
  overflow: hidden;
}
.hero-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}
.hero-home-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--s900) 0%, transparent 30%);
  z-index: 1;
}

/* ================================================================
   HERO — inner pages (compact banner style)
================================================================ */
.hero-page {
  background: var(--s900);
  padding: 4.5rem var(--gutter) 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,6,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-page-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.hero-page .label { color: var(--a300); }
.hero-page .label::before { background: var(--a300); }
.hero-page h1 {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-page p {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.75rem;
}
.hero-page-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-page-img img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================================
   SECTION HEADER (centered)
================================================================ */
.sh {
  max-width: var(--max);
  margin: 0 auto var(--gutter);
  padding: 0 var(--gutter);
}
.sh.center { text-align: center; }
.sh.center .sec-sub { margin: 0 auto; }
.sh .sec-title { margin-bottom: .6rem; }

/* ================================================================
   CARD SYSTEMS
================================================================ */

/* 3-col feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.feat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--s100);
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--a200);
}
.feat-card .icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--a100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.feat-card .icon.terra { background: var(--t100); }
.feat-card .icon.sage  { background: var(--g100); }
.feat-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--s900);
  margin-bottom: .45rem;
}
.feat-card p { font-size: .9rem; color: var(--s500); line-height: 1.65; }

/* Horizontal list cards */
.hcard-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--s100);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--s100);
}
.hcard {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.4rem 1.75rem;
  background: #fff;
  transition: background .18s;
}
.hcard:hover { background: var(--a50); }
.hcard-num {
  font-family: var(--display-font);
  font-size: 1.6rem;
  color: var(--a300);
  line-height: 1.1;
  font-style: italic;
  margin-top: .1rem;
}
.hcard h4 { font-size: .97rem; font-weight: 600; color: var(--s900); margin-bottom: .3rem; }
.hcard p  { font-size: .875rem; color: var(--s500); line-height: 1.65; }

/* Tile grid (icon + text) */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.tile {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: var(--a50);
  border: 1px solid var(--a100);
  transition: border-color .2s, box-shadow .2s;
}
.tile:hover { border-color: var(--a300); box-shadow: var(--shadow-sm); }
.tile h4 { font-size: .97rem; font-weight: 600; color: var(--s900); margin-bottom: .4rem; }
.tile p  { font-size: .875rem; color: var(--a700); line-height: 1.62; }

/* ================================================================
   SPLIT LAYOUTS
================================================================ */
.split-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-wrap.flip { direction: rtl; }
.split-wrap.flip > * { direction: ltr; }

.split-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img-box img { width: 100%; height: 420px; object-fit: cover; }
.split-img-box.tall img { height: 500px; }
.split-img-box.short img { height: 320px; }

.split-body .label { margin-bottom: .6rem; }
.split-body .display-sm { margin-bottom: 1rem; }
.split-body p { font-size: .975rem; color: var(--s500); line-height: 1.75; margin-bottom: .9rem; }
.split-body p:last-of-type { margin-bottom: 0; }

/* ================================================================
   CHECKLIST
================================================================ */
.cl {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.25rem;
}
.cl li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--s500);
  line-height: 1.55;
}
.cl li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: .12rem;
  border-radius: 50%;
  background: var(--a100);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23b45309' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ================================================================
   HIGHLIGHT / CALLOUT BLOCKS
================================================================ */
.callout {
  background: var(--s900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
}
.callout::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,6,.25) 0%, transparent 70%);
}
.callout-inner { position: relative; z-index: 1; }
.callout h3 {
  font-family: var(--display-font);
  font-size: 1.55rem;
  margin-bottom: .75rem;
  color: #fff;
}
.callout p { font-size: .97rem; color: rgba(255,255,255,.78); line-height: 1.75; }

.notice {
  background: var(--a50);
  border-left: 3px solid var(--a400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  max-width: 820px;
  margin: 0 auto;
}
.notice p { font-size: .875rem; color: var(--a700); line-height: 1.67; }
.notice strong { color: var(--s900); }

.info-box {
  background: #fff;
  border: 1px solid var(--s100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

/* ================================================================
   FAQ
================================================================ */
.faq-stack {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--s100);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.faq-q {
  padding: 1.3rem 1.5rem;
  font-weight: 600;
  font-size: .975rem;
  color: var(--s900);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--s100);
}
.faq-q::after {
  content: '›';
  font-size: 1.2rem;
  color: var(--a500);
  transform: rotate(90deg);
  flex-shrink: 0;
  margin-top: -.1rem;
}
.faq-a {
  padding: 1.1rem 1.5rem;
  font-size: .9rem;
  color: var(--s500);
  line-height: 1.72;
  background: var(--s50);
}

/* ================================================================
   TRUST / STATS
================================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--s100);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
}
.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--s100);
  background: #fff;
  transition: background .18s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--a50); }
.stat-val {
  font-family: var(--display-font);
  font-size: 2.4rem;
  color: var(--a500);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-lbl { font-size: .82rem; color: var(--s500); line-height: 1.55; }

/* ================================================================
   CONTACT
================================================================ */
.contact-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-info-head {
  font-family: var(--display-font);
  font-size: 1.35rem;
  color: var(--s900);
  margin-bottom: .5rem;
}
.contact-info p { font-size: .92rem; color: var(--s500); line-height: 1.7; margin-bottom: 1.5rem; }
.cinfo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--s100);
  background: var(--s50);
  margin-bottom: .75rem;
}
.cinfo-ico { font-size: 1.2rem; flex-shrink: 0; margin-top: .05rem; }
.cinfo-txt strong { display: block; font-size: .85rem; font-weight: 600; color: var(--s900); margin-bottom: .12rem; }
.cinfo-txt span { font-size: .875rem; color: var(--s500); }

/* Form */
.form-panel {
  background: #fff;
  border: 1px solid var(--s100);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.form-panel h2 {
  font-family: var(--display-font);
  font-size: 1.25rem;
  color: var(--s900);
  margin-bottom: .35rem;
}
.form-panel .sub { font-size: .875rem; color: var(--s500); margin-bottom: 1.75rem; }
.f-group { margin-bottom: 1.1rem; }
.f-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--s700);
  margin-bottom: .35rem;
}
.f-ctrl {
  width: 100%;
  padding: .7rem 1rem;
  font-size: .9rem;
  font-family: var(--body-font);
  border: 1.5px solid var(--s200);
  border-radius: var(--radius-sm);
  background: var(--s50);
  color: var(--s900);
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.f-ctrl:focus {
  border-color: var(--a400);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
  background: #fff;
}
textarea.f-ctrl { resize: vertical; min-height: 130px; }
.f-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--s500);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.f-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: .12rem;
  accent-color: var(--a500);
}

/* ================================================================
   TAGS
================================================================ */
.tag-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  background: var(--a100);
  color: var(--a600);
}
.tag.terra { background: var(--t100); color: var(--t600); }
.tag.sage  { background: var(--g100); color: var(--g600); }
.tag.slate { background: var(--s100); color: var(--s700); }

/* ================================================================
   MISC COMPONENTS
================================================================ */

/* Pull quote */
.pullquote {
  border-left: 3px solid var(--a400);
  padding: .75rem 1.5rem;
  margin: 1.5rem 0;
}
.pullquote p {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--s700);
  line-height: 1.55;
}

/* Stripe divider */
.stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--a400) 0%, var(--t300) 50%, var(--a400) 100%);
}

/* Inline badge */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--a500);
  color: #fff;
  padding: .25rem .6rem;
  border-radius: var(--radius-xs);
  vertical-align: middle;
}

/* Reading progress band */
.progress-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pb-item {
  background: #fff;
  border: 1px solid var(--s100);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
}
.pb-item h4 { font-size: .9rem; font-weight: 600; color: var(--s900); margin-bottom: .3rem; }
.pb-item p  { font-size: .83rem; color: var(--s500); line-height: 1.6; }
.pb-dot {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: var(--a300);
  margin-bottom: .85rem;
}

/* ================================================================
   ABOUT / EDITORIAL
================================================================ */
.editorial-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.editorial-wrap p {
  font-size: 1rem;
  color: var(--s500);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.editorial-wrap p:last-of-type { margin-bottom: 0; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1000px) {
  .hero-home { grid-template-columns: 1fr; min-height: auto; }
  .hero-home-text {
    padding: 5rem var(--gutter) 4rem;
    text-align: center;
    align-items: center;
  }
  .hero-home-text p { margin-left: auto; margin-right: auto; }
  .hero-home-img { display: none; }
  .hero-page-inner { grid-template-columns: 1fr; }
  .hero-page-img { display: none; }
  .split-wrap { grid-template-columns: 1fr; }
  .split-wrap.flip { direction: ltr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .progress-band { grid-template-columns: 1fr 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .sec { padding: 3.5rem var(--gutter); }
  .sec-sm { padding: 2.5rem var(--gutter); }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .progress-band { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ftr-bottom { flex-direction: column; text-align: center; }
  .callout { padding: 2rem 1.5rem; }
  .site-nav { display: none; }
}

/* Mobile nav fallback */
@media (max-width: 640px) {
  .hdr-inner { justify-content: space-between; }
  .mobile-nav-hint {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--a600);
  }
}
