:root {
  --brand: #1457a8;
  --brand-dark: #15395f;
  --brand-light: #eaf1f9;
  --ink: #1e2c3d;
  --muted: #65758a;
  --line: #dbe2ec;
  --paper: #f5f7fa;
  --white: #fff;
  --page-width: 1280px;
  --gutter: clamp(22px, 5vw, 80px);
  --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--white); font: 15px/1.8 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
body.modal-open .mobile-contact { visibility: hidden; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
button, input { border-radius: 0; }
button:disabled { cursor: default; }
button[hidden], [hidden] { display: none !important; }
::selection { color: white; background: var(--brand); }
:focus-visible { outline: 3px solid #ba7d2b; outline-offset: 5px; }
address, i { font-style: normal; }
summary { cursor: pointer; }
.container { width: min(var(--page-width), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.section { padding-block: 90px; }
.eyebrow { color: var(--brand); font-size: 10px; font-weight: 550; line-height: 1.6; letter-spacing: .13em; }
.eyebrow > span { margin-right: 20px; font-size: 12px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 36px; }
h2 { margin-top: 16px; font-size: clamp(27px, 2.5vw, 37px); line-height: 1.5; font-weight: 550; letter-spacing: -.025em; }
.heading-note { position: relative; max-width: 340px; padding-bottom: 6px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.text-link { display: inline-flex; align-items: center; gap: 42px; padding-bottom: 7px; border-bottom: 1px solid var(--brand); color: var(--brand); font-weight: 550; font-size: 13px; }
.text-link span { font-size: 20px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }
.fine-print { color: var(--muted); font-size: 12px; line-height: 1.9; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 300; padding: 8px 16px; background: var(--brand); color: white; transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.status-dot { display: inline-block; width: 6px; height: 6px; margin-right: 10px; border-radius: 50%; background: var(--brand); vertical-align: 2px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-height); border-bottom: 1px solid #e8edf4; background: rgba(255, 255, 255, .97); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 34px; }
.brand { display: flex; flex-shrink: 0; flex-direction: column; line-height: 1.4; }
.brand strong { font-size: 23px; font-weight: 650; letter-spacing: .09em; }
.brand > span { margin-top: 4px; color: var(--muted); font-size: 8px; letter-spacing: .19em; }
.desktop-nav { display: flex; gap: clamp(16px, 1.7vw, 27px); margin-left: auto; align-items: center; height: 100%; }
.desktop-nav a { display: flex; align-items: center; position: relative; height: 100%; white-space: nowrap; font-size: 13px; color: #45556b; transition: color .2s; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 20px; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover, .desktop-nav a[aria-current] { color: var(--brand); }
.desktop-nav a[aria-current]::after { transform: scaleX(1); }
.header-phone { display: grid; flex-shrink: 0; grid-template-columns: auto 20px; column-gap: 20px; line-height: 1.7; padding-left: 26px; border-left: 1px solid var(--line); }
.header-phone > span { font-size: 10px; color: var(--muted); }
.header-phone strong { grid-column: 1; color: var(--brand); font-size: 16px; font-weight: 600; letter-spacing: .01em; }
.header-phone i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--brand); font-size: 24px; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); background: white; }
.menu-toggle span { display: block; width: 21px; height: 1px; background: var(--brand); }
.menu-toggle span + span { margin-top: 7px; width: 14px; }
.mobile-menu { inset: 12px 12px auto auto; width: min(430px, calc(100% - 24px)); max-width: none; max-height: calc(100dvh - 24px); margin: 0; padding: 20px 26px 26px; border: 0; border-radius: 7px; color: var(--ink); background: white; overflow-y: auto; overscroll-behavior: contain; }
dialog::backdrop { background: rgba(13, 29, 49, .68); backdrop-filter: blur(5px); }
.menu-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.menu-heading strong { font-weight: 550; font-size: 17px; }
.icon-button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; line-height: 1; font-size: 25px; }
.mobile-menu nav a { display: flex; align-items: center; gap: 18px; min-height: 56px; border-bottom: 1px solid var(--line); }
.mobile-menu nav a > span { color: var(--muted); font-size: 11px; }
.mobile-menu nav a > i { margin-left: auto; color: var(--brand); }
.menu-phone { display: grid; grid-template-columns: 1fr auto; margin-top: 20px; padding: 17px 20px; background: var(--brand); color: white; }
.menu-phone small { grid-column: 1; font-size: 11px; }
.menu-phone strong { grid-column: 1; font-size: 23px; font-weight: 500; }
.menu-phone > span { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 28px; }

/* Hero: a true 4:3 image frame, with a separate text column. */
.hero { padding-bottom: 56px; }
.hero-topline { display: flex; justify-content: space-between; align-items: center; padding-block: 25px; color: #718095; font-size: 11px; letter-spacing: .045em; }
.hero-topline p { color: var(--brand-dark); font-size: 12px; }
.hero-layout { display: grid; grid-template-columns: 1.14fr 1fr; gap: clamp(38px, 4.4vw, 64px); align-items: center; }
.hero-figure { position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 4 / 3; isolation: isolate; }
.hero-figure > img { height: 100%; object-fit: cover; object-position: 45% 50%; }
.hero-figure::after { content: ""; position: absolute; inset: 55% 0 0; z-index: -0; background: linear-gradient(transparent, rgba(10, 25, 45, .66)); pointer-events: none; }
.hero-figure figcaption { position: absolute; inset: auto 25px 22px; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: white; font-size: 10px; letter-spacing: .08em; }
.hero-figure figcaption i { margin-right: 7px; font-size: 19px; }
.hero-figure figcaption a { font-size: 11px; letter-spacing: .02em; }
.hero-figure figcaption a > span { margin-left: 10px; font-size: 19px; }
.hero-copy { padding-top: 8px; min-width: 0; }
.hero-copy > .eyebrow { font-size: 9px; letter-spacing: .14em; }
h1 { margin-top: 20px; font-size: clamp(40px, 4.2vw, 61px); letter-spacing: .03em; line-height: 1.35; font-weight: 600; }
.hero-tagline { margin-top: 13px; font-size: clamp(19px, 1.7vw, 25px); color: var(--brand); letter-spacing: .07em; font-weight: 450; }
.hero-description { margin-top: 24px; color: var(--muted); font-size: 14px; line-height: 2; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.hero-tags span { border: 1px solid var(--line); padding: 4px 10px; font-size: 10px; color: #5e6f85; border-radius: 2px; }
.hero-facts { display: grid; grid-template-columns: 1.2fr .8fr 1fr; padding-top: 24px; margin-top: 27px; border-top: 1px solid var(--line); }
.hero-facts > div { min-width: 0; padding-left: 21px; border-left: 1px solid var(--line); }
.hero-facts > div:first-child { padding-left: 0; border: 0; }
.hero-facts dt { margin-bottom: 6px; color: var(--muted); font-size: 10px; }
.hero-facts dd { color: var(--brand-dark); font-size: clamp(24px, 2.4vw, 34px); font-weight: 450; line-height: 1.4; letter-spacing: -.045em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.hero-facts small { margin-inline: 3px; font-size: 11px; letter-spacing: 0; }
.hero-footnote { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; }
.hero-footnote p { font-size: 11px; color: var(--muted); }
.hero-footnote a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; font-size: 19px; color: var(--brand); }
.value-strip { background: var(--brand-light); }
.value-inner { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 27px; }
.value-inner > div { display: grid; grid-template-columns: 1fr auto; padding-inline: 37px; border-left: 1px solid #ccdaeb; gap: 3px 12px; }
.value-inner > div:first-child { padding-left: 0; border-left: 0; }
.value-inner > div:last-child { padding-right: 0; }
.value-inner span { grid-column: 1 / -1; color: #667f9d; font-size: 9px; letter-spacing: .12em; }
.value-inner strong { font-size: 15px; font-weight: 500; }
.value-inner p { align-self: center; color: var(--muted); font-size: 10px; }

/* Overview */
.overview-panel { display: grid; grid-template-columns: 1fr 1.1fr; position: relative; border: 1px solid #e9edf3; background: #f7f8fa; overflow: hidden; border-radius: 3px; }
.overview-copy { position: relative; z-index: 2; padding: 44px 0 44px 43px; }
.overview-copy .lead { margin-bottom: 19px; font-size: 25px; font-weight: 500; line-height: 1.6; color: var(--brand-dark); }
.overview-copy > p:not(.lead) { max-width: 470px; margin-bottom: 13px; color: #657184; font-size: 13px; line-height: 2.05; }
.overview-copy .text-link { margin-top: 13px; }
.overview-visual { position: relative; }
.overview-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #f7f8fa 0%, rgba(247, 248, 250, .83) 16%, transparent 62%); }
.overview-visual img { height: 100%; object-fit: cover; object-position: 59% 50%; }
.overview-visual figcaption { position: absolute; bottom: 22px; right: 22px; padding: 3px 8px; color: #687184; background: rgba(255, 255, 255, .7); font-size: 9px; letter-spacing: .075em; }

/* Parameters */
.parameter-section { padding-top: 0; }
.parameter-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 54px; }
.parameter-feature { position: relative; display: flex; flex-direction: column; padding: 30px; overflow: hidden; background: var(--brand-dark); color: #f4f8fd; border-radius: 3px; }
.parameter-feature > .eyebrow { color: #b4cde9; font-size: 9px; }
.parameter-feature > p { margin-top: 17px; font-size: 23px; line-height: 1.6; }
.parameter-feature > div { margin-top: 24px; position: relative; z-index: 1; }
.parameter-feature strong { display: block; font-size: 57px; font-weight: 350; line-height: 1.3; letter-spacing: -.04em; }
.parameter-feature strong small { font-size: 22px; margin-left: 5px; }
.parameter-feature > div > span { font-size: 11px; color: #c2d5eb; }
.building-drawing { width: 165px; height: 124px; color: #5b85b3; align-self: flex-end; margin-top: auto; margin-right: -12px; margin-bottom: -10px; }
.parameter-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; column-gap: 44px; }
.parameter-list > div { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); }
.parameter-list dt { flex: 0 0 auto; font-size: 12px; color: var(--muted); }
.parameter-list dd { text-align: right; font-size: 13px; color: var(--ink); overflow-wrap: anywhere; }

/* Gallery */
#gallery { padding-top: 0; }
.small-arrow { display: inline-block; margin-left: 16px; color: var(--brand); font-size: 21px; vertical-align: -3px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.gallery-swipe-hint { display: none; }
.gallery-link { display: block; position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 4 / 3; background: var(--brand-light); }
.gallery-link > img { height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-link:hover > img { transform: scale(1.035); }
.image-zoom { display: grid; place-items: center; position: absolute; bottom: 14px; right: 14px; width: 33px; height: 33px; border-radius: 50%; background: white; color: var(--brand); font-size: 21px; }
.gallery-grid figcaption { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; }
.gallery-grid figcaption > span { font-size: 9px; letter-spacing: .12em; color: var(--muted); }
.gallery-grid figcaption > strong { font-size: 13px; font-weight: 500; }

/* Leasing */
.leasing-section { background: var(--paper); }
.leasing-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr); gap: 65px; }
.space-selector { padding-top: 4px; }
.field-label { margin-bottom: 17px; color: #54677e; font-size: 12px; }
.area-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.area-options button { min-height: 49px; border: 1px solid #d9e1ed; border-radius: 2px; background: transparent; font-size: 16px; font-variant-numeric: tabular-nums; white-space: nowrap; transition: .2s; }
.area-options small { margin-left: 3px; font-size: 11px; }
.area-options button[aria-pressed="true"] { color: white; background: var(--brand); border-color: var(--brand); }
.area-options button:hover:not([aria-pressed="true"]) { background: #e8eff8; border-color: #8caad2; }
.space-details { padding-block: 23px 21px; min-height: 225px; }
.space-range { color: var(--brand); font-size: 49px; font-weight: 350; letter-spacing: -.05em; line-height: 1.7; }
.space-range small { margin-left: 8px; font-size: 23px; }
.space-details h3 { margin-bottom: 10px; font-size: 20px; font-weight: 500; line-height: 1.55; }
.space-details > p:last-child { max-width: 500px; font-size: 13px; color: #65758a; line-height: 2; }
.leasing-card { padding: 31px 35px 0; border: 1px solid #d7e0ed; border-radius: 3px; background: white; }
.leasing-card > .eyebrow { font-size: 9px; letter-spacing: .1em; }
.leasing-card h3 { margin-block: 20px 12px; font-size: 29px; line-height: 1.6; font-weight: 500; }
.leasing-card > p { color: var(--muted); font-size: 12px; }
.leasing-card dl { margin-block: 20px 26px; }
.leasing-card dl > div { display: flex; gap: 16px; padding-block: 5px; font-size: 12px; }
.leasing-card dt { color: #94a7c0; font-size: 10px; }
.leasing-phone { display: grid; position: relative; grid-template-columns: 1fr auto; padding-block: 17px 22px; border-top: 1px solid var(--line); color: var(--brand); }
.leasing-phone > span { grid-column: 1; color: var(--muted); font-size: 11px; }
.leasing-phone strong { grid-column: 1; font-size: clamp(24px, 2.1vw, 29px); font-weight: 450; letter-spacing: -.02em; line-height: 1.5; }
.leasing-phone i { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 33px; }
.process-row { display: grid; grid-template-columns: 1fr 3fr; gap: 36px; align-items: center; margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--line); }
.process-row > p { font-size: 11px; color: var(--muted); }
.process-row > p > strong { font-size: 16px; font-weight: 500; color: var(--ink); }
.process-row ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; list-style: none; margin: 0; padding: 0; }
.process-row li { display: flex; gap: 17px; align-items: center; }
.process-row li > span { font-size: 28px; color: #a9bad1; font-weight: 300; line-height: 1; }
.process-row li strong { display: block; font-size: 14px; font-weight: 500; }
.process-row li small { display: block; color: var(--muted); font-size: 10px; }

/* Location */
.location-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 62px; align-items: center; }
.map-figure { overflow: hidden; border: 1px solid var(--line); border-radius: 3px; }
.map-figure > a { position: relative; display: block; background: #f0f3f8; }
.map-figure img { width: 100%; aspect-ratio: 965 / 576; object-fit: contain; }
.map-expand { display: flex; gap: 15px; position: absolute; right: 15px; bottom: 15px; align-items: center; background: white; border: 1px solid var(--line); padding: 5px 12px; color: var(--brand); font-size: 11px; }
.map-expand > span { font-size: 19px; }
.map-figure figcaption { padding: 16px 20px; font-size: 12px; }
.location-copy > .eyebrow { font-size: 9px; }
.location-copy h3 { margin-block: 17px; font-size: 28px; font-weight: 500; line-height: 1.5; }
.location-copy address { margin-bottom: 23px; color: var(--muted); font-size: 12px; line-height: 2; }
.metro-station { display: flex; align-items: center; gap: 15px; min-height: 69px; border-top: 1px solid var(--line); }
.line-badge { display: grid; place-items: center; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; color: white; background: #519454; font-weight: 600; font-size: 14px; }
.line-badge.line-nine { background: #577888; }
.metro-station > div { line-height: 1.6; }
.metro-station > div strong { display: block; font-size: 13px; font-weight: 500; }
.metro-station > div small { color: var(--muted); font-size: 9px; }
.metro-station > p { margin-left: auto; color: var(--muted); font-size: 10px; }
.metro-station > p > strong { padding-inline: 4px; color: var(--brand-dark); font-size: 24px; font-weight: 450; }
.location-copy .fine-print { margin-top: 12px; font-size: 10px; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px; margin-top: 45px; padding-top: 30px; border-top: 1px solid var(--line); }
.amenities-grid article { position: relative; padding-right: 34px; border-right: 1px solid var(--line); }
.amenities-grid article:last-child { padding-right: 0; border: 0; }
.amenities-grid .eyebrow { font-size: 8px; color: var(--muted); }
.amenity-symbol { display: inline-block; margin-bottom: 10px; color: var(--brand); font-size: 27px; line-height: 1; }
.amenities-grid h3 { margin-block: 6px 10px; font-size: 17px; font-weight: 500; }
.amenities-grid article > p:last-child { color: var(--muted); font-size: 12px; line-height: 2; }

/* FAQ and closing */
.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 75px; }
.faq-heading > p:not(.eyebrow) { margin-top: 22px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.faq-heading .text-link { margin-top: 32px; gap: 26px; font-size: 12px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; list-style: none; min-height: 70px; gap: 20px; font-size: 14px; font-weight: 500; line-height: 1.7; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { font-size: 10px; font-weight: 400; color: #8c9db5; }
.faq-list summary > i { display: block; position: relative; flex-shrink: 0; width: 16px; height: 16px; margin-left: auto; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 7px; left: 2px; width: 12px; height: 1px; background: var(--brand); transition: transform .2s; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--brand); }
.faq-list details > p { padding: 0 30px 24px 32px; font-size: 12px; line-height: 2; color: var(--muted); }
.contact-section { background: var(--brand-dark); color: white; }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 55px; padding-block: 62px; }
.contact-inner .eyebrow { color: #bed2eb; font-size: 9px; }
.contact-inner h2 { margin-block: 12px; font-size: clamp(28px, 3vw, 39px); font-weight: 450; }
.contact-inner > div > p:last-child { font-size: 12px; color: #c1d2e8; }
.contact-phone { display: grid; grid-template-columns: 1fr auto; flex-shrink: 0; column-gap: 40px; padding-bottom: 12px; border-bottom: 1px solid #7592b5; }
.contact-phone > span { grid-column: 1; font-size: 11px; color: #c1d2e8; }
.contact-phone strong { grid-column: 1; font-size: clamp(26px, 2.9vw, 40px); font-weight: 350; line-height: 1.6; letter-spacing: -.03em; }
.contact-phone > i { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 38px; }
.site-footer { padding-block: 39px 23px; }
.footer-main { display: flex; align-items: center; gap: 35px; padding-bottom: 33px; }
.footer-main .brand strong { font-size: 20px; }
.footer-main .brand > span { font-size: 7px; }
.footer-main > p { font-size: 11px; color: var(--muted); }
.back-top { display: flex; align-items: center; gap: 16px; font-size: 11px; color: var(--brand); margin-left: auto; }
.back-top > span { font-size: 22px; }
.footer-meta { display: flex; gap: 20px 36px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 18px; font-size: 10px; color: var(--muted); }
.footer-meta a:hover { text-decoration: underline; }
.mobile-contact { display: none; }

/* Image viewer */
.image-dialog { width: min(1100px, calc(100% - 48px)); max-width: none; max-height: calc(100dvh - 48px); padding: 20px 25px; border: 0; border-radius: 4px; background: #f9fbfe; color: var(--ink); overflow: auto; }
.image-dialog-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 16px; }
.image-dialog-top > p { font-size: 14px; }
.image-stage { position: relative; display: flex; align-items: center; justify-content: center; background: #eaf0f8; min-height: 100px; }
.image-stage > img { width: auto; max-width: 100%; max-height: calc(100dvh - 215px); object-fit: contain; }
.image-stage .icon-button { position: absolute; z-index: 1; background: rgba(255, 255, 255, .93); color: var(--brand); }
.image-prev { left: 14px; }
.image-next { right: 14px; }
.image-counter { min-height: 20px; margin-top: 12px; text-align: center; color: var(--muted); font-size: 11px; letter-spacing: .1em; }

@media (min-width: 1600px) {
  :root { --page-width: 1400px; }
  .hero-layout { gap: 72px; }
  .hero-copy { padding-inline: 5px 12px; }
}
@media (max-width: 1180px) {
  .header-inner { gap: 25px; }
  .desktop-nav { gap: 17px; }
  .header-phone { padding-left: 20px; column-gap: 10px; }
  .header-phone i { display: none; }
  .brand strong { font-size: 21px; }
  .hero-layout { gap: 35px; grid-template-columns: 1.06fr 1fr; }
  .hero-copy > .eyebrow { font-size: 8px; }
  h1 { font-size: 43px; margin-top: 15px; }
  .hero-description { margin-top: 18px; font-size: 13px; }
  .hero-tags { margin-top: 20px; gap: 6px; }
  .hero-tags > span { padding: 3px 7px; }
  .hero-facts { margin-top: 20px; padding-top: 18px; }
  .hero-facts > div { padding-left: 14px; }
  .hero-facts dd { font-size: 27px; }
  .hero-footnote { margin-top: 18px; }
  .value-inner > div { padding-inline: 28px; }
  .value-inner p { grid-column: 1 / -1; }
  .parameter-layout { grid-template-columns: 255px 1fr; gap: 32px; }
  .parameter-list { column-gap: 25px; }
  .parameter-list > div { gap: 10px; }
  .leasing-layout { gap: 40px; }
  .leasing-card { padding-inline: 26px; }
  .location-layout { gap: 40px; }
  .faq-layout { gap: 45px; }
}
@media (max-width: 1040px) {
  :root { --header-height: 78px; --gutter: 36px; }
  .js .desktop-nav { display: none; }
  .js .menu-toggle { display: block; margin-left: 8px; }
  .header-phone { margin-left: auto; }
  .hero-figure { align-self: center; aspect-ratio: 4 / 3; min-height: 0; }
  .hero-figure > img { position: static; height: 100%; }
  .hero-copy { padding-block: 13px; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
  h1 { font-size: 39px; }
  .hero-tagline { font-size: 20px; }
  .hero-tags span { font-size: 9px; }
  .hero-facts dd { font-size: 25px; }
  .hero-facts small { font-size: 10px; margin-inline: 2px; }
  .hero-figure figcaption { inset-inline: 16px; font-size: 8px; }
  .hero-figure figcaption > span > i { display: none; }
  .hero-figure figcaption a { font-size: 9px; }
  .overview-copy { padding-left: 30px; }
  .parameter-layout { grid-template-columns: 220px 1fr; gap: 30px; }
  .parameter-list > div { flex-direction: column; gap: 4px; align-items: flex-start; justify-content: center; padding-block: 10px; }
  .parameter-list dd { text-align: left; }
  .parameter-feature { padding: 25px; }
  .leasing-layout { grid-template-columns: 1.15fr 1fr; gap: 30px; }
  .area-options button { font-size: 14px; }
  .space-range { font-size: 43px; }
  .leasing-card h3 { font-size: 26px; }
  .process-row { grid-template-columns: 1fr; gap: 24px; }
  .process-row > p br { display: none; }
  .process-row > p strong { margin-left: 20px; }
  .location-layout { grid-template-columns: 1.15fr 1fr; gap: 30px; }
  .location-copy h3 { font-size: 25px; }
  .footer-meta { flex-wrap: wrap; justify-content: flex-start; gap: 6px 25px; }
}
@media (max-width: 760px) {
  :root { --gutter: 22px; --header-height: 73px; }
  .section { padding-block: 58px; }
  .site-header { height: auto; min-height: var(--header-height); }
  .header-inner { min-height: var(--header-height); gap: 16px; flex-wrap: wrap; }
  .brand strong { font-size: 21px; letter-spacing: .07em; }
  .brand > span { font-size: 7px; letter-spacing: .17em; }
  .header-phone { display: none; }
  .js .menu-toggle { margin-left: auto; }
  .desktop-nav { flex-basis: 100%; gap: 12px; flex-wrap: wrap; padding-bottom: 14px; }
  .desktop-nav a { height: 34px; }
  .desktop-nav a::after { bottom: 0; }
  .hero { padding-bottom: 28px; }
  .hero-topline { padding-block: 17px; }
  .hero-topline > span { font-size: 9px; letter-spacing: 0; }
  .hero-topline > p { font-size: 10px; }
  .status-dot { width: 5px; height: 5px; margin-right: 7px; }
  .hero-layout { display: flex; flex-direction: column; gap: 0; }
  .hero-figure { width: 100%; aspect-ratio: 4 / 3; min-height: 0; }
  .hero-figure > img { position: static; height: 100%; }
  .hero-figure figcaption { inset: auto 16px 13px; }
  .hero-figure figcaption > span { font-size: 8px; }
  .hero-figure figcaption a { font-size: 10px; }
  .hero-copy { width: 100%; padding-top: 27px; padding-bottom: 0; }
  .hero-copy > .eyebrow { font-size: 8px; }
  h1 { margin-top: 12px; font-size: 41px; line-height: 1.45; letter-spacing: .03em; }
  .hero-tagline { margin-top: 5px; font-size: 21px; }
  .hero-description { margin-top: 17px; font-size: 12px; line-height: 1.95; }
  .desktop-break { display: none; }
  .hero-tags { margin-top: 19px; gap: 7px; }
  .hero-tags span { font-size: 10px; padding: 3px 9px; }
  .hero-facts { padding-top: 21px; margin-top: 23px; grid-template-columns: 1.15fr .8fr 1fr; }
  .hero-facts > div { padding-left: 18px; }
  .hero-facts dd { font-size: 29px; }
  .hero-facts dt { font-size: 10px; }
  .hero-footnote { margin-top: 19px; }
  .hero-footnote p { font-size: 10px; }
  .hero-footnote a { width: 32px; height: 32px; }
  .value-inner { padding-block: 20px; }
  .value-inner > div { display: flex; flex-direction: column; padding-inline: 14px; gap: 3px; }
  .value-inner span { font-size: 7px; letter-spacing: .04em; }
  .value-inner strong { font-size: 12px; line-height: 1.7; }
  .value-inner p { align-self: flex-start; font-size: 8px; line-height: 1.6; }
  .section-heading { display: block; margin-bottom: 26px; }
  .eyebrow { font-size: 9px; }
  .eyebrow > span { margin-right: 14px; font-size: 10px; }
  h2 { margin-top: 12px; font-size: 27px; line-height: 1.55; letter-spacing: -.025em; }
  .heading-note { margin-top: 15px; max-width: none; font-size: 11px; padding-bottom: 0; }
  .heading-note br { display: none; }
  .heading-note br::after { content: " "; }
  .overview-panel { grid-template-columns: 1fr; }
  .overview-copy { padding: 26px 24px 0; }
  .overview-copy .lead { font-size: 23px; }
  .overview-copy > p:not(.lead) { font-size: 12px; }
  .overview-copy .text-link { margin-top: 7px; }
  .overview-visual { margin-top: -10px; height: 235px; }
  .overview-visual img { object-position: 55% 65%; }
  .overview-visual::before { background: linear-gradient(180deg, #f7f8fa, rgba(247, 248, 250, .68) 17%, transparent 65%); }
  .overview-visual figcaption { bottom: 15px; right: 15px; font-size: 8px; }
  .parameter-section { padding-top: 0; }
  .parameter-layout { grid-template-columns: 1fr; gap: 20px; }
  .parameter-feature { display: grid; grid-template-columns: 1fr 1fr; padding: 25px 25px 21px; gap: 12px; }
  .parameter-feature > .eyebrow { grid-column: 1 / -1; font-size: 8px; }
  .parameter-feature > p { grid-column: 1; grid-row: 2; align-self: center; font-size: 22px; margin-top: 0; }
  .parameter-feature > div { grid-column: 2; grid-row: 2; justify-self: end; text-align: right; margin-top: 0; }
  .parameter-feature strong { font-size: 48px; }
  .parameter-feature > div > span { font-size: 9px; }
  .building-drawing { display: none; }
  .parameter-list { column-gap: 22px; }
  .parameter-list > div { min-height: 71px; gap: 3px; }
  .parameter-list dt { font-size: 10px; }
  .parameter-list dd { font-size: 12px; }
  #gallery { padding-top: 0; }
  .gallery-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 88%; gap: 14px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #a9bad1 transparent; padding-bottom: 14px; }
  .gallery-grid > figure { min-width: 0; scroll-snap-align: start; }
  .gallery-grid .gallery-link:focus-visible { outline-offset: -3px; }
  .gallery-desktop-hint { display: none; }
  .gallery-swipe-hint { display: block; margin-top: 3px; color: var(--brand); }
  .gallery-grid figcaption { padding-top: 10px; }
  .gallery-grid figcaption > span { font-size: 8px; }
  .gallery-grid figcaption > strong { font-size: 12px; }
  .gallery-link { aspect-ratio: 4 / 3; }
  .small-arrow { display: none; }
  .leasing-layout { grid-template-columns: 1fr; gap: 26px; }
  .field-label { font-size: 11px; }
  .area-options { gap: 8px; }
  .area-options button { font-size: 14px; min-height: 48px; }
  .area-options small { font-size: 9px; margin-left: 2px; }
  .space-details { min-height: 211px; padding-block: 18px 13px; }
  .space-range { font-size: 43px; }
  .space-details h3 { font-size: 19px; }
  .space-details > p:last-child { font-size: 12px; }
  .fine-print { font-size: 10px; }
  .leasing-card { padding: 25px 25px 0; }
  .leasing-card h3 { font-size: 27px; margin-top: 15px; }
  .leasing-card dl { margin-block: 17px 23px; }
  .leasing-phone strong { font-size: 28px; }
  .process-row { margin-top: 32px; padding-top: 24px; gap: 19px; }
  .process-row > p { font-size: 10px; }
  .process-row > p > strong { font-size: 14px; margin-left: 17px; }
  .process-row ol { grid-template-columns: 1fr; gap: 17px; }
  .process-row li { gap: 20px; }
  .process-row li > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex: 1; }
  .process-row li > span { font-size: 22px; }
  .process-row li strong { font-size: 13px; }
  .process-row li small { font-size: 10px; }
  .location-layout { grid-template-columns: 1fr; gap: 30px; }
  .map-figure figcaption { padding: 12px 15px; font-size: 10px; }
  .location-copy h3 { margin-top: 12px; font-size: 25px; }
  .location-copy h3 br { display: none; }
  .location-copy address { font-size: 12px; }
  .amenities-grid { grid-template-columns: 1fr; gap: 22px; padding-top: 25px; margin-top: 28px; }
  .amenities-grid article { padding: 0 0 22px 46px; border-right: 0; border-bottom: 1px solid var(--line); }
  .amenities-grid article:last-child { padding-bottom: 0; }
  .amenity-symbol { position: absolute; top: 3px; left: 3px; font-size: 26px; }
  .amenities-grid h3 { margin-block: 4px 6px; font-size: 16px; }
  .amenities-grid article > p:last-child { font-size: 11px; }
  .faq-layout { grid-template-columns: 1fr; gap: 25px; }
  .faq-heading h2 br { display: none; }
  .faq-heading > p:not(.eyebrow) { font-size: 11px; margin-top: 15px; }
  .faq-heading .text-link { margin-top: 19px; }
  .faq-list summary { padding-block: 15px; min-height: 66px; gap: 12px; font-size: 12px; }
  .faq-list summary > span { font-size: 9px; }
  .faq-list details > p { padding-left: 24px; padding-right: 14px; font-size: 11px; }
  .contact-inner { flex-direction: column; align-items: stretch; gap: 30px; padding-block: 40px; }
  .contact-inner h2 { font-size: 29px; }
  .contact-inner .eyebrow { font-size: 8px; }
  .contact-inner > div > p:last-child { font-size: 11px; }
  .contact-phone { padding-bottom: 8px; }
  .contact-phone strong { font-size: 33px; }
  .contact-phone > i { font-size: 32px; }
  .site-footer { padding-block: 29px calc(94px + env(safe-area-inset-bottom)); }
  .footer-main { flex-wrap: wrap; gap: 18px; position: relative; padding-bottom: 22px; }
  .footer-main > p { flex-basis: 100%; font-size: 10px; }
  .footer-main .brand strong { font-size: 19px; }
  .back-top { position: absolute; top: 3px; right: 0; font-size: 10px; gap: 8px; }
  .footer-meta { display: grid; gap: 4px; font-size: 9px; }
  .mobile-contact { position: fixed; z-index: 90; inset: auto 0 0; display: grid; grid-template-columns: 1fr; padding: 9px 15px calc(9px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .98); border-top: 1px solid var(--line); box-shadow: 0 -3px 18px rgba(27, 46, 72, .05); }
  .mobile-call { display: grid; grid-template-columns: 1fr auto; align-content: center; min-height: 55px; padding: 5px 17px; border-radius: 3px; background: var(--brand); color: white; }
  .mobile-call > span { font-size: 9px; grid-column: 1; line-height: 1.5; }
  .mobile-call > strong { font-size: 19px; line-height: 1.5; grid-column: 1; font-weight: 550; white-space: nowrap; }
  .mobile-call > i { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 24px; }
  .image-dialog { width: calc(100% - 20px); padding: 12px; max-height: calc(100dvh - 24px); }
  .image-dialog-top { margin-bottom: 12px; }
  .image-dialog-top > p { font-size: 12px; }
  .image-stage .icon-button { width: 36px; height: 44px; font-size: 21px; }
  .image-prev { left: 4px; }
  .image-next { right: 4px; }
  .image-counter { margin-top: 10px; }
}
@media (max-width: 360px) {
  :root { --gutter: 17px; }
  .hero-topline > span { font-size: 8px; }
  h1 { font-size: 37px; }
  .hero-facts > div { padding-left: 10px; }
  .hero-facts dd { font-size: 26px; }
  .value-inner > div { padding-inline: 9px; }
  .value-inner strong { font-size: 10px; }
  .value-inner span { font-size: 6px; }
  .value-inner p { font-size: 7px; }
  .area-options button { font-size: 12px; }
  .mobile-contact { padding-inline: 10px; }
  .mobile-call > strong { font-size: 18px; }
  .mobile-menu { padding-inline: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print {
  .site-header { position: static; }
  .desktop-nav, .menu-toggle, .mobile-contact, .hero-footnote a, .image-zoom, .map-expand, .back-top { display: none !important; }
  .section { padding-block: 25px; }
  .site-footer { padding-bottom: 0; }
  .hero-figure { min-height: 0; aspect-ratio: 4 / 3; }
  a { color: inherit; }
}
