/*
Theme Name: Hudson Burnham Cleanroom
Theme URI: https://hudsonburnham.com/
Author: Cutting Edge Web Development
Description: Bespoke Hudson Burnham real estate experience for Chicago.
Version: 2.2.0
Text Domain: hudson-cleanroom
*/

:root {
    --hb-ink: #11110f;
    --hb-ink-soft: #1a1a17;
    --hb-paper: #f1eee6;
    --hb-paper-bright: #faf8f3;
    --hb-gold: #bd9859;
    --hb-gold-light: #dac395;
    --hb-blue: #7593a3;
    --hb-line-dark: rgba(255, 255, 255, 0.16);
    --hb-line-light: rgba(17, 17, 15, 0.18);
    --hb-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --hb-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hb-header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--hb-ink);
    background: var(--hb-paper);
    font-family: var(--hb-sans);
    letter-spacing: 0;
}
body.hb-menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; width: 100%; height: auto; }
[hidden] { display: none !important; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.hb-site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: var(--hb-header);
    padding: 0 42px;
    color: #fff;
    border-bottom: 1px solid var(--hb-line-dark);
    background: rgba(12, 12, 10, 0.78);
    backdrop-filter: blur(18px);
    transition: background-color .35s ease, min-height .35s ease;
}
.hb-site-header.is-scrolled { min-height: 68px; background: rgba(12, 12, 10, 0.94); }
.hb-brand { grid-column: 2; display: block; }
.hb-brand, .hb-menu-toggle, .hb-header-action { position: relative; z-index: 1000; }
.hb-brand img { width: 212px; max-height: 48px; object-fit: contain; }
.hb-menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid var(--hb-line-dark);
    border-radius: 50%;
    cursor: pointer;
}
.hb-menu-toggle span { display: block; width: 19px; height: 1px; background: currentColor; transition: transform .3s ease; }
.hb-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.hb-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.hb-header-action {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}
.hb-header-action span { color: var(--hb-gold); font-size: 18px; }
.hb-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: calc(var(--hb-header) + 38px) 24px 36px;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    background: rgba(12, 12, 10, .98);
    transform: scale(.985);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.hb-nav::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 50% 30%, rgba(189,152,89,.12), transparent 42%); }
.hb-nav.is-open { z-index: 999; visibility: visible; opacity: 1; transform: scale(1); }
.hb-nav-links { position: relative; display: grid; justify-items: center; gap: 3px; text-align: center; }
.hb-nav-links a {
    color: var(--hb-paper-bright);
    font-family: var(--hb-serif);
    font-size: clamp(38px, 6vh, 62px);
    line-height: 1.15;
    text-decoration: none;
    transition: color .2s ease, transform .25s ease;
}
.hb-nav-links a:hover, .hb-nav-links a:focus-visible { color: var(--hb-gold); transform: translateY(-2px); }
.hb-nav-meta { position: relative; display: grid; justify-items: center; gap: 7px; width: min(540px, 100%); margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--hb-line-dark); color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.45; text-align: center; }
.hb-nav-meta img { width: min(240px, 64vw); margin-bottom: 8px; }
.hb-nav-meta address { max-width: 360px; font-style: normal; }
.hb-nav-meta a { color: #fff; text-decoration: none; }
.hb-nav-meta > span { margin-top: 7px; color: var(--hb-gold); text-transform: uppercase; }

.hb-main { min-height: 70vh; }
.hb-hero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
    background: #10100f;
    background-position: center;
    background-size: cover;
}
.hb-hero-video, .hb-hero-shade, .hb-hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hb-hero-video { z-index: 0; object-fit: cover; opacity: 0; transition: opacity 1.1s cubic-bezier(.22,1,.36,1); }
.hb-hero-video.is-ready { opacity: 1; }
.hb-hero-shade { z-index: 1; background: rgba(9, 9, 8, .48); }
.hb-hero-grain {
    z-index: 1;
    opacity: .16;
    pointer-events: none;
    background: rgba(15, 11, 7, .28);
}
.hb-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    align-items: end;
    gap: 26px;
    min-height: 100svh;
    width: min(1440px, calc(100% - 84px));
    margin: 0 auto;
    padding: calc(var(--hb-header) + 62px) 0 42px;
}
.hb-hero-copy { grid-column: 1 / -1; align-self: end; }
.hb-kicker { margin: 0 0 22px; color: var(--hb-gold); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.hb-hero h1 { max-width: 1120px; margin: 0; font-family: var(--hb-serif); font-size: 82px; font-weight: 400; line-height: .96; }
.hb-hero-word {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px);
}
.hb-hero.is-visible .hb-hero-word {
    animation: hbHeroWordIn .82s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: calc(.2s + (var(--hb-word-order) * .065s));
}
.hb-hero-copy > p:last-child,
.hb-hero-actions,
.hb-hero-foot {
    opacity: 0;
    transform: translateY(18px);
}
.hb-hero.is-visible .hb-hero-copy > p:last-child,
.hb-hero.is-visible .hb-hero-actions,
.hb-hero.is-visible .hb-hero-foot {
    animation: hbHeroDetailIn .72s cubic-bezier(.22,1,.36,1) forwards;
}
.hb-hero.is-visible .hb-hero-copy > p:last-child { animation-delay: .74s; }
.hb-hero.is-visible .hb-hero-actions { animation-delay: .86s; }
.hb-hero.is-visible .hb-hero-foot { animation-delay: .98s; }
@keyframes hbHeroWordIn {
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes hbHeroDetailIn {
    to { opacity: 1; transform: translateY(0); }
}
.hb-hero-copy > p:last-child { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: 19px; line-height: 1.6; }
.hb-hero-actions { grid-column: 1 / -1; align-self: end; justify-self: start; display: flex; gap: 10px; }
.hb-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 54px; padding: 0 22px; border: 1px solid transparent; color: inherit; font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; transition: color .25s ease, background-color .25s ease, border-color .25s ease; }
.hb-button-gold { color: #111; background: var(--hb-gold-light); }
.hb-button-gold:hover { background: #fff; }
.hb-button-ghost { color: #fff; border-color: var(--hb-line-dark); background: rgba(0,0,0,.18); }
.hb-button-ghost:hover { border-color: var(--hb-gold); }
.hb-hero-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding-top: 26px; border-top: 1px solid var(--hb-line-dark); color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.hb-hero-foot a { color: #fff; text-decoration: none; }
.hb-hero-foot a span { margin-left: 12px; color: var(--hb-gold); }

.hb-intro {
    display: grid;
    grid-template-columns: 100px minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 54px;
    width: min(1320px, calc(100% - 84px));
    margin: 0 auto;
    padding: 128px 0;
}
.hb-section-number { color: rgba(17,17,15,.42); font-family: var(--hb-serif); font-size: 28px; }
.hb-intro h2, .hb-section-head h2, .hb-properties h2, .hb-sell h2, .hb-contact-band h2 { margin: 0; font-family: var(--hb-serif); font-size: 64px; font-weight: 400; line-height: 1; }
.hb-intro-body { padding-top: 38px; }
.hb-intro-body p { margin: 0 0 30px; color: #5c5952; font-size: 18px; line-height: 1.75; }
.hb-text-link { display: inline-flex; gap: 18px; padding-bottom: 7px; border-bottom: 1px solid var(--hb-ink); font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; }

.hb-properties { padding: 112px max(42px, calc((100vw - 1320px) / 2)); color: #fff; background: var(--hb-ink); }
.hb-properties-lead { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr); gap: 80px; align-items: end; }
.hb-properties-lead .hb-kicker { grid-column: 1 / -1; margin-bottom: -38px; }
.hb-properties-lead p:last-child { margin: 0 0 6px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; }
.hb-service-rail { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-top: 1px solid var(--hb-line-dark); border-bottom: 1px solid var(--hb-line-dark); }
.hb-service { position: relative; min-height: 290px; padding: 30px; border-right: 1px solid var(--hb-line-dark); color: #fff; text-decoration: none; transition: background-color .3s ease; }
.hb-service:last-child { border-right: 0; }
.hb-service:hover { background: rgba(189,152,89,.1); }
.hb-service > span { display: block; color: var(--hb-gold); font-size: 11px; }
.hb-service strong { display: block; margin-top: 86px; font-family: var(--hb-serif); font-size: 42px; font-weight: 400; }
.hb-service p { max-width: 300px; color: rgba(255,255,255,.56); line-height: 1.6; }
.hb-service i { position: absolute; right: 28px; top: 28px; color: var(--hb-gold); font-size: 24px; font-style: normal; }

.hb-listings { margin-top: 112px; padding-top: 82px; border-top: 1px solid var(--hb-line-dark); }
.hb-listings-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; margin-bottom: 34px; }
.hb-listings-head h3 { margin: 0; font-family: var(--hb-serif); font-size: 52px; font-weight: 400; line-height: 1; }
.hb-listing-actions { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.52); font-size: 11px; text-transform: uppercase; }
.hb-listing-actions .hb-rail-controls button { color: #fff; border-color: var(--hb-line-dark); }
.hb-listing-actions .hb-rail-controls button:hover { color: #111; background: var(--hb-gold-light); }
.hb-listing-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 30%); gap: 18px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.hb-listing-rail::-webkit-scrollbar { display: none; }
.hb-listing-card { min-width: 0; scroll-snap-align: start; background: var(--hb-ink-soft); }
.hb-listing-card a { display: block; color: inherit; text-decoration: none; }
.hb-listing-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #292924; }
.hb-listing-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.hb-listing-card:hover .hb-listing-image img { transform: scale(1.035); }
.hb-listing-image > span { position: absolute; left: 16px; bottom: 16px; padding: 8px 10px; color: #111; background: var(--hb-gold-light); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.hb-listing-meta { padding: 21px 20px 24px; }
.hb-listing-meta > strong { display: block; font-family: var(--hb-serif); font-size: 30px; font-weight: 400; }
.hb-listing-meta > strong small { margin-left: 3px; color: rgba(255,255,255,.5); font-family: var(--hb-sans); font-size: 11px; }
.hb-listing-meta h4 { margin: 15px 0 7px; font-size: 17px; font-weight: 650; }
.hb-listing-meta > p { min-height: 19px; margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }
.hb-listing-meta > div { display: flex; flex-wrap: wrap; gap: 7px 14px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hb-line-dark); color: rgba(255,255,255,.7); font-size: 11px; text-transform: uppercase; }
.hb-idx-footer { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 44px; margin-top: 28px; }
.hb-idx-compliance { justify-self: end; display: grid; grid-template-columns: 64px minmax(0, 700px); gap: 16px; align-items: start; color: rgba(255,255,255,.38); font-size: 9px; line-height: 1.55; }
.hb-idx-compliance img { width: 64px; background: #fff; }
.hb-idx-compliance p { margin: 0; }

.hb-neighborhoods { padding: 128px 0; background: var(--hb-paper-bright); overflow: hidden; }
.hb-section-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; width: min(1320px, calc(100% - 84px)); margin: 0 auto 58px; }
.hb-section-head h2 { max-width: 850px; }
.hb-rail-controls { display: flex; gap: 8px; }
.hb-rail-controls button { width: 52px; height: 52px; border: 1px solid var(--hb-line-light); border-radius: 50%; color: var(--hb-ink); background: transparent; cursor: pointer; }
.hb-rail-controls button:hover { color: #fff; background: var(--hb-ink); }
.hb-neighborhood-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 29vw); gap: 18px; overflow-x: auto; padding: 0 max(42px, calc((100vw - 1320px) / 2)) 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.hb-neighborhood-rail::-webkit-scrollbar { display: none; }
.hb-neighborhood { scroll-snap-align: start; min-width: 0; }
.hb-neighborhood a { display: block; color: inherit; text-decoration: none; }
.hb-neighborhood-image { aspect-ratio: 4 / 5; overflow: hidden; background: #ddd8ce; }
.hb-neighborhood-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.hb-neighborhood:hover img { transform: scale(1.035); }
.hb-neighborhood-meta { padding: 22px 4px; }
.hb-neighborhood-meta > span { color: var(--hb-gold); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.hb-neighborhood-meta h3 { margin: 10px 0 8px; font-family: var(--hb-serif); font-size: 34px; font-weight: 400; }
.hb-neighborhood-meta p { margin: 0; color: #6e6a62; line-height: 1.55; }

.hb-proof { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: #d8d2c7; }
.hb-proof-image { min-height: 720px; overflow: hidden; }
.hb-proof-image img { height: 100%; object-fit: cover; }
.hb-proof-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(42px, 9vw); }
.hb-proof-copy blockquote { margin: 0 0 36px; font-family: var(--hb-serif); font-size: 52px; line-height: 1.06; }
.hb-proof-copy > p { color: #58544c; font-size: 17px; line-height: 1.7; }
.hb-rating { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: end; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--hb-line-light); }
.hb-rating strong { font-family: var(--hb-serif); font-size: 42px; font-weight: 400; }
.hb-rating span { color: #68645d; font-size: 12px; text-transform: uppercase; }
.hb-rating span:last-child { color: var(--hb-gold); font-size: 16px; }

.hb-sell { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--hb-ink); }
.hb-sell-backdrop { position: absolute; inset: 0; background: url('/wp-content/uploads/2023/01/Monticelli_031_DSC06510-scaled.jpg') center/cover no-repeat; transform: scale(1.02); }
.hb-sell::after { position: absolute; inset: 0; content: ""; background: rgba(12, 12, 10, .68); }
.hb-sell-inner { position: relative; z-index: 1; width: min(900px, calc(100% - 48px)); text-align: center; }
.hb-sell h2 { font-size: 78px; }
.hb-sell-inner > p:not(.hb-kicker) { max-width: 620px; margin: 28px auto 34px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.65; }
.hb-button-light { color: #111; background: #fff; }
.hb-button-light:hover { background: var(--hb-gold-light); }

.hb-contact-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; padding: 120px max(42px, calc((100vw - 1320px) / 2)); color: #fff; background: #10100f; }
.hb-contact-band h2 { max-width: 580px; }
.hb-office { display: grid; gap: 8px; margin-top: 60px; color: rgba(255,255,255,.62); line-height: 1.5; }
.hb-office strong { margin-bottom: 10px; color: var(--hb-gold); font-size: 11px; text-transform: uppercase; }
.hb-office a { width: max-content; color: #fff; text-decoration: none; }
.hb-contact-form { display: grid; gap: 24px; padding: 0; }
.hb-field { display: grid; gap: 8px; }
.hb-field label { color: rgba(255,255,255,.54); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.hb-field input, .hb-field select, .hb-field textarea { width: 100%; min-height: 48px; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; color: #fff; background: transparent; outline: 0; }
.hb-field input:focus, .hb-field select:focus, .hb-field textarea:focus { border-bottom-color: var(--hb-gold); }
.hb-field select { color-scheme: dark; }
.hb-field textarea { min-height: 105px; resize: vertical; }
.hb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hb-honeypot { position: absolute; left: -9999px; }
.hb-submit { display: flex; justify-content: space-between; align-items: center; min-height: 58px; padding: 0 22px; border: 0; color: #111; background: var(--hb-gold-light); font-size: 12px; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.hb-form-status { padding: 14px 16px; border: 1px solid var(--hb-gold); color: #fff; }

.hb-site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 90px max(42px, calc((100vw - 1320px) / 2)) 34px; color: rgba(255,255,255,.62); background: #0a0a09; border-top: 1px solid var(--hb-line-dark); }
.hb-footer-brand img { width: 250px; }
.hb-footer-brand p { max-width: 420px; margin: 30px 0 0; line-height: 1.65; }
.hb-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.hb-footer-links > div { display: grid; align-content: start; gap: 11px; }
.hb-footer-links span { margin-bottom: 8px; color: var(--hb-gold); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.hb-footer-links a { width: max-content; color: #fff; text-decoration: none; }
.hb-footer-bottom { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--hb-line-dark); font-size: 11px; }
.hb-footer-bottom > span:last-child { text-align: right; }
.hb-footer-bottom a { margin-left: 16px; color: #fff; text-decoration: none; }

.hb-default-page { width: min(1120px, calc(100% - 42px)); margin: 0 auto; padding: 150px 0 100px; }
.hb-default-page h1 { margin: 0 0 36px; font-family: var(--hb-serif); font-size: 74px; font-weight: 400; line-height: 1; }
.hb-default-page .entry-content { font-size: 18px; line-height: 1.7; }
.hb-contact-page { min-height: 100svh; padding: 150px 42px 100px; color: #fff; background: var(--hb-ink); }
.hb-contact-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; width: min(1120px, 100%); margin: 0 auto; }
.hb-contact-copy h1 { margin: 18px 0 24px; font-family: var(--hb-serif); font-size: 74px; font-weight: 400; line-height: 1; }
.hb-contact-copy p { color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.65; }
.hb-eyebrow { color: var(--hb-gold); font-size: 11px; font-weight: 800; text-transform: uppercase; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.hb-hero[data-reveal] { transform: none; }

@media (max-width: 1050px) {
    .hb-site-header { padding: 0 24px; }
    .hb-header-action { font-size: 0; width: 46px; height: 46px; justify-content: center; border: 1px solid var(--hb-line-dark); border-radius: 50%; }
    .hb-header-action span { margin: 0; }
    .hb-hero-inner { grid-template-columns: 1fr; width: calc(100% - 48px); }
    .hb-hero h1 { font-size: 70px; }
    .hb-hero-actions { grid-column: 1; justify-self: start; }
    .hb-intro { grid-template-columns: 70px 1fr; width: calc(100% - 48px); }
    .hb-intro-body { grid-column: 2; }
    .hb-properties-lead { grid-template-columns: 1fr; }
    .hb-properties-lead .hb-kicker { margin: 0; }
    .hb-listing-rail { grid-auto-columns: minmax(300px, 46%); }
    .hb-contact-band { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    :root { --hb-header: 68px; }
    .hb-site-header { min-height: var(--hb-header); padding: 0 16px; }
    .hb-site-header.is-scrolled { min-height: 64px; }
    .hb-brand img { width: 154px; max-height: 40px; }
    .hb-menu-toggle, .hb-header-action { width: 42px; height: 42px; }
    .hb-nav { justify-content: flex-start; padding: 92px 20px max(24px, env(safe-area-inset-bottom)); }
    .hb-nav-links { gap: 2px; }
    .hb-nav-links a { font-size: clamp(32px, 5.35vh, 44px); line-height: 1.08; }
    .hb-nav-meta { gap: 4px; margin-top: 18px; padding-top: 15px; }
    .hb-nav-meta img { width: min(205px, 56vw); margin-bottom: 4px; }
    .hb-nav-meta > span { margin-top: 4px; }

    .hb-hero-inner { width: calc(100% - 34px); padding: calc(var(--hb-header) + 34px) 0 24px; }
    .hb-hero-shade { background: rgba(9, 9, 8, .62); }
    .hb-hero-copy { text-align: center; }
    .hb-hero h1 { font-size: 50px; line-height: .96; }
    .hb-hero-copy > p:last-child { margin-left: auto; margin-right: auto; font-size: 16px; line-height: 1.55; }
    .hb-hero-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .hb-button { min-width: 0; min-height: 52px; padding: 0 15px; gap: 8px; text-align: center; }
    .hb-hero-foot { padding-top: 18px; }

    .hb-intro { grid-template-columns: 1fr; gap: 22px; width: calc(100% - 34px); padding: 86px 0; }
    .hb-section-number { font-size: 20px; }
    .hb-intro-heading, .hb-intro-body { grid-column: 1; }
    .hb-intro-heading, .hb-intro-body { text-align: center; }
    .hb-intro-body { padding-top: 8px; }
    .hb-intro h2, .hb-section-head h2, .hb-properties h2, .hb-sell h2, .hb-contact-band h2 { font-size: 43px; line-height: 1.02; }
    .hb-intro-body p { font-size: 16px; }

    .hb-properties { padding: 82px 17px; }
    .hb-properties-lead { gap: 24px; }
    .hb-properties-lead, .hb-listings-head { text-align: center; }
    .hb-properties-lead p:last-child { font-size: 16px; }
    .hb-service-rail { grid-template-columns: 1fr; margin-top: 54px; }
    .hb-service { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--hb-line-dark); }
    .hb-service:last-child { border-bottom: 0; }
    .hb-service strong { margin-top: 48px; font-size: 36px; }
    .hb-listings { margin-top: 76px; padding-top: 62px; }
    .hb-listings-head { grid-template-columns: 1fr; gap: 22px; }
    .hb-listings-head h3 { font-size: 42px; }
    .hb-listing-actions { justify-content: center; }
    .hb-listing-actions .hb-rail-controls { display: none; }
    .hb-listing-rail { grid-auto-columns: 84vw; }
    .hb-idx-footer { grid-template-columns: 1fr; gap: 32px; }
    .hb-idx-footer .hb-button { width: 100%; }
    .hb-idx-compliance { justify-self: stretch; grid-template-columns: 52px 1fr; }
    .hb-idx-compliance img { width: 52px; }

    .hb-neighborhoods { padding: 88px 0; }
    .hb-section-head { grid-template-columns: 1fr; width: calc(100% - 34px); margin-bottom: 36px; }
    .hb-section-head { text-align: center; }
    .hb-rail-controls { display: none; }
    .hb-neighborhood-rail { grid-auto-columns: 82vw; padding: 0 17px 16px; }
    .hb-neighborhood-meta h3 { font-size: 30px; }

    .hb-proof { grid-template-columns: 1fr; min-height: 0; }
    .hb-proof-image { min-height: 440px; }
    .hb-proof-copy { padding: 70px 24px; }
    .hb-proof-copy blockquote { font-size: 42px; }
    .hb-rating { grid-template-columns: auto 1fr; }
    .hb-rating span:last-child { grid-column: 1 / -1; }

    .hb-sell { min-height: 650px; }
    .hb-sell-inner { width: calc(100% - 34px); text-align: center; }
    .hb-sell h2 { font-size: 48px; }
    .hb-sell-inner > p:not(.hb-kicker) { margin-left: auto; margin-right: auto; }

    .hb-contact-band { gap: 64px; padding: 86px 17px; }
    .hb-contact-intro { text-align: center; }
    .hb-office { justify-items: center; margin-top: 38px; }
    .hb-form-row { grid-template-columns: 1fr; }

    .hb-site-footer { grid-template-columns: 1fr; gap: 50px; padding: 68px 17px 28px; }
    .hb-footer-brand img { width: 210px; }
    .hb-footer-bottom { grid-template-columns: 1fr; margin-top: 20px; }
    .hb-footer-bottom > span:last-child { text-align: left; }
    .hb-footer-bottom a:first-child { margin-left: 0; }

    .hb-default-page { width: calc(100% - 34px); padding: 110px 0 70px; }
    .hb-default-page h1, .hb-contact-copy h1 { font-size: 48px; }
    .hb-contact-page { padding: 112px 17px 70px; }
    .hb-contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 760px) and (max-height: 720px) {
    .hb-nav { padding-top: 78px; }
    .hb-nav-links a { font-size: 30px; }
    .hb-nav-meta { margin-top: 12px; padding-top: 12px; }
    .hb-nav-meta img { width: 176px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
