* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #241447;
    background:
        radial-gradient(circle at 8% 4%, rgba(255, 246, 183, 0.36), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(78, 205, 196, 0.22), transparent 30%),
        linear-gradient(135deg, #241447 0%, #6b3fa0 48%, #ff7a59 100%);
}

a {
    color: inherit;
}

.city-page {
    min-height: 100vh;
}

.city-hero,
.city-section,
.city-footer {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.city-hero {
    padding: 44px 0 28px;
    color: white;
}

.back-link {
    display: inline-flex;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.eyebrow {
    margin: 0 0 12px;
    color: #fff6b7;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1 {
    max-width: 860px;
    margin: 0;
    color: white;
    font-size: clamp(42px, 8vw, 86px);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.hero-copy {
    max-width: 740px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.45;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 26px;
}

.primary-cta,
.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.primary-cta {
    padding: 0 22px;
    background: #fff6b7;
    color: #241447;
}

.secondary-cta {
    padding: 0 4px;
    color: white;
}

.widget-wrap,
.content-card {
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(24, 15, 62, 0.22);
}

.widget-wrap {
    overflow: hidden;
    margin-bottom: 24px;
}

.widget-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 24px;
    border-bottom: 1px solid #ece7f5;
}

.widget-heading h2,
.content-card h2 {
    margin: 0;
    color: #241447;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.widget-heading p {
    max-width: 520px;
    margin: 4px 0 0;
    color: #6b607c;
    line-height: 1.5;
}

.widget-frame {
    display: block;
    width: 100%;
    height: 980px;
    border: 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.content-card {
    padding: 26px;
}

.content-card.full {
    grid-column: 1 / -1;
}

.content-card p,
.content-card li,
.faq-item p {
    color: #4f4862;
    font-size: 16px;
    line-height: 1.62;
}

.pill-list,
.neighborhood-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.pill-list li,
.neighborhood-list li {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff0d8;
    color: #8a4c18;
    font-size: 14px;
    font-weight: 900;
}

.neighborhood-list li {
    background: #f3eefc;
    color: #342b52;
}

.faq-item {
    padding: 18px 0;
    border-top: 1px solid #ece7f5;
}

.faq-item h3 {
    margin: 0 0 8px;
    color: #241447;
    font-size: 18px;
}

.faq-item p {
    margin: 0;
}

.sponsor-note {
    border-left: 4px solid #ff7a59;
    padding-left: 16px;
}

.city-footer {
    padding: 28px 0 44px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

@media (max-width: 780px) {
    .city-hero,
    .city-section,
    .city-footer {
        width: min(100% - 28px, 520px);
    }

    .city-hero {
        padding-top: 28px;
    }

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

    .content-card.full {
        grid-column: auto;
    }

    .widget-frame {
        height: 1280px;
    }
}
