 /* ── Hero image section ───────────────────────────── */
    .hero-visual img {
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(44,74,110,.18);
      width: 100%;
      height: 480px;
      object-fit: cover;
    }

::marker {      color: #e8a87c;         }

    .hero-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 5rem 0 4rem;
    }

    /* ── Trust bar ───────────────────────────────────── */
    .trust-bar {
      background: var(--brand-surface);
      border-top: 1px solid var(--brand-border);
      border-bottom: 1px solid var(--brand-border);
      padding: 1.25rem 0;
    }

    .trust-items {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: .82rem;
      font-weight: 500;
      color: var(--brand-text-subtle);
    }

    .trust-item .trust-icon {
      font-size: 1.2rem;
    }

    /* ── Content section with sidebar ───────────────── */
    .content-area p { line-height: 1.85; }
    .content-area h2 { margin-bottom: 1rem; }
    .content-area h3 { margin: 2rem 0 .75rem; }

    /* Pull quote inside content */
    .pull-quote {
      border-left: 4px solid var(--brand-accent);
      padding: 1.25rem 1.5rem;
      background: rgba(232,168,124,.07);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      margin: 2rem 0;
    }

    .pull-quote p {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      color: var(--brand-primary);
      font-style: italic;
      margin: 0;
      line-height: 1.6;
    }

    /* ── Services strip ──────────────────────────────── */
    .services-strip {
      background: var(--brand-bg);
      padding: 5rem 0;
    }

    .service-card {
      background: var(--brand-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
      transform: scaleX(0);
      transition: transform .3s ease;
    }

    .service-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: rgba(44,74,110,.12);
    }

    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      width: 66px;
      height: 66px;
      background: linear-gradient(135deg, rgba(44,74,110,.1), rgba(232,168,124,.12));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1.2rem;
    }

    .service-card h3 {
      font-size: 1.05rem;
      margin-bottom: .6rem;
    }

    .service-card p {
      font-size: .875rem;
      color: var(--brand-text-subtle);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .service-card a {
      font-size: .8rem;
      font-weight: 600;
      color: var(--brand-accent-dark);
      letter-spacing: .02em;
      text-decoration: none;
    }

    .service-card a:hover { color: var(--brand-primary); }

    /* ── How we help banner ──────────────────────────── */
    .how-we-help {
      background: linear-gradient(135deg, var(--brand-primary) 0%, #3d6494 100%);
      padding: 5.5rem 0;
      position: relative;
      overflow: hidden;
    }

    .how-we-help::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 400px; height: 400px;
      background: rgba(232,168,124,.1);
      border-radius: 50%;
    }

    .how-we-help .section-label { color: var(--brand-accent-light); }
    .how-we-help h2 { color: #fff; }
    .how-we-help p  { color: rgba(255,255,255,.8); }

    /* ── Testimonial section ─────────────────────────── */
    .testimonials-section { background: var(--brand-page-bg); padding: 5rem 0; }

    /* ── Blog/posts section ──────────────────────────── */
    .blog-section { background: var(--brand-bg); padding: 5rem 0; }

    /* Recent post (main blog grid) */
    .post-card {
      background: var(--brand-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all .3s ease;
    }

    .post-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-3px);
    }

    .post-card__img {
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--brand-surface);
    }

    .post-card__img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .post-card:hover .post-card__img img { transform: scale(1.04); }

    .post-card__body { padding: 1.5rem; }

    .post-card__cat {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--brand-accent-dark);
      margin-bottom: .5rem;
    }

    .post-card__title {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--brand-primary);
      margin-bottom: .6rem;
      line-height: 1.35;
    }

    .post-card__title a { color: inherit; }
    .post-card__title a:hover { color: var(--brand-accent-dark); }

    .post-card__excerpt {
      font-size: .875rem;
      color: var(--brand-text-subtle);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .post-card__meta {
      font-size: .76rem;
      color: var(--brand-text-muted);
      display: flex;
      gap: .75rem;
      flex-wrap: wrap;
    }

    /* Recent posts in sidebar box (large featured list) */
    .recent-posts-box {
      background: var(--brand-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .recent-posts-box__header {
      background: var(--brand-primary);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .recent-posts-box__header h3 {
      color: #fff;
      font-size: 1rem;
      margin: 0;
    }

    .recent-posts-list { padding: 0 1.5rem; }

    .rp-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--brand-border);
    }

    .rp-item:last-child { border-bottom: none; }

    .rp-item__num {
      width: 30px;
      height: 30px;
      background: rgba(44,74,110,.08);
      color: var(--brand-primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .rp-item__body { flex: 1; min-width: 0; }

    .rp-item__title {
      font-size: .875rem;
      font-weight: 600;
      color: var(--brand-primary);
      line-height: 1.4;
      margin-bottom: .25rem;
    }

    .rp-item__title a { color: inherit; }
    .rp-item__title a:hover { color: var(--brand-accent-dark); }

    .rp-item__meta {
      font-size: .72rem;
      color: var(--brand-text-muted);
      display: flex;
      gap: .5rem;
    }

    .rp-item__cat {
      color: var(--brand-accent-dark);
      font-weight: 600;
    }

    .recent-posts-box__footer {
      padding: 1rem 1.5rem;
      border-top: 1px solid var(--brand-border);
      text-align: center;
    }

    /* ── CTA band ────────────────────────────────────── */
    .cta-band {
      background: linear-gradient(135deg, var(--brand-accent-dark) 0%, var(--brand-accent) 100%);
      padding: 4rem 0;
      text-align: center;
    }

    .cta-band h2 { color: #fff; margin-bottom: .75rem; }
    .cta-band p  { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 2rem; }

    /* ── Responsive tweaks ───────────────────────────── */
    @media (max-width: 900px) {
      .hero-layout {
        grid-template-columns: 1fr;
        padding: 3.5rem 0 2.5rem;
        gap: 2.5rem;
      }
      .hero-visual { display: none; }
    }

    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr 1fr !important; }
      .posts-grid    { grid-template-columns: 1fr !important; }
    }

    @media (max-width: 540px) {
      .services-grid { grid-template-columns: 1fr !important; }
      .trust-items { gap: 1.25rem; }
    }

/* ============================================================
   Mankind Counselling & Care — style.css
   Path: /css/style.css
   Version: 1.0 | 2026
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  --brand-primary:       #2c4a6e;
  --brand-accent:        #e8a87c;
  --brand-primary-light: #3d6494;
  --brand-primary-dark:  #1e3350;
  --brand-accent-light:  #f2c4a0;
  --brand-accent-dark:   #cf8a58;

  --brand-bg:            #ffffff;
  --brand-page-bg:       #f7f9fc;
  --brand-surface:       #eef2f8;
  --brand-border:        #dce5f0;

  --brand-text:          #1a2a3a;
  --brand-text-subtle:   #5a6e82;
  --brand-text-muted:    #8fa0b4;

  --font-heading:        'Playfair Display', Georgia, serif;
  --font-body:           'Inter', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-sm:    0 1px 4px rgba(44,74,110,.06);
  --shadow-md:    0 4px 16px rgba(44,74,110,.10);
  --shadow-lg:    0 8px 32px rgba(44,74,110,.14);
  --shadow-xl:    0 16px 48px rgba(44,74,110,.18);

  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --container:    1200px;
  --gap:          2rem;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--brand-page-bg);
  color: var(--brand-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--brand-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-accent-dark); }
ul, ol { list-style: disclosure-closed;  margin: 10%;}
button, input, textarea, select { font-family: var(--font-body); }

/* ── Selection ────────────────────────────────────────────── */
::selection { background: var(--brand-accent); color: #fff; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-surface); }
::-webkit-scrollbar-thumb { background: var(--brand-primary-light); border-radius: 99px; }

/* ══════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

/* Page wrapper */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content { flex: 1; }

/* Grid */
.grid            { display: grid; gap: var(--gap); }
.grid-2          { grid-template-columns: repeat(2, 1fr); }
.grid-3          { grid-template-columns: repeat(3, 1fr); }
.grid-4          { grid-template-columns: repeat(4, 1fr); }
.grid-auto       { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Sidebar layout */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.layout-sidebar--left {
  grid-template-columns: 300px 1fr;
}

/* Flex helpers */
.flex           { display: flex; }
.flex-center    { display: flex; align-items: center; justify-content: center; }
.flex-between   { display: flex; align-items: center; justify-content: space-between; }
.flex-gap       { display: flex; gap: 1rem; }
.flex-wrap      { flex-wrap: wrap; }
.flex-col       { flex-direction: column; }

/* Sections */
.section         { padding: 5rem 0; }
.section--sm     { padding: 3rem 0; }
.section--lg     { padding: 7rem 0; }
.section--bg     { background: var(--brand-surface); }
.section--dark   { background: var(--brand-primary); color: #fff; }
.section--white  { background: var(--brand-bg); }

/* ══════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: .9rem; }

p { margin-bottom: 1.2rem; color: var(--brand-text); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  color: var(--brand-text-subtle);
  line-height: 1.8;
  font-weight: 300;
}

.text-sm       { font-size: .875rem; }
.text-xs       { font-size: .75rem; }
.text-lg       { font-size: 1.125rem; }
.text-xl       { font-size: 1.25rem; }

.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }

.text-primary  { color: var(--brand-primary); }
.text-accent   { color: var(--brand-accent-dark); }
.text-muted    { color: var(--brand-text-muted); }
.text-subtle   { color: var(--brand-text-subtle); }
.text-white    { color: #fff; }

.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-heading  { font-family: var(--font-heading); }

/* Section heading pattern */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-accent-dark);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.section-title--center { text-align: center; }

.section-subtitle {
  color: var(--brand-text-subtle);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
}

.section-subtitle--center {
  text-align: center;
  margin: 0 auto;
}

.title-underline {
  display: inline-block;
  position: relative;
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 99px;
}

.title-underline--center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════════════════════════ */

.site-header {
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .875rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  object-fit: cover;
  max-height: 69px;
  width: 644px;
  position: absolute;
  margin: 0 0 0 -10%;
}

.site-logo__text { display: flex; flex-direction: column; }

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.2;
}

.site-logo__tagline {
  font-size: .7rem;
  color: var(--brand-text-muted);
  letter-spacing: .04em;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: .25rem; }

.site-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--brand-text-subtle);
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  letter-spacing: .01em;
  transition: var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-primary);
  background: var(--brand-surface);
}

.site-nav a.active {
  font-weight: 600;
}

/* CTA in nav */
.nav-cta {
  background: var(--brand-primary) !important;
  color: #fff !important;
  border-radius: var(--radius-md) !important;
  padding: .5rem 1.1rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--brand-accent-dark) !important;
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: .45rem .6rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 99px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   TOP BAR (optional)
══════════════════════════════════════════════════════════ */

.top-bar {
  background: var(--brand-primary);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  padding: .45rem 1.5rem;
}

.top-bar a { color: var(--brand-accent-light); }
.top-bar a:hover { color: #fff; }

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  gap: 1rem;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-bg);
}

.hero--full {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero--large { padding: 8rem 0 6rem; }
.hero--medium { padding: 6rem 0 4rem; }
.hero--small { padding: 4rem 0 3rem; }

/* Decorative background shape */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,168,124,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44,74,110,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,168,124,.15);
  color: var(--brand-accent-dark);
  border: 1px solid rgba(232,168,124,.3);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--brand-primary);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}

.hero__title span { color: var(--brand-accent-dark); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--brand-text-subtle);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  padding: 4rem 0 3.5rem;
  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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: #fff;
  margin-bottom: .75rem;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  position: relative;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.btn--primary:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
}

.btn--accent {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
}
.btn--accent:hover {
  background: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn--outline:hover {
  background: var(--brand-primary);
  color: #fff;
}

.btn--outline-accent {
  background: transparent;
  color: var(--brand-accent-dark);
  border-color: var(--brand-accent);
}
.btn--outline-accent:hover {
  background: var(--brand-accent);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--brand-primary);
  border-color: transparent;
  padding-left: .5rem;
  padding-right: .5rem;
}
.btn--ghost:hover { background: var(--brand-surface); }

.btn--white {
  background: #fff;
  color: var(--brand-primary);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--brand-accent-light);
  border-color: var(--brand-accent-light);
}

.btn--sm { padding: .5rem 1.2rem; font-size: .8rem; border-radius: var(--radius-sm); }
.btn--lg { padding: 1rem 2.2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn--full { width: 100%; }

.btn--icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════ */

.card {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(44,74,110,.15);
}

.card__image { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card:hover .card__image img { transform: scale(1.04); }

.card__body { padding: 1.5rem; }
.card__body--lg { padding: 2rem; }
.card__body--sm { padding: 1rem; }

.card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-accent-dark);
  margin-bottom: .6rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brand-primary);
  margin-bottom: .6rem;
  line-height: 1.35;
}

.card__title a { color: inherit; }
.card__title a:hover { color: var(--brand-accent-dark); }

.card__excerpt { color: var(--brand-text-subtle); font-size: .9rem; line-height: 1.7; }

.card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--brand-text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--brand-border);
  flex-wrap: wrap;
}

.card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-page-bg);
}

/* Service card */
.card--service {
  text-align: center;
  padding: 2.5rem 2rem;
}

.card--service .card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(44,74,110,.1), rgba(44,74,110,.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
}

/* Feature card */
.card--feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  align-items: flex-start;
}

.card--feature .card__icon {
  width: 48px;
  height: 48px;
  background: rgba(44,74,110,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

/* Stat card */
.card--stat {
  text-align: center;
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--brand-accent);
}

.card--stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: .4rem;
}

.card--stat .stat-label {
  font-size: .85rem;
  color: var(--brand-text-subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

/* Highlight card */
.card--highlight {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  color: #fff;
  border: none;
}

.card--highlight h2,
.card--highlight h3,
.card--highlight h4 { color: #fff; }

.card--highlight p { color: rgba(255,255,255,.85); }

/* ══════════════════════════════════════════════════════════
   SIDEBAR WIDGETS
══════════════════════════════════════════════════════════ */

.widget {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.widget:last-child { margin-bottom: 0; }

.widget__header {
  background: var(--brand-primary);
  padding: .9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.widget__header h3,
.widget__title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: .01em;
}

.widget__header .widget__icon { font-size: 1rem; opacity: .85; }

.widget__body { padding: 1.25rem 1.4rem; }

/* Recent posts in widget */
.recent-post-item {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--brand-border);
}

.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-item:first-child { padding-top: 0; }

.recent-post-item__thumb {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brand-surface);
}

.recent-post-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-item__info { flex: 1; min-width: 0; }

.recent-post-item__title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.35;
  margin-bottom: .3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-item__title a { color: inherit; }
.recent-post-item__title a:hover { color: var(--brand-accent-dark); }

.recent-post-item__date {
  font-size: .72rem;
  color: var(--brand-text-muted);
}

/* Widget: navigation list */
.widget-list { }

.widget-list li {
  border-bottom: 1px solid var(--brand-border);
}

.widget-list li:last-child { border-bottom: none; }

.widget-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 0;
  font-size: .88rem;
  color: var(--brand-text);
  font-weight: 500;
  transition: var(--transition);
}

.widget-list a:hover { color: var(--brand-primary); padding-left: .4rem; }

.widget-list a::after {
  content: '→';
  font-size: .8rem;
  color: var(--brand-text-muted);
  transition: var(--transition);
}

.widget-list a:hover::after { color: var(--brand-accent-dark); }

/* Widget: tags/pills */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tag-pill {
  display: inline-block;
  background: var(--brand-surface);
  color: var(--brand-text-subtle);
  border: 1px solid var(--brand-border);
  border-radius: 99px;
  padding: .3rem .85rem;
  font-size: .78rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.tag-pill:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* Widget: quote/highlight */
.widget--quote {
  background: linear-gradient(135deg, rgba(44,74,110,.06), rgba(232,168,124,.06));
  border-color: rgba(232,168,124,.3);
  border-left: 4px solid var(--brand-accent);
}

.widget--quote blockquote {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--brand-primary);
  font-style: italic;
  line-height: 1.7;
}

/* Widget: CTA */
.widget--cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  border: none;
  text-align: center;
  padding: 2rem 1.5rem;
}

.widget--cta h3 { color: #fff; margin-bottom: .75rem; }
.widget--cta p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 1.25rem; }

/* ══════════════════════════════════════════════════════════
   LISTS (content)
══════════════════════════════════════════════════════════ */

.list-check { display: flex; flex-direction: column; gap: .6rem; }

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--brand-text);
  line-height: 1.6;
}

.list-check li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(44,74,110,.1);
  color: var(--brand-primary);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .15rem;
}

.list-arrow { display: flex; flex-direction: column; gap: .5rem; }

.list-arrow li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .93rem;
  color: var(--brand-text);
  padding-left: .25rem;
}

.list-arrow li::before {
  content: '›';
  color: var(--brand-accent-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: -.05rem;
}

.list-styled { display: flex; flex-direction: column; gap: .6rem; }

.list-styled li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .93rem;
  color: var(--brand-text);
  line-height: 1.65;
}

.list-styled li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6rem;
  width: 7px;
  height: 7px;
  background: var(--brand-accent);
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════════════
   BREADCRUMBS
══════════════════════════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--brand-text-muted);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--brand-text-subtle); }
.breadcrumb a:hover { color: var(--brand-primary); }

.breadcrumb__sep {
  color: var(--brand-text-muted);
  font-size: .7rem;
}

.breadcrumb__current { color: var(--brand-text); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */

.testimonial {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: .75rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--brand-accent-light);
  line-height: 1;
  pointer-events: none;
}

.testimonial__text {
  font-size: .95rem;
  color: var(--brand-text-subtle);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-surface);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--brand-primary);
}

.testimonial__role {
  font-size: .78rem;
  color: var(--brand-text-muted);
}

.testimonial--accent {
  background: linear-gradient(135deg, rgba(232,168,124,.08), rgba(232,168,124,.03));
  border-color: rgba(232,168,124,.25);
}

/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--brand-text);
  margin-bottom: .4rem;
}

.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--brand-text);
  background: var(--brand-bg);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(44,74,110,.12);
}

.form-control::placeholder { color: var(--brand-text-muted); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6e82' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-hint { font-size: .78rem; color: var(--brand-text-muted); margin-top: .35rem; }
.form-error { font-size: .78rem; color: #dc3545; margin-top: .35rem; }

/* Inline search */
.search-box {
  display: flex;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-bg);
  transition: var(--transition);
}

.search-box:focus-within { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(44,74,110,.1); }

.search-box input {
  flex: 1;
  border: none;
  padding: .7rem 1rem;
  font-size: .9rem;
  background: transparent;
  color: var(--brand-text);
  outline: none;
}

.search-box button {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  padding: 0 1.1rem;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}

.search-box button:hover { background: var(--brand-primary-dark); }

/* Newsletter widget */
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }

/* ══════════════════════════════════════════════════════════
   NOTICE / ALERT BOXES
══════════════════════════════════════════════════════════ */

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  border-left: 4px solid;
}

.alert--info    { background: rgba(44,74,110,.07);   border-color: var(--brand-primary); color: var(--brand-primary-dark); }
.alert--warm    { background: rgba(232,168,124,.12); border-color: var(--brand-accent);  color: #7a4a1e; }
.alert--success { background: rgba(34,134,90,.07);   border-color: #22865a;              color: #145a38; }
.alert--crisis  { background: rgba(220,53,69,.07);   border-color: #dc3545;              color: #8b0000; }

/* ══════════════════════════════════════════════════════════
   DIVIDERS / SEPARATORS
══════════════════════════════════════════════════════════ */

.divider {
  border: none;
  border-top: 1px solid var(--brand-border);
  margin: 2rem 0;
}

.divider--accent {
  border-color: var(--brand-accent-light);
}

.divider--thick {
  border-width: 2px;
}

/* Decorative accent line */
.accent-bar {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 99px;
  margin: 1rem 0;
}

.accent-bar--center { margin: 1rem auto; }
.accent-bar--lg { width: 80px; height: 4px; }

/* ══════════════════════════════════════════════════════════
   BADGES & LABELS
══════════════════════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .7rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.badge--primary { background: rgba(44,74,110,.1);   color: var(--brand-primary); }
.badge--accent  { background: rgba(232,168,124,.2); color: var(--brand-accent-dark); }
.badge--success { background: rgba(34,134,90,.1);   color: #22865a; }
.badge--new     { background: var(--brand-accent);  color: #fff; }

/* ══════════════════════════════════════════════════════════
   IMAGES & MEDIA
══════════════════════════════════════════════════════════ */

.img-rounded    { border-radius: var(--radius-md); }
.img-circle     { border-radius: 50%; }
.img-cover      { width: 100%; height: 100%; object-fit: cover; }
.img-contain    { width: 100%; height: 100%; object-fit: contain; }

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-frame--accent {
  border: 3px solid var(--brand-accent-light);
}

/* Aspect ratio boxes */
.ratio-16-9   { aspect-ratio: 16/9; overflow: hidden; }
.ratio-4-3    { aspect-ratio: 4/3;  overflow: hidden; }
.ratio-1-1    { aspect-ratio: 1/1;  overflow: hidden; }
.ratio-3-2    { aspect-ratio: 3/2;  overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,74,110,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   TABS
══════════════════════════════════════════════════════════ */

.tab-nav {
  display: flex;
  gap: .25rem;
  border-bottom: 2px solid var(--brand-border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  padding: .7rem 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--brand-text-subtle);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover { color: var(--brand-primary); }
.tab-btn.active { color: var(--brand-primary); border-bottom-color: var(--brand-primary); font-weight: 600; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ══════════════════════════════════════════════════════════
   ACCORDION / FAQ
══════════════════════════════════════════════════════════ */

.accordion { border: 1px solid var(--brand-border); border-radius: var(--radius-lg); overflow: hidden; }

.accordion-item { border-bottom: 1px solid var(--brand-border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  background: var(--brand-bg);
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-align: left;
  transition: var(--transition);
}

.accordion-trigger:hover { background: var(--brand-surface); }

.accordion-trigger::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--brand-accent);
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.open .accordion-trigger::after { content: '−'; }
.accordion-item.open .accordion-trigger { background: var(--brand-surface); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion-body-inner {
  padding: .25rem 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--brand-text-subtle);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   PROCESS / STEPS
══════════════════════════════════════════════════════════ */

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  width: 2px;
  height: calc(100% - 42px);
  background: var(--brand-border);
}

.step:last-child::before { display: none; }

.step__num {
  width: 40px;
  height: 40px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  z-index: 1;
}

.step__content { flex: 1; padding-top: .4rem; }
.step__title { font-family: var(--font-heading); font-size: 1rem; color: var(--brand-primary); margin-bottom: .35rem; }
.step__desc { font-size: .88rem; color: var(--brand-text-subtle); line-height: 1.7; }

/* Horizontal steps */
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.step-h {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step-h__num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.step-h__title { font-family: var(--font-heading); font-size: .95rem; color: var(--brand-primary); margin-bottom: .4rem; }
.step-h__desc  { font-size: .83rem; color: var(--brand-text-subtle); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid var(--brand-border);
  color: var(--brand-text-subtle);
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--brand-surface);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.pagination .current {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* ══════════════════════════════════════════════════════════
   SKIP LINK (accessibility)
══════════════════════════════════════════════════════════ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--brand-primary);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus { top: 1rem; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--brand-primary-dark);
  color: rgba(255,255,255,.75);
}

.footer-main {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .site-logo__name { color: #fff; }
.footer-brand .site-logo__tagline { color: rgba(255,255,255,.5); }

.footer-desc {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin: 1rem 0 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.1rem;
  letter-spacing: .02em;
}

.footer-links { display: flex; flex-direction: column; gap: .45rem; }

.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover { color: var(--brand-accent-light); padding-left: .3rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

.footer-bottom__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
}

.footer-bottom__links a:hover { color: var(--brand-accent-light); }

/* Social icons */
.social-links { display: flex; gap: .6rem; }

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--brand-accent);
  color: #fff;
}

/* Footer widget (light footer variant) */
.footer-widget {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.footer-widget h5 {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  margin-bottom: .6rem;
  font-weight: 600;
}

.footer-widget p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   UTILITY — SPACING
══════════════════════════════════════════════════════════ */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: .5rem;  padding-bottom: .5rem; }
.py-2 { padding-top: 1rem;   padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem;   padding-bottom: 2rem; }
.py-5 { padding-top: 3rem;   padding-bottom: 3rem; }

.px-1 { padding-left: .5rem;  padding-right: .5rem; }
.px-2 { padding-left: 1rem;   padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem;   padding-right: 2rem; }

/* Display helpers */
.d-none     { display: none; }
.d-block    { display: block; }
.d-flex     { display: flex; }
.d-grid     { display: grid; }
.d-inline   { display: inline; }
.d-inline-block { display: inline-block; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-gentle {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

.anim-fade-up   { animation: fadeInUp .6s ease both; }
.anim-fade      { animation: fadeIn   .6s ease both; }
.anim-slide-in  { animation: slideInLeft .6s ease both; }

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* Observe-triggered */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --gap: 1.5rem; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-bg);
    border-top: 1px solid var(--brand-border);
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
    box-shadow: var(--shadow-md);
  }

  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: .65rem 1rem; }

  .nav-toggle { display: flex; }

  .hero--large  { padding: 4rem 0 3rem; }
  .hero--medium { padding: 3rem 0 2.5rem; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; }

  .steps-horizontal { grid-template-columns: 1fr; }

  .section { padding: 3.5rem 0; }
  .section--lg { padding: 4rem 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .container { padding: 0 1rem; }
  .card__body { padding: 1.25rem; }
  .btn--lg { padding: .85rem 1.6rem; font-size: .9rem; }

  .footer-main { padding: 2.5rem 0 2rem; }
}

/* ══════════════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════════════ */

@media print {
  .site-header, .site-footer, .widget--cta,
  .nav-toggle, .btn { display: none !important; }

  body { background: #fff; color: #000; font-size: 12pt; }
  h1, h2, h3, h4 { color: #000; page-break-after: avoid; }
  a { color: #000; text-decoration: underline; }
  .card, .widget { box-shadow: none; border: 1px solid #ddd; }
}
