/* ==========================================================================
   GLOBOCONSULT DESIGN SYSTEM & CUSTOM STYLES
   ========================================================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette */
    --navy: #0C1220;
    --navy-light: #162035;
    --gold: #B89665;
    --gold-light: #D9C3A5;
    --gold-dark: #8C7355;
    --gold-btn: #8B7535;
    --bg-light: #FAF9F6;
    --bg-dark: #070B14;
    
    /* Text Colors */
    --text-dark: #111622;
    --text-mid: #4A5262;
    --text-muted: #7E8B9F;
    --text-light: #FFFFFF;
    --text-light-muted: rgba(255, 255, 255, 0.6);
    
    /* Borders & Decorators */
    --border-light: rgba(12, 18, 32, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    --card-bg-dark: rgba(255, 255, 255, 0.02);
    --card-border-dark: rgba(255, 255, 255, 0.06);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4, .serif-font {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.gold-highlight {
    color: var(--gold);
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem; /* 11px */
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    display: block;
}

.lead-paragraph {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    text-wrap: pretty;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-padding {
    padding: 8rem 0;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1.1rem 2.2rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.btn-solid-dark {
    background-color: var(--navy);
    color: var(--text-light);
    border: 1px solid var(--navy);
}

.btn-solid-dark:hover {
    background-color: var(--gold-btn);
    border-color: var(--gold-btn);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--navy);
    border: 1px solid rgba(12, 18, 32, 0.25);
}

.btn-outline-dark:hover {
    border-color: var(--navy);
    background-color: rgba(12, 18, 32, 0.02);
    transform: translateY(-2px);
}

.btn-solid-gold {
    background-color: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
    font-weight: 600;
}

.btn-solid-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

/* --- Header / Navigation --- */
.site-header {
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.logo-svg {
    width: auto;
    height: 2.75rem;
}

.logo-circle {
    fill: none;
    stroke: var(--navy);
    stroke-width: 1.5;
}

.logo-lines {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-mid);
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--navy);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    background: none;
    border: none;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.lang-selector:hover {
    color: var(--navy);
}

.lang-selector svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.lang-option {
    transition: var(--transition-fast);
    color: inherit;
    text-decoration: none;
}

.lang-option:hover {
    color: var(--navy);
}

.lang-option.active {
    color: var(--navy);
    cursor: default;
}

.lang-separator {
    color: rgba(12, 18, 32, 0.2);
    font-weight: 400;
    user-select: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--navy);
    stroke-width: 2;
}

/* --- Hero Section --- */
.hero-section {
    padding: 5rem 0 7rem;
    text-align: center;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 2rem;
    text-wrap: balance;
}

.hero-subheading {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-cta-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid var(--gold);
    transition: var(--transition-smooth);
    margin-bottom: 4.5rem;
}

.hero-cta-link svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
    transition: var(--transition-smooth);
}

.hero-cta-link:hover {
    color: var(--gold);
    border-bottom-color: var(--navy);
}

.hero-cta-link:hover svg {
    transform: translateX(6px);
    stroke: var(--navy);
}

/* Video / Showcase Container */
.hero-media-wrap {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 80px rgba(12, 18, 32, 0.08);
    aspect-ratio: 16/9;
    background-color: var(--navy);
}

.hero-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
    filter: brightness(0.85) grayscale(0.2);
}

.hero-media-wrap:hover img {
    transform: scale(1.02);
    filter: brightness(0.9) grayscale(0.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: var(--transition-smooth);
}

.video-play-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--navy);
    margin-left: 0.25rem;
    transition: var(--transition-smooth);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1);
    animation: ripple 2s infinite ease-out;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--gold);
}

.video-play-btn:hover svg {
    fill: #FFFFFF;
}

/* Video Card Overlay */
.video-card-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: left;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(12, 18, 32, 0.1);
    z-index: 12;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.hero-media-wrap:hover .video-card-overlay {
    transform: translateY(-5px);
}

.video-card-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.video-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.video-card-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Core Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.values-left {
    position: sticky;
    top: 8rem;
}

.values-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.values-desc {
    margin-bottom: 2rem;
}

/* Accordion Component */
.accordion {
    border-top: 1.5px solid var(--border-light);
}

.accordion-item {
    border-bottom: 1.5px solid var(--border-light);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    cursor: pointer;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition-fast);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.accordion-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold);
    transition: var(--transition-fast);
}

.accordion-icon-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.accordion-state-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    position: relative;
}

.accordion-state-icon::before,
.accordion-state-icon::after {
    content: '';
    position: absolute;
    background-color: var(--navy);
    transition: var(--transition-smooth);
}

/* Horizontal line */
.accordion-state-icon::before {
    width: 0.875rem;
    height: 1.5px;
    top: 50%;
    transform: translateY(-50%);
}

/* Vertical line */
.accordion-state-icon::after {
    width: 1.5px;
    height: 0.875rem;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-state-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-item.active .accordion-state-icon::before {
    transform: translateY(-50%) rotate(180deg);
    background-color: var(--gold);
}

.accordion-item.active .accordion-header {
    color: var(--gold-dark);
}

.accordion-item.active .accordion-icon-wrap {
    color: var(--gold-dark);
    transform: scale(1.15);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
}

.accordion-item.active .accordion-content {
    opacity: 1;
}

.accordion-inner-text {
    padding-bottom: 2rem;
    padding-left: 2.75rem;
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
}

/* --- Upcoming Global Engagements Section --- */
.engagements-section {
    background-color: var(--bg-light);
}

.engagements-card {
    background-color: var(--navy);
    border-radius: 16px;
    padding: 5rem 4.5rem;
    color: var(--text-light);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 18, 32, 0.15);
}

/* Overlapping Circle Wireframe Decorations */
.engagements-card::before {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.engagements-card::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 380px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.engagements-left {
    position: relative;
    z-index: 5;
}

.engagements-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.engagements-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-light-muted);
}

.engagements-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 5;
}

.event-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
    display: grid;
    grid-template-columns: 4.5rem 1fr auto;
    align-items: center;
    gap: 1.75rem;
    transition: var(--transition-smooth);
}

.event-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-day {
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.event-month {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-light-muted);
    margin-top: 0.35rem;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.event-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-light);
}

.event-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-light-muted);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.event-topic-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.event-bullet-icon {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8125rem;
}

.btn-event-details {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-event-details:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
}

.btn-event-details.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-event-details.is-disabled:hover {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    transform: none;
}

/* --- Strategic Impact Section --- */
.impact-section {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.impact-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-align: center;
    color: var(--navy);
    margin-bottom: 4.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.impact-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 18, 32, 0.08);
    aspect-ratio: 1.15/1;
}

.impact-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.impact-image-wrap:hover img {
    transform: scale(1.02);
}

.impact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 18, 32, 0.9) 0%, rgba(12, 18, 32, 0.3) 70%, transparent 100%);
    padding: 2.25rem;
    text-align: left;
}

.impact-tag {
    display: inline-block;
    background-color: var(--gold-btn);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.impact-image-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-wrap: balance;
}

.impact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.impact-content-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.impact-desc-text {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.impact-stats {
    display: flex;
    width: 100%;
    border-top: 1.5px solid var(--border-light);
    border-bottom: 1.5px solid var(--border-light);
    padding: 1.75rem 0;
    margin-bottom: 2.5rem;
}

.impact-stat {
    flex: 1;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.impact-stat:first-child {
    padding-left: 0;
    border-right: 1.5px solid var(--border-light);
}

.impact-stat:last-child {
    padding-right: 0;
}

.impact-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.impact-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.impact-cta {
    background-color: var(--gold-btn);
    border-color: var(--gold-btn);
    font-weight: 600;
}

.impact-cta:hover {
    background-color: var(--navy);
    border-color: var(--navy);
}

.impact-footer {
    display: flex;
    justify-content: center;
    margin-top: 4.5rem;
}

@media (max-width: 992px) {
    .engagements-card {
        grid-template-columns: 1fr;
        padding: 4rem 3rem;
        gap: 3rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .impact-image-wrap {
        max-width: 500px;
        justify-self: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .engagements-card {
        padding: 3rem 1.5rem;
    }

    .engagements-left button {
        width: 100%;
        white-space: normal !important;
    }

    .engagements-section {
        padding: 2rem 0 3rem;
    }

    .engagements-section .eyebrow {
        font-size: 0.875rem;
        letter-spacing: 0.18em;
        margin-bottom: 1rem;
        display: block;
    }
    
    .event-item {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }
    
    .event-date {
        align-items: baseline;
        flex-direction: row;
        gap: 0.5rem;
        grid-column: 1 / span 2;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 0.5rem;
    }
    
    .event-day {
        font-size: 1.5rem;
    }
    
    .event-month {
        margin-top: 0.25rem;
    }
    
    .btn-event-details {
        grid-row: 2;
        grid-column: 2;
    }
}

/* --- Mission & Alignment Section --- */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 7rem;
    align-items: center;
}

.mission-media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 18, 32, 0.06);
    aspect-ratio: 4/5;
    max-width: 480px;
    justify-self: center;
}

.mission-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: var(--transition-smooth);
}

.mission-media:hover img {
    transform: scale(1.025);
    filter: saturate(1);
}

.media-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 18, 32, 0.85) 0%, rgba(12, 18, 32, 0.3) 60%, transparent 100%);
    padding: 2rem 2rem 1.5rem;
    text-align: left;
}

.media-caption-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text-light);
    text-transform: uppercase;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--navy);
}

.mission-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-paragraph {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.mission-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* --- Consultation & Contact Options (Dark Section) --- */
.contact-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 580px;
    gap: 2.5rem;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.contact-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--text-light);
}

.contact-desc {
    color: var(--text-light-muted);
    font-weight: 300;
}

/* Custom Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.form-input {
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 0.5rem 0 0.75rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.form-input:focus {
    border-bottom-color: var(--gold);
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.form-group:focus-within::after {
    width: 100%;
}

.form-submit-btn {
    align-self: center;
    border: none;
    margin-top: 1.5rem;
}

/* Consultation Options Column */
.contact-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 580px;
    gap: 2.5rem;
}

.consultation-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.consultation-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--card-border-dark);
    border-radius: 8px;
    padding: 1.75rem 2.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.consultation-card-left {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.consultation-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gold-light);
    transition: var(--transition-smooth);
}

.consultation-icon-wrap svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.consultation-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.consultation-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.consultation-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-light-muted);
}

.consultation-card-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.consultation-duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.consultation-radio {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.consultation-radio::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--navy);
    transform: scale(0);
    transition: var(--transition-smooth);
}

/* Card States */
.consultation-card:hover {
    border-color: rgba(184, 150, 101, 0.4);
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}

.consultation-card.selected {
    border-color: var(--gold);
    background-color: rgba(184, 150, 101, 0.05);
}

.consultation-card.selected::before {
    opacity: 1;
}

.consultation-card.selected .consultation-card-title {
    color: var(--gold-light);
}

.consultation-card.selected .consultation-icon-wrap {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.consultation-card.selected .consultation-radio {
    border-color: var(--gold);
    background-color: var(--gold);
}

.consultation-card.selected .consultation-radio::after {
    transform: scale(1);
}

/* --- Footer --- */
/* --- Footer --- */
.site-footer {
    background-color: #FFFFFF;
    color: var(--navy);
    padding: 5rem 0 3.5rem;
    border-top: 1px solid var(--border-light);
    --logo-stripe-color: #FFFFFF;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2rem;
    gap: 4rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
}

.footer-left .logo {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.footer-left .logo-stripes {
    stroke: var(--logo-stripe-color);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--gold-btn);
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--navy);
}

.footer-legal-separator {
    color: var(--border-light);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-mid);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact-item span {
    color: var(--text-mid);
}

.footer-contact-item:hover span {
    color: var(--gold-btn);
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
    stroke-width: 1.5;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-muted);
    text-align: center;
}

.footer-dev-link {
    color: var(--gold-btn);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-dev-link:hover {
    color: var(--navy);
}

/* Custom Alert / Toast Success Dialog */
.form-success-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--navy-light);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.35);
    z-index: 200;
    display: flex;
    gap: 1.25rem;
    max-width: 420px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--navy);
    flex-shrink: 0;
}

.toast-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toast-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-light);
}

.toast-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-light-muted);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    
    .section-padding {
        padding: 6rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .values-left {
        position: static;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .mission-media {
        max-width: 420px;
    }
    
    .contact-grid {
        gap: 4rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.25rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 4.5rem;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active {
        max-height: 250px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(12, 18, 32, 0.03);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
    }
    
    .video-card-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* --- Sticky Bottom Bar --- */
.sticky-bottom-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: calc(100% - 4rem);
    max-width: 1100px;
    background-color: rgba(243, 244, 247, 0.85); /* Matches off-white/light gray */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 40px rgba(12, 18, 32, 0.08);
    z-index: 95;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    --logo-stripe-color: #F3F4F7;
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sticky-bar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sticky-bar-logo {
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
}

.sticky-bar-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sticky-bar-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--navy);
    text-transform: uppercase;
}

.sticky-bar-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--navy);
    text-transform: uppercase;
}

.sticky-bar-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background-color: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
}

.sticky-bar-btn:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

/* Scroll Hide States */
.sticky-bottom-bar.hidden {
    transform: translateX(-50%) translateY(150%);
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .sticky-bottom-bar {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 0.75rem 1rem;
    }
    
    .sticky-bar-avatar {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .sticky-bar-name {
        font-size: 0.8125rem;
    }
    
    .sticky-bar-title {
        font-size: 0.6875rem;
    }
    
    .sticky-bar-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.6875rem;
    }
}

/* ==========================================================================
   CASE STUDIES PAGE SPECIFIC STYLES
   ========================================================================== */
.cases-hero-section {
    padding: 7rem 0 3rem;
    background-color: var(--bg-light);
}

.cases-hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.cases-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.25rem;
    display: block;
}

.cases-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cases-hero-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 680px;
}

/* Thin Divider */
.cases-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 1.5rem 0 4.5rem;
}

/* Featured Case Card */
.featured-case-card {
    background: transparent;
    margin-bottom: 6.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.featured-case-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(12, 18, 32, 0.08);
    aspect-ratio: 2.15/1;
    background-color: var(--navy);
}

.featured-case-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
    filter: brightness(0.9);
}

.featured-case-media:hover img {
    transform: scale(1.025);
}

.featured-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--navy);
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.featured-case-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
}

.featured-case-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.25;
    color: var(--navy);
    font-weight: 400;
}

.case-services-list {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.4;
}

.featured-case-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 800px;
}

/* Case Studies Grid Layout */
.cases-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem 4rem;
    margin-bottom: 7.5rem;
}

.case-grid-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-grid-media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(12, 18, 32, 0.06);
    aspect-ratio: 1.45/1;
    background-color: var(--navy);
}

.case-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
    filter: brightness(0.85);
}

.case-grid-card:hover .case-grid-media img {
    transform: scale(1.02);
    filter: brightness(0.9);
}

.case-grid-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.case-grid-title {
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--navy);
    font-weight: 400;
}

.case-grid-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.65;
}

/* Bespoke Consultation CTA Section */
.bespoke-cta-section {
    background-color: #ECEAE4; /* Premium warm beige tint matching design */
    padding: 7.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.bespoke-cta-content {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.bespoke-cta-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.bespoke-cta-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    color: var(--navy);
    font-weight: 400;
}

.bespoke-cta-desc {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.bespoke-cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-solid-black {
    background-color: var(--navy);
    color: var(--text-light);
    border: 1px solid var(--navy);
}

.btn-solid-black:hover {
    background-color: var(--gold-btn);
    border-color: var(--gold-btn);
    transform: translateY(-2px);
}

.btn-outline-beige {
    background-color: transparent;
    color: var(--navy);
    border: 1px solid rgba(12, 18, 32, 0.25);
}

.btn-outline-beige:hover {
    border-color: var(--navy);
    background-color: rgba(12, 18, 32, 0.04);
    transform: translateY(-2px);
}

/* Disclosures Footer Grid */
.disclosures-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.footer-desc-text {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
    font-weight: 300;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list a,
.footer-links-list span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-mid);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 400;
}

.footer-links-list a:hover {
    color: var(--gold-btn);
}

.footer-office-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 400;
}

/* Case Studies Responsive Media Queries */
@media (max-width: 992px) {
    .cases-layout-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    
    .featured-case-media {
        aspect-ratio: 1.65/1;
    }
    
    .disclosures-footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 576px) {
    .featured-case-media {
        aspect-ratio: 1.35/1;
    }

    .case-grid-media {
        aspect-ratio: 1.35/1;
    }

    .bespoke-cta-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .bespoke-cta-buttons .btn {
        width: 100%;
    }

    /* Reduce section padding on small phones */
    .section-padding {
        padding: 4rem 0;
    }

    /* Hero — less wasted space */
    .hero-section {
        padding: 3rem 0 4rem;
    }

    .hero-cta-link {
        margin-bottom: 2.5rem;
    }

    /* Hide Shirley's photo on mobile — saves space, text reads fine alone */
    .mission-media {
        display: none;
    }

    /* Contact gap too large on phones */
    .contact-grid {
        gap: 2.5rem;
    }

    /* Toast — full width on mobile so it doesn't overflow */
    .form-success-toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
        bottom: 5.5rem; /* above sticky bar */
    }

    /* Sticky bar logo — preserve aspect ratio */
    .sticky-bar-logo {
        width: auto;
        height: 2.25rem;
    }

    /* Container padding tighter on phones */
    .container {
        padding: 0 1.25rem;
    }
}


