/* 
  SDA Express Premium CSS 
  Design System inspired by Apple.com with Warm Cinematic Brand Colors 
*/

:root {
    /* Color Palette */
    --c-cream: #FAF9F6;
    --c-espresso: #2C1A14;
    --c-espresso-dark: #1A0C08;
    --c-orange: #FF5A00;
    --c-burnt-orange: #C84400;
    --c-gray-light: #F3F3F3;
    --c-gray-mid: #E5E5E5;
    --c-text-main: #1A0C08;
    --c-text-muted: #6B625F;
    --c-text-inverse: #FAF9F6;
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(26, 12, 8, 0.05);
    --shadow-md: 0 12px 32px rgba(26, 12, 8, 0.08);
    --shadow-lg: 0 24px 48px rgba(26, 12, 8, 0.12);
    --shadow-orange: 0 12px 32px rgba(255, 90, 0, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ====================================
   Reset & Base Styles
==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text-main);
    background-color: var(--c-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-espresso-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   Layout & Utility Classes
==================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 120px 0;
}

.section-dark {
    background-color: var(--c-espresso-dark);
    color: var(--c-text-inverse);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--c-text-inverse);
}

.section-light {
    background-color: var(--c-gray-light);
}

.section-accent {
    background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-burnt-orange) 100%);
    color: white;
}
.section-accent h2, .section-accent h3, .section-accent p {
    color: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--c-orange);
    transition: var(--transition-smooth);
}
.view-all-link:hover {
    gap: 12px;
    color: var(--c-burnt-orange);
}

/* ====================================
   Buttons
==================================== */
@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.btn, .cta-button {
    position: relative;
    z-index: 1;
}

.btn::before, .cta-button::before {
    content: '';
    position: absolute;
    inset: -4px; /* Controls the spread of the glow outside the button */
    border-radius: inherit;
    background: conic-gradient(from var(--glow-angle), transparent 0%, var(--c-orange) 30%, var(--c-burnt-orange) 50%, transparent 70%);
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.btn:hover::before, .cta-button:hover::before {
    opacity: 1;
    animation: spinGlow 2s linear infinite;
}

@keyframes spinGlow {
    0% { --glow-angle: 0deg; }
    100% { --glow-angle: 360deg; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--c-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    background-color: var(--c-burnt-orange);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(200, 68, 0, 0.3);
}

.btn-primary-dark {
    background-color: var(--c-espresso-dark);
    color: white;
}
.btn-primary-dark:hover {
    background-color: var(--c-espresso);
    transform: translateY(-2px);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Elegant Sparkle / Ripple on Click */
/* We inject a .sparkle-container via JS to hold the overflow: hidden so we don't clip the button's outer glow */
.sparkle-container {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.sparkle {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: sparkle-burst 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    pointer-events: none;
}

.btn-primary .sparkle {
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
}

.btn-primary-dark .sparkle, .cta-button .sparkle, .grid-item .sparkle {
    background: radial-gradient(circle, rgba(255,140,0,0.8) 0%, rgba(255,140,0,0) 70%);
}

.glass-btn .sparkle {
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
}

/* Discovery pill hover sparkle — drifting dust mote particles */
.pill-sparkle {
    background: radial-gradient(circle, rgba(255, 220, 140, 0.95) 0%, rgba(255, 245, 200, 0.4) 50%, transparent 100%);
    animation: dust-drift var(--dust-dur, 1.2s) cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
    /* drift direction set inline from JS via --dx and --dy */
    border-radius: 50%;
    opacity: 0;
}

@keyframes dust-drift {
    0% {
        transform: translate(-50%, -50%) translate(0px, 0px) scale(1);
        opacity: 0.9;
    }
    40% {
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) translate(var(--dx, 0px), var(--dy, -30px)) scale(0.2);
        opacity: 0;
    }
}

@keyframes sparkle-burst {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* ====================================
   Header / Navigation
==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(250, 249, 246, 0.85); /* Cream with opacity for glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 26, 20, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(250, 249, 246, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-espresso-dark);
    letter-spacing: -0.02em;
}

.brand-img {
    height: 48px; /* Fixed height for header */
    width: auto;
    object-fit: contain;
}

/* Footer Image Specific Styling */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.brand-img-footer {
    height: 40px; /* Slightly smaller for the footer alongside text */
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-text-main);
    opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--c-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-espresso-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.icon-btn:hover {
    color: var(--c-orange);
}

.cta-button {
    background-color: var(--c-espresso-dark);
    color: var(--c-cream);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.cta-button:hover {
    background-color: var(--c-orange);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--c-espresso-dark);
    cursor: pointer;
}

/* ====================================
   Hero Section
==================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
    background-color: var(--c-espresso-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(200, 68, 0, 0.4), transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 90, 0, 0.2), transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    color: var(--c-orange);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--c-text-inverse);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(250, 249, 246, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

/* Quick Discovery */
.quick-discovery {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 40px;
}

.pill-scroller {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 20px 5%;
    scrollbar-width: none; /* Firefox */
    justify-content: center;
    flex-wrap: wrap; /* Added to let pills wrap responsively */
}
.pill-scroller::-webkit-scrollbar {
    display: none;
}

.discovery-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}
.discovery-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ====================================
   Community Near Me
==================================== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.city-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    background: var(--c-espresso);
}

.city-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-card:hover .city-image {
    transform: scale(1.05);
}

.city-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 2;
}

.city-content h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.city-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   Featured Directory Cards
==================================== */
.premium-card-scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 40px 16px 60px;
    margin: -20px -16px -40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    /* Padding expansion allows box-shadow to show without clipping — no mask needed */
}

.premium-card-scroller::-webkit-scrollbar {
    display: none;
}

.resource-card {
    min-width: 320px;
    flex: 0 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-align: start;
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-12px);
    animation: shadow-pulse 3s infinite ease-in-out;
}

@keyframes shadow-pulse {
    0%   { box-shadow: 0 8px 24px rgba(26, 12, 8, 0.12); }
    50%  { box-shadow: 0 12px 32px rgba(26, 12, 8, 0.22); }
    100% { box-shadow: 0 8px 24px rgba(26, 12, 8, 0.12); }
}

.card-media {
    height: 200px;
    position: relative;
    /* Placeholder Gradients */
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
}
.media-bg-2 { background: linear-gradient(120deg, #f6d365 0%, #fda085 100%); }
.media-bg-3 { background: linear-gradient(to right, #43e97b 0%, #38f9d7 100%); }
.media-bg-4 { background: linear-gradient(to right, #fa709a 0%, #fee140 100%); }

.card-media .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-espresso-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.card-info {
    padding: 24px;
}

.card-info .location {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ====================================
   Media Highlights (Videos)
==================================== */
.media-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
}

.media-card {
    width: 100%;
    cursor: pointer;
}

.media-card:hover .play-overlay {
    background: rgba(255, 90, 0, 0.9);
    transform: scale(1.05);
}

.media-thumbnail {
    position: relative;
    border-radius: var(--radius-lg);
    background: #444;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
}
.thumbnail-bg-1 { background: linear-gradient(45deg, #1e3c72 0%, #2a5298 100%); }
.thumbnail-bg-2 { background: linear-gradient(to top, #09203f 0%, #537895 100%); }
.thumbnail-bg-3 { background: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%); }
.thumbnail-bg-4 { background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%); }

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.media-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.media-meta {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px; /* Give space for the breadcrumb if visible */
}

/* Back to Main Video Breadcrumb */
.video-breadcrumb {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-orange);
    transition: var(--transition-fast);
    padding: 4px 0;
    margin-top: 4px;
}

.video-breadcrumb:hover {
    color: var(--c-burnt-orange);
    transform: translateX(-4px); /* Slight Apple-like nudge left */
}

.media-side-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.media-list-item {
    display: flex;
    gap: 16px;
    cursor: pointer;
    align-items: center;
}

.media-list-item:hover .list-title {
    color: var(--c-orange);
}

.list-thumbnail {
    flex: 0 0 160px;
    height: 90px;
    border-radius: var(--radius-md);
    position: relative;
    background: #555;
}

.list-details {
    flex: 1;
}

.list-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.list-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   Mission Section
==================================== */
.section-mission {
    background-color: var(--c-cream);
    padding: 160px 0;
    text-align: center;
}

.mission-statement {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--c-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

/* ====================================
   Call To Action Structure
==================================== */
.cta-section {
    text-align: center;
}

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

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ====================================
   Footer Requirement
==================================== */
.global-footer {
    background-color: var(--c-espresso-dark);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.footer-brand .brand-text {
    color: white;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.4);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 16px;
}

.link-group a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
}

.link-group a:hover {
    color: var(--c-orange);
}

/* REQUIRED FOOTER TREATMENT */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

.powered-by-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-smooth);
}

.powered-by-link:hover {
    color: var(--c-orange);
}

.bolt-icon {
    color: #FFD700;
    font-size: 1.1rem;
}

/* ====================================
   Animations & Responsive
==================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
    .mission-statement { font-size: 2.8rem; }
    .media-grid { grid-template-columns: 1fr; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    
    /* Apple-inspired Mobile Navigation Overlay */
    .desktop-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 5%;
        gap: 24px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }
    
    .header.menu-open .desktop-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .header.menu-open {
        background: rgba(250, 249, 246, 0.98);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 12px;
    }
    
    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: auto;
        padding-bottom: 40px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .mobile-menu-toggle { display: block; }
    
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    .city-grid { grid-template-columns: 1fr; }
    
    .pill-scroller { justify-content: center; } /* Adjusted to center align when wrapping */
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .mission-statement { font-size: 2.2rem; }
    .mission-stats { flex-direction: column; gap: 40px; }
    
    .cta-content h2 { font-size: 3rem; }
    
    .footer-content { flex-direction: column; gap: 48px; }
    .footer-links { flex-direction: column; gap: 32px; }
}
