:root {
  --ink: #18232d;
  --ink-soft: #52606b;
  --navy: #173b63;
  --navy-deep: #0d2946;
  --navy-pale: #e8eef3;
  --bronze: #aa8251;
  --bronze-pale: #e8dccb;
  --paper: #f7f5f0;
  --paper-strong: #efece5;
  --white: #fff;
  --line: rgba(24, 35, 45, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 64px rgba(17, 31, 44, 0.12);
  --header-height: 88px;
  --page-pad: clamp(24px, 5vw, 82px);
  --content-max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--navy);
}

:focus-visible {
  outline: 3px solid rgba(170, 130, 81, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(100%, var(--content-max));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name strong {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.brand-name small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.25em;
}

.desktop-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: clamp(18px, 2.25vw, 40px);
  margin-left: auto;
  padding: 0 36px;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #29333b;
  font-size: 14px;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 2px;
  background: var(--bronze);
  content: "";
  transition: right 0.25s ease, left 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
  left: 0;
}

.header-hotline {
  display: flex;
  align-self: stretch;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 185px;
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  transition: background 0.25s ease;
}

.header-hotline:hover {
  background: var(--navy-deep);
}

.header-hotline span {
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.header-hotline strong {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 550;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu,
.menu-overlay {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  width: min(100%, var(--content-max));
  min-height: clamp(680px, calc(100vh - var(--header-height)), 760px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 86px) clamp(40px, 6vw, 100px) clamp(46px, 5vw, 72px) var(--page-pad);
}

.hero-copy::before {
  position: absolute;
  top: 12%;
  left: var(--page-pad);
  width: 1px;
  height: 70px;
  background: var(--bronze);
  content: "";
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.eyebrow span {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--bronze);
}

.hero h1 {
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: clamp(52px, 5.15vw, 82px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  margin-top: 18px;
  color: var(--bronze);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.hero-intro {
  max-width: 470px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 36px;
  padding: 22px 0 22px 22px;
  border-left: 3px solid var(--navy);
}

.hero-contact span {
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-contact a {
  margin-top: 2px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.3vw, 38px);
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding: 18px 16px 0 0;
}

.hero-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero-facts dd {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(28px, 3vw, 48px) var(--page-pad) clamp(28px, 3vw, 48px) 0;
  background: var(--navy-pale);
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 58%;
  border-left: 1px solid rgba(23, 59, 99, 0.08);
  background-image: linear-gradient(rgba(23, 59, 99, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 59, 99, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  right: var(--page-pad);
  bottom: clamp(28px, 3vw, 48px);
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 330px;
  color: var(--white);
  background: var(--navy);
}

.hero-caption span {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line-light);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero-caption p {
  padding: 16px 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 var(--page-pad);
  color: var(--white);
  background: var(--navy-deep);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px 28px;
}

.trust-strip > div + div {
  border-left: 1px solid var(--line-light);
}

.trust-strip span {
  color: var(--bronze-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.trust-strip p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.trust-strip strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.06em;
}

.section {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) var(--page-pad);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.4fr;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(46px, 6vw, 82px);
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.section-intro h2,
.leasing-heading h2,
.location-copy h2 {
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: clamp(35px, 3.4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.section-intro > p:last-child {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.overview {
  background: var(--paper);
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  min-height: 520px;
}

.overview-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px) clamp(42px, 5vw, 76px) clamp(42px, 5vw, 76px) 0;
  background: var(--paper-strong);
}

.overview-copy::before {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: var(--page-pad);
  background: var(--paper-strong);
  content: "";
}

.overview-copy::after {
  position: absolute;
  top: 0;
  right: -140px;
  bottom: 0;
  z-index: -1;
  width: 180px;
  background: linear-gradient(90deg, var(--paper-strong) 0%, rgba(239, 236, 229, 0.78) 40%, rgba(239, 236, 229, 0) 100%);
  content: "";
  pointer-events: none;
}

.overview-copy .lead {
  margin-bottom: 26px;
  color: var(--navy);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 600;
  line-height: 1.65;
}

.overview-copy > p:not(.lead) {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.overview-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.overview-data div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.overview-data dt {
  color: var(--ink-soft);
  font-size: 11px;
}

.overview-data dd {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 550;
}

.overview-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  color: var(--white);
  background: rgba(13, 41, 70, 0.9);
  font-size: 13px;
}

.overview-image figcaption span {
  color: var(--bronze-pale);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.advantages {
  color: var(--white);
  background: var(--navy-deep);
}

.section-intro--light {
  border-color: var(--line-light);
}

.section-intro--light h2 {
  color: var(--white);
}

.section-intro--light > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.advantage-card {
  position: relative;
  min-height: 340px;
  padding: 40px 34px;
  overflow: hidden;
}

.advantage-card + .advantage-card {
  border-left: 1px solid var(--line-light);
}

.advantage-card::before {
  position: absolute;
  inset: 100% 0 0;
  background: var(--bronze);
  content: "";
  transition: inset 0.4s ease;
}

.advantage-card:hover::before {
  inset: 0;
}

.advantage-card > * {
  position: relative;
  z-index: 1;
}

.advantage-no {
  display: block;
  color: var(--bronze-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.advantage-card h3 {
  margin-top: 115px;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.advantage-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.9;
  transition: color 0.3s ease;
}

.advantage-card:hover p {
  color: rgba(255, 255, 255, 0.88);
}

.parameters {
  background: var(--white);
}

.parameter-board {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  box-shadow: 0 16px 50px rgba(13, 41, 70, 0.08);
}

.parameter-highlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: clamp(38px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.parameter-highlight p {
  color: rgba(255, 255, 255, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.2em;
}

.parameter-highlight strong {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.parameter-highlight strong small {
  margin-left: 8px;
  color: var(--bronze-pale);
  font-family: inherit;
  font-size: 18px;
}

.parameter-highlight span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.parameter-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 30px 44px;
  background: var(--paper);
}

.parameter-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
}

.parameter-list > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.parameter-list dt {
  color: var(--ink-soft);
  font-size: 12px;
}

.parameter-list dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 550;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--navy-pale);
}

.gallery-item--wide {
  grid-row: 1 / 3;
  min-height: 620px;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 24, 39, 0.62) 100%);
  content: "";
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  color: var(--white);
}

.gallery-item figcaption span {
  color: var(--bronze-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.gallery-item figcaption strong {
  font-size: 15px;
  font-weight: 550;
  letter-spacing: 0.08em;
}

.leasing {
  color: var(--white);
  background: var(--navy);
}

.leasing-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.4fr;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(46px, 6vw, 78px);
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-light);
}

.leasing-heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.leasing-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.75fr);
  gap: clamp(28px, 4vw, 62px);
}

.area-panel {
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid var(--line-light);
}

.area-panel h3 {
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.area-grid span {
  padding: 24px 18px;
  color: var(--bronze-pale);
  background: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  text-align: center;
}

.fine-print {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.8;
}

.leasing-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4vw, 56px);
  color: var(--ink);
  background: var(--bronze-pale);
}

.leasing-contact > span {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.leasing-contact h3 {
  margin-top: 18px;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: clamp(25px, 2.3vw, 35px);
  font-weight: 600;
  line-height: 1.5;
}

.leasing-contact p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.leasing-contact a {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
  padding-top: 24px;
  color: var(--navy);
  border-top: 1px solid rgba(23, 59, 99, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.25;
}

.leasing-contact a small {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  font-size: 12px;
}

.amenities {
  background: var(--white);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.amenity-card {
  min-height: 350px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(13, 41, 70, 0.09);
}

.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--bronze-pale);
  border-radius: 50%;
}

.amenity-icon img {
  width: 23px;
  height: 23px;
}

.amenity-card > span {
  display: block;
  margin-top: 38px;
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.amenity-card h3 {
  margin-top: 8px;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.amenity-card p,
.amenity-card ul {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.amenity-card li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.amenity-card li strong {
  color: var(--ink);
  font-weight: 550;
}

.amenity-card li em {
  color: var(--bronze);
  font-style: normal;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
  padding: 0;
  background: var(--paper-strong);
}

.location-map {
  min-height: 620px;
  overflow: hidden;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 104px) var(--page-pad);
}

.location-copy h2 {
  margin-top: 14px;
}

.location-lead {
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.location-copy address {
  margin-top: 38px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-copy address span,
.location-copy dt {
  display: block;
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.location-copy address strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.8;
}

.location-copy dl {
  margin-top: 20px;
}

.location-copy dl > div {
  padding: 12px 0;
}

.location-copy dd {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.location-call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 30px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s ease;
}

.location-call:hover {
  background: var(--navy-deep);
}

.faq {
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px 60px 20px 0;
  cursor: pointer;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  right: 8px;
  width: 20px;
  height: 1px;
  background: var(--navy);
  content: "";
  transition: transform 0.25s ease;
}

.faq-list summary span::after {
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 920px;
  padding: 0 70px 30px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.closing-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--page-pad);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
  text-align: center;
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.closing-cta::before {
  top: -180px;
  left: -70px;
}

.closing-cta::after {
  right: -100px;
  bottom: -220px;
}

.closing-cta p {
  color: var(--bronze-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
}

.closing-cta h2 {
  margin-top: 20px;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.closing-cta > span {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.closing-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 370px);
  min-height: 62px;
  margin-top: 36px;
  padding: 14px 28px;
  color: var(--navy-deep);
  background: var(--bronze-pale);
  font-size: 16px;
  font-weight: 650;
  transition: color 0.25s ease, background 0.25s ease;
}

.closing-cta a:hover {
  color: var(--white);
  background: var(--bronze);
}

.site-footer {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 60px var(--page-pad) 30px;
  color: rgba(255, 255, 255, 0.6);
  background: #091d30;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.12em;
}

.footer-brand span {
  margin-top: 6px;
  color: var(--bronze-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.footer-main > p {
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  gap: 24px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-main nav a:hover,
.footer-meta a:hover {
  color: var(--white);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  font-size: 11px;
}

.footer-meta a {
  transition: color 0.2s ease;
}

.mobile-call-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1260px) {
  :root {
    --page-pad: clamp(24px, 4vw, 54px);
  }

  .desktop-nav {
    gap: 19px;
    padding: 0 24px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-hotline {
    min-width: 168px;
    padding: 0 18px;
  }

  .trust-strip > div {
    padding: 22px 18px;
  }

  .amenity-card {
    padding: 30px 22px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav,
  .header-hotline {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    width: min(88vw, 430px);
    padding: 30px 30px 92px;
    overflow-y: auto;
    color: var(--white);
    background: var(--navy-deep);
    transform: translateX(105%);
    transition: transform 0.35s ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    border-bottom: 1px solid var(--line-light);
    font-size: 15px;
  }

  .mobile-menu nav span {
    color: var(--bronze-pale);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
  }

  .mobile-menu-call {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    flex: 0 0 auto;
    margin-top: 20px;
    color: var(--navy-deep);
    background: var(--bronze-pale);
    font-size: 14px;
    font-weight: 650;
  }

  .menu-overlay {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 98;
    display: block;
    border: 0;
    background: rgba(8, 24, 39, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .menu-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-right: 46px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 68px);
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts div:last-child {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .trust-strip > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .section-intro,
  .leasing-heading {
    grid-template-columns: 0.85fr 1.4fr;
  }

  .section-intro > p:last-child,
  .leasing-heading > p:last-child {
    grid-column: 2;
  }

  .advantage-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-card:nth-child(3),
  .advantage-card:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .advantage-card:nth-child(3) {
    border-left: 0;
  }

  .parameter-board {
    grid-template-columns: 0.7fr 1.7fr;
  }

  .parameter-list {
    grid-template-columns: 1fr;
  }

  .parameter-list > div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .leasing-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
  }

  .leasing-contact > span,
  .leasing-contact h3,
  .leasing-contact p {
    grid-column: 1;
  }

  .leasing-contact a {
    grid-column: 2;
    grid-row: 1 / 4;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid rgba(23, 59, 99, 0.2);
  }

  .location {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .location-map {
    min-height: 560px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --page-pad: 20px;
  }

  body {
    padding-bottom: 60px;
    font-size: 15px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name strong {
    font-size: 18px;
  }

  .brand-name small {
    font-size: 7px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    order: 2;
    padding: 38px 20px 34px;
  }

  .hero-visual {
    order: 1;
    padding: 0;
    background: var(--navy-pale);
  }

  .hero-photo {
    aspect-ratio: 4 / 3;
    box-shadow: none;
  }

  .hero-photo::after {
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.12);
  }

  .hero-caption {
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 0;
  }

  .hero-caption span {
    padding: 12px 15px;
  }

  .hero-caption p {
    padding: 12px 15px;
    font-size: 12px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 0.22em;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-contact {
    margin-top: 28px;
    padding: 12px 0 12px 17px;
  }

  .hero-contact a {
    font-size: 29px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
  }

  .hero-facts div {
    padding-right: 10px;
  }

  .hero-facts div + div {
    padding-left: 12px;
  }

  .hero-facts div:last-child {
    display: block;
  }

  .hero-facts dd {
    font-size: 16px;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .trust-strip > div {
    min-height: 82px;
    padding: 16px 0;
  }

  .trust-strip > div + div,
  .trust-strip > div:nth-child(3) {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-intro,
  .leasing-heading {
    display: block;
    margin-bottom: 42px;
    padding-bottom: 24px;
  }

  .section-intro h2,
  .leasing-heading h2,
  .location-copy h2 {
    margin-top: 12px;
    font-size: 36px;
  }

  .section-intro > p:last-child,
  .leasing-heading > p:last-child {
    margin-top: 18px;
    font-size: 14px;
  }

  .overview-layout {
    display: flex;
    flex-direction: column;
  }

  .overview-copy {
    order: 2;
    padding: 36px 22px;
  }

  .overview-copy::before,
  .overview-copy::after {
    display: none;
  }

  .overview-copy .lead {
    font-size: 22px;
  }

  .overview-image {
    order: 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .overview-image img {
    object-position: 60% center;
  }

  .overview-data {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .overview-data div {
    padding: 10px 0;
  }

  .overview-data div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .advantage-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 260px;
    padding: 30px 24px;
  }

  .advantage-card + .advantage-card,
  .advantage-card:nth-child(3) {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .advantage-card h3 {
    margin-top: 62px;
  }

  .parameter-board {
    grid-template-columns: 1fr;
  }

  .parameter-highlight {
    min-height: 280px;
    padding: 32px;
  }

  .parameter-list {
    grid-template-columns: 1fr;
    padding: 18px 12px;
  }

  .parameter-list > div {
    grid-template-columns: 96px 1fr;
    min-height: 66px;
    padding: 10px 12px;
  }

  .parameter-list > div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item--wide {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .leasing-content {
    gap: 20px;
  }

  .area-panel {
    padding: 28px 20px;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid span {
    padding: 20px 10px;
    font-size: 17px;
  }

  .leasing-contact {
    display: flex;
    padding: 32px 24px;
  }

  .leasing-contact a {
    margin-top: 28px;
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(23, 59, 99, 0.2);
    border-left: 0;
  }

  .amenity-card {
    min-height: 0;
  }

  .location {
    display: flex;
    flex-direction: column;
  }

  .location-map {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .location-copy {
    padding: 58px 20px;
  }

  .location-copy address strong br {
    display: none;
  }

  .faq-list summary {
    min-height: 78px;
    padding-right: 48px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .closing-cta {
    padding: 76px 20px;
  }

  .closing-cta h2 {
    font-size: 34px;
    line-height: 1.45;
  }

  .site-footer {
    padding: 48px 20px 28px;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 12px 20px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    padding: 10px 18px max(10px, env(safe-area-inset-bottom));
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 -8px 24px rgba(9, 29, 48, 0.18);
    font-size: 14px;
    letter-spacing: 0.03em;
  }

  body.menu-open .mobile-call-bar {
    display: none;
  }

  .mobile-call-bar img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }

  .mobile-call-bar strong {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .hero-facts dd {
    font-size: 14px;
  }

  .hero-contact a {
    font-size: 27px;
  }

  .area-grid span {
    font-size: 15px;
  }

  .mobile-call-bar {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
