:root {
    --p-ink: #17222b;
    --p-muted: #6b747b;
    --p-line: #e4e5e5;
    --p-bg: #f8f8f6;
    --p-dark: #162a36;
    --p-accent: #b69160;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--p-bg); }
body { margin: 0; color: var(--p-ink); background: var(--p-bg); font: 15px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
body.lightbox-open { overflow: hidden; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; }

.gallery-hero { position: relative; min-height: min(76vh, 760px); display: flex; align-items: flex-end; overflow: hidden; color: white; background: linear-gradient(145deg, #29495c, #132632); }
.gallery-hero.no-cover { min-height: 460px; }
.gallery-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); }
.gallery-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,14,20,.34) 0%, rgba(7,18,25,.08) 35%, rgba(6,17,24,.76) 100%); }
.gallery-hero__content { position: relative; z-index: 1; width: min(1320px, calc(100% - 64px)); min-height: 100%; margin: 0 auto; padding: 34px 0 48px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: 1fr auto; align-items: end; gap: 28px; }
.public-brand { align-self: start; justify-self: start; display: inline-flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.public-brand__mark { display: inline-grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; letter-spacing: 0; }
.gallery-hero__title { grid-column: 1; }
.gallery-hero__title h1 { max-width: 900px; margin: 4px 0 8px; font: 500 clamp(40px, 7vw, 92px)/.96 Georgia, "Times New Roman", serif; letter-spacing: -.045em; text-wrap: balance; }
.gallery-hero__title > p:last-child { margin: 0; color: rgba(255,255,255,.86); font-size: clamp(15px, 2vw, 20px); }
.public-kicker { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.gallery-hero__meta { grid-column: 2; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; padding-bottom: 5px; color: rgba(255,255,255,.82); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.gallery-nav { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(218,220,220,.9); background: rgba(248,248,246,.94); backdrop-filter: blur(14px); }
.gallery-nav__inner { width: min(1320px, calc(100% - 64px)); min-height: 70px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.gallery-nav__links { display: flex; align-items: center; gap: 28px; }
.gallery-nav__links a { position: relative; padding: 24px 0 21px; color: #4f595f; text-decoration: none; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.gallery-nav__links a:hover { color: var(--p-ink); }
.public-button { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; padding: 9px 15px; border: 1px solid var(--p-dark); border-radius: 2px; color: #fff; background: var(--p-dark); text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.public-button:hover { background: #0e1e27; }
.public-button--dark { border-color: #fff; color: #111; background: #fff; }

.gallery-main { width: min(1320px, calc(100% - 64px)); margin: 0 auto; }
.gallery-intro { max-width: 820px; margin: 70px auto 0; text-align: center; }
.gallery-intro p { margin: 0; color: #566167; font: 400 clamp(18px, 2.5vw, 27px)/1.45 Georgia, "Times New Roman", serif; }
.public-section { padding: 86px 0 10px; scroll-margin-top: 70px; }
.public-section__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.public-section__heading h2 { margin: 4px 0 0; font: 500 clamp(36px, 5vw, 58px)/1 Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
.public-section__heading > p { max-width: 430px; margin: 0; color: var(--p-muted); font-size: 13px; text-align: right; }

.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.photo-tile { position: relative; display: grid; min-width: 0; aspect-ratio: 3 / 2; overflow: hidden; place-items: center; background: #efefec; }
.photo-tile__open { display: grid; width: 100%; height: 100%; padding: 0; border: 0; place-items: center; background: transparent; }
.photo-tile img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; background: #fff; transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .2s ease; }
.photo-tile:hover img { filter: brightness(.97); }
.photo-select { position: absolute; top: 12px; right: 12px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: white; background: rgba(16,28,35,.28); backdrop-filter: blur(6px); font-size: 25px; line-height: 1; opacity: .78; transition: .15s ease; }
.photo-tile:hover .photo-select, .photo-select:focus, .photo-select.is-selected { opacity: 1; }
.photo-select.is-selected { color: #fff; background: #ad744f; border-color: #ad744f; }
.photo-select.is-selected span { transform: translateY(1px); }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.video-card, .floorplan-card { min-width: 0; overflow: hidden; border: 1px solid var(--p-line); background: #fff; }
.video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #0b1115; object-fit: contain; }
.asset-caption { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 52px; padding: 12px 14px; color: #535e65; font-size: 12px; }
.asset-caption span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.asset-caption a { flex: 0 0 auto; color: var(--p-dark); font-weight: 800; text-decoration: none; text-transform: uppercase; font-size: 10px; letter-spacing: .08em; }

.floorplan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.floorplan-card > a:first-child { display: block; background: #fff; }
.floorplan-card img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: contain; padding: 14px; background: #f0f0ed; }
.floorplan-pdf { min-height: 260px; display: grid !important; place-items: center; align-content: center; gap: 12px; color: var(--p-ink); text-decoration: none; background: #ecece8 !important; }
.floorplan-pdf span { display: grid; width: 72px; height: 88px; place-items: center; color: #fff; background: #9b5a51; font-weight: 900; }
.floorplan-pdf strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.gallery-empty { padding: 120px 20px; text-align: center; }
.gallery-empty h2 { margin: 0 0 8px; font: 500 38px/1.1 Georgia, serif; }
.gallery-empty p { color: var(--p-muted); }

.selection-bar { position: fixed; z-index: 40; left: 50%; bottom: max(22px, env(safe-area-inset-bottom)); transform: translateX(-50%); width: min(620px, calc(100% - 30px)); min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 12px 10px 20px; border: 1px solid rgba(255,255,255,.15); color: #fff; background: rgba(17,30,38,.96); box-shadow: 0 18px 55px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.selection-bar[hidden] { display: none; }
.selection-bar__actions { display: flex; align-items: center; gap: 10px; }
.selection-clear { border: 0; color: #fff; background: none; font-size: 12px; }

.lightbox { position: fixed; z-index: 100; inset: 0; width: 100vw; height: 100vh; height: 100dvh; overflow: hidden; color: #fff; background: rgba(7,12,15,.985); }
.lightbox[hidden] { display: none; }
.lightbox__topbar { position: absolute; z-index: 4; top: 0; left: 0; right: 0; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 22px; color: rgba(255,255,255,.82); background: linear-gradient(rgba(0,0,0,.5), transparent); font-size: 12px; }
.lightbox__topbar > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lightbox__topbar > div { display: flex; align-items: center; gap: 18px; }
.lightbox__topbar button { width: 42px; height: 42px; border: 0; color: #fff; background: transparent; font-size: 34px; font-weight: 200; }
.lightbox__download { color: #fff; text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lightbox__stage { width: 100%; height: 100%; min-width: 0; min-height: 0; display: grid; overflow: hidden; place-items: center; padding: 68px 72px 48px; }
.lightbox__stage img { display: block; width: auto; height: auto; max-width: calc(100vw - 144px); max-height: calc(100vh - 116px); max-height: calc(100dvh - 116px); object-fit: contain; object-position: center; user-select: none; }
.lightbox__nav { position: absolute; z-index: 3; top: 50%; width: 58px; height: 78px; transform: translateY(-50%); border: 0; color: #fff; background: rgba(255,255,255,.03); font-size: 58px; font-weight: 200; line-height: 1; }
.lightbox__nav:hover { background: rgba(255,255,255,.08); }
.lightbox__nav--prev { left: 0; }
.lightbox__nav--next { right: 0; }
.lightbox__counter { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .1em; }

.public-footer { width: min(1320px, calc(100% - 64px)); margin: 100px auto 0; padding: 34px 0 45px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--p-line); color: #777f83; font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.public-footer a { display: flex; align-items: center; gap: 8px; color: var(--p-dark); text-decoration: none; font-weight: 850; }
.public-footer .public-brand__mark { width: 27px; height: 27px; border-color: #66747c; }

.state-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 50% 10%, #e4e8e9, transparent 55%), #f4f4f1; }
.state-page__card { width: min(540px, 100%); padding: 55px 35px; text-align: center; }
.state-page__code { display: grid; width: 70px; height: 70px; margin: 0 auto 22px; place-items: center; border: 1px solid #b8c2c7; border-radius: 50%; color: var(--p-dark); font-size: 22px; font-weight: 800; }
.state-page h1 { margin: 0 0 10px; font: 500 clamp(36px, 7vw, 60px)/1.05 Georgia, serif; letter-spacing: -.035em; }
.state-page p { color: var(--p-muted); }
.state-page__small { font-size: 12px; }

@media (max-width: 900px) {
    .gallery-hero__content, .gallery-nav__inner, .gallery-main, .public-footer { width: min(100% - 36px, 1320px); }
    .gallery-hero__content { grid-template-columns: 1fr; }
    .gallery-hero__meta { grid-column: 1; flex-direction: row; align-items: center; justify-content: flex-start; flex-wrap: wrap; }
    .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .floorplan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
    .gallery-hero { min-height: 68vh; }
    .gallery-hero.no-cover { min-height: 390px; }
    .gallery-hero__content { width: calc(100% - 30px); padding: 22px 0 30px; }
    .gallery-hero__title h1 { font-size: clamp(42px, 14vw, 68px); }
    .gallery-nav__inner { width: 100%; min-height: 58px; padding: 0 14px; overflow-x: auto; }
    .gallery-nav__links { gap: 17px; }
    .gallery-nav__links a { padding: 20px 0 17px; font-size: 10px; white-space: nowrap; }
    .gallery-nav .public-button { min-height: 34px; padding: 7px 10px; white-space: nowrap; font-size: 9px; }
    .gallery-main, .public-footer { width: calc(100% - 24px); }
    .gallery-intro { margin-top: 48px; padding: 0 10px; }
    .public-section { padding-top: 62px; }
    .public-section__heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .public-section__heading > p { text-align: left; }
    .photo-grid { gap: 5px; }
    .photo-select { top: 7px; right: 7px; width: 34px; height: 34px; }
    .video-grid, .floorplan-grid { grid-template-columns: 1fr; }
    .lightbox__stage { padding: 62px 10px 50px; }
    .lightbox__stage img { max-width: calc(100vw - 20px); max-height: calc(100vh - 112px); max-height: calc(100dvh - 112px); }
    .lightbox__nav { width: 44px; height: 64px; background: transparent; font-size: 46px; }
    .lightbox__topbar { padding: 8px 12px; }
    .lightbox__topbar > span { max-width: 45%; }
    .public-footer { margin-top: 72px; align-items: flex-start; flex-direction: column; gap: 12px; }
    .selection-bar { min-height: 58px; padding-left: 14px; }
    .selection-bar .public-button { min-height: 36px; padding: 7px 10px; font-size: 9px; }
}

/* Share and email additions — 1.0.5 */
body.share-modal-open { overflow: hidden; }
.gallery-nav__actions { display: flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.public-button--outline { color: var(--p-dark); background: transparent; }
.public-button--outline:hover { color: #fff; background: var(--p-dark); }


.share-modal { position: fixed; z-index: 150; inset: 0; display: grid; place-items: center; padding: 24px; }
.share-modal[hidden] { display: none; }
.share-modal__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(7,15,19,.72); backdrop-filter: blur(7px); }
.share-modal__panel { position: relative; z-index: 1; width: min(610px, 100%); max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); overflow: auto; padding: 30px; border: 1px solid rgba(255,255,255,.22); background: #fff; box-shadow: 0 28px 80px rgba(0,0,0,.34); }
.share-modal__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.share-modal__heading h2 { margin: 5px 0 0; font: 500 42px/1 Georgia, "Times New Roman", serif; letter-spacing: -.035em; text-transform: uppercase; }
.share-modal__close { width: 42px; height: 42px; border: 0; color: #3a4449; background: transparent; font-size: 32px; font-weight: 200; line-height: 1; }
.share-link-row { display: grid; grid-template-columns: 1fr auto; border: 1px solid #e2e3e1; background: #f6f6f4; }
.share-link-row input { min-width: 0; height: 50px; border: 0; color: #243139; background: transparent; padding: 0 16px; outline: none; font: 13px/1.2 Arial, sans-serif; }
.share-link-row button { min-width: 105px; border: 0; color: #fff; background: #2b2b2b; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.share-link-row button:hover { background: #111; }
.share-status { min-height: 24px; padding-top: 7px; color: #2d7350; font-size: 11px; }
.share-services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.share-service { min-width: 0; display: grid; justify-items: center; gap: 8px; padding: 9px 3px; border: 0; color: #765d56; background: transparent; text-decoration: none; font-size: 12px; }
.share-service:hover, .share-service:focus { color: var(--p-dark); }
.share-service__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #fff; background: #858585; transition: transform .15s ease, background .15s ease; }
.share-service:hover .share-service__icon, .share-service:focus .share-service__icon { transform: translateY(-2px); background: #5f6669; }
.share-service__icon svg { width: 26px; height: 26px; fill: currentColor; }
.share-modal__note { margin: 23px 0 0; color: #7c8589; font-size: 11px; line-height: 1.6; text-align: center; }

@media (max-width: 900px) {
}

@media (max-width: 650px) {
    .gallery-nav__actions { gap: 6px; }
    .gallery-nav__actions .public-button { min-height: 34px; padding: 7px 9px; font-size: 8px; }
    .share-modal { padding: 12px; }
    .share-modal__panel { max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); padding: 24px 18px; }
    .share-modal__heading h2 { font-size: 36px; }
    .share-link-row { grid-template-columns: minmax(0, 1fr) 88px; }
    .share-link-row button { min-width: 88px; }
    .share-services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}

/* Compact email sharing — 1.0.10 */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.email-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }
.email-share-compact { width: min(1320px, calc(100% - 64px)); margin: 74px auto 0; scroll-margin-top: 88px; }
.email-share-compact__inner { display: grid; grid-template-columns: minmax(230px, .8fr) minmax(360px, 1.2fr); align-items: center; gap: 10px 38px; padding: 25px 28px; border: 1px solid var(--p-line); background: #fff; }
.email-share-compact__copy h2 { margin: 4px 0 0; font: 500 clamp(24px, 3vw, 35px)/1.08 Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
.email-share-compact__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.email-share-compact__field { min-width: 0; }
.email-share-compact__field input { width: 100%; min-height: 44px; padding: 10px 13px; border: 1px solid #d5d9da; border-radius: 2px; color: var(--p-ink); background: #fbfbfa; outline: none; font: inherit; }
.email-share-compact__field input:focus { border-color: #89979e; background: #fff; box-shadow: 0 0 0 3px rgba(22,42,54,.08); }
.email-share-compact__form .public-button { min-width: 92px; }
.email-share-compact__form .public-button[disabled] { opacity: .62; cursor: wait; }
.email-share-compact__status { grid-column: 2; min-height: 19px; color: var(--p-muted); font-size: 12px; }
.email-share-compact__status.is-success { color: #2d7350; }
.email-share-compact__status.is-error { color: #9b4038; }

@media (max-width: 780px) {
    .email-share-compact { width: min(100% - 36px, 1320px); margin-top: 58px; }
    .email-share-compact__inner { grid-template-columns: 1fr; gap: 17px; padding: 23px 20px; }
    .email-share-compact__status { grid-column: 1; }
}

@media (max-width: 480px) {
    .email-share-compact { width: calc(100% - 24px); }
    .email-share-compact__form { grid-template-columns: minmax(0, 1fr) 78px; }
    .email-share-compact__form .public-button { min-width: 78px; padding-inline: 9px; }
}


/* Public gallery catalog — 1.0.12 */
.catalog-hero { position: relative; min-height: 430px; color: #fff; background: radial-gradient(circle at 82% 18%, rgba(145,177,190,.34), transparent 35%), linear-gradient(135deg, #0d1c25 0%, #183746 58%, #6d858e 100%); }
.catalog-hero__inner { position: relative; width: min(1320px, calc(100% - 64px)); min-height: 430px; margin: 0 auto; padding: 34px 0 62px; display: flex; flex-direction: column; justify-content: space-between; }
.catalog-brand { align-self: flex-start; }
.catalog-admin-link { position: absolute; top: 38px; right: 0; padding: 9px 0; color: rgba(255,255,255,.76); text-decoration: none; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.catalog-admin-link:hover { color: #fff; }
.catalog-hero__copy { max-width: 810px; padding-top: 80px; }
.catalog-hero__copy h1 { margin: 9px 0 18px; font: 500 clamp(58px, 8vw, 112px)/.88 Georgia, "Times New Roman", serif; letter-spacing: -.055em; text-transform: uppercase; }
.catalog-hero__copy > p:last-child { max-width: 560px; margin: 0; color: rgba(255,255,255,.76); font-size: 15px; }
.catalog-main { width: min(1320px, calc(100% - 64px)); margin: 0 auto; padding: 66px 0 30px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 22px; }
.catalog-card { min-width: 0; overflow: hidden; color: var(--p-ink); background: #fff; border: 1px solid var(--p-line); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.catalog-card:hover, .catalog-card:focus-visible { transform: translateY(-4px); border-color: #b8c1c4; box-shadow: 0 20px 48px rgba(16,34,44,.12); outline: none; }
.catalog-card__image { display: grid; aspect-ratio: 3 / 2; overflow: hidden; place-items: center; background: #eceeec; }
.catalog-card__image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; background: #f1f1ee; transition: transform .35s ease; }
.catalog-card:hover .catalog-card__image img { transform: scale(1.018); }
.catalog-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(145deg, #e0e5e5, #b4c1c5); }
.catalog-card__placeholder span { display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid rgba(255,255,255,.82); color: #fff; font: 700 28px/1 Arial, sans-serif; }
.catalog-card__body { min-height: 224px; display: flex; flex-direction: column; padding: 24px 24px 20px; }
.catalog-card__body h2 { margin: 6px 0 6px; font: 500 clamp(27px, 3vw, 38px)/1.03 Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
.catalog-card__address { margin: 0; color: var(--p-muted); font-size: 13px; }
.catalog-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 28px; color: var(--p-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.catalog-card__meta strong { color: var(--p-dark); white-space: nowrap; }
.catalog-card__link { margin-top: 13px; overflow: hidden; color: #98a0a3; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.catalog-empty { min-height: 330px; display: grid; place-items: center; align-content: center; text-align: center; }
.catalog-empty .public-brand__mark { width: 52px; height: 52px; margin-bottom: 18px; border-color: #7f8d93; color: #55656d; }
.catalog-empty h2 { margin: 0 0 7px; font: 500 38px/1.1 Georgia, serif; }
.catalog-empty p { margin: 0; color: var(--p-muted); }
.catalog-footer { width: min(1320px, calc(100% - 64px)); margin: 70px auto 0; padding: 32px 0 45px; display: flex; justify-content: space-between; border-top: 1px solid var(--p-line); color: #7b8488; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.catalog-footer a { color: var(--p-dark); text-decoration: none; }

@media (max-width: 920px) {
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
    .catalog-hero, .catalog-hero__inner { min-height: 380px; }
    .catalog-hero__inner, .catalog-main, .catalog-footer { width: calc(100% - 30px); }
    .catalog-hero__inner { padding-top: 24px; padding-bottom: 44px; }
    .catalog-admin-link { top: 28px; }
    .catalog-hero__copy { padding-top: 64px; }
    .catalog-hero__copy h1 { font-size: clamp(48px, 16vw, 72px); }
    .catalog-main { padding-top: 34px; }
    .catalog-grid { grid-template-columns: 1fr; gap: 18px; }
    .catalog-card__body { min-height: 190px; padding: 20px; }
    .catalog-footer { margin-top: 45px; }
}
