:root {
    --font-sans: 'Inter', sans-serif;
    --gold: #c79236;
    --gold-light: #e1bb63;
    --charcoal: #211811;
    --charcoal-2: #2f2219;
    --earth: #6b4a31;
    --earth-soft: #9a734d;
    --sage: #4f7a5d;
    --bg: #f6efe4;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.14);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(20, 16, 10, 0.12);
    --shadow-soft: 0 14px 30px rgba(20, 16, 10, 0.08);
    --text-dark: #1d1d1b;
    --text-soft: rgba(255, 255, 255, 0.78);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(199, 146, 54, 0.14), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(79, 122, 93, 0.12), transparent 24%),
        linear-gradient(180deg, #fff9ef 0%, #f6efe4 48%, #eee4d5 100%);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.5;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.section-title,
.display-3,
.display-5 {
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.letter-space {
    letter-spacing: 0.18em;
}

.text-soft {
    color: rgba(245, 242, 235, 0.78) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-charcoal {
    background: linear-gradient(180deg, #241a14 0%, #17110d 100%) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.glass-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.btn {
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    border: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #1c160f;
    box-shadow: 0 12px 25px rgba(199, 146, 54, 0.3);
}

.btn-gold:hover,
.btn-gold:focus {
    color: #1c160f;
    box-shadow: 0 14px 28px rgba(199, 146, 54, 0.35);
}

.btn-soft {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-soft:hover,
.btn-soft:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.section-pad {
    padding: 96px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(247, 243, 235, 0.92));
}

.section-charcoal {
    position: relative;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(26, 19, 14, 0.96), rgba(35, 25, 18, 0.96)),
        radial-gradient(circle at top right, rgba(199, 146, 54, 0.14), transparent 28%);
}

.section-heading {
    max-width: 880px;
    margin: 0 auto;
}

.section-heading-dark .section-title,
.section-heading-dark .section-lead {
    color: #fff;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(199, 146, 54, 0.12);
}

.section-title {
    margin-top: 1rem;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 0.94;
    color: var(--charcoal);
}

.section-lead {
    margin-top: 1rem;
    max-width: 760px;
    color: rgba(47, 41, 32, 0.78);
    font-size: 1.05rem;
}

.section-copy {
    font-size: 1.03rem;
    line-height: 1.9;
    color: rgba(35, 30, 23, 0.82);
}

.site-header {
    z-index: 1030;
}

.topbar {
    background: rgba(28, 20, 15, 0.94);
    color: var(--text-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-premium {
    padding: 0.95rem 0;
    background: linear-gradient(180deg, rgba(34, 24, 17, 0.94), rgba(21, 16, 12, 0.86));
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    color: #fff;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(199, 146, 54, 0.96), rgba(225, 187, 99, 0.88));
    color: #19130d;
    box-shadow: 0 10px 20px rgba(199, 146, 54, 0.25);
    flex: 0 0 auto;
}

.brand-mark i {
    font-size: 1.3rem;
}

.brand-name {
    font-size: 1.12rem;
    line-height: 1.05;
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.02em;
}

.nav-premium .nav-link {
    color: rgba(255, 255, 255, 0.78);
    padding: 0.8rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
}

.nav-premium .nav-link:hover,
.nav-premium .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-link {
    display: block;
    padding: 0.9rem 1rem;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-link.active,
.mobile-link:hover {
    color: #fff;
    background: rgba(199, 146, 54, 0.16);
    border-color: rgba(199, 146, 54, 0.25);
}

.hero-section {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(110deg, rgba(22, 18, 14, 0.94) 0%, rgba(43, 30, 20, 0.9) 48%, rgba(59, 42, 28, 0.76) 100%),
        url('https://images.unsplash.com/photo-1549880338-65ddcdfd017b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(199, 146, 54, 0.16), transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(79, 122, 93, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.28));
}

.hero-title {
    font-size: clamp(3.2rem, 7vw, 5.9rem);
    line-height: 0.92;
    text-wrap: balance;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero-lead {
    font-size: 1.12rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.82);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-stats .stat-card {
    min-height: 132px;
}

.stat-card {
    padding: 1.4rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
}

.stat-card-dark {
    color: #fff;
}

.stat-value {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: var(--font-sans);
    line-height: 1;
}

.stat-label {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
}

.hero-visual {
    position: relative;
    min-height: 640px;
    padding: 1rem;
    overflow: hidden;
}

.hero-visual-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 26px;
}

.hero-floating-card {
    position: absolute;
    max-width: 240px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    color: #fff;
    background: rgba(15, 13, 11, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    animation: floaty 7s ease-in-out infinite;
}

.floating-card-1 {
    top: 22px;
    left: 18px;
}

.floating-card-2 {
    bottom: 115px;
    left: 20px;
    animation-delay: 1.2s;
}

.floating-card-3 {
    right: 16px;
    bottom: 28px;
    animation-delay: 2.2s;
}

.floating-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: 28px;
    height: 48px;
    margin-left: -14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
}

.scroll-indicator span {
    position: absolute;
    left: 50%;
    top: 9px;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: scroll-bounce 1.8s infinite;
}

.feature-card,
.program-card,
.value-card,
.partner-card,
.testimonial-card,
.gallery-card,
.timeline-card,
.partner-stat,
.contact-info-card,
.metric-card {
    position: relative;
    overflow: hidden;
}

.feature-card,
.value-card,
.program-card,
.timeline-card,
.partner-stat,
.contact-info-card,
.mission-card,
.gallery-card,
.testimonial-card,
.metric-card {
    padding: 1.5rem;
    color: #fff;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.value-card:hover,
.program-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.timeline-card:hover,
.contact-info-card:hover,
.partner-card:hover,
.partner-stat:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 146, 54, 0.24);
    box-shadow: 0 22px 46px rgba(14, 12, 10, 0.18);
}

.feature-icon,
.program-icon,
.value-icon,
.mission-icon,
.contact-info-card i,
.partner-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1rem;
    font-size: 1.45rem;
    color: #1a140d;
    background: linear-gradient(135deg, rgba(199, 146, 54, 0.96), rgba(225, 187, 99, 0.84));
    box-shadow: 0 12px 22px rgba(199, 146, 54, 0.18);
}

.feature-card h5,
.program-card h4,
.value-card h5,
.timeline-card h5,
.mission-card h5,
.partner-stat strong,
.contact-info-card h5,
.testimonial-card h5,
.gallery-card h5,
.metric-card h6,
.partner-card span {
    color: #fff;
}

.feature-card p,
.program-card p,
.value-card p,
.timeline-card p,
.contact-info-card p,
.gallery-card p,
.testimonial-card p,
.mission-card p,
.partner-stat span {
    color: rgba(255, 255, 255, 0.74);
}

.feature-card h5,
.program-card h4,
.value-card h5,
.timeline-card h5,
.testimonial-card h5,
.gallery-card h5,
.mission-card h5,
.partner-stat strong,
.contact-info-card h5 {
    font-size: 1.5rem;
    line-height: 1.08;
}

.mission-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.collage-grid .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-item-1 {
    grid-column: span 7;
    grid-row: span 2;
}

.collage-item-2 {
    grid-column: span 5;
}

.collage-item-3 {
    grid-column: span 5;
}

.collage-grid-compact .collage-item-1 {
    grid-column: span 8;
}

.collage-grid-compact .collage-item-2 {
    grid-column: span 4;
}

.collage-grid-compact .collage-item-3 {
    grid-column: span 12;
}

.timeline-card {
    min-height: 100%;
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: rgba(199, 146, 54, 0.16);
    color: var(--gold-light);
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-programs {
    gap: 0.6rem;
}

.nav-programs .nav-link {
    color: var(--charcoal);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(25, 20, 13, 0.08);
    border-radius: 8px;
    padding: 0.62rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-programs .nav-link.active {
    color: #1a140d;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.program-card,
.value-card,
.testimonial-card,
.gallery-card,
.partner-card,
.partner-stat,
.contact-info-card,
.metric-card,
.timeline-card {
    background: linear-gradient(180deg, rgba(31, 23, 18, 0.88), rgba(24, 18, 14, 0.76));
}

.program-card::after,
.value-card::after,
.gallery-card::after,
.testimonial-card::after,
.contact-info-card::after,
.partner-card::after,
.partner-stat::after,
.timeline-card::after {
    content: '';
    position: absolute;
    inset: auto -30% -48% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(199, 146, 54, 0.16), transparent 64%);
    pointer-events: none;
}

.approach-list {
    display: grid;
    gap: 0.85rem;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-item i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #1a140d;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.approach-item-card {
    background: rgba(255, 255, 255, 0.05);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.metrics-grid-single {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.circular-progress {
    --value: 0;
    width: 132px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto;
    background: radial-gradient(farthest-side, rgba(255, 255, 255, 0.06) 82%, transparent 83% 100%), conic-gradient(var(--gold) calc(var(--value) * 1%), rgba(255, 255, 255, 0.12) 0);
}

.circular-progress span {
    width: 104px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(20, 16, 12, 0.9);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
}

.info-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
}

.info-banner strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #fff;
    font-size: 1.1rem;
}

.partner-card {
    min-height: 160px;
    display: grid;
    place-items: center;
    gap: 0.8rem;
}

.partner-card i {
    margin-bottom: 0;
}

.partner-card span {
    font-weight: 800;
    text-align: center;
}

.partner-swiper {
    padding: 0.4rem 0.3rem 0.6rem;
}

.partner-swiper .swiper-slide {
    height: auto;
}

.partner-swiper .partner-card {
    min-height: 190px;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(124, 77, 49, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 237, 0.94)),
        radial-gradient(circle at top right, rgba(199, 144, 103, 0.1), transparent 58%);
    box-shadow: 0 10px 24px rgba(72, 44, 30, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-swiper .partner-card i {
    width: 62px;
    height: 62px;
    margin-bottom: 0.25rem;
    border-radius: 14px;
    font-size: 1.35rem;
    color: #6b422b;
    background: linear-gradient(135deg, rgba(199, 144, 103, 0.24), rgba(199, 144, 103, 0.14));
    border: 1px solid rgba(124, 77, 49, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.partner-swiper .partner-card span {
    color: #3e291d !important;
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.35;
}

.partner-swiper .partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 77, 49, 0.32);
    box-shadow: 0 16px 30px rgba(72, 44, 30, 0.14);
}

.partner-stat {
    min-height: 170px;
    display: grid;
    place-items: center;
    gap: 0.4rem;
}

.partner-stat strong {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.testimonial-card {
    min-height: 100%;
}

.testimonial-avatar {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(199, 146, 54, 0.48);
}

.rating i {
    margin-right: 0.15rem;
}

.gallery-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.gallery-filter-btn {
    border: 1px solid rgba(35, 30, 22, 0.12);
    border-radius: 999px;
    padding: 0.68rem 1rem;
    background: rgba(255, 255, 255, 0.86);
    color: var(--charcoal);
    font-weight: 800;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    color: #1a140d;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.gallery-card {
    padding: 0;
}

.gallery-media {
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.gallery-media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-media img {
    transform: scale(1.05);
}

.gallery-open {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #1a140d;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.gallery-tag {
    display: inline-flex;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    background: rgba(199, 146, 54, 0.12);
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-info-card i {
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-form .form-control,
.newsletter-form .form-control,
.accordion-button,
.accordion-body {
    border-radius: 18px;
}

.contact-form .form-control,
.contact-form textarea.form-control,
.contact-form select.form-control,
.newsletter-form .form-control {
    border-radius: 6px !important;
}

.contact-form .form-control,
.newsletter-form .form-control,
.accordion-button {
    border: 1px solid rgba(27, 20, 12, 0.12);
}

.contact-form .form-control,
.newsletter-form .form-control,
.form-label {
    font-family: var(--font-sans);
}

.contact-form .form-control,
.newsletter-form .form-control {
    padding: 0.62rem 0.78rem;
    font-size: 0.92rem;
    line-height: 1.35;
}

.contact-form .form-label {
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    color: #fff;
}

.contact-form .form-control {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form .form-control:focus {
    border-color: rgba(199, 146, 54, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(199, 146, 54, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.contact-form .invalid-feedback {
    color: #ffd8d8;
}

.faq-accordion .accordion-item {
    margin-bottom: 0.9rem;
}

.faq-accordion .accordion-button {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-weight: 800;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(199, 146, 54, 0.16);
}

.faq-accordion .accordion-button::after {
    filter: invert(1);
}

.faq-accordion .accordion-body {
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.76);
}

.who-we-serve .list-group-item {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.08);
}

.breadcrumb-premium .breadcrumb-item,
.breadcrumb-premium a {
    color: rgba(255, 255, 255, 0.82);
}

.breadcrumb-premium .breadcrumb-item.active {
    color: var(--gold-light);
}

.page-header {
    color: #fff;
    background:
        linear-gradient(110deg, rgba(18, 16, 13, 0.94) 0%, rgba(34, 24, 15, 0.86) 100%),
        url('https://images.unsplash.com/photo-1489424731084-a5d8b219a5bb?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(199, 146, 54, 0.08), rgba(0, 0, 0, 0.22));
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orb-1 {
    top: 12%;
    right: 7%;
    width: 180px;
    height: 180px;
    background: rgba(199, 146, 54, 0.15);
}

.hero-orb-2 {
    left: 8%;
    bottom: 12%;
    width: 120px;
    height: 120px;
    background: rgba(107, 143, 113, 0.12);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 22px;
    fill: #12100f;
}

.contact-form textarea.form-control {
    min-height: 130px;
}

.contact-form .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

.site-footer {
    color: #fff;
    background: linear-gradient(180deg, #12100f 0%, #1b1714 100%);
}

.footer-title {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.3rem;
}

.footer-links a {
    display: inline-flex;
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.social-pill {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-pill:hover {
    color: #1a140d;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px !important;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(199, 146, 54, 0.15);
}

.newsletter-form .btn {
    border-radius: 8px !important;
}

.site-footer .footer-contact-link {
    color: rgba(255, 244, 234, 0.98);
    text-decoration: none;
    word-break: break-word;
}

.site-footer .footer-contact-link:hover,
.site-footer .footer-contact-link:focus {
    color: #ffffff;
    text-decoration: underline;
}

.map-frame {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.map-frame iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.back-to-top,
.whatsapp-float {
    position: fixed;
    right: 22px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0;
    z-index: 1040;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.back-to-top {
    bottom: 92px;
    opacity: 0;
    visibility: hidden;
    color: #1a140d;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float {
    bottom: 26px;
    color: #fff;
    background: #25d366;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(199, 146, 54, 0.12), transparent 35%), #110f0d;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

body.is-ready .site-preloader {
    opacity: 0;
    visibility: hidden;
}

.preloader-card {
    display: grid;
    place-items: center;
    gap: 0.8rem;
    color: #fff;
}

.preloader-mark {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: #1a140d;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 16px 30px rgba(199, 146, 54, 0.28);
    animation: pulse 1.8s infinite;
}

.gallery-lightbox .modal-content {
    box-shadow: none;
}

.lightbox-caption {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.offcanvas {
    max-width: 360px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(12px); }
    60% { transform: translateX(-50%) translateY(6px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 78px 0;
    }

    .hero-section {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-visual-image img {
        min-height: 420px;
    }

    .floating-card-2 {
        bottom: 82px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .collage-grid,
    .collage-grid-compact {
        grid-template-columns: 1fr 1fr;
    }

    .collage-item-1,
    .collage-item-2,
    .collage-item-3,
    .collage-grid-compact .collage-item-1,
    .collage-grid-compact .collage-item-2,
    .collage-grid-compact .collage-item-3 {
        grid-column: span 1;
        grid-row: auto;
    }

    .hero-title {
        font-size: clamp(2.8rem, 11vw, 4.4rem);
    }
}

@media (max-width: 575.98px) {
    .section-pad {
        padding: 66px 0;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-floating-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .hero-visual {
        padding: 0;
    }

    .hero-visual-image img {
        min-height: 320px;
    }

    .scroll-indicator {
        display: none;
    }

    .back-to-top,
    .whatsapp-float {
        right: 14px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float {
        bottom: 18px;
    }

    .back-to-top {
        bottom: 82px;
    }

    .site-logo-header {
        width: 78px;
        height: 78px;
    }

    .site-logo-footer {
        width: 72px;
        height: 72px;
    }

    .site-logo-preloader {
        width: 120px;
        height: 120px;
    }
}

/* Corporate bright refresh */
:root {
    --font-sans: 'Manrope', sans-serif;
    --gold: #a56b45;
    --gold-light: #c79067;
    --charcoal: #2a1b13;
    --charcoal-2: #3b281d;
    --earth: #7c4d31;
    --earth-soft: #b27d5d;
    --sage: #1f6f47;
    --bg: #f9f4ee;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border: rgba(124, 77, 49, 0.18);
    --shadow: 0 20px 50px rgba(57, 34, 24, 0.14);
    --shadow-soft: 0 14px 30px rgba(57, 34, 24, 0.08);
    --text-dark: #2c2018;
}

body {
    background:
        radial-gradient(circle at 8% 0%, rgba(165, 107, 69, 0.11), transparent 30%),
        radial-gradient(circle at 100% 10%, rgba(31, 111, 71, 0.09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fdf9f5 48%, #f5ece3 100%);
}

body::before {
    background-image: linear-gradient(rgba(82, 54, 38, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(82, 54, 38, 0.05) 1px, transparent 1px);
    opacity: 0.35;
}

.topbar {
    background: #503221;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.nav-premium {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(124, 77, 49, 0.15);
    box-shadow: 0 8px 26px rgba(80, 50, 33, 0.1);
}

.navbar-brand,
.nav-premium .nav-link,
.brand-subtitle {
    color: #4e3222 !important;
}

.nav-premium .nav-link:hover,
.nav-premium .nav-link.active {
    color: #7c4d31 !important;
    background: rgba(165, 107, 69, 0.12);
}

.site-logo {
    display: block;
    object-fit: contain;
    object-position: center;
    filter: contrast(1.1) saturate(1.1) brightness(1.04);
}

.site-logo-header {
    width: 110px;
    height: 110px;
    flex: 0 0 auto;
}

.site-logo-footer {
    width: 96px;
    height: 96px;
    flex: 0 0 auto;
}

.site-logo-preloader {
    width: 150px;
    height: 150px;
}

.btn-gold {
    color: #6f442d;
    background: #ffffff;
    border: 1.6px solid #8f5a39;
    box-shadow: 0 8px 18px rgba(124, 77, 49, 0.12);
}

.btn-gold:hover,
.btn-gold:focus {
    color: #ffffff;
    background: #8f5a39;
    border-color: #7b4c31;
    box-shadow: 0 10px 20px rgba(124, 77, 49, 0.2);
}

/* Site-wide button system: rectangular outline finish */
.btn {
    border-radius: 8px !important;
    border-width: 1.6px;
    padding: 0.62rem 1.08rem;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.btn-lg {
    border-radius: 9px !important;
    padding: 0.76rem 1.24rem;
    font-size: 0.98rem;
}

.btn-sm {
    border-radius: 7px !important;
    padding: 0.46rem 0.86rem;
    font-size: 0.84rem;
}

.btn-gold:hover,
.btn-gold:focus-visible {
    background: #8f5a39;
    border-color: #6f442d;
    box-shadow: 0 10px 20px rgba(124, 77, 49, 0.2);
}

.btn-soft {
    border: 1.6px solid rgba(255, 255, 255, 0.58);
    background: transparent;
    color: #ffffff;
}

.btn-soft:hover,
.btn-soft:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.86);
    color: #ffffff;
}

.btn-outline-light {
    border-width: 1.6px;
    color: #ffffff;
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    color: #2e1f17;
    background: #ffffff;
    border-color: #ffffff;
}

.btn-link {
    border: 0 !important;
    padding: 0.2rem 0.05rem;
    border-radius: 0 !important;
}

.hero-section {
    min-height: clamp(560px, 76vh, 720px);
    background:
        linear-gradient(110deg, rgba(58, 36, 25, 0.88) 0%, rgba(92, 57, 38, 0.82) 45%, rgba(34, 95, 62, 0.72) 100%),
        url('https://images.unsplash.com/photo-1549880338-65ddcdfd017b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(199, 144, 103, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.2));
}

.section-soft {
    background: linear-gradient(180deg, #fdf8f3, #f8efe5);
}

.section-charcoal {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(54, 34, 24, 0.95), rgba(67, 42, 29, 0.95)),
        radial-gradient(circle at top right, rgba(31, 111, 71, 0.2), transparent 28%);
}

.program-card,
.value-card,
.testimonial-card,
.gallery-card,
.partner-card,
.partner-stat,
.contact-info-card,
.metric-card,
.timeline-card,
.feature-card,
.mission-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.9));
    border-color: rgba(124, 77, 49, 0.12);
    color: #4e3222;
}

.feature-card h5,
.program-card h4,
.value-card h5,
.timeline-card h5,
.mission-card h5,
.partner-stat strong,
.contact-info-card h5,
.testimonial-card h5,
.gallery-card h5,
.metric-card h6,
.partner-card span,
.feature-card p,
.program-card p,
.value-card p,
.timeline-card p,
.contact-info-card p,
.gallery-card p,
.testimonial-card p,
.mission-card p,
.partner-stat span {
    color: #4e3222 !important;
}

.section-heading-dark .section-title,
.section-heading-dark .section-lead,
.info-banner strong,
.info-banner p,
.who-we-serve .list-group-item {
    color: #ffffff !important;
}

.contact-form .form-label {
    color: #4e3222;
}

.contact-form .form-control {
    color: #4e3222;
    background: #ffffff;
    border-color: rgba(124, 77, 49, 0.15);
}

.contact-form .form-control::placeholder {
    color: rgba(78, 50, 34, 0.52);
}

.contact-form .form-control:focus,
.newsletter-form .form-control:focus {
    border-color: rgba(124, 77, 49, 0.45);
    box-shadow: 0 0 0 0.25rem rgba(124, 77, 49, 0.12);
}

.site-footer {
    background: linear-gradient(180deg, #392419 0%, #2d1c14 100%);
}

.footer-wave svg {
    fill: #392419;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -2px;
}

/* Corporate polish: compact menu + refined sections */
.site-header {
    position: relative;
}

.topbar {
    padding: 0.08rem 0;
    color: rgba(255, 244, 234, 0.98);
    background: #3f2619;
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.topbar .text-soft,
.topbar small,
.topbar span,
.topbar a {
    color: rgba(255, 244, 234, 0.96) !important;
}

.topbar .text-gold {
    color: #ffd39f !important;
}

.topbar-mobile {
    background: #3f2619;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.topbar-mobile-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 244, 234, 0.96);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.topbar-mobile-link:hover,
.topbar-mobile-link:focus {
    color: #ffffff;
}

.topbar-social-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 245, 236, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.46);
    transition: all 0.2s ease;
}

.topbar-social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
}

.nav-premium {
    position: sticky;
    top: 0;
    z-index: 1025;
    padding: 0.14rem 0;
    background: rgba(255, 253, 250, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(124, 77, 49, 0.2);
    box-shadow: 0 6px 18px rgba(60, 36, 25, 0.1);
}

.navbar-brand {
    gap: 0.6rem !important;
}

.brand-name {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}

.site-logo-header {
    width: 78px;
    height: 78px;
}

.hero-section .py-5.py-lg-6 {
    padding-top: 2.6rem !important;
    padding-bottom: 2.6rem !important;
}

.hero-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.hero-lead {
    font-size: 0.98rem;
    line-height: 1.72;
}

.hero-badge {
    font-size: 0.82rem;
    padding: 0.45rem 0.82rem;
}

.hero-visual {
    min-height: 500px;
}

.hero-visual-image img {
    min-height: 390px;
}

.hero-cta-row {
    width: 100%;
}

.hero-cta-row .btn {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.56rem 0.72rem;
    line-height: 1.2;
}

.nav-premium .nav-link {
    position: relative;
    margin: 0 0.1rem;
    padding: 0.54rem 0.82rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-premium .nav-link::after {
    content: '';
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8f5a39, #c89065);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav-premium .nav-link:hover {
    transform: translateY(-1px);
}

.nav-premium .nav-link:hover::after,
.nav-premium .nav-link.active::after {
    transform: scaleX(1);
}

.nav-premium .nav-link.active {
    background: rgba(165, 107, 69, 0.1);
}

.nav-premium .btn.btn-gold.btn-sm {
    padding: 0.5rem 1.05rem;
    font-size: 0.82rem;
    border-radius: 10px !important;
    box-shadow: 0 8px 18px rgba(124, 77, 49, 0.2);
}

.section-pad {
    padding: 84px 0;
}

.section-heading {
    max-width: 900px;
}

.section-title {
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
}

.section-lead {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(54, 36, 26, 0.76);
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 244, 236, 0.97)),
        radial-gradient(circle at 5% 5%, rgba(199, 144, 103, 0.1), transparent 24%);
}

.section-charcoal {
    background:
        linear-gradient(180deg, rgba(52, 33, 23, 0.96), rgba(39, 25, 18, 0.98)),
        radial-gradient(circle at top right, rgba(31, 111, 71, 0.22), transparent 30%);
}

.glass-card {
    border-radius: 20px;
    border: 1px solid rgba(124, 77, 49, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 241, 0.96));
    box-shadow: 0 14px 28px rgba(67, 42, 29, 0.08);
}

.feature-card,
.value-card,
.program-card,
.timeline-card,
.partner-card,
.partner-stat,
.testimonial-card,
.gallery-card,
.contact-info-card,
.metric-card,
.mission-card {
    padding: 1.35rem;
}

.feature-card:hover,
.value-card:hover,
.program-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.timeline-card:hover,
.contact-info-card:hover,
.partner-card:hover,
.partner-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(57, 34, 24, 0.12);
    border-color: rgba(124, 77, 49, 0.28);
}

.feature-icon,
.program-icon,
.value-icon,
.mission-icon,
.contact-info-card i,
.partner-card i {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.25rem;
}

.info-banner {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
}

/* Hero slider: corporate controls and layout */
.hero-slider-shell {
    position: relative;
}

.hero-swiper {
    position: relative;
    padding-bottom: 3.1rem;
    padding-left: 72px;
    padding-right: 72px;
}

.hero-swiper .swiper-slide {
    height: auto;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(24, 19, 15, 0.5);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.hero-nav:hover {
    background: rgba(124, 77, 49, 0.9);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) scale(1.04);
}

.hero-nav-prev {
    left: 12px;
}

.hero-nav-next {
    right: 12px;
}

.hero-nav i {
    font-size: 1.2rem;
}

.hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.65rem !important;
    text-align: center;
    z-index: 3;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b7825d, #e2b18d);
}

@media (max-width: 991.98px) {
    .nav-premium {
        top: 0;
        padding: 0.1rem 0;
    }

    .site-logo-header {
        width: 60px;
        height: 60px;
    }

    .navbar-brand {
        max-width: calc(100% - 64px);
        gap: 0.45rem !important;
    }

    .brand-name {
        font-size: 0.88rem;
        line-height: 1.08;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-subtitle {
        display: block;
        font-size: 0.66rem;
        line-height: 1.15;
        color: #6f4a33 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .navbar-toggler {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid rgba(124, 77, 49, 0.34) !important;
        background: rgba(165, 107, 69, 0.1);
    }

    .navbar-toggler .navbar-toggler-icon {
        width: 1.1em;
        height: 1.1em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2862,40,28,0.98%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .offcanvas {
        max-width: 320px;
        background: linear-gradient(180deg, #3a251b 0%, #2d1c14 100%) !important;
        color: rgba(255, 243, 231, 0.95);
    }

    .offcanvas-header {
        padding: 0.95rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    }

    .offcanvas-title {
        font-size: 0.98rem;
        font-weight: 700;
        color: #fff4ea;
    }

    .offcanvas-body {
        padding: 0.8rem 0.9rem 1rem;
    }

    .mobile-link {
        padding: 0.68rem 0.82rem;
        font-size: 0.9rem;
        font-weight: 650;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: rgba(255, 240, 226, 0.92);
    }

    .mobile-link + .mobile-link {
        margin-top: 0.32rem;
    }

    .mobile-link:hover,
    .mobile-link.active {
        color: #ffffff;
        background: rgba(199, 144, 103, 0.24);
        border-color: rgba(199, 144, 103, 0.5);
    }

    .offcanvas .btn.btn-gold {
        margin-top: 0.75rem !important;
        width: 100%;
        border-radius: 10px !important;
        padding: 0.64rem 0.9rem;
        font-size: 0.9rem;
    }

    .section-pad {
        padding: 74px 0;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.7rem, 6.5vw, 2.45rem);
        line-height: 1.12;
    }

    .hero-lead {
        font-size: 0.93rem;
        line-height: 1.65;
    }

    .hero-cta-row .btn {
        font-size: 0.75rem;
        padding: 0.48rem 0.56rem;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-visual-image img {
        min-height: 300px;
    }

    .hero-nav {
        display: none;
    }

    .hero-swiper {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 2.4rem;
    }
}

@media (max-width: 575.98px) {
    .topbar-mobile .container {
        gap: 0.5rem;
    }

    .topbar-mobile-link {
        font-size: 0.72rem;
    }

    .nav-premium {
        padding: 0.08rem 0;
    }

    .site-logo-header {
        width: 52px;
        height: 52px;
    }

    .brand-name {
        font-size: 0.82rem;
    }

    .brand-subtitle {
        font-size: 0.62rem;
    }

    .hero-cta-row .btn {
        font-size: 0.68rem;
        padding: 0.42rem 0.48rem;
    }

    .site-footer .container {
        padding-top: 1rem !important;
        padding-bottom: 1.4rem !important;
    }

    .footer-brand {
        align-items: flex-start !important;
        gap: 0.8rem !important;
        margin-bottom: 0.7rem !important;
    }

    .site-logo-footer {
        width: 62px;
        height: 62px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }

    .footer-links li {
        margin-bottom: 0.12rem;
    }

    .footer-links a {
        font-size: 0.88rem;
        padding: 0.22rem 0;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.55rem !important;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        width: 100%;
        border-radius: 8px !important;
    }

    .footer-bar {
        margin-top: 1.4rem !important;
        padding-top: 0.95rem !important;
        gap: 0.45rem !important;
        text-align: center;
    }

    .footer-bar .small {
        font-size: 0.76rem;
        line-height: 1.45;
    }
}

@media (max-width: 1399.98px) {
    .hero-swiper {
        padding-left: 54px;
        padding-right: 54px;
    }

    .hero-nav-prev {
        left: 8px;
    }

    .hero-nav-next {
        right: 8px;
    }
}

/* Contrast safety pass: keep text readable on all surfaces */
.section-soft .text-soft,
.section-pad .text-soft,
.glass-card .text-soft,
.program-card .text-soft,
.value-card .text-soft,
.testimonial-card .text-soft,
.gallery-card .text-soft,
.contact-info-card .text-soft,
.partner-card .text-soft,
.partner-stat .text-soft,
.timeline-card .text-soft,
.feature-card .text-soft,
.mission-card .text-soft,
.metric-card .text-soft {
    color: rgba(62, 41, 30, 0.82) !important;
}

.glass-card .text-white,
.section-soft .text-white {
    color: #3d281c !important;
}

.glass-card .accordion-button,
.glass-card .accordion-body {
    color: #3d281c !important;
}

.glass-card .accordion-button {
    background: rgba(255, 255, 255, 0.78) !important;
    border-color: rgba(124, 77, 49, 0.16) !important;
}

.glass-card .accordion-button:not(.collapsed) {
    background: rgba(200, 144, 103, 0.2) !important;
}

.section-charcoal > .container > .section-heading .section-title,
.section-charcoal > .container > .section-heading .section-lead {
    color: #fff !important;
}

.section-charcoal .info-banner .text-soft,
.section-charcoal .info-banner p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.section-charcoal .info-banner {
    background: linear-gradient(180deg, rgba(24, 17, 13, 0.72), rgba(24, 17, 13, 0.58)) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
}

.section-charcoal .info-banner strong,
.section-charcoal .info-banner p {
    color: #ffffff !important;
}

.site-footer .text-soft {
    color: rgba(255, 238, 224, 0.86) !important;
}

/* WCAG-focused contrast enforcement */
body,
p,
li,
span,
small {
    color: #2f2118;
}

.section-lead,
.section-copy,
.stat-label {
    color: #3b281d !important;
}

.text-soft {
    color: rgba(63, 43, 31, 0.84) !important;
}

.section-charcoal,
.section-charcoal p,
.section-charcoal li,
.section-charcoal span,
.section-charcoal .text-soft,
.section-charcoal .section-lead,
.section-charcoal .section-copy {
    color: rgba(255, 255, 255, 0.94) !important;
}

.hero-badge {
    color: #fff !important;
    background: rgba(28, 20, 15, 0.52);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-section .section-eyebrow {
    color: #ffffff !important;
    background: rgba(25, 18, 14, 0.62) !important;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    border-radius: 8px !important;
    padding: 0.48rem 0.72rem;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.gallery-tag {
    color: #5a351f;
    background: rgba(199, 144, 103, 0.26);
}

.nav-premium .nav-link {
    color: #3d281c !important;
}

.nav-premium .nav-link:hover,
.nav-premium .nav-link.active {
    color: #5f3b25 !important;
}

.footer-links a {
    color: rgba(255, 237, 220, 0.94);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
}

.newsletter-form .form-control,
.contact-form .form-control {
    color: #2f2118 !important;
    background: #ffffff !important;
}

.newsletter-form .form-control::placeholder,
.contact-form .form-control::placeholder {
    color: rgba(70, 47, 34, 0.74) !important;
}

.faq-accordion .accordion-button,
.faq-accordion .accordion-body {
    color: #2f2118 !important;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.accordion-button:focus-visible {
    outline: 3px solid #1f6f47;
    outline-offset: 2px;
}

/* Page-by-page heading contrast lock */
.section-heading .section-title,
.section-title {
    color: #2e1f17 !important;
}

.section-heading .section-lead,
.section-lead {
    color: #463124 !important;
}

.section-heading .section-eyebrow,
.section-eyebrow {
    color: #6e4129 !important;
    background: rgba(199, 144, 103, 0.24);
    border: 1px solid rgba(124, 77, 49, 0.2);
}

.section-charcoal .section-title,
.section-charcoal .section-lead,
.section-charcoal .section-eyebrow {
    color: #ffffff !important;
}

.section-charcoal .section-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.glass-card h3,
.glass-card h4,
.glass-card h5,
.glass-card h6 {
    color: #2f2118 !important;
}

.page-header h1,
.page-header .lead,
.page-header .section-eyebrow,
.page-header .breadcrumb-premium .breadcrumb-item,
.page-header .breadcrumb-premium a {
    color: #ffffff !important;
}

.page-header .section-eyebrow {
    border-radius: 8px !important;
    padding: 0.44rem 0.72rem;
}

.glass-card .who-we-serve .list-group-item {
    color: #2f2118 !important;
    border-color: rgba(124, 77, 49, 0.2) !important;
}

.hero-stats .stat-card {
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(20, 14, 11, 0.44), rgba(20, 14, 11, 0.26));
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-stats .stat-value {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.92) !important;
}

.programs-page .stat-card,
.programs-page .stat-card.stat-card-dark {
    background: linear-gradient(180deg, rgba(44, 29, 21, 0.78), rgba(44, 29, 21, 0.62)) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.programs-page .stat-value {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.programs-page .stat-label {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Contact page: compact contact details + readable social icons */
.contact-info-card {
    gap: 0.72rem;
    padding: 0.9rem !important;
}

.contact-info-card i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.02rem;
}

.contact-info-card h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem !important;
    line-height: 1.2;
}

.contact-info-card p {
    font-size: 0.84rem;
    line-height: 1.35;
}

.social-pill {
    width: 36px;
    height: 36px;
    color: #fffaf4 !important;
    background: rgba(124, 77, 49, 0.7);
    border: 1px solid rgba(255, 228, 207, 0.4);
}

.social-pill i {
    font-size: 0.92rem;
}

.social-pill:hover,
.social-pill:focus {
    color: #ffffff !important;
    background: #8f5a39;
    border-color: rgba(255, 236, 220, 0.68);
}
