/**
 * Project Sunrise — Main Stylesheet
 * Comprehensive component and layout styles.
 *
 * Table of Contents:
 *  1.  Site Header & Navigation
 *  2.  Mobile Navigation / Hamburger
 *  3.  Hero Sections
 *  4.  Stats Strip
 *  5.  Ubuntu / Content Sections
 *  6.  Service & Card Grids
 *  7.  Clinician Cards
 *  8.  Partners Carousel
 *  9.  CTA Sections
 * 10.  Forms (CF7 Styled)
 * 11.  Blog / Archive
 * 12.  Single Post
 * 13.  Page Templates
 * 14.  404 Page
 * 15.  Sidebar / Widgets
 * 16.  Comments
 * 17.  WooCommerce Base (see woocommerce.css for full)
 * 18.  Revolution Slider Container
 * 19.  Site Footer
 * 20.  Responsive — 768px
 * 21.  Responsive — 390px
 * 22.  Community Events Page
 * ================================================================ */


/* ================================================================
   1. SITE HEADER & NAVIGATION
   ================================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    height: var(--header-height);
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition-base),
                background-color var(--transition-base),
                height var(--transition-base);
    /* NOTE: will-change: transform removed — it creates a containing block
       for position:fixed children (site-nav), collapsing the mobile nav panel */
}

.site-header.is-sticky {
    box-shadow: 0 2px 20px rgb(26 60 52 / 0.10);
    height: calc(var(--header-height) - 8px);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

/* ── WordPress admin bar offset ──────────────────────────────────────
   When logged in, WP adds html { margin-top: 32px } (46px on mobile).
   Shift the fixed header down so it sits flush under the admin bar.  */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-6);
}

/* Logo */
.site-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-header__logo a,
.site-logo__text {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-header__logo img,
.custom-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity var(--transition-fast);
}

.site-logo__text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-deep-forest);
    letter-spacing: var(--tracking-tight);
}

/* Primary navigation */
.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__menu > li {
    position: relative;
}

.site-nav__menu > li > a {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-deep-forest);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    transition: color var(--transition-fast),
                background-color var(--transition-fast);
    white-space: nowrap;
}

.site-nav__menu > li > a:hover,
.site-nav__menu > li.current-menu-item > a,
.site-nav__menu > li.current-page-ancestor > a {
    color: var(--color-accessible-gold);
    background-color: rgba(212, 137, 26, 0.07);
}

.site-nav__menu > li.current-menu-item > a {
    font-weight: var(--weight-bold);
}

/* Dropdown sub-menu */
.site-nav__menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    list-style: none;
    padding: var(--space-2) 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    transform: translateX(-50%) translateY(-8px);
    z-index: var(--z-dropdown);
}

.site-nav__menu li:hover > .sub-menu,
.site-nav__menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.site-nav__menu .sub-menu li a {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-secondary);
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    transition: color var(--transition-fast), background-color var(--transition-fast);
    white-space: nowrap;
}

.site-nav__menu .sub-menu li a:hover {
    color: var(--color-deep-forest);
    background-color: var(--color-light-moss);
}

/* Header actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.site-header__cta {
    font-size: var(--text-sm);
    padding: 0.625rem 1.5rem;
}

/* Cart link — hidden until WooCommerce shop is active */
.cart-link {
    display: none !important;
}

/* Kept for WooCommerce reference — re-enable by removing display:none above */
.cart-link--visible {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-deep-forest);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.cart-link:hover {
    color: var(--color-sunrise-gold);
    background-color: rgba(212, 137, 26, 0.07);
}

.cart-link__count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: var(--color-sunrise-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: var(--weight-bold);
    line-height: 18px;
    text-align: center;
    border-radius: var(--radius-full);
    padding: 0 4px;
}

/* Body offset for fixed header */
body {
    padding-top: var(--header-height);
}

/* ================================================================
   2. MOBILE NAVIGATION / HAMBURGER
   ================================================================ */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--space-2);
    cursor: pointer;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: transparent;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
    flex-shrink: 0;
    gap: 5px;
}

.nav-toggle:hover {
    border-color: var(--color-deep-forest);
    background-color: var(--color-light-moss);
}

.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-deep-forest);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base),
                opacity var(--transition-fast),
                width var(--transition-base);
    transform-origin: center;
}

/* Open state */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar--top {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar--middle {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar--bottom {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav overlay (dark bg) */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 31, 26, 0.5);
    z-index: calc(var(--z-sticky) - 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    backdrop-filter: blur(2px);
}

.nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ================================================================
   3. HERO SECTIONS
   ================================================================ */

/* ── Full-width Hero ──────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
}

.hero--full {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__bg--default {
    background: linear-gradient(135deg, var(--color-deep-forest) 0%, #2d5e50 60%, #1a3c34 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(15, 31, 26, 0.88) 0%,
        rgba(26, 60, 52, 0.80) 50%,
        rgba(26, 60, 52, 0.55) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.hero__inner {
    max-width: 680px;
}

.hero__eyebrow {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: var(--space-6);
    letter-spacing: var(--tracking-tight);
}

.hero__title-highlight {
    display: block;
    color: var(--color-sunrise-gold);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: var(--leading-relaxed);
    color: rgba(253, 247, 238, 0.85);
    margin-bottom: var(--space-10);
    max-width: 56ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
}

.hero__scroll {
    margin-top: var(--space-16);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
}

.hero__scroll-dot {
    width: 6px;
    height: 40px;
    background: rgba(253, 247, 238, 0.25);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.hero__scroll-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--color-sunrise-gold);
    border-radius: var(--radius-full);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(60px); }
    100% { transform: translateY(0); }
}

/* ── Split Hero variant ───────────────────────────────── */
.hero--split {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.hero--split .hero__text-col {
    background: var(--color-deep-forest);
    padding: var(--space-20) var(--space-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero--split .hero__image-col {
    position: relative;
    overflow: hidden;
}

.hero--split .hero__image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
    padding-block: var(--space-12);
    border-bottom: 1px solid var(--color-border);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, var(--text-4xl));
    font-weight: var(--weight-bold);
    color: var(--color-deep-forest);
    line-height: var(--leading-tight);
    margin-top: var(--space-3);
}

.page-hero__excerpt {
    margin-top: var(--space-4);
    font-size: var(--text-md);
    color: var(--color-text-secondary);
    max-width: 60ch;
}

/* ── Single Post — Hero ──────────────────────────────── */
.post-hero {
    background: #EDF4F1;
    padding: 64px 0 52px;
    border-bottom: 1px solid rgba(26,60,52,0.08);
}
.post-hero .container { max-width: 860px; }

.post-hero__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.post-hero__cat-badge {
    display: inline-block;
    background: rgba(212,137,26,0.12);
    color: #8B6914;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
}
.post-hero__cat-badge:hover { background: rgba(212,137,26,0.22); }

.post-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 52px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.1;
    margin: 0 0 20px;
}
.post-hero__excerpt {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4A3728;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 0 28px;
}
.post-hero__meta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(26,60,52,0.55);
    margin-top: 24px;
}
.post-hero__date { font-weight: 500; color: #1A3C34; }
.post-hero__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    flex-shrink: 0;
}
.post-hero__read-time { font-weight: 400; }

/* ── Featured image (full-bleed) ─────────────────────── */
.post-featured-img {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    background: #1A3C34;
}
.post-featured-img__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}


/* ================================================================
   4. STATS STRIP
   ================================================================ */

.stats-strip {
    background: var(--color-sunrise-gold);
    padding-block: var(--space-10);
}

.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-bold);
    color: var(--color-sunrise-gold);
    line-height: 1;
    letter-spacing: var(--tracking-tight);
}

.stat-item__value {
    /* Targeted by JS counter animation */
    display: inline;
}

.stat-item__label {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: rgba(253, 247, 238, 0.75);
    letter-spacing: var(--tracking-wide);
    text-align: center;
    max-width: 14ch;
    margin-inline: auto;
}


/* ================================================================
   5. UBUNTU / PHILOSOPHY SECTION
   ================================================================ */

.ubuntu-section__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.ubuntu-section__text {
    max-width: 560px;
}

.ubuntu-section__quote {
    margin-top: var(--space-8);
    padding: var(--space-6) var(--space-8);
    background: rgba(26, 60, 52, 0.06);
    border-left: 4px solid var(--color-sunrise-gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.ubuntu-section__quote p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-deep-forest);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-2);
}

.ubuntu-section__quote cite {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accessible-gold);
    letter-spacing: var(--tracking-wide);
    font-style: normal;
}

.ubuntu-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.ubuntu-section__image-wrap {
    position: relative;
    width: 380px;
    height: 380px;
}

.ubuntu-section__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-deep-forest), #2d5e50);
    border-radius: var(--radius-full);
    opacity: 0.15;
}

.ubuntu-section__circle--outer {
    width: 380px;
    height: 380px;
    background: transparent;
    border: 2px dashed var(--color-sunrise-gold);
    opacity: 0.3;
    animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}


/* ================================================================
   6. SERVICE / IMPACT / CARD GRIDS
   ================================================================ */

.services-grid {
    gap: var(--space-8);
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}

.service-card__icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--color-light-moss);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-6) var(--space-6) 0;
    flex-shrink: 0;
    transition: background-color var(--transition-base);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--color-deep-forest);
}

.service-card__icon {
    color: var(--color-deep-forest);
    transition: color var(--transition-base);
}

.service-card:hover .service-card__icon {
    color: var(--color-sunrise-gold);
}

.service-card .card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card .card__excerpt {
    flex: 1;
}

.service-card .post-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accessible-gold);
    text-decoration: none;
    margin-top: var(--space-4);
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card .post-card__link:hover {
    color: var(--color-sunrise-gold);
    gap: var(--space-3);
}

/* Post cards (blog) */
.post-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.post-card .card__image {
    aspect-ratio: 16/9;
}

.post-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
}

.post-card__date,
.post-card__read-time {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: var(--tracking-wide);
}

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accessible-gold);
    text-decoration: none;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.post-card__link:hover {
    color: var(--color-sunrise-gold);
    gap: var(--space-3);
}

/* Impact cards */
.impact-card {
    background: var(--color-deep-forest);
    color: var(--color-warm-cream);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
}

.impact-card__number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    color: var(--color-sunrise-gold);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-3);
}

.impact-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-warm-cream);
    margin-bottom: var(--space-3);
}

.impact-card__desc {
    font-size: var(--text-sm);
    color: rgba(253, 247, 238, 0.7);
    line-height: var(--leading-relaxed);
}


/* ================================================================
   7. CLINICIAN CARDS (circular avatar)
   ================================================================ */

.clinician-card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.clinician-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.clinician-card__avatar-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-5);
}

.clinician-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--color-light-moss);
    transition: border-color var(--transition-base);
}

.clinician-card:hover .clinician-card__avatar {
    border-color: var(--color-sunrise-gold);
}

.clinician-card__avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-sunrise-gold);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.clinician-card:hover .clinician-card__avatar-ring {
    opacity: 1;
    transform: scale(1);
}

.clinician-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-deep-forest);
    margin-bottom: var(--space-1);
}

.clinician-card__title {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accessible-gold);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-4);
}

.clinician-card__bio {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

.clinician-card__links {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.clinician-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-light-moss);
    color: var(--color-deep-forest);
    transition: background-color var(--transition-fast), color var(--transition-fast);
    text-decoration: none;
}

.clinician-card__link:hover {
    background: var(--color-deep-forest);
    color: var(--color-warm-cream);
}


/* ================================================================
   8. PARTNERS CAROUSEL / LOGO STRIP
   ================================================================ */

.partners-section {
    padding-block: var(--space-12);
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-6);
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-carousel__track {
    display: flex;
    gap: var(--space-8);
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

.partners-carousel:hover .partners-carousel__track {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 64px;
    padding: var(--space-3) var(--space-6);
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.partner-logo:hover {
    border-color: var(--color-deep-forest);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter var(--transition-base), opacity var(--transition-base);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo__text {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    color: var(--color-text-muted);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    white-space: nowrap;
}


/* ================================================================
   9. CTA SECTIONS
   ================================================================ */

/* Amber / Gold CTA */
.cta-section--amber {
    background: linear-gradient(135deg, #c07a10 0%, var(--color-sunrise-gold) 50%, #e8950a 100%);
    padding-block: var(--space-20);
    position: relative;
    overflow: hidden;
}

.cta-section--amber::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta-section--amber::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
}

.cta-section__text {
    flex: 1;
    max-width: 600px;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, var(--text-4xl));
    font-weight: var(--weight-bold);
    color: #ffffff;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.cta-section__subtitle {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--leading-relaxed);
}

.cta-section__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
    flex-shrink: 0;
}

/* Dark CTA */
.cta-section--dark {
    background: var(--color-dark-footer);
    padding-block: var(--space-20);
}

.cta-section--dark .cta-section__title {
    color: var(--color-warm-cream);
}

.cta-section--dark .cta-section__subtitle {
    color: rgba(253, 247, 238, 0.7);
}


/* ================================================================
   10. FORMS — CF7 STYLED
   ================================================================ */

.sunrise-form-wrapper,
.sunrise-cf7-wrap {
    width: 100%;
}

.sunrise-form {
    display: grid;
    gap: var(--space-5);
}

/* Field group */
.sunrise-form .form-group,
.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

/* Labels */
.sunrise-form label,
.wpcf7-form label {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-deep-forest);
    letter-spacing: var(--tracking-wide);
}

/* Inputs */
.sunrise-form__input,
.sunrise-form input[type="text"],
.sunrise-form input[type="email"],
.sunrise-form input[type="tel"],
.sunrise-form input[type="url"],
.sunrise-form input[type="number"],
.sunrise-form input[type="date"],
.sunrise-form input[type="search"],
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    line-height: var(--leading-normal);
    -webkit-appearance: none;
    appearance: none;
}

.sunrise-form__input:focus,
.sunrise-form input[type="text"]:focus,
.sunrise-form input[type="email"]:focus,
.sunrise-form input[type="tel"]:focus,
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus {
    border-color: var(--color-deep-forest);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}

/* Textarea */
.sunrise-form__textarea,
.sunrise-form textarea,
.wpcf7-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    min-height: 140px;
    resize: vertical;
    line-height: var(--leading-relaxed);
    -webkit-appearance: none;
    appearance: none;
}

.sunrise-form__textarea:focus,
.wpcf7-textarea:focus {
    border-color: var(--color-deep-forest);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}

/* Select */
.sunrise-form__select,
.sunrise-form select,
.wpcf7-select {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3C34' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.sunrise-form__select:focus,
.wpcf7-select:focus {
    border-color: var(--color-deep-forest);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}

/* Checkbox / Radio */
.sunrise-form input[type="checkbox"],
.sunrise-form input[type="radio"],
.wpcf7-checkbox input[type="checkbox"],
.wpcf7-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-deep-forest);
    cursor: pointer;
    flex-shrink: 0;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

/* Error state */
.sunrise-form__input.wpcf7-not-valid,
.sunrise-form__textarea.wpcf7-not-valid,
.sunrise-form__select.wpcf7-not-valid {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.wpcf7-not-valid-tip {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: var(--color-error);
    margin-top: var(--space-1);
}

/* Response output */
.wpcf7-response-output {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    border: 1px solid transparent;
    margin-top: var(--space-4);
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #F0FDF4;
    border-color: #86EFAC;
    color: #166534;
}

.wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-spam-blocked {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}

/* Submit button */
.wpcf7-submit,
.sunrise-form [type="submit"] {
    /* Inherits .btn .btn-primary from CF7 filter */
    background-color: var(--color-sunrise-gold);
    color: #ffffff;
    border-color: var(--color-sunrise-gold);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    cursor: pointer;
    width: auto;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
    border: 2px solid var(--color-sunrise-gold);
}

.wpcf7-submit:hover,
.sunrise-form [type="submit"]:hover {
    background-color: #c07a10;
    border-color: #c07a10;
    box-shadow: 0 4px 16px rgb(212 137 26 / 0.35);
}

/* Loading spinner */
.wpcf7-spinner {
    margin-left: var(--space-3);
    vertical-align: middle;
}


/* ================================================================
   11. BLOG / ARCHIVE
   ================================================================ */

.blog-archive {
    background: var(--color-background);
}

.blog-archive__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-16);
    align-items: start;
}

.blog-archive__layout.no-sidebar,
.no-sidebar .blog-archive__layout {
    grid-template-columns: 1fr;
}

.blog-grid {
    gap: var(--space-8);
}

/* Pagination */
.blog-pagination {
    margin-top: var(--space-12);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    color: var(--color-text-secondary);
    border: 1.5px solid var(--color-border);
    transition: all var(--transition-fast);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--color-deep-forest);
    border-color: var(--color-deep-forest);
    color: var(--color-warm-cream);
}

.page-numbers.dots {
    border-color: transparent;
    pointer-events: none;
}

/* No results */
.no-results {
    padding: var(--space-16);
    text-align: center;
    background: var(--color-light-moss);
    border-radius: var(--radius-xl);
}

.no-results__message {
    font-size: var(--text-md);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

/* Search form */
.search-form {
    display: flex;
    gap: var(--space-2);
    max-width: 480px;
    margin-inline: auto;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    outline: none;
    transition: border-color var(--transition-fast);
}

.search-field:focus {
    border-color: var(--color-deep-forest);
}

.search-submit {
    padding: 0.75rem 1.5rem;
    background: var(--color-deep-forest);
    color: var(--color-warm-cream);
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    cursor: pointer;
    border: 2px solid var(--color-deep-forest);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.search-submit:hover {
    background: transparent;
    color: var(--color-deep-forest);
}


/* ================================================================
   12. SINGLE POST
   ================================================================ */

/* ── Single Post — Article ───────────────────────────── */
.post-article {
    padding: 72px 0 60px;
}
.post-article .container { max-width: 1000px; }
.post-article__layout {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 48px;
    align-items: start;
}

/* Share sidebar */
.post-share {
    position: sticky;
    top: calc(var(--header-height, 80px) + 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.post-share__label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(26,60,52,0.4);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 6px;
}
.post-share__btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.post-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(26,60,52,0.18);
    color: #1A3C34;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.post-share__btn:hover { background: #1A3C34; color: #FDF7EE; border-color: #1A3C34; }

/* Article content prose */
.post-article__content {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2D2D2D;
    max-width: 720px;
}
.post-article__content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.2;
    margin: 48px 0 16px;
}
.post-article__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A3C34;
    margin: 36px 0 12px;
}
.post-article__content p { margin: 0 0 20px; }
.post-article__content ul,
.post-article__content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}
.post-article__content li { margin-bottom: 8px; }
.post-article__content blockquote {
    border-left: 4px solid #D4891A;
    margin: 32px 0;
    padding: 20px 28px;
    background: rgba(212,137,26,0.06);
    border-radius: 0 8px 8px 0;
}
.post-article__content blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: #1A3C34;
    margin: 0 0 8px;
}
.post-article__content blockquote cite {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(26,60,52,0.6);
}
.post-article__content hr {
    border: none;
    border-top: 1px solid rgba(26,60,52,0.12);
    margin: 40px 0;
}
.post-article__content strong { color: #1A3C34; font-weight: 600; }
.post-article__content a { color: #8B6914; text-decoration: underline; text-underline-offset: 3px; }
.post-article__content a:hover { color: #D4891A; }

/* Gallery inside article — 2-column equal grid */
.post-article__content .wp-block-gallery {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin: 36px 0 48px;
    flex-wrap: unset !important;
}
.post-article__content .wp-block-gallery .wp-block-image {
    margin: 0 !important;
    height: 280px !important;
    overflow: hidden;
    border-radius: 10px;
    display: block !important;
    flex-grow: unset !important;
    flex-shrink: unset !important;
    max-width: none !important;
    width: auto !important;
}
.post-article__content .wp-block-gallery .wp-block-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center 20%;
    border-radius: 0;
}
/* If gallery has odd number of images, last item spans full width */
.post-article__content .wp-block-gallery .wp-block-image:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    height: 340px !important;
}

/* Post tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(26,60,52,0.1);
}
.post-tags__label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(26,60,52,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.post-tag-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    background: #EDF4F1;
    color: #1A3C34;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
}
.post-tag-badge:hover { background: #1A3C34; color: #FDF7EE; }

/* ── Post Navigation ─────────────────────────────────── */
.post-nav {
    padding: 0;
    border-top: 1px solid rgba(26,60,52,0.08);
    border-bottom: 1px solid rgba(26,60,52,0.08);
    background: #FEFDF9;
}
.post-nav .container { max-width: 1000px; }
.post-nav__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.post-nav__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 32px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.post-nav__link:hover { background: #EDF4F1; }
.post-nav__link--prev { border-right: 1px solid rgba(26,60,52,0.08); }
.post-nav__link--next { text-align: right; }
.post-nav__dir {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4891A;
}
.post-nav__link--next .post-nav__dir { justify-content: flex-end; }
.post-nav__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.3;
}

/* ── Related Posts ───────────────────────────────────── */
.related-section {
    background: #EDF4F1;
    padding: 72px 0;
}
.related-section .container { max-width: 1100px; }
.related-section__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    margin: 0 0 40px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.related-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(26,60,52,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,60,52,0.10); }
.related-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.related-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.related-card:hover .related-card__img-wrap img { transform: scale(1.04); }
.related-card__body { padding: 20px 22px 24px; }
.related-card__date {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #D4891A;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}
.related-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.25;
    margin: 0 0 10px;
}
.related-card__title a { text-decoration: none; color: inherit; }
.related-card__title a:hover { color: #D4891A; }
.related-card__excerpt {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #4A3728;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Keep old post-navigation for compat */
.post-navigation__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    text-decoration: none;
    padding: var(--space-5) var(--space-6);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
    border-color: var(--color-deep-forest);
    box-shadow: var(--shadow-md);
}

.post-navigation__direction {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--color-accessible-gold);
}

.post-navigation__title {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: var(--weight-semibold);
    color: var(--color-deep-forest);
    line-height: var(--leading-snug);
}

.post-navigation .nav-next a {
    text-align: right;
}


/* ================================================================
   13. PAGE TEMPLATES
   ================================================================ */

.page-layout {
    display: grid;
    gap: var(--space-12);
    align-items: start;
}

.page-layout--sidebar {
    grid-template-columns: 1fr 300px;
}

.page-layout--full {
    grid-template-columns: 1fr;
}

.page-article__hero-image {
    margin-bottom: var(--space-8);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/6;
}

.page-article__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page links (multi-page posts) */
.page-links {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.page-links .page-links__item {
    display: inline-flex;
}

.page-links a .page-links__item,
.page-links .page-links__item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    border: 1.5px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    list-style: none;
    padding: 0;
}

.breadcrumbs a {
    color: var(--color-accessible-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--color-sunrise-gold);
}

.breadcrumbs__sep {
    color: var(--color-text-muted);
    opacity: 0.5;
    font-size: var(--text-xs);
}


/* ================================================================
   14. 404 PAGE
   ================================================================ */

.error-404 {
    min-height: calc(70vh - var(--header-height));
    display: flex;
    align-items: center;
}

.error-404__inner {
    position: relative;
    padding: var(--space-20) 0;
}

.error-404__number {
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: var(--weight-bold);
    color: var(--color-light-moss);
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: var(--tracking-tight);
}

.error-404__content {
    position: relative;
    z-index: 1;
    padding-top: var(--space-24);
    max-width: 640px;
}

.error-404__title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, var(--text-4xl));
    font-weight: var(--weight-bold);
    color: var(--color-deep-forest);
    margin-bottom: var(--space-5);
}

.error-404__message {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

.error-404__search {
    margin-bottom: var(--space-10);
}

.error-404__links {
    margin-bottom: var(--space-10);
}

.error-404__link-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.error-404__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accessible-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.error-404__link:hover {
    color: var(--color-sunrise-gold);
}

.error-404__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}


/* ================================================================
   15. SIDEBAR / WIDGETS
   ================================================================ */

.blog-sidebar,
.page-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-6));
}

.widget {
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.widget__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--color-deep-forest);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-sunrise-gold);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.widget ul li a:hover {
    color: var(--color-accessible-gold);
}

.widget_search .search-form {
    flex-direction: column;
    margin: 0;
    max-width: 100%;
}

.widget_search .search-field {
    width: 100%;
}


/* ================================================================
   17. WOOCOMMERCE BASE (see woocommerce.css for full styles)
   ================================================================ */

/* WooCommerce breadcrumbs */
.woocommerce-breadcrumb {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.woocommerce-breadcrumb a {
    color: var(--color-accessible-gold);
    text-decoration: none;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
    border: 1px solid transparent;
    list-style: none;
}

.woocommerce-message {
    background: #F0FDF4;
    border-color: #86EFAC;
    color: #166534;
}

.woocommerce-info {
    background: #EFF6FF;
    border-color: #93C5FD;
    color: #1E40AF;
}

.woocommerce-error {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}


/* ================================================================
   18. REVOLUTION SLIDER CONTAINER
   ================================================================ */

.rev-slider-wrap,
.rev_slider_wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.revslider-initialised .rev_slider {
    visibility: visible !important;
}

/* Ensure Rev Slider fills its container correctly */
.tp-bannertimer {
    height: 5px !important;
    background: var(--color-sunrise-gold) !important;
}

/* Override default Rev Slider font with theme fonts */
.tp-caption {
    font-family: var(--font-body) !important;
}

.tp-caption.tp-resizeme {
    word-break: normal !important;
}


/* ================================================================
   19. SITE FOOTER
   ================================================================ */

.site-footer {
    background: var(--color-dark-footer);
    color: var(--color-warm-cream);
    margin-top: auto;
}

/* Main columns */
.site-footer__main {
    padding-top: var(--space-20);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
    align-items: start;
}

/* Brand column */
.site-footer__col--brand {}

.site-footer__logo-img {
    height: 54px;
    width: auto;
    max-width: 200px;
    display: block;
}

.site-footer__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-warm-cream);
    text-decoration: none;
}

.site-footer__tagline {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: rgba(253, 247, 238, 0.65);
    line-height: var(--leading-relaxed);
    max-width: 28ch;
}

.site-footer__social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(253, 247, 238, 0.65);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.site-footer__social-link:hover {
    border-color: var(--color-sunrise-gold);
    color: var(--color-sunrise-gold);
    background: rgba(212, 137, 26, 0.1);
}

/* Nav columns */
.site-footer__col-title {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--color-warm-cream);
    margin-bottom: var(--space-5);
}

.site-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.site-footer__nav-list li a {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: rgba(253, 247, 238, 0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-block;
}

.site-footer__nav-list li a:hover {
    color: var(--color-warm-cream);
}

/* Contact column */
.site-footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(253, 247, 238, 0.65);
    line-height: var(--leading-relaxed);
}

.site-footer__contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-sunrise-gold);
    opacity: 0.8;
}

.site-footer__contact-item a {
    color: rgba(253, 247, 238, 0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-footer__contact-item a:hover {
    color: var(--color-warm-cream);
}

.site-footer__cta {
    color: var(--color-sunrise-gold) !important;
    border-color: rgba(212, 137, 26, 0.5) !important;
    font-size: var(--text-sm);
    padding: 0.5rem 1.25rem;
}

.site-footer__cta:hover {
    background-color: var(--color-sunrise-gold) !important;
    color: #fff !important;
    border-color: var(--color-sunrise-gold) !important;
}

/* Bottom bar */
.site-footer__bottom {
    padding-block: var(--space-6);
}

.site-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.site-footer__copyright {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: rgba(253, 247, 238, 0.5);
}

.site-footer__copyright a {
    color: rgba(253, 247, 238, 0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-footer__copyright a:hover {
    color: var(--color-warm-cream);
}

.site-footer__acknowledgement {
    font-size: var(--text-xs);
    line-height: var(--leading-relaxed);
    color: rgba(253, 247, 238, 0.4);
    max-width: 90ch;
    font-style: italic;
}

/* WordPress alignment classes in footer */
.site-footer .widget_text p {
    color: rgba(253, 247, 238, 0.65);
    font-size: var(--text-sm);
}

/* WooCommerce shop-header inside footer — guard */
.woo-shop-header {
    padding-block: var(--space-12);
}


/* ================================================================
   20. RESPONSIVE — 768px (TABLET)
   ================================================================ */

@media (max-width: 768px) {

    /* Header */
    .site-header {
        height: var(--header-height-mobile);
    }
    body {
        padding-top: var(--header-height-mobile);
    }

    .site-nav {
        /* Switch to block so the menu grows naturally and the panel scrolls */
        display: block;
        position: fixed;
        top: var(--header-height-mobile);
        right: 0;
        bottom: 0;
        width: min(85vw, 340px);
        background: #ffffff;
        box-shadow: -8px 0 40px rgb(15 31 26 / 0.2);
        padding: var(--space-6) var(--space-5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        z-index: var(--z-sticky);
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav__menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .site-nav__menu > li {
        width: 100%;
    }

    .site-nav__menu > li > a {
        padding: 14px var(--space-4);
        font-size: var(--text-base);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(26, 60, 52, 0.07);
    }

    .site-nav__menu > li:last-child > a {
        border-bottom: none;
    }

    .site-nav__menu .sub-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: var(--space-1) 0 var(--space-2) var(--space-4);
        background: transparent;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .site-nav__menu li.is-open > .sub-menu {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hide the header CTA button inline — shown inside nav panel instead */
    .site-header__actions .site-header__cta {
        display: none;
    }

    /* Show CTA at bottom of mobile nav panel */
    .site-nav::after {
        content: '';
        display: block;
        height: var(--space-4);
    }

    /* Hero */
    .hero--full {
        min-height: 80svh;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Stats */
    .stats-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Ubuntu section */
    .ubuntu-section__layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .ubuntu-section__visual {
        display: none;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* CTA section */
    .cta-section__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-section__actions {
        align-items: center;
        width: 100%;
    }

    /* Footer grid */
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }

    .site-footer__col--contact {
        grid-column: 1 / -1;
    }

    /* Blog layout */
    .blog-archive__layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Hero split */
    .hero--split {
        grid-template-columns: 1fr;
    }

    .hero--split .hero__image-col {
        height: 300px;
    }

    /* Post article */
    .post-article__layout {
        grid-template-columns: 1fr;
    }

    .post-share {
        position: static;
        flex-direction: row;
        align-items: center;
        padding: var(--space-4);
        background: var(--color-light-moss);
        border-radius: var(--radius-lg);
        margin-bottom: var(--space-8);
    }

    .post-share__label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .post-share__buttons {
        flex-direction: row;
    }

    /* Post navigation */
    .post-navigation__inner {
        grid-template-columns: 1fr;
    }

    /* Page layout */
    .page-layout--sidebar {
        grid-template-columns: 1fr;
    }

}


/* ================================================================
   21. RESPONSIVE — 390px (MOBILE / iPhone 14)
   ================================================================ */

@media (max-width: 390px) {

    /* Stats */
    .stats-strip__grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: var(--space-5) var(--space-3);
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* Blog grid — single column */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer grid — single column */
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-section__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero__subtitle {
        font-size: var(--text-base);
    }

    /* Ubuntu quote */
    .ubuntu-section__quote {
        padding: var(--space-4) var(--space-5);
    }

    .ubuntu-section__quote p {
        font-size: var(--text-lg);
    }

    /* 404 */
    .error-404__number {
        font-size: 6rem;
    }

    .error-404__content {
        padding-top: var(--space-16);
    }

    .error-404__actions {
        flex-direction: column;
    }

    .error-404__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Forms */
    .search-form {
        flex-direction: column;
    }
}


/* ================================================================
   HOMEPAGE — SPECIFIC COMPONENT STYLES
   ================================================================ */

/* ── Section padding (overrides container inline padding) ────────── */
.section-pad {
    padding: 100px 80px;
}
.section-pad .container {
    max-width: 100%;
    padding-inline: 0;
}
/* Awards & Regions use 80px all sides */
.news-section,
.regions-section.section-pad {
    padding: 80px;
}

/* ── Tag pill (green variant — about, services) ───────────────────── */
.about-split__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,60,52,0.08);
    border-radius: 20px;
    padding: 6px 14px;
    width: fit-content;
}
.about-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #1A3C34;
    flex-shrink: 0;
}
.about-split__tag span:not(.about-tag-dot) {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #1A3C34;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* Gold variant — news/awards, regions */
.news-section__heading-col .about-split__tag,
.regions-section__heading-col .about-split__tag {
    background: rgba(212,137,26,0.13);
}
.news-section__heading-col .about-tag-dot,
.regions-section__heading-col .about-tag-dot {
    background: #D4891A;
}
.news-section__heading-col .about-split__tag span:not(.about-tag-dot),
.regions-section__heading-col .about-split__tag span:not(.about-tag-dot) {
    color: #D4891A;
}

/* ── Gold rule ────────────────────────────────────────────────────── */
.section-rule {
    width: 60px;
    height: 3px;
    background: #D4891A;
    flex-shrink: 0;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero--home {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height, 80px);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 0;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(26,60,52,0.941) 0%,
        rgba(26,60,52,0.784) 20%,
        rgba(26,60,52,0.376) 42%,
        rgba(26,60,52,0.082) 65%,
        rgba(26,60,52,0) 100%);
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 60px 80px;
    width: 100%;
}
/* Hero tag pill */
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,137,26,0.082);
    border: 1px solid rgba(212,137,26,0.376);
    border-radius: 24px;
    padding: 8px 18px;
    width: fit-content;
}
.hero__tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #D4891A;
    flex-shrink: 0;
}
.hero__tag span:not(.hero__tag-dot) {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 2px;
}
/* Ubuntu sub-line */
.hero__ubuntu-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: rgba(212,137,26,0.69);
    letter-spacing: 1px;
    margin: 0;
}
/* Hero heading */
.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6.67vw, 96px);
    font-style: italic;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1;
    margin: 0;
    max-width: 900px;
}
/* Gold rule under heading */
.hero__rule {
    width: 60px;
    height: 3px;
    background: #D4891A;
    flex-shrink: 0;
}
.hero__body {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(253,247,238,0.69);
    line-height: 1.65;
    margin: 0;
    max-width: 680px;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
}

/* ── Stats strip ─────────────────────────────────────────────────── */
.stats-strip {
    background: #D4891A;
    height: 100px;
    padding: 0 80px;
    overflow: hidden;
}
.stats-strip__inner {
    display: flex;
    align-items: center;
    height: 100%;
}
.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding: 0 40px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }
.stat-item__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    white-space: nowrap;
}
.stat-item__label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* ── Program Aims section (dark green, after hero) ───────────────── */
.program-aims-section {
    background: #1A3C34;
    padding: 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.program-aims-section__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 440px;
    flex-shrink: 0;
}
.aims-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.program-aims-section__left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1.1;
    margin: 0;
}
.aims-rule {
    width: 48px;
    height: 3px;
    background: #D4891A;
    flex-shrink: 0;
}
.program-aims-section__left p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(253,247,238,0.8);
    line-height: 1.7;
    margin: 0;
}
.program-aims-section__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.aim-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #2E5D4B;
    border-radius: 8px;
    padding: 20px;
}
.aim-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #D4891A;
    flex-shrink: 0;
    margin-top: 4px;
}
.aim-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FDF7EE;
    line-height: 1.5;
    margin: 0;
}

/* ── About Section ──────────────────────────────────────────────── */
.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
}
.about-split__img { flex-shrink: 0; }
.about-split__img img {
    width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.about-split__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}
.about-split__text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.15;
    margin: 0;
}
.about-split__text p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: #4A3728;
}
.about-quote {
    background: rgba(26,60,52,0.03);
    border-left: 4px solid #D4891A;
    border-radius: 0 6px 6px 0;
    padding: 20px 24px;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: #1A3C34;
    line-height: 1.65;
}
.about-quote cite { font-style: italic; display: block; margin-top: 8px; }

/* ── Services section (numbered cards) ─────────────────────────── */
.services-section {
    padding: 100px 80px;
}
.services-section .container {
    max-width: 100%;
    padding-inline: 0;
}
.services-section__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}
.services-section__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.6vw, 52px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.1;
    margin: 0;
}
.services-numbered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-num-card {
    border-radius: 8px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-num-card--dark {
    background: #1A3C34;
}
.service-num-card--light {
    background: #FEFDF9;
    border: 1px solid rgba(26,60,52,0.126);
}
.service-num-card__num {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #D4891A;
    letter-spacing: 3px;
}
.service-num-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1;
}
.service-num-card--dark .service-num-card__icon { background: rgba(212,137,26,0.188); color: #D4891A; }
.service-num-card--light .service-num-card__icon { background: rgba(26,60,52,0.082); color: #1A3C34; }
.service-num-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.service-num-card--dark h3 { color: #FDF7EE; }
.service-num-card--light h3 { color: #1A3C34; }
.service-num-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0;
}
.service-num-card--dark p { color: rgba(253,247,238,0.69); }
.service-num-card--light p { color: #4A3728; }

/* ── Ubuntu Section ─────────────────────────────────────────────── */
.ubuntu-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #1A3C34;
}
.ubuntu-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.ubuntu-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,60,52,0.98) 0%, rgba(26,60,52,0.878) 100%);
    z-index: 1;
}
.ubuntu-section__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 0 80px;
    height: 100%;
    width: 100%;
}
.ubuntu-section__left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 680px;
    flex-shrink: 0;
}
.ubuntu-section__label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #D4891A;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.ubuntu-section__big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.55vw, 80px);
    font-style: italic;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}
.ubuntu-section__attr {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: rgba(212,137,26,0.502);
    margin: 0;
}
.ubuntu-section__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}
.ubuntu-section__rule {
    width: 60px;
    height: 3px;
    background: #D4891A;
    flex-shrink: 0;
}
.ubuntu-section__right p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    margin: 0;
}
.ubuntu-section__right > p:nth-of-type(1) {
    font-size: 17px;
    color: #FDF7EE;
    line-height: 1.7;
}
.ubuntu-section__right > p:nth-of-type(2) {
    font-size: 16px;
    color: rgba(253,247,238,0.69);
    line-height: 1.65;
}

/* ── Partners Strip ─────────────────────────────────────────────── */
.partners-section {
    background: #FFFFFF;
    padding: 64px 120px;
}
.partners-section .container {
    max-width: 100%;
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.partners-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.partners-section__heading-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.partners-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.partners-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 2.78vw, 40px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.1;
    margin: 0;
}
.partners-section__desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(26,60,52,0.7);
    line-height: 1.7;
    max-width: 400px;
    text-align: right;
}
.partners-logo-row {
    display: flex;
    gap: 16px;
    width: 100%;
}
.partner-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 8px;
    height: 120px;
    padding: 20px 24px;
    flex: 1;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.partner-logo-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease;
}
.partner-logo-card a:hover {
    opacity: 0.75;
}
.partner-logo-card img {
    max-height: 72px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ── News / Awards Carousel ─────────────────────────────────────── */
.news-section { padding: 80px; }
.news-section .container { max-width: 100%; padding-inline: 0; }

.news-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 2rem;
}
.news-section__heading-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-section__heading-col h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.06vw, 44px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.15;
    margin: 0;
}
.news-section__controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.news-carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #1A3C34;
    background: transparent;
    color: #1A3C34;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}
.news-carousel__btn:hover,
.news-carousel__btn:focus-visible {
    background: #1A3C34;
    color: #FDF7EE;
    outline: none;
}
.news-carousel__btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Track & sliding */
.news-carousel {
    overflow: hidden;
}
.news-carousel__track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Individual card */
.news-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26,60,52,0.12);
}
.news-card--dark { background: #1A3C34; }
.news-card--light {
    background: #FEFDF9;
    border: 1px solid rgba(26,60,52,0.10);
}

/* Card image */
.news-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
}
.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #D4891A;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Card body */
.news-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.news-card__stars {
    display: flex;
    gap: 4px;
}
.news-card__stars span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4891A;
    display: block;
}
.news-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.news-card--dark .news-card__title { color: #FDF7EE; }
.news-card--light .news-card__title { color: #1A3C34; }

.news-card__date {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #D4891A;
    margin: 0;
    letter-spacing: 0.5px;
}
.news-card__excerpt {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card--dark .news-card__excerpt { color: rgba(253,247,238,0.75); }
.news-card--light .news-card__excerpt { color: #4A3728; }

.news-card__link {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    transition: gap 0.2s ease;
}
.news-card--dark .news-card__link { color: #D4891A; }
.news-card--light .news-card__link { color: #1A3C34; }
.news-card__link:hover { gap: 10px; }

/* Dots */
.news-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}
.news-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26,60,52,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, width 0.2s ease;
}
.news-carousel__dot--active {
    width: 24px;
    border-radius: 4px;
    background: #1A3C34;
}

/* Keep old award-card classes alive for other pages */
.award-card { border-radius: 8px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.award-card--dark { background: #1A3C34; }
.award-card--light { background: #FDF7EE; border: 1px solid rgba(26,60,52,0.126); }
.award-card__stars { display: flex; gap: 4px; }
.award-card__stars span { width: 10px; height: 10px; border-radius: 50%; background: #D4891A; display: block; }

/* ── Service Regions Section ────────────────────────────────────── */
.regions-section__grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.regions-section__heading-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 500px;
    flex-shrink: 0;
}
.regions-section__heading-col h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.33vw, 48px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.1;
    margin: 0;
}
.regions-section__heading-col p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(26,60,52,0.72);
    line-height: 1.65;
    margin: 0;
}
.regions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.regions-list__item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px 28px;
}
.regions-list__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #D4891A;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}
.regions-list__item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.regions-list__item strong {
    display: block;
    color: #1A3C34;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.regions-list__item span:not(.regions-list__num) {
    display: block;
    color: rgba(26,60,52,0.55);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}
.regions-list__clinician {
    margin: 6px 0 0;
    color: rgba(26,60,52,0.55);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
}
.regions-list__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: #D4891A;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.regions-list__phone:hover {
    text-decoration: underline;
}

/* ── CTA Section ────────────────────────────────────────────────── */
.cta-section {
    padding: 100px 80px;
}
.cta-section .container {
    max-width: 100%;
    padding-inline: 0;
}
.cta-section__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}
.cta-section__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.cta-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.17vw, 60px);
    font-style: italic;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.05;
    margin: 0;
}
.cta-section__rule {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.376);
    flex-shrink: 0;
}
.cta-section__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #1A3C34;
    line-height: 1.6;
    margin: 0;
}
.cta-section__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 400px;
    flex-shrink: 0;
}
.btn.cta-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 20px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #8B6914;
    text-decoration: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn.cta-btn-primary:hover { background: rgba(255,255,255,0.9); color: #8B6914; }
.btn.cta-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 6px;
    padding: 18px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn.cta-btn-secondary:hover { background: rgba(255,255,255,0.1); color: #FFFFFF; }
.cta-section__note {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* ── Shared Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.btn-gold   { background: #D4891A; color: #FFFFFF; border-color: #D4891A; }
.btn-gold:hover { background: #8B6914; border-color: #8B6914; color: #FFFFFF; }
.btn-forest { background: #1A3C34; color: #FDF7EE; border-color: #1A3C34; }
.btn-forest:hover { background: #0f2921; border-color: #0f2921; color: #FDF7EE; }
.btn-white  { background: #fff; color: #1A3C34; }
.btn-white:hover { background: #FDF7EE; }
.btn-outline-white {
    background: transparent;
    color: #FDF7EE;
    border: 1px solid rgba(253,247,238,0.376);
}
.btn-outline-white:hover { background: rgba(253,247,238,0.094); border-color: #FDF7EE; color: #FDF7EE; }
.btn-primary { background: #D4891A; color: #fff; border-color: #D4891A; }
.btn-primary:hover { background: #8B6914; }

/* ── Post / archive cards ───────────────────────────────────────── */
.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,60,52,0.08);
    display: flex;
    flex-direction: column;
}
.post-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.post-card__meta { font-size: 0.8rem; color: #888; font-family: 'Outfit', sans-serif; }
.post-card__title { font-size: 1.2rem; color: #1A3C34; }
.post-card__title a:hover { color: #D4891A; }
.post-card__excerpt { color: #4A4A4A; font-size: 0.9rem; flex: 1; }
.post-card__link { margin-top: auto; align-self: flex-start; }

/* ── Responsive homepage ─────────────────────────────────────────── */
@media (max-width: 1200px) {
    .hero__title { font-size: 72px; }
    .ubuntu-section__left { width: 500px; }
    .ubuntu-section__big-quote { font-size: 64px; }
    .about-split__img img { width: 480px; height: 400px; }
    .partners-section { padding: 64px 80px; }
}
@media (max-width: 900px) {
    .section-pad, .services-section, .cta-section { padding: 64px 40px; }
    .news-section, .regions-section.section-pad { padding: 64px 40px; }
    .about-split { flex-direction: column; gap: 2.5rem; }
    .about-split__img img { width: 100%; height: 320px; }
    .ubuntu-section__content { flex-direction: column; gap: 2rem; padding: 48px 40px; }
    .ubuntu-section__left { width: 100%; }
    .ubuntu-section__big-quote { font-size: 52px; }
    .services-numbered-grid { grid-template-columns: 1fr; }
    .news-card { flex: 0 0 100% !important; min-width: 0 !important; }
    .regions-section__grid { flex-direction: column; gap: 2rem; }
    .regions-section__heading-col { width: 100%; }
    .cta-section__inner { flex-direction: column; gap: 3rem; }
    .cta-section__right { width: 100%; }
    .program-aims-section { flex-direction: column; padding: 64px 40px; }
    .program-aims-section__left { width: 100%; }
    .partners-section { padding: 48px 40px; }
    .partners-section__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .partners-section__desc { text-align: left; }
    .stats-strip { height: auto; padding: 12px 40px; }
    .stats-strip__inner { flex-wrap: wrap; gap: 0; }
    .stat-item { padding: 12px 20px; }
    .stat-divider { width: 1px; height: 40px; }
}
@media (max-width: 600px) {
    .hero--home { min-height: 600px; padding-top: var(--header-height-mobile, 64px); }
    .hero__content { padding: 40px 24px 48px; }
    .hero__title { font-size: 44px; }
    .hero__body { font-size: 16px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .section-pad, .services-section, .cta-section { padding: 48px 24px; }
    .news-section, .regions-section.section-pad { padding: 48px 24px; }
    .partners-section { padding: 40px 24px; }
    .program-aims-section { padding: 48px 24px; }
    .stats-strip { height: auto; padding: 0; overflow: visible; }
    .stats-strip__inner { flex-direction: column; }
    .stat-item { padding: 16px 24px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stat-item:last-child { border-bottom: none; }
    .stat-divider { display: none; }
    .cta-section__title { font-size: 40px; }
    .ubuntu-section { height: auto; }
    .ubuntu-section__content { padding: 48px 24px; flex-direction: column; gap: 32px; }
    .ubuntu-section__left { width: 100%; }
    .ubuntu-section__big-quote { font-size: 44px; }
    .partners-logo-row { flex-wrap: wrap; gap: 12px; }
    .partner-logo-card { width: calc(50% - 6px); flex: none; height: 90px; }
    .news-card { flex: 0 0 100% !important; min-width: 0 !important; }
    .services-section__header h2 { font-size: 36px; }
}

/* ================================================================
   INNER PAGE TEMPLATES — SHARED COMPONENT STYLES
   ================================================================ */

/* ── Page Hero (inner pages) ────────────────────────────────────── */
.page-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: var(--header-height, 80px);
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(26,60,52,0.85) 0%, rgba(26,60,52,0.65) 100%);
    z-index: 1;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 5rem;
}
.page-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 5rem;
}
.page-hero__content--left {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-block: 5rem;
}
.page-hero__content--centered {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-block: 5rem;
    max-width: 640px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: #FDF7EE;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; font-weight: 300; }
.page-hero__sub {
    color: rgba(253,247,238,0.85);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 500px;
}
.page-hero__photos {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.page-hero__photos img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* ── Acknowledgement section (legacy) ───────────────────────────── */
.acknowledgement-text {
    color: rgba(253,247,238,0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE — Redesigned sections
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────── */
.about-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.about-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26,60,52,0.94) 0%,
        rgba(26,60,52,0.78) 20%,
        rgba(26,60,52,0.38) 42%,
        rgba(26,60,52,0.08) 65%,
        transparent 100%
    );
}
.about-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 80px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-hero__tag {
    display: inline-flex;
    align-items: center;
    background: #D4891A;
    border-radius: 16px;
    padding: 6px 20px;
    width: fit-content;
    align-self: flex-start;
}
.about-hero__tag-dot {
    display: none;
}
.about-hero__tag span:not(.about-hero__tag-dot) {
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-hero__content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 80px);
    font-style: italic;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1.05;
    margin: 0;
}
.about-hero__rule {
    width: 60px;
    height: 3px;
    background: #D4891A;
}
.about-hero__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(253,247,238,0.69);
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

/* ── Acknowledgement ─────────────────────────────────────────────── */
.about-ack {
    padding: 88px 120px;
}
.about-ack__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.about-ack__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #D4891A;
    text-transform: uppercase;
}
.about-ack__line {
    width: 40px;
    height: 2px;
    background: #D4891A;
}
.about-ack__body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(253,247,238,0.70);
    line-height: 1.7;
    margin: 0;
}
.about-ack__sub {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(253,247,238,0.40);
    line-height: 1.6;
    margin: 0;
    max-width: 540px;
}
.about-ack__flags {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-top: 8px;
}
.about-ack__flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.about-ack__flag-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.about-ack__flag-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(253,247,238,0.45);
    letter-spacing: 0.5px;
}

/* ── Story Section ───────────────────────────────────────────────── */
.about-story {
    padding: 100px 80px;
}
.about-story__grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.about-story__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 640px;
    flex-shrink: 0;
}
.about-story__left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.3vw, 48px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.1;
    margin: 0;
}
.about-story__left h2 em { font-style: italic; }
.about-story__left p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2E5D4B;
    line-height: 1.7;
    margin: 0;
}
.about-story__goals {
    background: #EDF4F1;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-story__goals-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A3C34;
    margin: 0;
}
.about-story__goal {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-story__goal-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #D4891A;
    flex-shrink: 0;
    margin-top: 6px;
}
.about-story__goal span:not(.about-story__goal-dot) {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1C1714;
    line-height: 1.55;
}
.about-story__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-story__img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.about-story__img--tall  { height: 320px; }
.about-story__img--short { height: 220px; }

/* ── Partners Section ────────────────────────────────────────────── */
.about-partners {
    padding: 80px;
}
.about-partners__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.about-partners__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 3.9vw, 56px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.1;
    margin: 0;
}
.about-partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-partner-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-partner-card__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}
.about-partner-card__mark--gold   { background: #D4891A; }
.about-partner-card__mark--forest { background: #2E5D4B; }
.about-partner-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.3;
    margin: 0;
}
.about-partner-card__role {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(26,60,52,0.55);
    text-transform: uppercase;
}
.about-partner-card__role--lead {
    color: #D4891A;
}

/* ── Cultural Approach ───────────────────────────────────────────── */
.about-cultural {
    padding: 80px;
}
.about-cultural__grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.about-cultural__left {
    width: 560px;
    flex-shrink: 0;
}
.about-cultural__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}
.about-cultural__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-cultural__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #D4891A;
    text-transform: uppercase;
}
.about-cultural__right h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 44px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.15;
    margin: 0;
}
.about-cultural__quote {
    background: rgba(26,60,52,0.03);
    border-left: 4px solid #D4891A;
    border-radius: 6px;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about-cultural__quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #1A3C34;
    line-height: 1.65;
    margin: 0;
}
.about-cultural__quote cite {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #D4891A;
    font-style: normal;
}
.about-cultural__body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2E5D4B;
    line-height: 1.7;
    margin: 0;
}
.about-cultural__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-cultural__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #D4891A;
    flex-shrink: 0;
    margin-top: 5px;
}
.about-cultural__feature span:not(.about-cultural__dot) {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1A3C34;
    line-height: 1.5;
}

/* ── Ubuntu Section ──────────────────────────────────────────────── */
.about-ubuntu {
    padding: 100px 80px;
}
.about-ubuntu__grid {
    display: flex;
    align-items: center;
    gap: 80px;
}
.about-ubuntu__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.about-ubuntu__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.4vw, 64px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.05;
    margin: 0;
}
.about-ubuntu__body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2E5D4B;
    line-height: 1.7;
    margin: 0;
}
.about-ubuntu__right {
    width: 600px;
    flex-shrink: 0;
}
.about-ubuntu__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
}

/* ── About CTA Banner ────────────────────────────────────────────── */
.about-cta {
    padding: 80px;
}
.about-cta__inner {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
}
.about-cta__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-cta__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.6vw, 52px);
    font-style: italic;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0;
}
.about-cta__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 740px;
    margin: 0;
}
.about-cta__right {
    width: 340px;
    flex-shrink: 0;
}
.about-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 0;
    background: #FFFFFF;
    color: #D4891A;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.about-cta__btn:hover { opacity: 0.9; }

/* ── About page responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-story__grid,
    .about-cultural__grid,
    .about-ubuntu__grid { flex-direction: column; gap: 2.5rem; }
    .about-story__left { width: 100%; }
    .about-cultural__left { width: 100%; }
    .about-ubuntu__right { width: 100%; }
    .about-partners__grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta__inner { flex-direction: column; gap: 2.5rem; }
    .about-cta__right { width: 100%; }
    .about-cta__btn { max-width: 320px; }
    .about-ack { padding: 64px 40px; }
    .about-story,
    .about-partners,
    .about-cultural,
    .about-ubuntu,
    .about-cta { padding: 64px 40px; }
}
@media (max-width: 640px) {
    .about-hero__content { padding: 80px 24px 0; }
    .about-partners__grid { grid-template-columns: 1fr 1fr; }
    .about-ack { padding: 48px 24px; }
    .about-story,
    .about-partners,
    .about-cultural,
    .about-ubuntu,
    .about-cta { padding: 48px 24px; }
    .about-ubuntu__img { height: 300px; }
}

/* ── Story split (about page — legacy) ─────────────────────────── */
.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.story-split__text h2 em { font-style: italic; }
.story-split__text { display: flex; flex-direction: column; gap: 1.25rem; }
.story-split__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.story-split__images img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

/* ── Service detail sections ────────────────────────────────────── */
.service-detail__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.service-detail__split--reverse { direction: rtl; }
.service-detail__split--reverse > * { direction: ltr; }
.service-detail__img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 12px;
}
.service-detail__text { display: flex; flex-direction: column; gap: 1rem; }
.service-detail__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-deep-forest);
    color: var(--color-sunrise-gold);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.service-detail__num--light {
    background: rgba(253,247,238,0.12);
    color: var(--color-sunrise-gold);
}
.service-detail__text h2 em { font-style: italic; }
.service-detail__list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-detail__list li {
    padding-left: 1.5rem;
    position: relative;
    color: #4A4A4A;
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
}
.service-detail__list--light li { color: rgba(253,247,238,0.8); }
.service-detail__list--light li::before { background: var(--color-sunrise-gold); }

/* ── Eligibility section ────────────────────────────────────────── */
.eligibility-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}
.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.98rem;
    color: #2A2A2A;
    line-height: 1.6;
}
.eligibility-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.4em;
}

/* ── Process steps ──────────────────────────────────────────────── */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26,60,52,0.1);
}
.process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.process-step h3 { color: var(--color-deep-forest); font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { color: #4A4A4A; font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* ── Refer form layout ──────────────────────────────────────────── */
.refer-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.refer-form__info { display: flex; flex-direction: column; gap: 1.25rem; }
.refer-form__info h2 em { font-style: italic; }
.refer-contact-block { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.refer-contact-item { display: flex; flex-direction: column; gap: 0.15rem; }
.refer-contact-item strong { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-deep-forest); }
.refer-contact-item a, .refer-contact-item span { color: #4A4A4A; font-size: 0.95rem; }
.refer-contact-item a:hover { color: var(--color-sunrise-gold); }

/* Referral form fields */
.referral-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600; color: var(--color-deep-forest); }
.form-field input, .form-field textarea, .form-field select {
    padding: 0.7rem 1rem;
    border: 1.5px solid rgba(26,60,52,0.2);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #2A2A2A;
    background: #fff;
    transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--color-sunrise-gold);
}
.form-field textarea { resize: vertical; }
.form-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.88rem;
    color: #4A4A4A;
    line-height: 1.6;
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--color-sunrise-gold); }

/* Crisis strip */
.crisis-strip {
    background: #2E5D4B;
    padding: 1rem 0;
    text-align: center;
}
.crisis-strip p { color: rgba(253,247,238,0.9); font-size: 0.9rem; margin: 0; }
.crisis-strip a { color: var(--color-sunrise-gold); font-weight: 600; }

/* ── Events grid ────────────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}
.event-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.event-card:hover img { transform: scale(1.03); }
.event-card { overflow: hidden; border-radius: 10px; }

/* ── Outcomes grid ──────────────────────────────────────────────── */
.outcomes-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.outcomes-list { display: flex; flex-direction: column; gap: 1.5rem; }
.outcomes-item { display: flex; align-items: center; gap: 1.5rem; }
.outcomes-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--color-sunrise-gold);
    min-width: 80px;
    line-height: 1;
}
.outcomes-label { color: #4A4A4A; font-size: 0.95rem; line-height: 1.5; }

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--color-light-moss);
    border-radius: 12px;
    padding: 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-card p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-deep-forest);
    line-height: 1.7;
    flex: 1;
}
.testimonial-card cite { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600; color: #666; font-style: normal; }

/* ── Differentiators grid (Our Approach) ───────────────────────── */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.diff-card {
    background: #fff;
    border: 1px solid rgba(26,60,52,0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.diff-card:hover { box-shadow: 0 8px 32px rgba(26,60,52,0.1); transform: translateY(-4px); }
.diff-card--featured { background: var(--color-deep-forest); border-color: var(--color-deep-forest); }
.diff-card--featured h3 { color: #FDF7EE; }
.diff-card--featured p { color: rgba(253,247,238,0.8); }
.diff-card h3 { color: var(--color-deep-forest); font-size: 1.1rem; }
.diff-card p { color: #4A4A4A; font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* Research quote */
.research-quote-inner { max-width: 800px; margin: 0 auto; }
.research-quote {
    margin: 0;
    padding: 0;
    border: none;
}
.research-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--color-deep-forest);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.research-quote cite { font-family: var(--font-ui); font-size: 0.82rem; color: #888; font-style: normal; }

/* Workers split */
.workers-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.workers-split__text { display: flex; flex-direction: column; gap: 1rem; }
.workers-split__text h2 em { font-style: italic; }
.workers-split__stats { display: flex; flex-direction: column; gap: 1.25rem; }
.worker-stat {
    background: var(--color-light-moss);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.worker-stat--alt { background: var(--color-deep-forest); }
.worker-stat__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-sunrise-gold);
    line-height: 1;
}
.worker-stat__label { font-size: 0.88rem; color: #4A4A4A; line-height: 1.5; }
.worker-stat--alt .worker-stat__label { color: rgba(253,247,238,0.75); }

/* ── Team page ──────────────────────────────────────────────────── */
.coordinator-section {}
.coordinator-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: start;
}
.coordinator-monogram { display: flex; flex-direction: column; align-items: center; }
.monogram-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(212,137,26,0.15);
    border: 2px solid var(--color-sunrise-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-sunrise-gold);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26,60,52,0.1);
    display: flex;
    flex-direction: column;
}
.team-card__photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}
.team-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.team-card__body h3 { font-size: 1.2rem; color: var(--color-deep-forest); margin: 0; }
.team-card__role { font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600; color: var(--color-sunrise-gold); text-transform: uppercase; letter-spacing: 0.08em; }
.team-card__bio { color: #4A4A4A; font-size: 0.9rem; line-height: 1.65; flex: 1; margin: 0.25rem 0 0.75rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

/* Enquiry split */
.enquiry-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.enquiry-split__text { display: flex; flex-direction: column; gap: 1rem; }
.enquiry-split__text h2 em { font-style: italic; }

/* ── Responsive inner pages ─────────────────────────────────────── */
@media (max-width: 900px) {
    .page-hero__inner { grid-template-columns: 1fr; }
    .page-hero__photos { grid-template-columns: 1fr 1fr; }
    .story-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-detail__split { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
    .service-detail__split--reverse { direction: ltr; }
    .service-detail__img img { height: 320px; }
    .eligibility-split { grid-template-columns: 1fr; gap: 2rem; }
    .refer-form-layout { grid-template-columns: 1fr; gap: 3rem; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .outcomes-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .differentiators-grid { grid-template-columns: 1fr; }
    .workers-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .coordinator-inner { grid-template-columns: 1fr; gap: 2rem; }
    .coordinator-monogram { align-items: flex-start; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .enquiry-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
    .page-hero { min-height: 460px; }
    .page-hero__photos { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .process-step { flex-direction: column; gap: 1rem; }
}

/* ================================================================
   LIGHTBOX
   ================================================================ */

.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.93);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: zoom-out;
}
.lb-overlay.lb-visible { opacity: 1; }

.lb-img-wrap {
    position: relative;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-img {
    display: block;
    max-width: 88vw;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    transition: opacity 0.15s ease;
}
.lb-img.lb-loading { opacity: 0.3; }

.lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10000;
}
.lb-close:hover { opacity: 1; background: rgba(255,255,255,0.2); }

.lb-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}
.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-btn svg { pointer-events: none; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
}

/* Cursor hint on gallery thumbnails */
.wp-block-gallery .wp-block-image img { cursor: zoom-in; }

/* ================================================================
   SERVICES PAGE — srv-* components
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.srv-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    background: #1A3C34;
}
.srv-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
}
.srv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26,60,52,0.94) 0%,
        rgba(26,60,52,0.69) 25%,
        rgba(26,60,52,0.25) 50%,
        rgba(26,60,52,0.06) 75%,
        rgba(26,60,52,0.00) 100%
    );
}
.srv-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 80px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.srv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D4891A;
    border-radius: 16px;
    padding: 6px 20px;
    align-self: flex-start;
}
.srv-hero__eyebrow span {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #FDF7EE;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.srv-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.8vw, 84px);
    font-style: italic;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1.05;
    margin: 0;
}
.srv-hero__rule {
    width: 60px;
    height: 4px;
    background: #D4891A;
    flex-shrink: 0;
}
.srv-hero__sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FDF7EE;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 680px;
    margin: 0;
}

/* ── Services Intro ─────────────────────────────────────────────── */
.srv-intro {
    padding: 80px;
}
.srv-intro__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.srv-intro__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 3px;
    text-align: center;
}
.srv-intro__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.5vw, 36px);
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}
.srv-intro__body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2E5D4B;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* ── Service Panels ─────────────────────────────────────────────── */
.srv-panel {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    overflow: hidden;
}
/* .srv-panel--reverse: content is first in DOM, image second — normal row order gives content-left, image-right */
.srv-panel__img {
    width: 600px;
    flex-shrink: 0;
    overflow: hidden;
}
.srv-panel__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.srv-panel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 80px 200px 80px 80px;
}
.srv-panel--reverse .srv-panel__content {
    padding: 80px 80px 80px 200px;
}
.srv-panel__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: #D4891A;
    opacity: 0.65;
    line-height: 1;
}
.srv-panel__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 3px;
}
.srv-panel__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 36px);
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.2;
    margin: 0;
}
.srv-panel__rule {
    width: 48px;
    height: 3px;
    background: #D4891A;
    flex-shrink: 0;
}
.srv-panel__body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2E5D4B;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}
.srv-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.srv-panel__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1A3C34;
    color: #D4891A;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    height: 28px;
    padding: 0 12px;
}
.srv-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.srv-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1A3C34;
    line-height: 1.5;
}
.srv-panel__list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #D4891A;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Rotated image (portrait photo displayed landscape) */
.srv-panel__img--rotate {
    position: relative;
    overflow: hidden;
}
.srv-panel__img--rotate img {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Swap dimensions so rotated image fills the container */
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%) rotate(90deg);
    object-fit: cover;
}

/* ── Eligibility Section ────────────────────────────────────────── */
.srv-eligibility {
    padding: 100px 0;
}
.srv-eligibility__inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.srv-eligibility__left {
    width: 440px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.srv-eligibility__left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 44px);
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.15;
    margin: 0;
}
.srv-eligibility__left p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(26,60,52,0.75);
    line-height: 1.7;
    margin: 0;
}
.srv-eligibility__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.srv-elig-card {
    background: #1A3C34;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.srv-elig-card__num {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #D4891A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FDF7EE;
    flex-shrink: 0;
}
.srv-elig-card__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.srv-elig-card__text strong {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FDF7EE;
}
.srv-elig-card__text span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(253,247,238,0.75);
    line-height: 1.5;
    display: block;
}

/* ── Services CTA ───────────────────────────────────────────────── */
.srv-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    min-height: 240px;
    padding: 60px 80px;
    text-align: center;
}
.srv-cta__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 44px);
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.2;
    margin: 0;
}
.srv-cta__btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.srv-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 0 28px;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.srv-cta__btn--dark {
    background: #1A3C34;
    color: #FDF7EE;
}
.srv-cta__btn--light {
    background: #FDF7EE;
    color: #1A3C34;
}
.srv-cta__btn:hover { opacity: 0.85; }

/* ── Services page responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .srv-hero__content { padding: 80px 48px 0; }
    .srv-panel,
    .srv-panel--reverse { flex-direction: column; min-height: unset; }
    .srv-panel__img { width: 100%; height: 340px; }
    .srv-panel__content,
    .srv-panel--reverse .srv-panel__content { padding: 48px; }
    .srv-panel__body { max-width: 100%; }
    .srv-intro { padding: 60px 48px; }
    .srv-eligibility { padding: 60px 0; }
    .srv-eligibility__inner { flex-direction: column; gap: 40px; }
    .srv-eligibility__left { width: 100%; }
    .srv-cta { padding: 60px 48px; }
}
@media (max-width: 640px) {
    .srv-hero { height: 520px; }
    .srv-hero__content { padding: 80px 24px 0; }
    .srv-hero h1 { font-size: clamp(2.2rem, 8vw, 52px); }
    .srv-panel__img { height: 260px; }
    .srv-panel__content,
    .srv-panel--reverse .srv-panel__content { padding: 36px 24px; }
    .srv-intro { padding: 48px 24px; }
    .srv-eligibility { padding: 48px 0; }
    .srv-cta { padding: 48px 24px; }
    .srv-cta__btns { flex-direction: column; }
    .srv-cta__btn { width: 100%; max-width: 280px; }
}

/* ================================================================
   OUR IMPACT PAGE — imp-* components
   ================================================================ */

/* --- Hero -------------------------------------------------------- */
.imp-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    background: #1A3C34;
}
.imp-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
}
.imp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26,60,52,0.94) 0%,
        rgba(26,60,52,0.78) 20%,
        rgba(26,60,52,0.38) 42%,
        rgba(26,60,52,0.08) 65%,
        rgba(26,60,52,0.00) 100%
    );
}
.imp-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 110px 80px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.imp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sunrise-gold);
    border-radius: 16px;
    padding: 6px 20px;
    align-self: flex-start;
}
.imp-hero__eyebrow span {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #FDF7EE;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.imp-hero__content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5.5vw, 80px);
    font-style: italic;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1.05;
    margin: 0;
}
.imp-hero__rule {
    width: 60px;
    height: 4px;
    background: var(--color-sunrise-gold);
    border-radius: 2px;
}
.imp-hero__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(253,247,238,0.75);
    line-height: 1.6;
    max-width: 620px;
    margin: 0;
}

/* --- Events Intro ----------------------------------------------- */
.imp-events-intro {
    padding: 80px;
    display: flex;
    justify-content: center;
}
.imp-events-intro__inner {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.imp-events-intro__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.imp-events-intro__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 3.5vw, 44px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.2;
    margin: 0;
}
.imp-events-intro__body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #2E5D4B;
    line-height: 1.7;
    margin: 0;
}

/* --- Events Grid ------------------------------------------------- */
.imp-events-grid {
    padding: 80px;
}
.imp-events-grid__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.imp-events-grid__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.imp-event-item {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.imp-event-item__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.imp-event-item--tall .imp-event-item__img {
    height: 340px;
}
.imp-event-item__label {
    background: #1A3C34;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.imp-event-item__title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FDF7EE;
}
.imp-event-item__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(253,247,238,0.7);
}

/* Rotated event image */
.imp-event-item__img-wrap {
    position: relative;
    height: 340px;
    overflow: hidden;
    flex-shrink: 0;
}
.imp-event-item--rotate .imp-event-item__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220%;
    height: 220%;
    transform: translate(-50%, -50%) rotate(90deg);
    object-fit: cover;
    object-position: center center;
}

/* --- Awards Section --------------------------------------------- */
.imp-awards {
    padding: 80px;
}
.imp-awards__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.imp-awards__header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.imp-awards__header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.imp-awards__header-right {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Carousel button + dot overrides for dark background */
.imp-awards .news-carousel__btn {
    border-color: rgba(253,247,238,0.5);
    color: #FDF7EE;
}
.imp-awards .news-carousel__btn:hover,
.imp-awards .news-carousel__btn:focus-visible {
    background: #FDF7EE;
    color: #1A3C34;
    border-color: #FDF7EE;
}
.imp-awards__dots .news-carousel__dot {
    background: rgba(253,247,238,0.25);
}
.imp-awards__dots .news-carousel__dot--active {
    background: #D4891A;
}
.imp-awards__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.imp-awards__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 4vw, 52px);
    font-style: italic;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1.1;
    margin: 0;
}
.imp-awards__rule {
    width: 60px;
    height: 3px;
    background: var(--color-sunrise-gold);
    border-radius: 2px;
}
.imp-awards__grid {
    display: flex;
    gap: 24px;
}
.imp-award-card {
    flex: 1;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.imp-award-card--amber {
    background: var(--color-sunrise-gold);
}
.imp-award-card--cream {
    background: #FDF7EE;
    border: 1px solid rgba(26,60,52,0.13);
}
.imp-award-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.imp-award-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1A3C34;
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    align-self: flex-start;
}
.imp-award-card--cream .imp-award-card__badge {
    background: var(--color-sunrise-gold);
}
.imp-award-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.imp-award-card--amber .imp-award-card__title { color: #FDF7EE; }
.imp-award-card--cream .imp-award-card__title { color: #1A3C34; }
.imp-award-card__body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.imp-award-card--amber .imp-award-card__body { color: rgba(253,247,238,0.9); }
.imp-award-card--cream .imp-award-card__body { color: #2E5D4B; }
.imp-awards__photos {
    display: flex;
    gap: 16px;
}
.imp-awards__photo {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}
.imp-awards__photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* --- Outcomes Section ------------------------------------------- */
.imp-outcomes {
    padding: 80px;
}
.imp-outcomes__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.imp-outcomes__left {
    width: 480px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.imp-outcomes__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-sunrise-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.imp-outcomes__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 3.5vw, 48px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.1;
    margin: 0;
}
.imp-outcomes__rule {
    width: 48px;
    height: 3px;
    background: var(--color-sunrise-gold);
    border-radius: 2px;
}
.imp-outcomes__body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #2E5D4B;
    line-height: 1.7;
    margin: 0;
}
.imp-outcomes__datacard {
    background: #EDF4F1;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.imp-outcomes__datacard-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.4;
    margin: 0;
}
.imp-outcomes__datacard-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(26,60,52,0.7);
    line-height: 1.6;
    margin: 0;
}
.imp-outcomes__datacard-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1A3C34;
}
.imp-outcomes__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.imp-outcome-item {
    background: #EDF4F1;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.imp-outcome-item__num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imp-outcome-item__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.imp-outcome-item__text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A3C34;
}
.imp-outcome-item__text span {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #2E5D4B;
    line-height: 1.5;
}

/* --- Testimonials ----------------------------------------------- */
.imp-testimonials {
    padding: 96px 80px;
}
.imp-testimonials__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.imp-testimonials__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 680px;
}
.imp-testimonials__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #8B6914;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.imp-testimonials__heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.2;
    margin: 0;
}
.imp-testimonials__cards {
    display: flex;
    gap: 24px;
}
.imp-testimonial-card {
    flex: 1;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
}
.imp-testimonial-card--white { background: #FFFFFF; }
.imp-testimonial-card--amber { background: var(--color-sunrise-gold); }
.imp-testimonial-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}
.imp-testimonial-card--white p { color: #1A3C34; }
.imp-testimonial-card--amber p { color: #1A3C34; }
.imp-testimonial-card footer { margin-top: auto; }
.imp-testimonial-card cite {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
}
.imp-testimonial-card--white cite { color: rgba(26,60,52,0.7); }
.imp-testimonial-card--amber cite { color: rgba(26,60,52,0.6); }
.imp-video-block {
    background: #1A3C34;
    border-radius: 12px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
}
.imp-video-block__play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.imp-video-block__title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FDF7EE;
    margin: 0;
}
.imp-video-block__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(253,247,238,0.9);
    line-height: 1.6;
    max-width: 460px;
    margin: 0;
}

/* --- CTA -------------------------------------------------------- */
.imp-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 220px;
    padding: 60px 80px;
    text-align: center;
}
.imp-cta__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-style: italic;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.15;
    margin: 0;
}
.imp-cta__btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.imp-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 32px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}
.imp-cta__btn:hover { opacity: 0.88; }
.imp-cta__btn--dark { background: #1A3C34; color: #FDF7EE; min-width: 200px; }
.imp-cta__btn--light { background: #FDF7EE; color: #8B6914; min-width: 160px; }

/* --- Responsive -------------------------------------------------- */
@media (max-width: 1024px) {
    .imp-hero__content { padding: 80px 48px 0; }
    .imp-events-intro { padding: 60px 40px; }
    .imp-events-grid { padding: 60px 40px; }
    .imp-awards { padding: 60px 40px; }
    .imp-outcomes { padding: 60px 40px; }
    .imp-outcomes__inner { gap: 48px; }
    .imp-outcomes__left { width: 380px; }
    .imp-testimonials { padding: 60px 40px; }
    .imp-cta { padding: 60px 40px; }
}

@media (max-width: 768px) {
    .imp-hero { height: auto; min-height: 520px; padding-bottom: 60px; }
    .imp-hero__content { padding: 100px 24px 0; }
    .imp-events-intro { padding: 60px 24px; }
    .imp-events-grid { padding: 40px 24px; }
    .imp-events-grid__inner { flex-direction: column; }
    .imp-event-item__img,
    .imp-event-item--tall .imp-event-item__img { height: 220px; }
    .imp-awards { padding: 60px 24px; }
    .imp-awards__grid { flex-direction: column; }
    .imp-awards__photos { flex-direction: column; }
    .imp-awards__photo img { height: 200px; }
    .imp-outcomes { padding: 60px 24px; }
    .imp-outcomes__inner { flex-direction: column; }
    .imp-outcomes__left { width: 100%; }
    .imp-testimonials { padding: 60px 24px; }
    .imp-testimonials__cards { flex-direction: column; }
    .imp-cta { padding: 60px 24px; }
    .imp-cta__btns { flex-direction: column; align-items: center; }
    .imp-cta__btn { width: 100%; max-width: 280px; }
}

/* ================================================================
   OUR APPROACH PAGE — appr-*
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.appr-hero {
    position: relative;
    height: 560px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}
.appr-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}
.appr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 60, 52, 0.88) 0%,
        rgba(26, 60, 52, 0.72) 45%,
        rgba(26, 60, 52, 0.30) 75%,
        rgba(26, 60, 52, 0.10) 100%
    );
}
.appr-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 80px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.appr-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    background: #D4891A;
    border-radius: 16px;
    padding: 6px 20px;
    margin-bottom: 24px;
    align-self: flex-start;
}
.appr-hero__eyebrow span {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FDF7EE;
}
.appr-hero__content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #FDF7EE;
    margin: 0 0 20px;
    max-width: 680px;
}
.appr-hero__content h1 em {
    font-style: italic;
    color: #D4891A;
}
.appr-hero__rule {
    width: 48px;
    height: 3px;
    background: #D4891A;
    border-radius: 2px;
    margin-bottom: 20px;
}
.appr-hero__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(253, 247, 238, 0.9);
    margin: 0;
    max-width: 520px;
}

/* ── Pillars ────────────────────────────────────────────────── */
.appr-pillars {
    padding: 88px 80px;
}
.appr-pillars__inner {
    max-width: 1160px;
    margin: 0 auto;
}
.appr-pillars__header {
    margin-bottom: 56px;
}
.appr-pillars__eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D4891A;
    margin-bottom: 16px;
}
.appr-pillars__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #1A3C34;
    margin: 0 0 16px;
}
.appr-pillars__rule {
    width: 40px;
    height: 3px;
    background: #D4891A;
    border-radius: 2px;
}
.appr-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.appr-pillar-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(26, 60, 52, 0.07);
}
.appr-pillar-card--featured {
    background: #1A3C34;
}
.appr-pillar-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 137, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4891A;
    flex-shrink: 0;
}
.appr-pillar-card--featured .appr-pillar-card__icon {
    background: rgba(212, 137, 26, 0.20);
    color: #D4891A;
}
.appr-pillar-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A3C34;
    margin: 0;
    line-height: 1.3;
}
.appr-pillar-card--featured .appr-pillar-card__title {
    color: #FDF7EE;
}
.appr-pillar-card__body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #3D5A52;
    margin: 0;
}
.appr-pillar-card--featured .appr-pillar-card__body {
    color: rgba(253, 247, 238, 0.82);
}

/* ── Research Quote ─────────────────────────────────────────── */
.appr-quote {
    padding: 80px 80px;
}
.appr-quote__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.appr-quote__mark {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    line-height: 0.7;
    color: #D4891A;
    flex-shrink: 0;
    margin-top: 16px;
    user-select: none;
}
.appr-quote__text {
    margin: 0;
}
.appr-quote__text p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: #FDF7EE;
    margin: 0 0 24px;
}
.appr-quote__cite {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(253, 247, 238, 0.55);
    font-style: normal;
}

/* ── Workers ────────────────────────────────────────────────── */
.appr-workers {
    padding: 88px 80px;
}
.appr-workers__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 64px;
}
.appr-workers__left {
    flex: 1;
    min-width: 0;
}
.appr-workers__eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D4891A;
    margin-bottom: 16px;
}
.appr-workers__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: #1A3C34;
    margin: 0 0 16px;
}
.appr-workers__heading em {
    font-style: italic;
    color: #D4891A;
}
.appr-workers__rule {
    width: 40px;
    height: 3px;
    background: #D4891A;
    border-radius: 2px;
    margin-bottom: 24px;
}
.appr-workers__body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #3D5A52;
    margin: 0 0 16px;
}
.appr-workers__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A3C34;
    text-decoration: none;
    border-bottom: 2px solid #D4891A;
    padding-bottom: 2px;
    margin-top: 8px;
    transition: color 0.2s;
}
.appr-workers__link:hover {
    color: #D4891A;
}
.appr-workers__right {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.appr-stat-card {
    background: #1A3C34;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.appr-stat-card--alt {
    background: #D4891A;
}
.appr-stat-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #FDF7EE;
}
.appr-stat-card__label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(253, 247, 238, 0.80);
}

/* ── CTA ────────────────────────────────────────────────────── */
.appr-cta {
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.appr-cta__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #1A3C34;
    margin: 0;
    line-height: 1.2;
}
.appr-cta__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(26, 60, 52, 0.75);
    margin: 0;
    max-width: 520px;
}
.appr-cta__btns {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.appr-cta__btn {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
}
.appr-cta__btn:hover {
    transform: translateY(-1px);
}
.appr-cta__btn--dark {
    background: #1A3C34;
    color: #FDF7EE;
}
.appr-cta__btn--dark:hover { background: #142e28; }
.appr-cta__btn--light {
    background: rgba(26, 60, 52, 0.12);
    color: #1A3C34;
}
.appr-cta__btn--light:hover { background: rgba(26, 60, 52, 0.20); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .appr-hero__content { padding: 80px 48px 0; }
    .appr-pillars { padding: 64px 48px; }
    .appr-quote { padding: 64px 48px; }
    .appr-workers { padding: 64px 48px; }
    .appr-workers__inner { gap: 40px; }
    .appr-workers__right { flex: 0 0 280px; }
    .appr-cta { padding: 64px 48px; }
}
@media (max-width: 768px) {
    .appr-hero { height: 480px; }
    .appr-hero__content { padding: 80px 24px 0; }
    .appr-pillars { padding: 56px 24px; }
    .appr-pillars__grid { grid-template-columns: 1fr; }
    .appr-quote { padding: 56px 24px; }
    .appr-quote__mark { font-size: 80px; }
    .appr-workers { padding: 56px 24px; }
    .appr-workers__inner { flex-direction: column; }
    .appr-workers__right { flex: none; width: 100%; }
    .appr-cta { padding: 56px 24px; }
    .appr-cta__btns { flex-direction: column; align-items: center; }
    .appr-cta__btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ================================================================
   REFER A CASE PAGE — ref-*
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.ref-hero {
    position: relative;
    height: 560px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}
.ref-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.ref-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 60, 52, 0.88) 0%,
        rgba(26, 60, 52, 0.80) 40%,
        rgba(26, 60, 52, 0.40) 65%,
        rgba(26, 60, 52, 0.15) 100%
    );
}
.ref-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 80px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ref-hero__content h1,
.ref-hero__sub {
    max-width: 600px;
}
.ref-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    background: #D4891A;
    border-radius: 16px;
    padding: 6px 20px;
    margin-bottom: 24px;
    align-self: flex-start;
}
.ref-hero__eyebrow span {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FDF7EE;
}
.ref-hero__content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    color: #FDF7EE;
    margin: 0 0 20px;
}
.ref-hero__content h1 em {
    font-style: italic;
    color: #D4891A;
}
.ref-hero__rule {
    width: 48px;
    height: 3px;
    background: #D4891A;
    border-radius: 2px;
    margin-bottom: 20px;
}
.ref-hero__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(253, 247, 238, 0.9);
    margin: 0;
    max-width: 520px;
}

/* ── Coverage Section ────────────────────────────────────────── */
.ref-coverage {
    padding: 72px 80px;
}
.ref-coverage__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 64px;
}
.ref-coverage__left {
    flex: 1;
    min-width: 0;
}
.ref-coverage__eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D4891A;
    margin-bottom: 16px;
}
.ref-coverage__left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #1A3C34;
    margin: 0 0 20px;
}
.ref-coverage__left p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #3D5A52;
    margin: 0;
    max-width: 420px;
}
.ref-coverage__regions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}
.ref-region-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(26, 60, 52, 0.08);
}
.ref-region-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #D4891A;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}
.ref-region-card__name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A3C34;
    line-height: 1.3;
}

/* ── Process + Form (2-col) ─────────────────────────────────── */
.ref-main {
    display: flex;
    align-items: stretch;
    min-height: 640px;
}

/* — Left: Process — */
.ref-process {
    flex: 0 0 560px;
    background: #EDF4F1;
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
}
.ref-process__eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D4891A;
    margin-bottom: 16px;
}
.ref-process h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: #1A3C34;
    margin: 0 0 16px;
}
.ref-process__rule {
    width: 40px;
    height: 3px;
    background: #D4891A;
    border-radius: 2px;
    margin-bottom: 20px;
}
.ref-process__body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #3D5A52;
    margin: 0 0 40px;
}
.ref-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.ref-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.ref-step__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #D4891A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FDF7EE;
    margin-top: 2px;
}
.ref-step__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ref-step__text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.3;
}
.ref-step__text span {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #3D5A52;
}

/* — Right: Form — */
.ref-form {
    flex: 1;
    background: #FDF7EE;
    padding: 72px 56px;
    min-width: 0;
}
.ref-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: #1A3C34;
    margin: 0 0 8px;
}
.ref-form__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #5A7A72;
    margin: 0 0 32px;
}

/* Native form styles (fallback / no CF7) */
.referral-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field--full {
    grid-column: 1 / -1;
}
.form-field label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1A3C34;
    letter-spacing: 0.3px;
}
.form-field label span[aria-hidden] {
    color: #D4891A;
    margin-left: 2px;
}
.ref-form__optional {
    font-weight: 400;
    color: #7A9990;
    font-size: 12px;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1A3C34;
    background: #fff;
    border: 1.5px solid #C8D8D4;
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus,
.form-field textarea:focus {
    border-color: #D4891A;
}
.form-field textarea {
    resize: vertical;
    min-height: 120px;
}
.form-field input.ref-form__input--optional {
    border-style: dashed;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #D4891A;
    cursor: pointer;
}
.form-checkbox span {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #3D5A52;
}
.ref-form__submit {
    grid-column: 1 / -1;
    background: #D4891A;
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
    width: 100%;
}
.ref-form__submit:hover {
    background: #b87010;
    transform: translateY(-1px);
}

/* ── CF7 Form — Redesigned to match Pencil reference (kZOCm) ────────────────── */

/* CF7 form wrapper: plain flex column */
.ref-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ref-form .wpcf7-form p { margin: 0; }

/* CF7 control-wrap spans must be block so they fill their grid cell */
.ref-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* ── Field groups ──────────────────────────────────────────────────────────── */
.ref-cf7-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

/* ── 2 & 3-column rows ─────────────────────────────────────────────────────── */
.ref-cf7-row {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}
.ref-cf7-row--2col { grid-template-columns: 1fr 1fr; }
.ref-cf7-row--3col { grid-template-columns: 1fr 1fr 1fr; }
.ref-cf7-row .ref-cf7-group { margin-bottom: 0; }

/* ── Section dividers ──────────────────────────────────────────────────────── */
.ref-cf7-section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C8952A;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(26, 60, 52, 0.12);
    margin-bottom: 20px;
    margin-top: 8px;
}
.ref-cf7-section-label:first-child { margin-top: 0; }

/* ── Labels ────────────────────────────────────────────────────────────────── */
.ref-cf7-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2A3D38;
    line-height: 1;
}
.ref-cf7-req { color: #C8952A; margin-left: 2px; }
.ref-cf7-opt { font-weight: 400; color: #7A9990; font-size: 12px; }

/* ── Text / email / tel / number inputs ────────────────────────────────────── */
.ref-form .wpcf7-form input[type="text"],
.ref-form .wpcf7-form input[type="email"],
.ref-form .wpcf7-form input[type="tel"],
.ref-form .wpcf7-form input[type="number"] {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1A3C34;
    background: #fff;
    border: 1.5px solid #D4DDD9;
    border-radius: 8px;
    padding: 11px 14px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ref-form .wpcf7-form input[type="text"]:focus,
.ref-form .wpcf7-form input[type="email"]:focus,
.ref-form .wpcf7-form input[type="tel"]:focus,
.ref-form .wpcf7-form input[type="number"]:focus {
    border-color: #C8952A;
    box-shadow: 0 0 0 3px rgba(200, 149, 42, 0.12);
}

/* ── Textarea ───────────────────────────────────────────────────────────────── */
.ref-form .wpcf7-form textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1A3C34;
    background: #fff;
    border: 1.5px solid #D4DDD9;
    border-radius: 8px;
    padding: 11px 14px;
    width: 100%;
    min-height: 130px;
    box-sizing: border-box;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ref-form .wpcf7-form textarea:focus {
    border-color: #C8952A;
    box-shadow: 0 0 0 3px rgba(200, 149, 42, 0.12);
}

/* ── Select inputs ──────────────────────────────────────────────────────────── */
.ref-form .wpcf7-form select {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1A3C34;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3C34' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    border: 1.5px solid #D4DDD9;
    border-radius: 8px;
    padding: 11px 38px 11px 14px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ref-form .wpcf7-form select:focus {
    border-color: #C8952A;
    box-shadow: 0 0 0 3px rgba(200, 149, 42, 0.12);
}

/* ── Placeholder colour ─────────────────────────────────────────────────────── */
.ref-form .wpcf7-form input::placeholder,
.ref-form .wpcf7-form textarea::placeholder { color: #B0C4BD; }

/* ── Consent row ────────────────────────────────────────────────────────────── */
.ref-cf7-consent { margin-bottom: 20px; }
.ref-cf7-consent .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}
.ref-cf7-consent .wpcf7-list-item input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: #C8952A;
    cursor: pointer;
}
.ref-cf7-consent .wpcf7-list-item label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #4A6560;
    line-height: 1.55;
    cursor: pointer;
}

/* ── Submit button ──────────────────────────────────────────────────────────── */
.ref-form .wpcf7-submit {
    background: #C8952A;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
}
.ref-form .wpcf7-submit:hover {
    background: #B07820;
    transform: translateY(-1px);
}

/* ── Validation ─────────────────────────────────────────────────────────────── */
.ref-form .wpcf7-not-valid-tip {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #C0392B;
    margin-top: 4px;
    display: block;
}
.ref-form .wpcf7-form input.wpcf7-not-valid,
.ref-form .wpcf7-form textarea.wpcf7-not-valid,
.ref-form .wpcf7-form select.wpcf7-not-valid {
    border-color: #C0392B;
}

/* ── Response messages ──────────────────────────────────────────────────────── */
.ref-form .wpcf7-response-output {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 16px;
    border: none !important;
}
.ref-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #F0FDF4;
    color: #166534;
    border-left: 4px solid #22C55E !important;
}
.ref-form .wpcf7-response-output.wpcf7-mail-sent-ng,
.ref-form .wpcf7-response-output.wpcf7-validation-errors,
.ref-form .wpcf7-response-output.wpcf7-spam-blocked {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 4px solid #EF4444 !important;
}

/* ── Legacy fallback selects (non-CF7 form) ─────────────────────────────────── */
.ref-form__select {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1A3C34;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3C34' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    border: 1.5px solid #D4DDD9;
    border-radius: 8px;
    padding: 11px 40px 11px 14px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s;
}
.ref-form__select:focus { border-color: #C8952A; }

.ref-form__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(26, 60, 52, 0.06);
    border-radius: 8px;
    border-left: 3px solid #1A3C34;
}
.ref-form__note-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #1A3C34;
    color: #FDF7EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    margin-top: 1px;
}
.ref-form__note p {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #3D5A52;
    margin: 0;
}

/* ── Crisis Strip ────────────────────────────────────────────── */
.ref-crisis {
    background: #1A3C34;
    padding: 28px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.ref-crisis p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(253, 247, 238, 0.85);
    margin: 0;
    line-height: 1.6;
}
.ref-crisis p strong {
    color: #FDF7EE;
}
.ref-crisis p a {
    color: #D4891A;
    text-decoration: none;
    font-weight: 700;
}
.ref-crisis p a:hover {
    text-decoration: underline;
}
.ref-crisis__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    background: #D4891A;
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
}
.ref-crisis__btn:hover {
    background: #b87010;
    transform: translateY(-1px);
}

/* ── Responsive — Refer a Case ──────────────────────────────── */
@media (max-width: 1024px) {
    .ref-coverage { padding: 56px 48px; }
    .ref-coverage__inner { flex-direction: column; gap: 40px; }
    .ref-coverage__left p { max-width: 100%; }
    .ref-main { flex-direction: column; }
    .ref-process { flex: none; width: 100%; padding: 56px 48px; }
    .ref-form { width: 100%; padding: 56px 48px; }
    .ref-crisis { padding: 28px 48px; }
}

@media (max-width: 768px) {
    .ref-hero { height: 480px; }
    .ref-hero__content { padding: 80px 24px 0; }
    .ref-hero__content h1 { font-size: 34px; }
    .ref-coverage { padding: 48px 24px; }
    .ref-coverage__inner { gap: 32px; }
    .ref-process { padding: 48px 24px; }
    .ref-form { padding: 48px 24px; }
    .referral-form { grid-template-columns: 1fr; }
    .ref-form .wpcf7-form { grid-template-columns: 1fr; }
    .ref-crisis {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    .ref-crisis__btn { width: 100%; justify-content: center; }
}

/* ================================================================
   TEAM PAGE — team-*
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────── */
.team-hero {
    position: relative;
    height: 560px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}
.team-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}
.team-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,60,52,0.88) 0%, rgba(26,60,52,0.15) 100%);
}
.team-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 80px 0;
}
.team-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
}
.team-hero__eyebrow span {
    background: #D4891A;
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 16px;
}
.team-hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1.15;
    margin: 0 0 20px;
    max-width: 580px;
}
.team-hero h1 em {
    font-style: italic;
    color: #D4891A;
}
.team-hero__rule {
    width: 48px;
    height: 3px;
    background: #D4891A;
    margin-bottom: 20px;
    border-radius: 2px;
}
.team-hero__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    color: rgba(253,247,238,0.85);
    line-height: 1.65;
    margin: 0;
    max-width: 520px;
}

/* ── Intro ───────────────────────────────────────────────────── */
.team-intro {
    padding: 80px 80px;
}
.team-intro__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.team-intro__eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #D4891A;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.team-intro__heading {
    font-family: 'Lora', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #1A3C34;
    line-height: 1.2;
    margin: 0 0 20px;
}
.team-intro__body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.75;
    margin: 0;
}

/* ── Lead Coordinator ────────────────────────────────────────── */
.team-lead {
    padding: 80px 80px;
    border-top: 1px solid rgba(26,60,52,0.1);
}
.team-lead__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}
.team-lead__content {
    flex: 1;
}
.team-lead__eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #D4891A;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.team-lead__name {
    font-family: 'Lora', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #1A3C34;
    margin: 0 0 16px;
    line-height: 1.2;
}
.team-lead__rule {
    width: 40px;
    height: 3px;
    background: #D4891A;
    margin-bottom: 24px;
    border-radius: 2px;
}
.team-lead__bio {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.75;
    margin: 0 0 16px;
}
.team-lead__spec {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #5A5A5A;
    line-height: 1.6;
    margin: 0 0 32px;
}
.team-lead__spec strong {
    color: #1A3C34;
}
.team-lead__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1A3C34;
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
}
.team-lead__btn:hover {
    background: #0f2219;
    transform: translateY(-1px);
}
.team-lead__card {
    flex-shrink: 0;
    width: 280px;
    background: #1A3C34;
    border-radius: 16px;
    padding: 48px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.team-lead__monogram {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid #D4891A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    color: #D4891A;
    margin-bottom: 8px;
}
.team-lead__card-name {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FDF7EE;
    line-height: 1.25;
}
.team-lead__card-role {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4891A;
}

/* ── Local Contacts ──────────────────────────────────────────── */
.team-contacts {
    padding: 80px 80px;
}
.team-contacts__inner {
    max-width: 1120px;
    margin: 0 auto;
}
.team-contacts__header {
    margin-bottom: 48px;
}
.team-contacts__eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #D4891A;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.team-contacts__heading {
    font-family: 'Lora', serif;
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 700;
    color: #1A3C34;
    margin: 0 0 16px;
    line-height: 1.2;
}
.team-contacts__rule {
    width: 40px;
    height: 3px;
    background: #D4891A;
    border-radius: 2px;
}
.team-contacts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-contact-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(26,60,52,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26,60,52,0.14);
}
.team-contact-card__photo {
    height: 220px;
    overflow: hidden;
    background: #2a5347;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-contact-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-contact-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.team-contact-card__name {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A3C34;
    margin: 0;
    line-height: 1.25;
}
.team-contact-card__role {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D4891A;
}
.team-contact-card__region {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #6A7A75;
    line-height: 1.5;
    margin-bottom: 4px;
}
.team-contact-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4891A;
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    padding: 11px 20px;
    border-radius: 8px;
    margin-top: auto;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}
.team-contact-card__btn:hover {
    background: #b87010;
    transform: translateY(-1px);
}

/* ── Office Contact ──────────────────────────────────────────── */
.team-office {
    padding: 80px 80px;
    border-top: 1px solid rgba(26,60,52,0.1);
}
.team-office__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.team-office__left {
    flex: 1;
}
.team-office__eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #D4891A;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.team-office__heading {
    font-family: 'Lora', serif;
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 700;
    color: #1A3C34;
    margin: 0 0 16px;
    line-height: 1.2;
}
.team-office__rule {
    width: 40px;
    height: 3px;
    background: #D4891A;
    margin-bottom: 20px;
    border-radius: 2px;
}
.team-office__body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}
.team-office__right {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}
.team-office__contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(26,60,52,0.12);
}
.team-office__contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.team-office__contact-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4891A;
}
.team-office__contact-value {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1A3C34;
    text-decoration: none;
    transition: color 0.2s;
}
.team-office__contact-value:hover {
    color: #D4891A;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.team-cta {
    padding: 80px 80px;
    text-align: center;
}
.team-cta__heading {
    font-family: 'Lora', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: #1A3C34;
    margin: 0 0 16px;
    line-height: 1.2;
}
.team-cta__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(26,60,52,0.8);
    margin: 0 0 36px;
    line-height: 1.6;
}
.team-cta__btn {
    display: inline-block;
    background: #1A3C34;
    color: #FDF7EE;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
}
.team-cta__btn:hover {
    background: #0f2219;
    transform: translateY(-2px);
}

/* ── Responsive — Team ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .team-hero__content { padding: 80px 48px 0; }
    .team-intro { padding: 64px 48px; }
    .team-lead { padding: 64px 48px; }
    .team-lead__inner { flex-direction: column; gap: 40px; }
    .team-lead__card { width: 100%; max-width: 360px; }
    .team-contacts { padding: 64px 48px; }
    .team-contacts__grid { grid-template-columns: repeat(2, 1fr); }
    .team-office { padding: 64px 48px; }
    .team-office__inner { flex-direction: column; gap: 40px; }
    .team-office__right { flex: none; width: 100%; }
    .team-cta { padding: 64px 48px; }
}

@media (max-width: 768px) {
    .team-hero { height: 460px; }
    .team-hero__content { padding: 80px 24px 0; }
    .team-hero h1 { font-size: 32px; }
    .team-hero__sub { font-size: 15px; }
    .team-intro { padding: 56px 24px; }
    .team-intro__heading { font-size: 28px; }
    .team-lead { padding: 56px 24px; }
    .team-lead__card { max-width: 100%; }
    .team-lead__btn { width: 100%; justify-content: center; }
    .team-contacts { padding: 56px 24px; }
    .team-contacts__grid { grid-template-columns: 1fr; }
    .team-contact-card__btn { width: 100%; justify-content: center; }
    .team-office { padding: 56px 24px; }
    .team-cta { padding: 56px 24px; }
    .team-cta__heading { font-size: 26px; }
    .team-cta__btn { width: 100%; max-width: 320px; text-align: center; }
}

@media (max-width: 480px) {
    .team-hero { height: 420px; }
    .team-hero__content { padding: 70px 20px 0; }
    .team-hero h1 { font-size: 28px; }
    .team-intro { padding: 48px 20px; }
    .team-intro__heading { font-size: 24px; }
    .team-lead { padding: 48px 20px; }
    .team-lead__name { font-size: 26px; }
    .team-contacts { padding: 48px 20px; }
    .team-contacts__heading { font-size: 22px; }
    .team-contact-card__photo { height: 200px; }
    .team-office { padding: 48px 20px; }
    .team-cta { padding: 48px 20px; }
    .team-cta__heading { font-size: 22px; }
    .team-cta__btn { max-width: 100%; }
}

/* ================================================================
   PRINT STYLES
   ================================================================ */

@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .post-share,
    .hero__scroll,
    .partners-carousel {
        display: none !important;
    }

    body {
        padding-top: 0;
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}


/* ================================================================
   22. OUR IMPACT — 2025/2026 EVENTS GRID
   ================================================================ */

.imp-2025-events {
    padding: var(--space-16) 0 var(--space-20);
}

.imp-2025-events__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.imp-2025-events__header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.imp-2025-events__heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-deep-forest);
    margin-top: var(--space-3);
}

.imp-2025-events__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
}

.imp-2025-event-card {
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(26,60,52,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.imp-2025-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(26,60,52,0.14);
}

.imp-2025-event-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.imp-2025-event-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.imp-2025-event-card:hover .imp-2025-event-card__img {
    transform: scale(1.04);
}

.imp-2025-event-card__label {
    padding: var(--space-3) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.imp-2025-event-card__title {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-deep-forest);
    line-height: 1.3;
}

.imp-2025-event-card__sub {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .imp-2025-events__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .imp-2025-events__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
}

/* ================================================================
   23. COMMUNITY EVENTS PAGE (standalone)
   ================================================================ */

/* ── Hero ──────────────────────────────────────────────────────── */
.ce-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-deep-forest) 0%, #2d5e50 60%, #1a3c34 100%);
    padding-top: var(--header-height);
    overflow: hidden;
}

.ce-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");
    pointer-events: none;
}

.ce-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212,137,26,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.ce-hero__content {
    position: relative;
    z-index: 1;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.ce-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
    margin-bottom: var(--space-4);
}

.ce-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
    flex-shrink: 0;
}

.ce-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-warm-cream);
    margin-bottom: var(--space-6);
}

.ce-hero__rule {
    width: 60px;
    height: 3px;
    background: var(--color-sunrise-gold);
    margin-bottom: var(--space-6);
}

.ce-hero__sub {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(253,247,238,0.80);
    max-width: 560px;
}

/* ── Partners Banner ───────────────────────────────────────────── */
.ce-partners {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--color-border);
}

.ce-partners__inner {
    display: flex;
    justify-content: center;
}

.ce-partners__img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
}

/* ── Intro Section ────────────────────────────────────────────── */
.ce-intro {
    padding: var(--space-20) 0;
    text-align: center;
}

.ce-intro__inner {
    max-width: 700px;
    margin: 0 auto;
}

.ce-intro__eyebrow {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
    margin-bottom: var(--space-4);
}

.ce-intro__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-deep-forest);
    margin-bottom: var(--space-6);
}

.ce-intro__body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ── Section Heading Dividers ─────────────────────────────────── */
.ce-section-heading {
    padding: var(--space-16) 0;
}

.ce-section-heading__eyebrow {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
    margin-bottom: var(--space-4);
}

.ce-section-heading__eyebrow--dark {
    color: var(--color-deep-forest);
}

.ce-section-heading__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-warm-cream);
}

.ce-section-heading__title--dark {
    color: var(--color-deep-forest);
}

/* ── Event Sections (alternating photo/text) ──────────────────── */
.ce-event {
    padding: var(--space-20) 0;
}

.ce-event__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.ce-event--photo-left .ce-event__inner {
    direction: ltr;
}

.ce-event__category {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
    margin-bottom: var(--space-3);
}

.ce-event__category--light {
    color: rgba(212,137,26,0.9);
}

.ce-event__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-deep-forest);
    margin-bottom: var(--space-2);
}

.ce-event__date {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.ce-event__rule {
    width: 48px;
    height: 3px;
    background: var(--color-sunrise-gold);
    margin-bottom: var(--space-5);
}

.ce-event__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.ce-event__body:last-child {
    margin-bottom: 0;
}

.ce-event__img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 24px rgba(26,60,52,0.12);
}

.ce-event__media--stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.ce-event__img--stack {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(26,60,52,0.12);
}

/* ── Two-Column (Awards + Gala) ───────────────────────────────── */
.ce-two-col {
    padding: var(--space-20) 0;
}

.ce-two-col__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.ce-two-col__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.ce-two-col__photos--single {
    grid-template-columns: 1fr;
}

.ce-two-col__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(26,60,52,0.10);
}

.ce-two-col__img--full {
    height: 260px;
}

/* ── Cultural Diversity Week (Dark bg, photo grid) ────────────── */
.ce-diversity {
    padding: var(--space-20) 0;
}

.ce-diversity__inner {
    /* full-width inner */
}

.ce-diversity__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.ce-diversity__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-warm-cream);
    margin-bottom: var(--space-4);
}

.ce-diversity__rule {
    width: 60px;
    height: 3px;
    background: var(--color-sunrise-gold);
    margin: 0 auto var(--space-6);
}

.ce-diversity__body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(253,247,238,0.80);
    max-width: 760px;
    margin: 0 auto;
}

.ce-diversity__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.ce-diversity__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ce-diversity__img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ce-diversity__img--wide {
    grid-column: span 2;
}

/* ── AMCF Section ─────────────────────────────────────────────── */
.ce-amcf {
    padding: var(--space-20) 0;
}

.ce-amcf__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.ce-amcf__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-deep-forest);
    margin-bottom: var(--space-2);
}

.ce-amcf__photos {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.ce-amcf__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(26,60,52,0.12);
    display: block;
}

/* ── Training Sections ────────────────────────────────────────── */
.ce-training {
    padding: var(--space-20) 0;
}

.ce-training__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.ce-training__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-deep-forest);
    margin-bottom: var(--space-4);
}

.ce-training__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.ce-training__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.ce-training__list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    padding-left: var(--space-5);
    position: relative;
}

.ce-training__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
}

.ce-training__photos {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.ce-training__img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(26,60,52,0.10);
    display: block;
}

/* ── Upcoming Training ────────────────────────────────────────── */
.ce-upcoming {
    padding: var(--space-20) 0;
}

.ce-upcoming__inner {
    /* full-width inner */
}

.ce-upcoming__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.ce-upcoming__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-warm-cream);
    margin-bottom: var(--space-4);
}

.ce-upcoming__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.ce-upcoming__card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,137,26,0.25);
    border-radius: 6px;
    overflow: hidden;
}

.ce-upcoming__card-header {
    background: var(--color-sunrise-gold);
    padding: var(--space-3) var(--space-6);
}

.ce-upcoming__label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-deep-forest);
}

.ce-upcoming__card-media {
    position: relative;
}

.ce-upcoming__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ce-upcoming__caption {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(253,247,238,0.65);
    padding: var(--space-2) var(--space-4);
    background: rgba(0,0,0,0.25);
    margin: 0;
}

.ce-upcoming__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(253,247,238,0.80);
    padding: var(--space-5) var(--space-6);
    margin: 0;
}

/* ── CTA Section ──────────────────────────────────────────────── */
.ce-cta {
    padding: var(--space-20) var(--space-8);
    text-align: center;
}

.ce-cta__heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-deep-forest);
    margin-bottom: var(--space-8);
}

.ce-cta__btns {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.ce-cta__btn {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    border-radius: 3px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ce-cta__btn--dark {
    background: var(--color-deep-forest);
    color: var(--color-warm-cream);
}

.ce-cta__btn--dark:hover {
    background: #0f2c26;
}

.ce-cta__btn--light {
    background: transparent;
    color: var(--color-deep-forest);
    border: 2px solid var(--color-deep-forest);
}

.ce-cta__btn--light:hover {
    background: rgba(26,60,52,0.1);
}

/* ── Community Events Responsive — 768px ─────────────────────── */
@media (max-width: 768px) {

    .ce-hero {
        min-height: 380px;
    }

    .ce-hero h1 {
        font-size: 2.4rem;
    }

    .ce-event__inner,
    .ce-amcf__inner,
    .ce-training__inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .ce-event--photo-left .ce-event__media {
        order: -1;
    }

    .ce-two-col__inner {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .ce-diversity__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ce-diversity__img--wide {
        grid-column: span 2;
    }

    .ce-upcoming__grid {
        grid-template-columns: 1fr;
    }

    .ce-partners__img {
        max-height: 60px;
    }
}

/* ── Community Events Responsive — 480px ─────────────────────── */
@media (max-width: 480px) {

    .ce-diversity__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ce-two-col__photos {
        grid-template-columns: 1fr;
    }

    .ce-two-col__img {
        height: 200px;
    }
}

/* ================================================================
   24. EVENT DETAIL PAGE
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.evd-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.evd-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.evd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,30,22,0.88) 0%, rgba(14,30,22,0.35) 55%, transparent 100%);
}
.evd-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 80px 64px;
    width: 100%;
}
.evd-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 28px;
    transition: color 0.2s;
}
.evd-hero__back:hover { color: #fff; }
.evd-hero__tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.evd-hero__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
    flex-shrink: 0;
}
.evd-hero__tag span:last-child {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
}
.evd-hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
}
.evd-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.72);
}
.evd-hero__sep { color: rgba(255,255,255,0.3); }

/* ── Intro ───────────────────────────────────────────────────────── */
.evd-intro { padding: 72px 0 0; }
.evd-intro__inner { max-width: 800px; }
.evd-intro__lead {
    font-family: 'Lora', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--color-deep-forest);
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

/* ── Body (with optional aside photo) ───────────────────────────── */
.evd-body { padding: 40px 0 88px; }
.evd-body__inner { max-width: 800px; }
.evd-body__inner--split {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}
.evd-body__text p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(26,60,52,0.82);
    line-height: 1.78;
    margin: 0 0 22px;
}
.evd-body__text p:last-child { margin-bottom: 0; }
.evd-body__aside-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 24px rgba(26,60,52,0.12);
}

/* ── Gallery ─────────────────────────────────────────────────────── */
.evd-gallery { padding: 80px 0; }
.evd-gallery__eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
    margin-bottom: 32px;
}
.evd-gallery__grid {
    display: grid;
    gap: 16px;
}
.evd-gallery__grid--1 { grid-template-columns: 1fr; max-width: 720px; }
.evd-gallery__grid--2 { grid-template-columns: repeat(2, 1fr); }
.evd-gallery__grid--three,
.evd-gallery__grid--3 { grid-template-columns: repeat(3, 1fr); }
.evd-gallery__grid--4,
.evd-gallery__grid--5,
.evd-gallery__grid--6,
.evd-gallery__grid--7 { grid-template-columns: repeat(4, 1fr); }
.evd-gallery__item {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.evd-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.evd-gallery__item:hover .evd-gallery__img { transform: scale(1.04); }

/* ── CTA ──────────────────────────────────────────────────────────── */
.evd-cta { padding: 80px 0; }
.evd-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.evd-cta__heading {
    font-family: 'Lora', serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    color: var(--color-deep-forest);
    margin: 0 0 16px;
    line-height: 1.2;
}
.evd-cta__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(26,60,52,0.8);
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
}
.evd-cta__right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 220px;
}
.evd-cta__btn {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
}
.evd-cta__btn--dark { background: var(--color-deep-forest); color: #fff; }
.evd-cta__btn--dark:hover { background: #0f2219; transform: translateY(-2px); }
.evd-cta__btn--light { background: rgba(26,60,52,0.12); color: var(--color-deep-forest); }
.evd-cta__btn--light:hover { background: rgba(26,60,52,0.2); transform: translateY(-2px); }

/* ── Event card as link ───────────────────────────────────────────── */
a.imp-2025-event-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.imp-2025-event-card__cta {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-sunrise-gold);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── Responsive — Event Detail ────────────────────────────────────── */
@media (max-width: 1024px) {
    .evd-hero__content { padding: 0 48px 48px; }
    .evd-body__inner--split { grid-template-columns: 1fr; gap: 40px; }
    .evd-body__inner--split .evd-body__aside { order: -1; }
    .evd-body__aside-img { max-height: 360px; object-fit: cover; }
    .evd-gallery__grid--4,
    .evd-gallery__grid--5,
    .evd-gallery__grid--6,
    .evd-gallery__grid--7 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .evd-hero { height: 460px; }
    .evd-hero__content { padding: 0 24px 40px; }
    .evd-intro { padding: 48px 0 0; }
    .evd-body { padding: 32px 0 64px; }
    .evd-gallery { padding: 56px 0; }
    .evd-gallery__grid--three,
    .evd-gallery__grid--3,
    .evd-gallery__grid--4,
    .evd-gallery__grid--5,
    .evd-gallery__grid--6,
    .evd-gallery__grid--7 { grid-template-columns: repeat(2, 1fr); }
    .evd-cta__inner { flex-direction: column; gap: 32px; }
    .evd-cta__right { width: 100%; min-width: 0; }
}
@media (max-width: 480px) {
    .evd-hero { height: 400px; }
    .evd-hero__content { padding: 0 20px 32px; }
    .evd-gallery__grid--2,
    .evd-gallery__grid--three,
    .evd-gallery__grid--3,
    .evd-gallery__grid--4,
    .evd-gallery__grid--5,
    .evd-gallery__grid--6,
    .evd-gallery__grid--7 { grid-template-columns: 1fr; }
}

/* ================================================================
   25. AOD TRAINING & SECONDARY CONSULTS (Homepage Section)
   ================================================================ */

.training-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.training-section__heading {
    font-family: 'Lora', serif;
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 24px;
}
.training-section__rule {
    width: 48px;
    height: 3px;
    background: var(--color-sunrise-gold);
    margin-bottom: 28px;
    border: none;
}
.training-section__body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.72;
    margin: 0 0 16px;
}
.training-section__features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.training-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
}
.training-feature__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-sunrise-gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── Contact card ────────────────────────────────────────────────── */
.training-contact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 40px;
}
.training-contact-card__label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sunrise-gold);
    margin-bottom: 16px;
}
.training-contact-card__title {
    font-family: 'Lora', serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}
.training-contact-card__body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
    margin: 0 0 28px;
}
.training-contact-card__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.training-contact-item { display: flex; flex-direction: column; gap: 4px; }
.training-contact-item__label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.training-contact-item__value {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}
.training-contact-item__value:hover { color: var(--color-sunrise-gold); }
.training-contact-card__btn {
    display: block;
    background: var(--color-sunrise-gold);
    color: var(--color-deep-forest);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
}
.training-contact-card__btn:hover { background: #c07a14; transform: translateY(-2px); }

/* ── Responsive — Training Section ──────────────────────────────── */
@media (max-width: 1024px) {
    .training-section__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
    .training-contact-card { padding: 28px 24px; }
}