/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-xl) var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0));
    transition: all var(--transition-slow);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-lg) var(--container-padding);
    border-bottom: 1px solid var(--color-border);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    text-decoration: none;
}

.logo__mark {
    width: 48px;
    height: 48px;
    border: var(--border-width-thick) solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    color: var(--color-gold);
    letter-spacing: var(--tracking-tight);
}

.logo__text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-medium);
    color: var(--color-white);
    letter-spacing: var(--tracking-normal);
    text-transform: uppercase;
}

.logo__text span {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: var(--tracking-wider);
    margin-top: 2px;
}

.logo__image {
    display: block;
    height: auto;
}

/* Navigation Links */
.nav__links {
    display: flex;
    gap: var(--space-4xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: var(--text-base);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    position: relative;
    padding: var(--space-sm) 0;
    transition: color var(--transition-base);
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--color-gold);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

/* Header CTA */
.nav__cta {
    margin-left: var(--space-xl);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav {
        padding: var(--space-xl) var(--container-padding-mobile);
    }
    
    .nav.scrolled {
        padding: var(--space-lg) var(--container-padding-mobile);
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-navy-deep);
        flex-direction: column;
        padding: 6rem var(--space-2xl);
        gap: var(--space-xl);
        transition: right var(--transition-slow);
        border-left: 1px solid var(--color-border);
    }
    
    .nav__links.is-open {
        right: 0;
    }
    
    .nav__links a {
        font-size: var(--text-lg);
        padding: var(--space-md) 0;
    }
    
    .nav__cta {
        display: none;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    body.nav-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: calc(var(--z-fixed) - 1);
    }
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--color-navy-deep);
    border-top: 1px solid var(--color-border);
    padding: var(--space-5xl) 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-5xl);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer__logo-mark {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-gold);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-white);
    letter-spacing: var(--tracking-normal);
    text-transform: uppercase;
}

.footer__logo-image {
    max-height: 50px;
    width: auto;
}

.footer__tagline {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.footer__column {
    padding-top: var(--space-sm);
}

.footer__title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-normal);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

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

.footer__links li {
    margin-bottom: var(--space-md);
}

.footer__links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--text-md);
    transition: color var(--transition-base);
}

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

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: var(--color-text-muted);
    font-size: var(--text-md);
}

.footer__contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact-item a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer__contact-item a:hover {
    color: var(--color-gold);
}

.footer__bottom {
    margin-top: var(--space-4xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: var(--color-text-muted);
    font-size: var(--text-base);
    margin: 0;
}

.footer__copyright a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer__legal {
    display: flex;
    gap: var(--space-2xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--text-base);
    transition: color var(--transition-base);
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-lg);
}

.social-links__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.social-links__item:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}


/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-8xl) var(--container-padding) var(--space-5xl);
    overflow: hidden;
}

.hero--large { min-height: 80vh; }
.hero--half { min-height: 50vh; }
.hero--standard { min-height: 40vh; }

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero__content--narrow { max-width: 700px; }
.hero__content--wide { max-width: 1100px; }

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero__label-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.hero__title {
    font-size: var(--text-hero);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero__subtitle {
    font-size: var(--text-2xl);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: var(--space-4xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero__buttons {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero__stats {
    position: absolute;
    bottom: var(--space-5xl);
    right: var(--container-padding);
    display: flex;
    gap: var(--space-5xl);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
    z-index: 2;
}

.hero__stats--bottom-left {
    right: auto;
    left: var(--container-padding);
}

.hero__stats--below {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-5xl);
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .hero {
        padding: var(--space-8xl) var(--container-padding-mobile) var(--space-5xl);
    }
    
    .hero__stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-4xl);
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--space-2xl);
    }
}


/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    padding: 10rem var(--container-padding) var(--space-6xl);
    background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.page-header__content {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header__label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-header__label-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.page-header__label .label-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.page-header__title {
    font-size: var(--text-page-title);
    max-width: 800px;
}

.page-header__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-top: var(--space-xl);
}

@media (max-width: 1024px) {
    .page-header {
        padding: 8rem var(--container-padding-mobile) var(--space-5xl);
    }
}


/* ==========================================================================
   Two Column Layout
   ========================================================================== */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
}

.two-column--60-40 { grid-template-columns: 1.5fr 1fr; }
.two-column--40-60 { grid-template-columns: 1fr 1.5fr; }
.two-column--reverse { direction: rtl; }
.two-column--reverse > * { direction: ltr; }

.two-column__content {
    font-size: var(--text-xl);
    color: var(--color-text-light);
    line-height: var(--leading-loose);
}

.two-column__content p {
    margin-bottom: var(--space-xl);
}

@media (max-width: 1024px) {
    .two-column,
    .two-column--60-40,
    .two-column--40-60 {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .two-column--reverse {
        direction: ltr;
    }
}


/* ==========================================================================
   Stats Row
   ========================================================================== */

.stats-row {
    display: grid;
    gap: var(--space-2xl);
}

.stats-row--2 { grid-template-columns: repeat(2, 1fr); }
.stats-row--3 { grid-template-columns: repeat(3, 1fr); }
.stats-row--4 { grid-template-columns: repeat(4, 1fr); }

.stat-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: var(--space-3xl);
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--color-border-hover);
    background: var(--color-card-bg-hover);
}

.stat-card--minimal {
    background: transparent;
    border: none;
}

.stat-card--filled {
    background: var(--color-navy-mid);
}

@media (max-width: 768px) {
    .stats-row--2,
    .stats-row--3,
    .stats-row--4 {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Industries Grid
   ========================================================================== */

.industries-grid {
    display: grid;
    gap: 1px;
    background: var(--color-border);
}

.industries-grid--6 { grid-template-columns: repeat(6, 1fr); }
.industries-grid--4 { grid-template-columns: repeat(4, 1fr); }

.industry-item {
    background: var(--color-navy-mid);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy-mid));
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.industry-item:hover::before {
    opacity: 1;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
}

.industry-item__name {
    font-size: var(--text-base);
    letter-spacing: var(--tracking-normal);
    color: var(--color-text-light);
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .industries-grid--6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .industries-grid--6,
    .industries-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .industries-grid--6,
    .industries-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .industry-item {
        padding: 1.5rem 0.75rem;
    }
    
    .industry-item__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .industry-item__name {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .industry-item {
        padding: 1.25rem 0.5rem;
    }
    
    .industry-item__icon {
        width: 32px;
        height: 32px;
    }
}
/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid {
    display: grid;
    gap: var(--space-2xl);
}

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

.service-card__number {
    font-family: var(--font-display);
    font-size: var(--text-7xl);
    color: rgba(201, 169, 98, 0.2);
    line-height: 1;
    margin-bottom: var(--space-xl);
}

.service-card__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.service-card__description {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

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

@media (max-width: 768px) {
    .services-grid--2,
    .services-grid--3 { grid-template-columns: 1fr; }
}


/* ==========================================================================
   Featured Cards
   ========================================================================== */

.featured-section {
    margin-bottom: var(--space-4xl);
    padding-bottom: var(--space-4xl);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

/* Content container - for sections needing full width */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.featured-card {
    background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy-light) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
}

.featured-card__number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(201, 169, 98, 0.15);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.featured-card__title {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.featured-card__description {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* Featured list - two columns with bullets */
.feature-list--two-col {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.feature-list--bullets li {
    color: var(--color-text-light);
    font-size: 0.85rem;
    padding-left: 1rem;
    position: relative;
}

.feature-list--bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Ensure text doesn't wrap in featured cards */
.featured-card .feature-list--two-col li {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .featured-grid { grid-template-columns: 1fr; }
    .feature-list--two-col { grid-template-columns: 1fr; }
    .featured-card .feature-list--two-col li { white-space: normal; }
}


/* ==========================================================================
   Solutions Grid
   ========================================================================== */

.solutions-section {
    margin-top: var(--space-4xl);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.solutions-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.solutions-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.solutions-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.solution-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    stroke: var(--color-gold);
    fill: none;
}

.solution-card__title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.solution-card__description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* Solution list - single column with dashes */
.solution-card .feature-list {
    list-style: none;
}

.solution-card .feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-card .feature-list li:last-child {
    border-bottom: none;
}

.solution-card .feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

@media (max-width: 1200px) {
    .solutions-grid,
    .solutions-grid--cols-3,
    .solutions-grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid,
    .solutions-grid--cols-2,
    .solutions-grid--cols-3,
    .solutions-grid--cols-4 {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Founder/Bio Section
   ========================================================================== */

/* Founder section styles moved to line ~1146 with .founder-grid */


/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: var(--space-8xl) var(--container-padding);
    position: relative;
    overflow: hidden;
}

.cta-section__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section--center {
    text-align: center;
}

.cta-section__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-xl);
}

.cta-section__description {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4xl);
}


/* ==========================================================================
   Contact Split
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-5xl);
}

.contact-grid--reverse {
    grid-template-columns: 1.5fr 1fr;
}

.contact-info {
    margin-bottom: var(--space-3xl);
}

.contact-info__title {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.contact-info__text {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--space-3xl);
}

.contact-details {
    margin-bottom: var(--space-3xl);
}

.contact-info__item {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    align-items: flex-start;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(201, 169, 98, 0.05);
}

.contact-info__icon svg {
    stroke: var(--color-gold);
}

.contact-info__content {
    flex: 1;
}

.contact-info__label {
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.contact-info__value {
    color: var(--color-text-light);
    font-size: var(--text-lg);
}

.contact-info__value a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info__value a:hover {
    color: var(--color-gold);
}

/* Contact Offices Title */
.contact-offices-title {
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

/* Office Cards */
.office-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.office-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.office-card:hover {
    border-color: var(--color-border-hover);
}

.office-card__city {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.office-card__label {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    margin: 0;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy-light) 100%);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: var(--space-4xl);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark), var(--color-gold));
}

.contact-form__header {
    margin-bottom: var(--space-2xl);
}

.contact-form__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
}

.contact-form__subtitle {
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .contact-grid,
    .contact-grid--reverse {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
}

@media (max-width: 768px) {
    .office-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact Form - RG Custom Forms Sterling Styles
   High specificity overrides to ensure proper styling
   ========================================================================== */

/* Reset the base plugin styles */
.contact-form .rgcf-sterling-form .rgcf-form,
.contact-form-wrapper .rgcf-sterling-form .rgcf-form,
.rgcf-sterling-form .rgcf-form {
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: grid;
    gap: 1.5rem;
}

.contact-form .rgcf-sterling-form,
.contact-form-wrapper .rgcf-sterling-form {
    background: transparent;
}

.contact-form .rgcf-sterling-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .rgcf-sterling-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.contact-form .rgcf-sterling-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form .rgcf-sterling-form .form-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.contact-form .rgcf-sterling-form .form-label .required {
    color: var(--color-gold);
}

.contact-form .rgcf-sterling-form .form-input,
.contact-form .rgcf-sterling-form .form-textarea,
.contact-form .rgcf-sterling-form .form-select {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 0;
}

.contact-form .rgcf-sterling-form .form-input:focus,
.contact-form .rgcf-sterling-form .form-textarea:focus,
.contact-form .rgcf-sterling-form .form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(10, 22, 40, 0.8);
}

.contact-form .rgcf-sterling-form .form-input::placeholder,
.contact-form .rgcf-sterling-form .form-textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form .rgcf-sterling-form .form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .rgcf-sterling-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a962' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

.contact-form .rgcf-sterling-form .form-select option {
    background: var(--color-navy-deep);
    color: var(--color-text-light);
}

.contact-form .rgcf-sterling-form .form-submit {
    padding: 1.25rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-navy-deep);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.contact-form .rgcf-sterling-form .form-submit:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
}

/* Success Message */
.contact-form .rgcf-sterling-form .rgcf-success-message {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Loading Spinner */
.contact-form .rgcf-sterling-form .rgcf-loading-overlay {
    background: rgba(10, 22, 40, 0.9);
}

.contact-form .rgcf-sterling-form .rgcf-spinner {
    border-color: rgba(201, 169, 98, 0.2);
    border-top-color: var(--color-gold);
}

.contact-form .rgcf-sterling-form .rgcf-loading-text {
    color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form .rgcf-sterling-form .form-row {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Map Section
   ========================================================================== */

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.map-grid--1-col {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.map-grid--3-col {
    grid-template-columns: repeat(3, 1fr);
}

.map-card {
    background: #0a1628;
    border: 1px solid rgba(201, 169, 98, 0.1);
    overflow: hidden;
}

/* Map visual wrapper */
.map-card__visual {
    width: 100%;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1e3a5f 0%, #162742 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.map-placeholder svg {
    stroke: #c9a962;
    opacity: 0.3;
    width: 80px;
    height: 80px;
}

.map-embed {
    width: 100%;
    height: 250px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card__visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Map card content - support both naming conventions */
.map-card-content,
.map-card__content {
    padding: 1.5rem;
}

.map-card-content h4,
.map-card__content h4 {
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.map-card-content p,
.map-card__content p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c9a962;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.map-link:hover {
    gap: 0.75rem;
}

.map-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.map-link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .map-grid--3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .map-grid,
    .map-grid--3-col {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Founder/Bio Section
   ========================================================================== */

.founder-section {
    padding: 0 2rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy-light) 100%);
    border: 1px solid rgba(201, 169, 98, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.founder-section--reverse .founder-grid {
    grid-template-columns: 1fr 300px;
}

.founder-section--reverse .founder-media {
    order: 2;
}

.founder-media {
    position: relative;
    overflow: visible;
    margin-right: 15px;
    margin-bottom: 15px;
}

.founder-image {
    position: relative;
    width: 100%;
    overflow: visible;
}

.founder-image img,
.founder-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy-mid) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

/* Gold frame - only when --has-frame class is present */
.founder-image--has-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
    z-index: 10;
}

/* Legacy class if needed */
.founder-image-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
    z-index: 10;
}

.founder-initials {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.founder-video {
    width: 100%;
    aspect-ratio: 16/9;
}

.founder-video video,
.founder-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content h3,
.founder-name {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.founder-content .founder-title,
.founder-title {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.founder-content .founder-bio,
.founder-bio,
.founder-text {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

.founder-bio p,
.founder-text p {
    margin-bottom: 1.5rem;
}

.founder-bio p:last-child,
.founder-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .founder-grid,
    .founder-section--reverse .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .founder-media {
        max-width: 250px;
    }
    
    .founder-section--reverse .founder-media {
        order: 0;
    }
}


/* ==========================================================================
   Services Preview Section
   ========================================================================== */

.services-preview-grid {
    display: grid;
    gap: var(--space-xl);
}

.services-preview-grid--2-col {
    grid-template-columns: repeat(2, 1fr);
}

.services-preview-grid--3-col {
    grid-template-columns: repeat(3, 1fr);
}

.services-preview-grid--4-col {
    grid-template-columns: repeat(4, 1fr);
}

.service-preview-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.service-preview-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.service-preview-card__title {
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.service-preview-card__desc {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

.service-preview-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gold);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.service-preview-card__link:hover {
    gap: var(--space-md);
}

@media (max-width: 1024px) {
    .services-preview-grid--3-col,
    .services-preview-grid--4-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-preview-grid--2-col,
    .services-preview-grid--3-col,
    .services-preview-grid--4-col {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section.text-center .cta-content {
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    margin-bottom: var(--space-3xl);
    max-width: 600px;
}

.cta-section.text-center .cta-description {
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   One Column Section
   ========================================================================== */

.one-column-section {
    position: relative;
}

.one-column__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--space-2xl);
}

.one-column__content {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

.one-column__content p {
    margin-bottom: var(--space-xl);
}

.one-column__content p:last-child {
    margin-bottom: 0;
}

.one-column__buttons {
    margin-top: var(--space-3xl);
}


/* ==========================================================================
   Two Columns Section
   ========================================================================== */

.two-columns-grid {
    display: grid;
    gap: var(--space-5xl);
    align-items: center;
}

.two-columns-grid--split-50-50 {
    grid-template-columns: 1fr 1fr;
}

.two-columns-grid--split-60-40 {
    grid-template-columns: 1.5fr 1fr;
}

.two-columns-grid--split-40-60 {
    grid-template-columns: 1fr 1.5fr;
}

.two-columns-grid--content-right .two-columns__content {
    order: 2;
}

.two-columns-grid--content-right .two-columns__media {
    order: 1;
}

.two-columns-grid--align-top {
    align-items: flex-start;
}

.two-columns-grid--align-bottom {
    align-items: flex-end;
}

.two-columns__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--space-2xl);
}

.two-columns__text {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
}

.two-columns__text p {
    margin-bottom: var(--space-xl);
}

.two-columns__buttons {
    margin-top: var(--space-3xl);
}

.two-columns__image {
    width: 100%;
    position: relative;
}

.two-columns__image img {
    width: 100%;
    height: auto;
    display: block;
}

.two-columns__video {
    width: 100%;
}

.two-columns__video video,
.two-columns__video iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.two-columns__richtext {
    padding: var(--space-3xl);
    background: rgba(201, 169, 98, 0.05);
    border-left: 3px solid var(--color-gold);
}

.two-columns__slider {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .two-columns-grid,
    .two-columns-grid--split-50-50,
    .two-columns-grid--split-60-40,
    .two-columns-grid--split-40-60 {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .two-columns-grid--content-right .two-columns__content,
    .two-columns-grid--content-right .two-columns__media {
        order: 0;
    }
}


/* ==========================================================================
   Spacer Component
   ========================================================================== */

.spacer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spacer--sm {
    height: var(--space-3xl);
}

.spacer--md {
    height: var(--space-5xl);
}

.spacer--lg {
    height: calc(var(--space-5xl) * 1.5);
}

.spacer--xl {
    height: calc(var(--space-5xl) * 2);
}

.spacer__divider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
}

.spacer__divider--solid {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.spacer__divider--gradient {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.spacer__divider--gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .spacer--sm,
    .spacer[data-mobile-height="sm"] {
        height: var(--space-2xl);
    }
    
    .spacer--md,
    .spacer[data-mobile-height="md"] {
        height: var(--space-3xl);
    }
    
    .spacer--lg,
    .spacer[data-mobile-height="lg"] {
        height: var(--space-4xl);
    }
    
    .spacer--xl,
    .spacer[data-mobile-height="xl"] {
        height: var(--space-5xl);
    }
}


/* ==========================================================================
   Button Group
   ========================================================================== */

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 480px) {
    .button-group {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ==========================================================================
   Video Embed
   ========================================================================== */

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe,
.video-embed object,
.video-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ==========================================================================
   WYSIWYG Content
   ========================================================================== */

.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4 {
    color: var(--color-white);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
}

.wysiwyg-content h2:first-child,
.wysiwyg-content h3:first-child,
.wysiwyg-content h4:first-child {
    margin-top: 0;
}

.wysiwyg-content p {
    margin-bottom: var(--space-xl);
}

.wysiwyg-content ul,
.wysiwyg-content ol {
    margin-bottom: var(--space-xl);
    padding-left: var(--space-2xl);
}

.wysiwyg-content li {
    margin-bottom: var(--space-sm);
}

.wysiwyg-content a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-base);
}

.wysiwyg-content a:hover {
    color: var(--color-gold-light);
}

.wysiwyg-content blockquote {
    padding: var(--space-2xl);
    background: rgba(201, 169, 98, 0.05);
    border-left: 3px solid var(--color-gold);
    margin: var(--space-2xl) 0;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--color-cream);
}

.wysiwyg-content img {
    max-width: 100%;
    height: auto;
}


/* ==========================================================================
   Section Label (with line)
   ========================================================================== */

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label__line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.section-label__text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
}


/* ==========================================================================
   Intro Section (Two Column)
   ========================================================================== */

.intro-section {
    background: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-navy-mid) 100%);
    position: relative;
}

.intro-section--bordered {
    border-bottom: 1px solid var(--color-border);
}

.intro-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Content Left (default) - content on left, media on right */
.intro-section__grid--content-left {
    grid-template-columns: 1fr 1.5fr;
}

/* Content Right - media on left, content on right */
.intro-section__grid--content-right {
    grid-template-columns: 1.5fr 1fr;
}

.intro-section__grid--content-right .intro-section__content {
    order: 2;
}

.intro-section__grid--content-right .intro-section__media {
    order: 1;
}

/* Column splits */
.intro-section__grid--50-50 {
    grid-template-columns: 1fr 1fr;
}

.intro-section__grid--60-40 {
    grid-template-columns: 1.5fr 1fr;
}

.intro-section__grid--40-60 {
    grid-template-columns: 1fr 1.5fr;
}

.intro-section__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 2rem;
}

.intro-section__title em {
    font-style: italic;
    color: var(--color-gold);
}

.intro-section__text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-section__text p {
    margin-bottom: 1.5rem;
}

.intro-section__text p:last-child {
    margin-bottom: 0;
}

.intro-section__image-container {
    position: relative;
}

.intro-section__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%);
    display: block;
}

.intro-section__image-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    pointer-events: none;
}

.intro-section__video {
    position: relative;
}

.intro-section__video iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

@media (max-width: 1024px) {
    .intro-section__grid,
    .intro-section__grid--content-left,
    .intro-section__grid--content-right,
    .intro-section__grid--50-50,
    .intro-section__grid--60-40,
    .intro-section__grid--40-60 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-section__grid--content-right .intro-section__content,
    .intro-section__grid--content-right .intro-section__media {
        order: unset;
    }
    
    .intro-section__image-frame {
        display: none;
    }
    
    .intro-section__image {
        height: auto;
    }
}


/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
    background: var(--color-navy-deep);
}

.stats-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stats-section__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.stats-section__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.stats-section__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.stat-card--minimal {
    background: transparent;
    border: none;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .stats-section__grid,
    .stats-section__grid--cols-2,
    .stats-section__grid--cols-3,
    .stats-section__grid--cols-4 {
        grid-template-columns: 1fr;
    }
}
