:root {
    --color-ink: #1d2733;
    --color-ink-soft: #516072;
    --color-accent: #b3563d;
    --color-accent-soft: #e9c8ba;
    --color-surface: #f5f0ea;
    --color-surface-strong: #ebe1d6;
    --color-bg: #f8f5f1;
    --color-white: #ffffff;
    --shadow-soft: 0 18px 40px rgba(29, 39, 51, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --site-width: 1240px;
    --page-gutter: 2rem;
    --section-space: 3rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #f8f5f1;
    overscroll-behavior-y: none;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background:
        linear-gradient(rgba(251, 248, 245, 0.9), rgba(243, 237, 230, 0.92)) center top no-repeat,
        radial-gradient(circle at top left, rgba(233, 200, 186, 0.42), transparent 30%) top left no-repeat,
        url("../images/backgrounds/paisley-floral-tropical-lush-1.png?v=20260316b") center top repeat;
    background-size: auto, auto, 900px;
    color: var(--color-ink);
    font-family: Georgia, "Times New Roman", serif;
    overflow-x: hidden;
}

body.is-mobile-nav-open,
body.is-gallery-modal-open {
    overflow: hidden;
}

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

.container {
    width: min(calc(100% - var(--page-gutter)), var(--site-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 0;
    margin: 0;
    background: transparent;
}

.site-header-banner {
    display: block;
    width: 100%;
    min-height: 118px;
    overflow: hidden;
    background-color: #241e37;
    background-image:
        linear-gradient(180deg, rgba(18, 22, 27, 0.08) 0%, rgba(18, 22, 27, 0.24) 100%),
        url("/assets/images/banner/botanical-bohemian-icon-we-love_single-line-text-1.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.home-page .site-header-banner,
.icons-page .site-header-banner,
.architecture-page .site-header-banner,
.nyc-page .site-header-banner,
.nyc-museums-page .site-header-banner,
.manhattan-page .site-header-banner,
.chicago-page .site-header-banner,
.baltimore-page .site-header-banner,
.national-parks-page .site-header-banner {
    min-height: 188px;
    background-position: center center;
    background-size: cover;
}

.home-page .site-header-overlay,
.icons-page .site-header-overlay,
.architecture-page .site-header-overlay,
.nyc-page .site-header-overlay,
.nyc-museums-page .site-header-overlay,
.manhattan-page .site-header-overlay,
.chicago-page .site-header-overlay,
.baltimore-page .site-header-overlay,
.national-parks-page .site-header-overlay {
    min-height: 188px;
    padding: 1.25rem 0 0.35rem;
}

.site-header-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 118px;
    padding: 0.95rem 0 0.3rem;
}

.site-header-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.site-header-meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.site-nav-link,
.site-quicklink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.site-nav-link {
    padding: 0.38rem 0.2rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-quicklink:hover,
.site-quicklink:focus-visible {
    transform: translateY(-1px);
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    background: transparent;
    color: #f6d9bf;
}

.site-nav-link.is-active {
    border: 0;
    background: transparent;
    color: #f6d9bf;
    box-shadow: none;
}

.site-nav-caption {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mobile-nav-toggle,
.mobile-nav-close,
.mobile-nav-link {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-nav-drawer[hidden] {
    display: none;
}

.mobile-nav-drawer {
    display: none;
    z-index: 95;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 18, 26, 0.56);
    z-index: 0;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(22rem, calc(100vw - 2rem));
    height: 100dvh;
    padding: 1rem 1rem 1.25rem;
    background: linear-gradient(180deg, rgba(38, 31, 59, 0.98), rgba(21, 19, 30, 0.98));
    box-shadow: -18px 0 40px rgba(7, 10, 14, 0.28);
    overflow-y: auto;
    z-index: 1;
}

.mobile-nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-nav-title,
.mobile-nav-heading {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.65rem;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-nav-section {
    display: grid;
    gap: 0.5rem;
}

.mobile-nav-heading {
    margin-bottom: 0.1rem;
}

.mobile-nav-divider {
    height: 1px;
    margin: 1rem 0;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
}

.mobile-nav-link {
    display: block;
    padding: 0.7rem 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.mobile-nav-link.is-active {
    color: #f6d9bf;
}

.site-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    color: var(--color-white);
    text-decoration: none;
}

.site-home-link::before {
    width: 2.8rem;
    height: 2.8rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.75 12 3l9 7.75'/%3E%3Cpath d='M6.75 9.75V21h10.5V9.75'/%3E%3Cpath d='M9.5 21v-5.75h5V21'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.site-home-link.is-active {
    opacity: 0.88;
}

.site-quicklinks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.site-quicklink {
    padding: 0.5rem 0.75rem;
    border: 0;
    background: rgba(20, 22, 31, 0.2);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

.site-quicklink:hover,
.site-quicklink:focus-visible {
    background: rgba(31, 35, 47, 0.32);
    box-shadow: none;
}

.footer-line {
    display: inline;
}

.eyebrow,
.section-kicker,
.slide-label,
.card-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.slide-label {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    color: var(--color-accent);
}

.eyebrow::before,
.section-kicker::before,
.resource-type::before,
.gallery-shuffle-button::before,
.site-footer p::before {
    display: inline-block;
    flex: 0 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.eyebrow::before,
.resource-type::before,
.site-footer p::before {
    width: 2.9rem;
    height: 2.9rem;
    background-image: url("../images/icons/leaf-icon.png?v=20260317e");
}

.section-kicker::before,
.gallery-shuffle-button::before {
    width: 2.5rem;
    height: 2.5rem;
    background-image: url("../images/icons/orchid-icon.png?v=20260317e");
}

.page-summary .section-kicker::before {
    background-image: url("../images/icons/flowers-icon.png?v=20260317f");
}

.section-surface .section-kicker::before {
    background-image: url("../images/icons/paisley-icon.png?v=20260317f");
}

.gallery-header .section-kicker::before {
    background-image: url("../images/icons/tassels-icon.png?v=20260317f");
}

.architecture-summary .section-kicker::before {
    background-image: url("../images/icons/mandala-icon-1.png?v=20260317f");
}

.nyc-summary .section-kicker::before {
    background-image: url("../images/icons/phone-icon.png?v=20260317f");
}

.nyc-transit .section-kicker::before {
    background-image: url("../images/icons/letters-icon.png?v=20260317f");
}

.nyc-airports .section-kicker::before {
    background-image: url("../images/icons/feather-icon.png?v=20260317f");
}

.nyc-broadway .section-kicker::before {
    background-image: url("../images/icons/mandala-icon-2.png?v=20260317f");
}

.nyc-met .section-kicker::before {
    background-image: url("../images/icons/flowers-icon.png?v=20260317f");
}

.nyc-museum-hub .section-kicker::before,
.nyc-corridor .section-kicker::before {
    background-image: url("../images/icons/paisley-icon.png?v=20260317f");
}

.nyc-museums .section-kicker::before {
    background-image: url("../images/icons/orchid-icon.png?v=20260317e");
}

.nyc-guggenheim .section-kicker::before {
    background-image: url("../images/icons/mandala-icon-1.png?v=20260317f");
}

.nyc-cooper .section-kicker::before {
    background-image: url("../images/icons/fern-icon.png?v=20260317f");
}

.nyc-moma .section-kicker::before {
    background-image: url("../images/icons/orchid-icon.png?v=20260317e");
}

.nyc-whitney .section-kicker::before {
    background-image: url("../images/icons/crystals-icon.png?v=20260317f");
}

.nyc-library .section-kicker::before {
    background-image: url("../images/icons/letters-icon.png?v=20260317f");
}

.nyc-morgan .section-kicker::before {
    background-image: url("../images/icons/tassels-icon.png?v=20260317f");
}

.manhattan-summary .section-kicker::before {
    background-image: url("../images/icons/letters-icon.png?v=20260317f");
}

.architecture-sustainable .section-kicker::before {
    background-image: url("../images/icons/fern-icon.png?v=20260317f");
}

.architecture-wild .section-kicker::before {
    background-image: url("../images/icons/crystals-icon.png?v=20260317f");
}

.manhattan-districts .section-kicker::before {
    background-image: url("../images/icons/paisley-icon.png?v=20260317f");
}

.manhattan-assets .section-kicker::before {
    background-image: url("../images/icons/flowers-icon.png?v=20260317f");
}

.manhattan-routes .section-kicker::before {
    background-image: url("../images/icons/tassels-icon.png?v=20260317f");
}

.chicago-summary .section-kicker::before {
    background-image: url("../images/icons/mandala-icon-2.png?v=20260317f");
}

.chicago-preservation .section-kicker::before {
    background-image: url("../images/icons/feather-icon.png?v=20260317f");
}

.chicago-assets .section-kicker::before {
    background-image: url("../images/icons/crystals-icon.png?v=20260317f");
}

.baltimore-summary .section-kicker::before {
    background-image: url("../images/icons/feather-icon.png?v=20260317f");
}

.baltimore-transit .section-kicker::before {
    background-image: url("../images/icons/phone-icon.png?v=20260317f");
}

.baltimore-strengths .section-kicker::before {
    background-image: url("../images/icons/fern-icon.png?v=20260317f");
}

.baltimore-districts .section-kicker::before {
    background-image: url("../images/icons/paisley-icon.png?v=20260317f");
}

.baltimore-assets .section-kicker::before {
    background-image: url("../images/icons/crystals-icon.png?v=20260317f");
}

.baltimore-routes .section-kicker::before {
    background-image: url("../images/icons/tassels-icon.png?v=20260317f");
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 12ch;
    margin-bottom: 0.75rem;
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.site-header .eyebrow {
    display: none;
}

.page-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: stretch;
    padding-top: 1.5rem;
}

.page-intro-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.page-intro-title h1 {
    max-width: none;
    margin: 0;
    color: var(--color-ink);
    text-shadow: none;
}

.page-intro-title .page-title-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.page-intro-title .page-title-with-icon::before {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    flex: 0 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/icons/orchid-icon.png?v=20260317e");
    content: "";
}

.home-summary .page-intro-title .page-title-with-icon::before {
    background-image: url("../images/icons/leaf-icon.png?v=20260317e");
}

.architecture-summary .page-intro-title .page-title-with-icon::before {
    background-image: url("../images/icons/mandala-icon-1.png?v=20260317f");
}

.nyc-summary .page-intro-title .page-title-with-icon::before {
    background-image: url("../images/icons/phone-icon.png?v=20260317f");
}

.manhattan-summary .page-intro-title .page-title-with-icon::before {
    background-image: url("../images/icons/letters-icon.png?v=20260317f");
}

.chicago-summary .page-intro-title .page-title-with-icon::before {
    background-image: url("../images/icons/mandala-icon-2.png?v=20260317f");
}

.baltimore-summary .page-intro-title .page-title-with-icon::before {
    background-image: url("../images/icons/feather-icon.png?v=20260317f");
}

.national-parks-summary .page-intro-title .page-title-with-icon::before {
    background-image: url("../images/icons/fern-icon.png?v=20260317f");
}

.page-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
    min-width: 0;
    padding: 1.1rem 1.25rem 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 245, 241, 0.76)),
    url("../images/backgrounds/paisley-floral-lush-3.png?v=20260317c");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: var(--shadow-soft);
}

.page-summary--manhattan {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 241, 0.8)),
        url("/assets/images/hero/botanical-bohemian-hero-study-28.png");
}

.page-summary--chicago {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 241, 0.8)),
        url("/assets/images/hero/botanical-bohemian-hero-study-40.png");
}

.page-summary--baltimore {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 241, 0.8)),
        url("/assets/images/hero/botanical-bohemian-hero-study-26.png");
}

.baltimore-resources,
.baltimore-transit,
.manhattan-routes,
.manhattan-archives {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: var(--shadow-soft);
}

.nyc-transit,
.nyc-museum-hub,
.nyc-broadway,
.nyc-airports,
.nyc-corridor,
.nyc-met,
.nyc-guggenheim,
.nyc-cooper,
.nyc-moma,
.nyc-whitney,
.nyc-library,
.nyc-morgan,
.nyc-trip-planning,
.nyc-grand-central,
.chicago-resources,
.manhattan-figures,
.manhattan-assets {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nyc-transit {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-broadway {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-tropical-lush-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-museum-hub {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-2.png");
    box-shadow: var(--shadow-soft);
}

.nyc-airports {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/interior-gemini-qy9my4qy-a-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-met {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-3.png");
    box-shadow: var(--shadow-soft);
}

.nyc-corridor {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-2.png");
    box-shadow: var(--shadow-soft);
}

.nyc-guggenheim {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/interior-gemini-qy9my4qy-a-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-cooper {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-moma {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-tropical-lush-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-whitney {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/interior-gemini-qy9my4qy-a-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-library {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-3.png");
    box-shadow: var(--shadow-soft);
}

.nyc-morgan {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-1.png");
    box-shadow: var(--shadow-soft);
}

.nyc-trip-planning {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-2.png");
}

.nyc-grand-central {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-3.png");
}

.baltimore-transit {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/interior-gemini-qy9my4qy-a-1.png");
    box-shadow: var(--shadow-soft);
}

.chicago-resources {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-tropical-lush-1.png");
    box-shadow: var(--shadow-soft);
}

.manhattan-figures {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/interior-gemini-qy9my4qy-a-1.png");
    box-shadow: var(--shadow-soft);
}

.manhattan-assets {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 238, 0.88)),
        url("/assets/images/backgrounds/paisley-floral-lush-1.png");
    box-shadow: var(--shadow-soft);
}

.home-summary .section-kicker::before {
    background-image: url("../images/icons/leaf-icon.png?v=20260317e");
}

.page-visuals {
    padding: 1.4rem 1.4rem 1.5rem;
    border: 1px solid rgba(29, 39, 51, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.page-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.page-visual-card {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(247, 243, 237, 0.94);
    box-shadow: 0 14px 28px rgba(32, 24, 52, 0.12);
}

.page-visual-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.page-visual-card figcaption {
    padding: 0.9rem 1rem 1rem;
}

.page-visual-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.page-visual-card p {
    margin-bottom: 0;
    color: var(--color-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.icon-library-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.icon-card {
    display: grid;
    gap: 1rem;
    padding: 1.3rem;
    border: 1px solid rgba(29, 39, 51, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.icon-card-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 13rem;
    padding: 1rem;
    border-radius: calc(var(--radius-md) - 2px);
    background: linear-gradient(180deg, rgba(245, 240, 234, 0.96), rgba(234, 226, 217, 0.9));
}

.icon-card-preview img {
    width: min(10rem, 100%);
    height: auto;
    max-height: 10rem;
    object-fit: contain;
}

.icon-card-body {
    display: grid;
    gap: 0.45rem;
}

.icon-card-body h3,
.icon-card-size {
    margin: 0;
}

.icon-card-size {
    color: var(--color-ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}

.icon-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.7rem 0.95rem;
    color: var(--color-white);
    background: linear-gradient(135deg, #2e2457, #b3563d);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(46, 36, 87, 0.18);
}

.icon-download-link:hover,
.icon-download-link:focus-visible {
    transform: translateY(-1px);
}

.page-summary h2,
.page-summary-text {
    max-width: 42rem;
    margin: 0;
}

.page-summary-text {
    color: var(--color-ink);
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    line-height: 1.6;
}

.page-summary h2 {
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1.1;
}

main {
    flex: 1 0 auto;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: stretch;
    padding: 2.25rem 0 1rem;
}

.hero-copy,
.section-surface {
    position: relative;
}

.hero-copy {
    padding: 2rem 0;
}

.hero-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.02;
}

.hero-copy p {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-ink-soft);
}

.swiper {
    width: 100%;
    min-height: 620px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 620px;
    padding: 2rem;
    color: var(--color-white);
}

.swiper-slide::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 15, 23, 0.08) 0%, rgba(9, 15, 23, 0.65) 100%);
    content: "";
    z-index: 1;
}

.swiper-slide-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.swiper-slide-media picture,
.swiper-slide-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-slide-media img {
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 22rem;
}

.slide-content h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.art-carousel-intro {
    margin: 0.85rem 0 0;
    max-width: 34rem;
    color: var(--color-ink-soft);
}

.art-carousel-shell {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.art-carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.art-carousel-mode-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(46, 36, 87, 0.08);
}

.art-carousel-mode-button {
    border: 0;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font: inherit;
    font-weight: 700;
    color: var(--color-ink-soft);
    background: transparent;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.art-carousel-mode-button:hover,
.art-carousel-mode-button:focus-visible {
    background: rgba(46, 36, 87, 0.12);
}

.art-carousel-mode-button.is-active {
    color: var(--color-white);
    background: linear-gradient(135deg, #2e2457, #b3563d);
    box-shadow: 0 10px 24px rgba(46, 36, 87, 0.2);
}

.art-carousel-toolbar-note {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 0.95rem;
}

.art-carousel-swiper.swiper {
    min-height: 620px;
    width: 100%;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(9, 15, 23, 0.06) 0%, rgba(9, 15, 23, 0.22) 100%),
        linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(246, 239, 230, 0.98) 100%);
    box-shadow: var(--shadow-soft);
}

.art-carousel-swiper .swiper-wrapper {
    align-items: center;
}

.art-carousel-swiper .swiper-slide {
    min-height: 560px;
    height: auto;
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ink);
    box-sizing: border-box;
}

.art-carousel-swiper .swiper-slide::before {
    display: none;
}

.art-carousel-card {
    width: 100%;
    max-width: min(100%, 56rem);
    min-width: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(29, 39, 51, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 40px rgba(12, 17, 26, 0.16);
    cursor: zoom-in;
}

.art-carousel-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem 1rem 0;
    background:
        radial-gradient(circle at top, rgba(179, 86, 61, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(243, 235, 226, 0.96), rgba(255, 250, 244, 0.92));
}

.art-carousel-media picture,
.art-carousel-media img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(100%, 56rem);
    max-height: 32rem;
}

.art-carousel-media img {
    object-fit: contain;
    border-radius: calc(var(--radius-md) - 0.35rem);
    box-shadow: 0 16px 28px rgba(18, 24, 34, 0.18);
}

.art-carousel-caption {
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1rem 1.15rem;
}

.art-carousel-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.25;
}

.art-carousel-artist,
.art-carousel-source {
    margin: 0.2rem 0 0;
    color: var(--color-ink-soft);
}

.art-carousel-artist {
    font-weight: 700;
}

.art-carousel-caption-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.art-carousel-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.art-carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(46, 36, 87, 0.1);
    color: #2e2457;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.art-carousel-detail-trigger,
.art-carousel-source-link,
.art-carousel-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font: inherit;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, #2e2457, #b3563d);
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
    box-shadow: 0 12px 26px rgba(46, 36, 87, 0.18);
}

.art-carousel-detail-trigger:hover,
.art-carousel-detail-trigger:focus-visible,
.art-carousel-source-link:hover,
.art-carousel-source-link:focus-visible,
.art-carousel-nav:hover,
.art-carousel-nav:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(46, 36, 87, 0.24);
}

.art-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin-top: 0;
    padding: 0 0.35rem;
    position: absolute;
    inset-inline: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.art-carousel-nav {
    min-width: 3.15rem;
    width: 3.15rem;
    min-height: 3.15rem;
    height: 3.15rem;
    padding: 0;
    font-size: 1.45rem;
    line-height: 1;
    pointer-events: auto;
}

.art-carousel-pagination.swiper-pagination {
    display: none;
}

.art-carousel-inline-panel {
    margin-top: 1rem;
    padding: 1.1rem;
    border: 1px solid rgba(29, 39, 51, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(12, 17, 26, 0.12);
}

.art-carousel-inline-panel[hidden] {
    display: none;
}

.art-carousel-shell[data-art-mode="overlay"] .art-carousel-inline-panel {
    display: none;
}

.art-carousel-detail {
    display: grid;
    gap: 1rem;
}

.art-carousel-detail-head {
    display: grid;
    gap: 0.55rem;
}

.art-carousel-detail-title {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.08;
}

.art-carousel-detail-subtitle,
.art-carousel-detail-source,
.art-carousel-detail-department {
    margin: 0;
    color: var(--color-ink-soft);
}

.art-carousel-detail-subtitle {
    font-weight: 700;
}

.art-carousel-detail-grid {
    display: grid;
    gap: 0.8rem;
}

.art-carousel-detail-row {
    display: grid;
    gap: 0.22rem;
}

.art-carousel-detail-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6d6078;
}

.art-carousel-detail-value {
    margin: 0;
    white-space: pre-line;
}

.art-carousel-empty-note {
    margin: 0;
    color: var(--color-ink-soft);
}

.art-carousel-overlay[hidden] {
    display: none;
}

.art-carousel-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
}

.art-carousel-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 18, 0.6);
    backdrop-filter: blur(10px);
}

.art-carousel-overlay-panel {
    position: relative;
    z-index: 1;
    width: min(72rem, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    margin: 1rem auto;
    overflow: auto;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 251, 245, 0.98);
    box-shadow: 0 32px 60px rgba(9, 15, 23, 0.28);
}

.art-carousel-overlay-close {
    margin-left: auto;
    margin-bottom: 1rem;
}

.art-carousel-overlay-content,
.art-carousel-overlay-figure,
.art-carousel-overlay-caption {
    display: grid;
    gap: 1rem;
}

.art-carousel-overlay-media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top, rgba(179, 86, 61, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(243, 235, 226, 0.92), rgba(255, 250, 244, 0.96));
}

.art-carousel-overlay-media picture,
.art-carousel-overlay-media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(72vh, 48rem);
}

.art-carousel-overlay-image {
    border-radius: calc(var(--radius-md) - 0.35rem);
    box-shadow: 0 18px 36px rgba(18, 24, 34, 0.24);
}

@media (min-width: 960px) {
    .art-carousel-section {
        display: grid;
        grid-template-columns: minmax(18rem, 28rem) minmax(0, 1fr);
        gap: 2rem;
        align-items: start;
    }

    .art-carousel-section .section-heading {
        margin-bottom: 0;
        padding-top: 1.5rem;
    }

    .art-carousel-swiper.swiper {
        max-width: 43rem;
        min-height: 500px;
        padding: 1rem 1.2rem;
        justify-self: end;
    }

    .art-carousel-swiper .swiper-slide {
        min-height: 410px;
        padding: 0.5rem;
    }

    .art-carousel-media picture,
    .art-carousel-media img {
        max-height: 23rem;
    }

    .art-carousel-controls {
        padding: 0 0.15rem;
    }

    .art-carousel-inline-panel {
        max-width: 43rem;
        justify-self: end;
    }
}

@media (max-width: 900px) {
    .art-carousel-toolbar {
        align-items: stretch;
    }

    .art-carousel-mode-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .art-carousel-mode-button {
        flex: 1 1 0;
    }

    .art-carousel-swiper.swiper {
        min-height: 0;
        padding: 1rem;
    }

    .art-carousel-swiper .swiper-slide {
        min-height: 0;
        padding: 0.5rem;
    }

    .art-carousel-card {
        min-width: 0;
        width: 100%;
    }

    .art-carousel-media {
        width: 100%;
        padding: 0.85rem 0.85rem 0;
    }

    .art-carousel-media picture,
    .art-carousel-media img {
        max-width: 100%;
        max-height: 24rem;
    }

    .art-carousel-controls {
        padding: 0 0.15rem;
    }

    .art-carousel-nav {
        min-width: 2.65rem;
        width: 2.65rem;
        min-height: 2.65rem;
        height: 2.65rem;
        font-size: 1.2rem;
    }

    .art-carousel-overlay-panel {
        width: min(100vw - 1rem, 72rem);
        margin: 0.5rem auto;
        padding: 1rem;
    }

    .section-background-room,
    .section-background-tarot {
        padding: 1.3rem;
    }

    .nyc-corridor .architecture-resource-grid {
        gap: 1rem;
    }

    .corridor-route-card,
    .corridor-stops-card {
        padding: 1.35rem 1.1rem;
    }

    .nyc-museum-highlight {
        padding: 1.35rem 1.1rem;
    }

    .nyc-museum-highlight + .nyc-museum-highlight {
        margin-top: 1.1rem;
    }
}

.content-section {
    padding: var(--section-space) 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.section-background-room,
.section-background-tarot {
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-background-room {
    background-image:
        linear-gradient(180deg, rgba(252, 246, 239, 0.86), rgba(247, 241, 233, 0.92)),
        url("../images/backgrounds/rooms/generated/cozy-room-with-tarot-cards-1-1200.jpg");
}

.section-background-room-alt {
    background-image:
        linear-gradient(180deg, rgba(249, 244, 237, 0.84), rgba(241, 232, 223, 0.9)),
        url("../images/backgrounds/rooms/generated/cozy-room-with-telephone-1-1200.jpg");
}

.section-background-tarot {
    background-image:
        linear-gradient(180deg, rgba(248, 239, 235, 0.82), rgba(243, 234, 228, 0.9)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-26-1200.jpg");
}

.section-background-tarot-alt {
    background-image:
        linear-gradient(180deg, rgba(248, 241, 235, 0.82), rgba(241, 233, 227, 0.9)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-40-1200.jpg");
}

.section-background-tarot-rose {
    background-image:
        linear-gradient(180deg, rgba(248, 239, 235, 0.84), rgba(241, 229, 225, 0.92)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-07-1024.jpg");
}

.section-background-tarot-amber {
    background-image:
        linear-gradient(180deg, rgba(249, 241, 233, 0.84), rgba(242, 233, 223, 0.92)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-08-1024.jpg");
}

.section-background-tarot-sage {
    background-image:
        linear-gradient(180deg, rgba(241, 239, 232, 0.84), rgba(232, 233, 224, 0.92)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-10-1200.jpg");
}

.section-background-tarot-ink {
    background-image:
        linear-gradient(180deg, rgba(237, 235, 241, 0.84), rgba(228, 227, 237, 0.92)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-12-1024.jpg");
}

.section-background-tarot-claret {
    background-image:
        linear-gradient(180deg, rgba(245, 236, 234, 0.84), rgba(236, 229, 228, 0.92)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-32-1024.jpg");
}

.nyc-museum-highlight {
    padding: 2.15rem;
    border-radius: calc(var(--radius-lg) + 4px);
    box-shadow: 0 24px 46px rgba(10, 15, 24, 0.14);
}

.nyc-museum-highlight + .nyc-museum-highlight {
    margin-top: 1.65rem;
}

.nyc-museum-highlight .section-kicker,
.nyc-museum-highlight .section-heading h2,
.nyc-museum-highlight .resource-card h3,
.nyc-museum-highlight .resource-type {
    color: var(--color-white);
}

.nyc-museum-highlight .section-heading p,
.nyc-museum-highlight .resource-card p {
    color: rgba(255, 255, 255, 0.9);
}

.nyc-museum-highlight .resource-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(15, 22, 34, 0.54);
    box-shadow: 0 22px 38px rgba(7, 10, 18, 0.2);
    backdrop-filter: blur(10px);
}

.nyc-museum-highlight .resource-links a {
    color: #fff3ea;
}

.nyc-museum-highlight .resource-preview-link:hover,
.nyc-museum-highlight .resource-preview-link:focus-visible {
    color: #f6d9bf;
}

.section-background-tarot-guggenheim {
    background-image:
        linear-gradient(180deg, rgba(47, 40, 71, 0.72), rgba(24, 21, 35, 0.8)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-21-1200.jpg");
}

.section-background-tarot-cooper {
    background-image:
        linear-gradient(180deg, rgba(64, 44, 35, 0.68), rgba(30, 25, 37, 0.8)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-24-1200.jpg");
}

.section-background-tarot-moma {
    background-image:
        linear-gradient(180deg, rgba(26, 45, 57, 0.7), rgba(17, 26, 35, 0.82)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-28-1200.jpg");
}

.section-background-tarot-whitney {
    background-image:
        linear-gradient(180deg, rgba(63, 40, 29, 0.68), rgba(26, 20, 34, 0.82)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-30-1024.jpg");
}

.section-background-tarot-library {
    background-image:
        linear-gradient(180deg, rgba(39, 35, 63, 0.72), rgba(16, 22, 33, 0.84)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-38-1200.jpg");
}

.section-background-tarot-morgan {
    background-image:
        linear-gradient(180deg, rgba(74, 46, 32, 0.7), rgba(23, 22, 35, 0.82)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-40-1200.jpg");
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 1.75rem;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.05;
}

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

.card {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(29, 39, 51, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.card p {
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--color-ink-soft);
}

.card-meta {
    margin-top: 1rem;
    font-size: 0.72rem;
    color: var(--color-accent);
}

.section-surface {
    margin: 0 0 4rem;
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(180deg, rgba(29, 39, 51, 0.58), rgba(29, 39, 51, 0.36)),
    url("../images/backgrounds/paisley-floral-lush-1.png?v=20260317a");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-surface .section-kicker,
.section-surface .section-heading h2,
.section-surface .card h3,
.section-surface .card p,
.section-surface .card-meta,
.section-surface code {
    color: var(--color-white);
}

.section-surface .card {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(19, 27, 36, 0.52);
    backdrop-filter: blur(10px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-empty-state {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1.2rem 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-ink-soft);
    box-shadow: var(--shadow-soft);
}

.gallery-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.gallery-header .section-heading {
    margin-bottom: 0;
}

.gallery-shuffle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0.95rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #2e2457, #b3563d);
    color: var(--color-white);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 28px rgba(46, 36, 87, 0.22);
    cursor: pointer;
    transition: transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.gallery-shuffle-button[hidden] {
    display: none;
}

.gallery-shuffle-button:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
    box-shadow: 0 12px 20px rgba(46, 36, 87, 0.14);
}

.gallery-shuffle-button::before {
    background-image: url("../images/icons/phone-icon.png?v=20260317f");
}

.gallery-shuffle-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(46, 36, 87, 0.28);
}

.gallery-shuffle-button:active {
    transform: translateY(0);
}

.gallery-card {
    grid-column: span 4;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(29, 39, 51, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content-visibility: auto;
    contain-intrinsic-size: 1px 520px;
}

.gallery-card-wide {
    grid-column: span 8;
}

.gallery-card-tall {
    grid-row: span 2;
}

.gallery-card-media {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(246, 240, 233, 0.96), rgba(238, 230, 220, 0.9));
}

.gallery-card picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.gallery-card img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(70vh, 42rem);
    aspect-ratio: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 220ms ease;
}

.gallery-card img.is-loaded {
    opacity: 1;
}

.gallery-card-caption {
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem 1rem 1rem;
    border-top: 1px solid rgba(29, 39, 51, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.gallery-card-author-group[hidden] {
    display: none;
}

.gallery-card-author-label {
    margin-bottom: 0;
    color: var(--color-accent);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-card-author {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.gallery-card-note {
    margin-bottom: 0;
    color: var(--color-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.gallery-modal[hidden] {
    display: none;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 15, 22, 0.82);
    backdrop-filter: blur(10px);
}

.gallery-modal-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

.gallery-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    padding: 0.65rem 0.85rem;
    border: 0;
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.gallery-modal-figure {
    display: grid;
    gap: 0.9rem;
    width: min(96vw, 72rem);
    max-height: calc(100dvh - 3rem);
    margin: 0;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(245, 240, 234, 0.97);
    box-shadow: 0 30px 60px rgba(5, 8, 14, 0.28);
}

.gallery-modal-figure img {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 12rem);
    height: auto;
    object-fit: contain;
}

.gallery-modal-caption {
    display: grid;
    gap: 0.35rem;
}

.gallery-modal-title,
.gallery-modal-note {
    margin: 0;
}

.gallery-modal-title {
    font-size: 1rem;
    font-weight: 700;
}

.gallery-modal-note {
    color: var(--color-ink-soft);
    line-height: 1.55;
}

.architecture-resource-grid,
.architecture-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.resource-card,
.topic-panel,
.wild-feature {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(29, 39, 51, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
    content-visibility: auto;
    contain-intrinsic-size: 1px 420px;
}

.nyc-corridor .architecture-resource-grid {
    gap: 1.5rem;
}

.corridor-route-card,
.corridor-stops-card {
    padding: 1.85rem;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 40px rgba(11, 16, 24, 0.22);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.corridor-route-card {
    background-image:
        linear-gradient(180deg, rgba(33, 41, 58, 0.68), rgba(18, 25, 38, 0.78)),
        url("../images/backgrounds/rooms/generated/cozy-room-with-tarot-cards-1-1200.jpg");
}

.corridor-stops-card {
    background-image:
        linear-gradient(180deg, rgba(78, 46, 33, 0.62), rgba(31, 22, 41, 0.78)),
        url("../images/backgrounds/tarot/generated/botanical-bohemian-hero-study-29-1200.jpg");
}

.corridor-route-card .resource-type,
.corridor-stops-card .resource-type,
.corridor-route-card h3,
.corridor-stops-card h3,
.corridor-route-card p,
.corridor-stops-card p {
    color: var(--color-white);
}

.corridor-route-card p,
.corridor-stops-card p {
    color: rgba(255, 255, 255, 0.88);
}

.corridor-route-card .resource-links a,
.corridor-stops-card .resource-links a {
    color: #fff6ef;
}

.corridor-route-card .resource-preview-link:hover,
.corridor-route-card .resource-preview-link:focus-visible,
.corridor-stops-card .resource-preview-link:hover,
.corridor-stops-card .resource-preview-link:focus-visible {
    color: #f6d9bf;
}

.resource-type {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    color: var(--color-accent);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.resource-type::before {
    background-image: url("../images/icons/letters-icon.png?v=20260317f");
}

.site-footer p::before {
    background-image: url("../images/icons/mandala-icon-2.png?v=20260317f");
}

.resource-card h3,
.topic-panel h3,
.wild-feature h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.resource-card p,
.topic-panel p,
.wild-feature p {
    margin-bottom: 0;
    line-height: 1.75;
    color: var(--color-ink-soft);
}

.resource-links {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.resource-links li + li {
    margin-top: 0.55rem;
}

.resource-links a {
    color: #2e2457;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    text-underline-offset: 0.18em;
}

.resource-links-light a {
    color: var(--color-white);
}

.resource-preview-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-preview-link::after {
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 auto;
    background-image: url("../images/icons/flowers-icon.png?v=20260317f");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    opacity: 0.85;
}

.resource-preview-link:hover,
.resource-preview-link:focus-visible {
    color: var(--color-accent);
}

.resource-links-light .resource-preview-link:hover,
.resource-links-light .resource-preview-link:focus-visible {
    color: #f6d9bf;
}

.resource-preview-card {
    position: fixed;
    top: 0;
    left: 0;
    width: min(22rem, calc(100vw - 2rem));
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(29, 39, 51, 0.12);
    border-radius: calc(var(--radius-md) + 2px);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 42px rgba(29, 39, 51, 0.18);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0.5rem, 0);
    transition:
        opacity 140ms ease,
        transform 140ms ease;
    z-index: 70;
}

.resource-preview-card.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.resource-preview-card h3,
.resource-preview-summary,
.resource-preview-domain,
.resource-preview-type {
    margin: 0;
}

.resource-preview-type {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    color: var(--color-accent);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.resource-preview-type::before {
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 auto;
    background-image: url("../images/icons/mandala-icon-1.png?v=20260317f");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.resource-preview-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.15rem;
    line-height: 1.15;
}

.resource-preview-summary {
    color: var(--color-ink-soft);
    font-size: 0.94rem;
    line-height: 1.55;
}

.resource-preview-domain {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.8rem;
    color: #2e2457;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.resource-preview-domain::before {
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 auto;
    background-image: url("../images/icons/phone-icon.png?v=20260317f");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.architecture-sustainable {
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(180deg, rgba(25, 55, 44, 0.7), rgba(25, 55, 44, 0.44)),
    url("../images/backgrounds/paisley-floral-lush-2.png?v=20260317d");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.architecture-sustainable .section-kicker,
.architecture-sustainable .section-heading h2,
.architecture-sustainable .topic-panel h3,
.architecture-sustainable .topic-panel p {
    color: var(--color-white);
}

.architecture-sustainable .topic-panel {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(16, 39, 31, 0.48);
    backdrop-filter: blur(10px);
}

.manhattan-districts {
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(180deg, rgba(46, 36, 87, 0.7), rgba(31, 43, 67, 0.42)),
    url("../images/backgrounds/paisley-floral-lush-2.png?v=20260317d");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.manhattan-districts .section-kicker,
.manhattan-districts .section-heading h2,
.manhattan-districts .topic-panel h3,
.manhattan-districts .topic-panel p {
    color: var(--color-white);
}

.manhattan-districts .topic-panel {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(23, 29, 48, 0.5);
    backdrop-filter: blur(10px);
}

.chicago-preservation {
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(180deg, rgba(89, 42, 28, 0.72), rgba(54, 32, 24, 0.48)),
    url("../images/backgrounds/paisley-floral-lush-1.png?v=20260317a");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.chicago-preservation .section-kicker,
.chicago-preservation .section-heading h2,
.chicago-preservation .topic-panel h3,
.chicago-preservation .topic-panel p {
    color: var(--color-white);
}

.chicago-preservation .topic-panel {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(44, 24, 18, 0.52);
    backdrop-filter: blur(10px);
}

.baltimore-strengths {
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(180deg, rgba(33, 61, 52, 0.72), rgba(39, 61, 79, 0.44)),
    url("../images/backgrounds/paisley-floral-lush-2.png?v=20260317d");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.baltimore-strengths .section-kicker,
.baltimore-strengths .section-heading h2,
.baltimore-strengths .topic-panel h3,
.baltimore-strengths .topic-panel p {
    color: var(--color-white);
}

.baltimore-strengths .topic-panel {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(16, 34, 41, 0.52);
    backdrop-filter: blur(10px);
}

.baltimore-districts {
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(180deg, rgba(46, 36, 87, 0.72), rgba(78, 50, 32, 0.48)),
    url("../images/backgrounds/paisley-floral-lush-1.png?v=20260317a");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.baltimore-districts .section-kicker,
.baltimore-districts .section-heading h2,
.baltimore-districts .topic-panel h3,
.baltimore-districts .topic-panel p {
    color: var(--color-white);
}

.baltimore-districts .topic-panel {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(31, 24, 44, 0.52);
    backdrop-filter: blur(10px);
}

.architecture-wild-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1.5rem;
}

.wild-feature:first-child {
    background: linear-gradient(180deg, rgba(46, 36, 87, 0.84), rgba(179, 86, 61, 0.72));
    color: var(--color-white);
}

.wild-feature:first-child p {
    color: rgba(255, 255, 255, 0.88);
}

.site-footer {
    padding: 2.5rem 0;
    margin-top: auto;
    background: linear-gradient(180deg, rgba(18, 22, 27, 0.42), rgba(18, 22, 27, 0.74)),
    url("../images/backgrounds/paisley-floral-tropical-lush-1.png?v=20260317a");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.site-footer p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    text-align: center;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-visual-card {
    content-visibility: auto;
    contain-intrinsic-size: 1px 420px;
}

.manhattan-page main .container {
    display: flex;
    flex-direction: column;
}

.manhattan-page .page-intro {
    order: 1;
}

.manhattan-page .manhattan-districts {
    order: 2;
}

.manhattan-page .manhattan-routes {
    order: 3;
}

.manhattan-page [aria-labelledby="manhattan-figures-heading"] {
    order: 4;
}

.manhattan-page [aria-labelledby="manhattan-research-heading"] {
    order: 5;
}

.manhattan-page .manhattan-assets {
    order: 6;
}

.manhattan-page .page-visuals {
    order: 7;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
}

.swiper-pagination-bullet-active {
    background: var(--color-white);
}

@media (min-width: 1280px) {
    :root {
        --site-width: 1380px;
        --page-gutter: 2.75rem;
        --section-space: 3.5rem;
    }

    .site-header-banner,
    .site-header-overlay {
        min-height: 132px;
    }

    .home-page .site-header-banner,
    .icons-page .site-header-banner,
    .architecture-page .site-header-banner,
    .nyc-page .site-header-banner,
    .nyc-museums-page .site-header-banner,
    .manhattan-page .site-header-banner,
    .chicago-page .site-header-banner,
    .baltimore-page .site-header-banner,
    .national-parks-page .site-header-banner,
    .home-page .site-header-overlay,
    .icons-page .site-header-overlay,
    .architecture-page .site-header-overlay,
    .nyc-page .site-header-overlay,
    .nyc-museums-page .site-header-overlay,
    .manhattan-page .site-header-overlay,
    .chicago-page .site-header-overlay,
    .baltimore-page .site-header-overlay,
    .national-parks-page .site-header-overlay {
        min-height: 212px;
    }

    .hero-section {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        gap: 2.5rem;
    }

    .hero-copy {
        padding-top: 2.25rem;
    }

    .swiper,
    .swiper-slide {
        min-height: 680px;
    }

    .gallery-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 1680px) {
    :root {
        --site-width: 1560px;
        --page-gutter: 3.5rem;
        --section-space: 4rem;
    }

    .site-header-banner,
    .site-header-overlay {
        min-height: 144px;
    }

    .home-page .site-header-banner,
    .icons-page .site-header-banner,
    .architecture-page .site-header-banner,
    .nyc-page .site-header-banner,
    .nyc-museums-page .site-header-banner,
    .manhattan-page .site-header-banner,
    .chicago-page .site-header-banner,
    .baltimore-page .site-header-banner,
    .national-parks-page .site-header-banner,
    .home-page .site-header-overlay,
    .icons-page .site-header-overlay,
    .architecture-page .site-header-overlay,
    .nyc-page .site-header-overlay,
    .nyc-museums-page .site-header-overlay,
    .manhattan-page .site-header-overlay,
    .chicago-page .site-header-overlay,
    .baltimore-page .site-header-overlay,
    .national-parks-page .site-header-overlay {
        min-height: 224px;
    }

    .page-summary h2 {
        max-width: 48rem;
        font-size: clamp(2rem, 2.6vw, 3.25rem);
    }

    .hero-section {
        gap: 3rem;
        padding-top: 2.75rem;
    }

    .hero-copy h2 {
        max-width: 18ch;
        font-size: clamp(2.35rem, 3vw, 4.4rem);
    }

    .hero-copy p {
        max-width: 40rem;
        font-size: 1.08rem;
    }

    .swiper,
    .swiper-slide {
        min-height: 760px;
    }

    .slide-content {
        max-width: 26rem;
    }

    .gallery-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 2200px) {
    :root {
        --site-width: 1820px;
        --page-gutter: 4.5rem;
    }

    .site-header-banner,
    .site-header-overlay {
        min-height: 152px;
    }

    .home-page .site-header-banner,
    .architecture-page .site-header-banner,
    .nyc-page .site-header-banner,
    .nyc-museums-page .site-header-banner,
    .manhattan-page .site-header-banner,
    .chicago-page .site-header-banner,
    .baltimore-page .site-header-banner,
    .national-parks-page .site-header-banner,
    .home-page .site-header-overlay,
    .architecture-page .site-header-overlay,
    .nyc-page .site-header-overlay,
    .nyc-museums-page .site-header-overlay,
    .manhattan-page .site-header-overlay,
    .chicago-page .site-header-overlay,
    .baltimore-page .site-header-overlay,
    .national-parks-page .site-header-overlay {
        min-height: 236px;
    }

    .swiper,
    .swiper-slide {
        min-height: 860px;
    }

    .grid {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --page-gutter: 1.5rem;
        --section-space: 2.25rem;
    }

    .site-header-banner,
    .site-header-overlay {
        min-height: 76px;
    }

    .home-page .site-header-banner,
    .home-page .site-header-overlay,
    .icons-page .site-header-banner,
    .icons-page .site-header-overlay,
    .architecture-page .site-header-banner,
    .nyc-page .site-header-banner,
    .nyc-museums-page .site-header-banner,
    .manhattan-page .site-header-banner,
    .chicago-page .site-header-banner,
    .baltimore-page .site-header-banner,
    .national-parks-page .site-header-banner,
    .home-page .site-header-overlay,
    .architecture-page .site-header-overlay,
    .nyc-page .site-header-overlay,
    .nyc-museums-page .site-header-overlay,
    .manhattan-page .site-header-overlay,
    .chicago-page .site-header-overlay,
    .baltimore-page .site-header-overlay,
    .national-parks-page .site-header-overlay {
        min-height: 96px;
    }

    .site-header-topline {
        align-items: center;
        margin-bottom: 0.55rem;
    }

    .site-nav {
        display: none;
    }

    .site-header-meta {
        width: 100%;
        justify-content: space-between;
    }

    .site-header-actions {
        width: 100%;
        justify-content: space-between;
        gap: 0.45rem;
    }

    .site-nav-caption {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        order: 2;
        padding: 0.65rem 1rem;
        font-size: 0.88rem;
    }

    .site-home-link {
        order: 1;
        width: 2.75rem;
        height: 2.75rem;
    }

    .site-home-link::before {
        width: 1.2rem;
        height: 1.2rem;
    }

    .mobile-nav-drawer {
        display: block;
    }

    .site-header-overlay {
        padding: 0.9rem 0 0.2rem;
    }

    .site-quicklinks {
        display: none;
    }

    .page-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1rem;
    }

    .page-intro-title h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-summary {
        padding: 1rem;
    }

    .page-summary h2 {
        max-width: 26rem;
        font-size: clamp(1.45rem, 5.8vw, 2.2rem);
        line-height: 1.12;
    }

    .page-summary-text {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-section,
    .grid,
    .gallery-grid,
    .icon-library-grid,
    .architecture-resource-grid,
    .architecture-topic-grid,
    .architecture-wild-layout {
        grid-template-columns: 1fr;
    }

    .hero-section {
        gap: 1rem;
        padding-top: 1rem;
    }

    .gallery-header {
        align-items: start;
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-shuffle-button {
        width: 100%;
        justify-content: center;
    }

    .resource-preview-card {
        display: none;
    }

    .hero-copy {
        padding: 0;
    }

    .hero-copy h2,
    .section-heading h2 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-copy p {
        max-width: 100%;
    }

    .swiper,
    .swiper-slide {
        min-height: 380px;
    }

    .swiper-slide {
        padding: 1.25rem;
    }

    .slide-content {
        max-width: 18rem;
    }

    .gallery-card,
    .gallery-card-wide {
        grid-column: auto;
    }

    .gallery-card-tall {
        grid-row: span 1;
    }

    .gallery-card-media {
        padding: 0.7rem;
    }

    .gallery-card img {
        max-height: 60vh;
    }

    .gallery-modal-panel {
        padding: 0.85rem;
    }

    .gallery-modal-figure {
        width: min(100vw - 1rem, 44rem);
        max-height: calc(100dvh - 1rem);
        padding: 0.8rem;
    }

    .gallery-modal-figure img {
        max-height: calc(100dvh - 10rem);
    }

    .icon-card-preview {
        min-height: 11rem;
    }

    .icon-card-preview img {
        width: min(9rem, 100%);
        max-height: 9rem;
    }

    .architecture-sustainable {
        padding: 1.25rem;
    }

    .manhattan-districts {
        padding: 1.25rem;
    }

    .chicago-preservation {
        padding: 1.25rem;
    }

    .baltimore-strengths,
    .baltimore-districts {
        padding: 1.25rem;
    }

    .section-surface {
        padding: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .site-footer {
        margin-top: auto;
        padding: 1.6rem 0 max(1.6rem, env(safe-area-inset-bottom));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .site-footer p {
        display: grid;
        justify-items: center;
        gap: 0.15rem;
        font-size: 1rem;
    }

    .footer-line {
        display: block;
    }
}
