* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5b2b20;
    --secondary-color: #3f2d20;
    --accent-color: #a44f2a;
    --text-color: #2b211b;
    --text-light: #7a6a61;
    --bg-color: #f4efe9;
    --white: #ffffff;
    --border-color: #e0d6cd;
    --hover-bg: #f1e8e0;
    --shadow-sm:
        0 1px 3px 0 rgba(20, 14, 10, 0.12), 0 1px 2px 0 rgba(20, 14, 10, 0.08);
    --shadow-md:
        0 4px 6px -1px rgba(20, 14, 10, 0.14),
        0 2px 4px -1px rgba(20, 14, 10, 0.1);
    --shadow-lg:
        0 10px 15px -3px rgba(20, 14, 10, 0.18),
        0 4px 6px -2px rgba(20, 14, 10, 0.12);
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background:
        radial-gradient(rgba(60, 32, 23, 0.035) 1px, transparent 1px),
        radial-gradient(rgba(60, 32, 23, 0.025) 1px, transparent 1px),
        var(--bg-color);
    background-position:
        0 0,
        8px 8px,
        0 0;
    background-size:
        16px 16px,
        16px 16px,
        auto;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: normal;
    font-variant-numeric: tabular-nums;
}

/* Typography normalization */
html {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-color);
}

p,
li,
dd,
dt,
address,
blockquote {
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
}

small,
.small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* Heading scale */
h1 {
    font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
}
h2 {
    font-size: clamp(1.625rem, 1.2rem + 1.6vw, 2.5rem);
}
h3 {
    font-size: clamp(1.375rem, 1.1rem + 1vw, 2rem);
}
h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.125rem;
}
h6 {
    font-size: 1rem;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    box-shadow: var(--shadow-md);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    color: #e2e8f0;
}

.header-content p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    position: relative;
    z-index: 2;
    mix-blend-mode: normal;
    text-shadow: none;
}

.header-content .menu-toggle {
    display: none;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

nav ul::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 0.65rem;
    display: inline-block;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.8125rem;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    background-color: var(--hover-bg);
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    min-height: calc(100vh - 400px);
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.hero img {
    width: 100%;
    max-width: 900px;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.hero h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto;
}

/* City Grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.city-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.city-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.city-card-content {
    padding: 1.75rem;
}

.city-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.city-card p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.city-card a {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9375rem;
}

.city-card a:hover {
    background-color: #2c5282;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* City Page */
.city-header {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
}

.city-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.city-header p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.city-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
}

.section h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

/* Businesses Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.business-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    background: var(--white);
}

.business-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.business-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.business-card .type {
    display: inline-block;
    background-color: #edf2f7;
    color: var(--text-color);
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.business-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.business-card .address {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* People Grid */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.person-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.2s ease;
    background: var(--white);
}

.person-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.person-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--border-color);
}

.person-card h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.person-card .role {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.person-card .email {
    color: var(--text-light);
    font-size: 0.875rem;
    word-break: break-all;
    margin-bottom: 0.75rem;
}

.person-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.person-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.person-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Activities */
.activity-list {
    list-style: none;
    margin-top: 1.5rem;
}

.activity-list li {
    background: var(--hover-bg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.activity-list li:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.activity-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

footer p {
    opacity: 0.9;
    font-size: 0.9375rem;
}

/* Info Box */
.info-box {
    background: #ebf8ff;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-box ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.info-box ul li {
    margin-bottom: 0.375rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 2rem 0 1.5rem;
    }

    .header-content {
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .header-content .menu-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 1.5rem;
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 8px;
        padding: 0.75rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    .header-content .menu-toggle:hover {
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .header-content .menu-toggle span {
        background-color: var(--primary-color);
    }

    .header-content .menu-toggle.active {
        background-color: var(--primary-color);
    }

    .header-content .menu-toggle.active span {
        background-color: var(--white);
    }

    .header-content h1 {
        font-size: 2rem;
        text-align: left;
        margin-right: 60px;
    }

    .header-content p {
        font-size: 1rem;
        text-align: left;
    }

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

    .nav-container {
        padding: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav ul.active {
        max-height: 600px;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    nav {
        position: relative;
        z-index: 998;
    }

    nav ul li {
        display: block;
    }

    nav ul li a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
        display: block;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .hero {
        padding: 2rem 1.5rem;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .hero img {
        height: 300px;
    }

    .city-header h2 {
        font-size: 2rem !important;
    }

    .city-header,
    .section {
        padding: 1.5rem;
    }

    main {
        margin: 2rem auto;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .business-grid,
    .people-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* Ultra-Modern Enhancements     */
/* ============================= */
:root {
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    --accent-teal: #14b8a6;
}

/* Off-center, colorful and asymmetric overrides */
header {
    background: var(--gradient-1);
}

.header-content {
    text-align: left;
}

nav ul {
    justify-content: flex-start;
    padding-left: 1.5rem;
}

main {
    padding-left: 3rem;
    padding-right: 1.25rem;
}

/* Split hero with left bias and vivid accent shapes */
.hero {
    grid-template-columns: 1.2fr 0.9fr;
    padding: 2.75rem 2.25rem 2.75rem 3.25rem;
}

.hero::after {
    content: "";
    position: absolute;
    right: -12%;
    top: -22%;
    width: 55%;
    height: 180%;
    background:
        radial-gradient(closest-side, rgba(180, 83, 9, 0.16), transparent 70%),
        radial-gradient(closest-side, rgba(124, 45, 18, 0.14), transparent 72%);
    transform: rotate(-8deg);
    pointer-events: none;
}

/* Angled section accents */
.section {
    padding: 2.5rem 2rem 2.5rem 3rem;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    top: -14px;
    left: -24px;
    width: 40%;
    height: 52px;
    background: linear-gradient(135deg, #b45309 0%, #a16207 55%, #92400e 100%);
    opacity: 0.22;
    transform: rotate(-8deg) skewX(-10deg);
    border-radius: 16px;
    pointer-events: none;
    filter: blur(0.5px);
}

.section h3::after {
    transform: skewX(-18deg);
    transform-origin: left center;
}

/* City header angled color band */
.city-header::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -15%;
    width: 80%;
    height: 200px;
    background: linear-gradient(
        135deg,
        #b45309 0%,
        #a16207 25%,
        #92400e 55%,
        #7c2d12 85%,
        #3f2d20 100%
    );
    opacity: 0.22;
    transform: rotate(-10deg) skewX(-6deg);
    border-radius: 24px;
    filter: blur(1.5px);
    pointer-events: none;
}

/* Staggered city cards for tasteful asymmetry */
.city-grid {
    padding-left: 0.75rem;
}

.city-grid .city-card:nth-child(odd) {
    transform: translateY(6px);
}

.city-grid .city-card:nth-child(3n) {
    transform: translateY(-4px);
}

.city-grid .city-card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* Activity list colorful indicators */
.activity-list li::before {
    background: linear-gradient(180deg, #b45309 0%, #92400e 50%, #3f2d20 100%);
}

/* Footer aligned with left bias */
footer {
    text-align: left;
}

/* Global radii, elevation and motion variables for a modern system */
:root {
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --elev-1: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);
    --elev-2:
        0 8px 24px rgba(16, 24, 40, 0.14), 0 4px 12px rgba(16, 24, 40, 0.08);
    --elev-3:
        0 24px 48px rgba(16, 24, 40, 0.18), 0 12px 24px rgba(16, 24, 40, 0.12);
    --trans-fast: 150ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --trans-base: 250ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --gradient-1: linear-gradient(
        135deg,
        #b45309 0%,
        #a16207 30%,
        #92400e 60%,
        #7c2d12 85%,
        #3f2d20 100%
    );
    --gradient-2:
        radial-gradient(
            1200px 600px at 10% -10%,
            rgba(180, 83, 9, 0.22),
            transparent 60%
        ),
        radial-gradient(
            1000px 600px at 110% 10%,
            rgba(124, 45, 18, 0.18),
            transparent 70%
        );
}

/* Glassy, floating nav with blur and subtle borders */
nav {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--elev-1);
}

nav ul {
    gap: 0;
}

nav ul li a {
    position: relative;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition:
        color var(--trans-fast),
        border-color var(--trans-fast),
        background-color var(--trans-fast);
}

nav ul li a:hover,
nav ul li a:focus-visible {
    color: var(--accent-color);
    background-color: rgba(226, 232, 240, 0.35);
    border-bottom-color: var(--accent-color);
}

/* Hero: split layout with image panel and decorative gradients */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    align-items: center;
    gap: 2rem;
    text-align: left;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--elev-2);
    padding: 2.75rem 2.25rem 2.75rem 3.25rem;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 65%;
    background: var(--gradient-2);
    z-index: 0;
    pointer-events: none;
}

.hero h2,
.hero p {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: clamp(1.8rem, 1.5rem + 1.8vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero p {
    max-width: 38ch;
}

.hero img {
    width: 100%;
    height: 420px;
    min-height: 360px;
    border-radius: var(--radius-md);
    margin: 0;
    filter: saturate(1.05) contrast(1.02);
    transform: translateZ(0);
    transition:
        transform var(--trans-base),
        box-shadow var(--trans-base);
    box-shadow: var(--elev-2);
}

.hero img:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--elev-3);
}

/* Header with subtle gradient accents and soft edge */
header {
    position: relative;
    overflow: hidden;
}

header::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 88px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        var(--bg-color) 85%
    );
    z-index: 0;
    pointer-events: none;
}

.header-content h1 {
    font-size: clamp(2.125rem, 1.5rem + 2.4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* City cards with elevated motion and interactive depth */
.city-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--elev-2);
    transform: translateZ(0);
    transition:
        transform var(--trans-base),
        box-shadow var(--trans-base),
        border-color var(--trans-base);
    will-change: transform;
}

.city-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--elev-3);
    border-color: rgba(49, 130, 206, 0.5);
}

.city-card img {
    height: 240px;
    transition:
        transform var(--trans-base),
        filter var(--trans-base);
}

.city-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.08);
}

.city-card h3 {
    font-size: 1.375rem;
    letter-spacing: -0.01em;
}

.city-card p {
    font-size: 0.95rem;
}

/* Primary action links styled as modern buttons */
.city-card a {
    background: linear-gradient(
        135deg,
        #b45309 0%,
        #a16207 25%,
        #92400e 60%,
        #7c2d12 100%
    );
    border: 1px solid #7c2d12;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    box-shadow:
        0 10px 28px rgba(124, 45, 18, 0.25),
        0 6px 18px rgba(180, 83, 9, 0.22);
    transition:
        transform var(--trans-fast),
        box-shadow var(--trans-fast),
        background var(--trans-fast);
}

.city-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(49, 130, 206, 0.35);
}

/* City header panels: glass, depth, and image motion on hover */
.city-header {
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--elev-2);
    position: relative;
    overflow: hidden;
}

.city-header:hover .city-image {
    transform: scale(1.015);
    filter: saturate(1.05);
}

.city-header h2 {
    font-size: clamp(2rem, 1.2rem + 2.4vw, 3rem) !important;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Section headings: gradient underline accent */
.section h3 {
    position: relative;
    border: none;
    padding-bottom: 1rem;
}

.section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.15rem;
    width: 128px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #b45309 0%,
        #a16207 25%,
        #92400e 60%,
        rgba(63, 45, 32, 0) 100%
    );
}

/* Activity list: hover-lift with indicator */
.activity-list li {
    position: relative;
    overflow: hidden;
    transition:
        transform var(--trans-base),
        box-shadow var(--trans-base),
        background var(--trans-base);
    box-shadow: var(--elev-1);
}

.activity-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--elev-2);
}

.activity-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3182ce 0%, #7f9cf5 100%);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

/* People cards: refined proportions and softer avatar frame */
.person-card {
    border-radius: var(--radius-md);
    box-shadow: var(--elev-1);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.person-card:hover {
    box-shadow: var(--elev-2);
}

.person-card img {
    width: 96px;
    height: 96px;
    border: 3px solid rgba(226, 232, 240, 0.9);
}

/* Info box: refined presentation */
.info-box {
    border-radius: var(--radius-md);
    border: 1px solid rgba(186, 230, 253, 0.9);
    box-shadow: var(--elev-1);
}

/* Footer: elevated finish */
footer {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: inset 0 1px 0 rgba(226, 232, 240, 0.6);
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Responsive refinements for the split hero and navigation */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hero img {
        order: -1;
        height: 360px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .city-card img {
        height: 200px;
    }
}

@media (min-width: 1200px) {
    nav ul li a {
        padding: 1rem 0.85rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1400px) {
    nav ul li a {
        padding: 1rem 1rem;
        font-size: 0.9375rem;
    }
}
