:root {
  --blue: #064aa8;
  --blue-dark: #073d87;
  --blue-soft: #eef4fb;
  --ink: #171a1f;
  --ink-soft: #5d626a;
  --muted: #8b9098;
  --line: #d9dde3;
  --line-dark: #c8cdd5;
  --surface: #ffffff;
  --surface-soft: #f6f8fa;
  --max-width: 1360px;
  --header-height: 80px;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

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

sup {
  font-size: .55em;
  vertical-align: super;
}

:focus-visible {
  outline: 3px solid #7fb0f4;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 300;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue-dark);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto 207px;
  align-items: center;
  height: var(--header-height);
  padding-left: clamp(28px, 2.85vw, 44px);
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #eceef1;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  justify-content: center;
}

.brand strong,
.footer-brand strong {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .08em;
}

.brand span,
.footer-brand span {
  margin-top: 5px;
  color: #5f646d;
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .22em;
}

.desktop-nav {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(24px, 3.15vw, 50px);
  padding: 0 32px;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #15181c;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--blue);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-phone {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #fff;
  background: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: background .2s ease;
}

.header-phone:hover {
  background: var(--blue-dark);
}

.header-phone img,
.mobile-call-bar img,
.rental-contact > a img {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}

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

.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 510px;
  height: min(39vw, 640px);
  background: var(--surface-soft);
}

.hero-media {
  min-width: 0;
  overflow: hidden;
  background: #dbe9f6;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-panel {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: clamp(48px, 4.45vw, 68px) clamp(38px, 4.2vw, 66px) 0;
  background: #fbfbfa;
}

.hero-copy {
  max-width: 620px;
}

.hero-kicker,
.section-index,
.rental-label {
  color: var(--blue);
  font-family: Arial, var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .015em;
}

.hero-kicker span {
  margin: 0 8px;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(38px, 3.1vw, 48px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: .13em;
}

.title-rule,
.section-rule {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 24px;
  background: #c6c9ce;
}

.hero h2 {
  margin-top: 26px;
  font-size: clamp(22px, 1.82vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .02em;
}

.hero-summary {
  margin-top: 29px;
  color: #666b72;
  font-size: 15px;
  line-height: 1.78;
}

.hero-service {
  display: flex;
  align-items: center;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-service i {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 12px;
  background: #afb4bb;
}

.hero-contact {
  display: flex;
  align-items: center;
  min-height: 80px;
  margin-top: 23px;
  padding-top: 24px;
  border-top: 1px solid #cfd3d8;
}

.hero-contact--hotline {
  min-height: 0;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  min-height: 50px;
  padding: 14px 28px;
  color: #fff;
  background: var(--blue);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s ease, transform .2s ease;
}

.primary-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.contact-divider {
  width: 1px;
  height: 50px;
  margin: 0 29px;
  background: #bfc4ca;
}

.hotline-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hotline-copy span {
  color: #62676e;
  font-size: 13px;
}

.hotline-copy a {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.hero-stats {
  position: absolute;
  right: clamp(38px, 4.2vw, 66px);
  bottom: 35px;
  left: clamp(38px, 4.2vw, 66px);
  display: grid;
  grid-template-columns: .85fr 1.15fr 1.5fr;
  margin: 0;
}

.hero-stats > div {
  min-width: 0;
  padding: 1px 19px;
  border-right: 1px solid #c6cad0;
}

.hero-stats > div:first-child {
  padding-left: 0;
}

.hero-stats > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-stats dt {
  color: #696e76;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-stats dd {
  margin-top: 13px;
  font-family: Arial, var(--font-sans);
  font-size: 17px;
  line-height: 1.15;
  white-space: nowrap;
}

.profile-section {
  display: grid;
  grid-template-columns: 58.2% 41.8%;
  min-height: 340px;
  background: #fff;
  border-top: 1px solid #e4e7eb;
  border-bottom: 1px solid #e4e7eb;
}

.profile-copy {
  padding: 39px clamp(46px, 5.15vw, 79px) 34px clamp(30px, 2.85vw, 44px);
}

.section-index {
  color: #8a8f96;
  font-size: 13px;
  letter-spacing: .01em;
}

.section-index strong {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
}

.profile-copy h2,
.section-heading h2,
.map-copy h2 {
  margin-top: 12px;
  font-size: clamp(30px, 2.35vw, 38px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .06em;
}

.profile-copy .section-rule {
  margin-top: 13px;
}

.profile-text {
  margin-top: 17px;
  color: #444950;
  font-size: 13px;
  line-height: 1.72;
}

.profile-text p + p {
  margin-top: 12px;
}

.profile-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
}

.profile-media::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: clamp(84px, 8vw, 124px);
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .92) 18%, rgba(255, 255, 255, .52) 55%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.profile-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center 45%;
}

.content-section {
  width: min(100% - 80px, var(--max-width));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading .section-index {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-top: 13px;
}

.section-heading > p:last-child {
  max-width: 470px;
  padding-bottom: 5px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

.params-section {
  background: #fff;
}

.params-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid var(--line-dark);
}

.parameter-column {
  min-width: 0;
  padding: 37px 40px 42px;
  border-right: 1px solid var(--line);
}

.parameter-column:last-child {
  border-right: 0;
}

.column-number {
  color: #9ba0a8;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
}

.parameter-column h3 {
  margin-top: 10px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.parameter-column dl > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e9ebee;
  font-size: 14px;
  line-height: 1.55;
}

.parameter-column dl > div:last-child {
  border-bottom: 0;
}

.parameter-column dt {
  color: #777c84;
}

.parameter-column dd {
  text-align: right;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  background: var(--surface-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.gallery-card {
  min-width: 0;
}

.photo-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7ebef;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-card:hover .photo-frame img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--line-dark);
}

.gallery-card figcaption span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.rental-section {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 540px;
  color: #fff;
  background: var(--blue-dark);
}

.rental-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(44px, calc((100vw - var(--max-width)) / 2));
  background: var(--blue);
}

.section-index.inverse {
  color: rgba(255, 255, 255, .62);
}

.section-index.inverse strong {
  color: #fff;
}

.rental-contact h2 {
  margin-top: 25px;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
}

.rental-contact > p:nth-of-type(2) {
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.rental-contact > a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  margin-top: 40px;
  padding-bottom: 8px;
  font-family: Arial, sans-serif;
  font-size: clamp(25px, 2.4vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.rental-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(44px, calc((100vw - var(--max-width)) / 2)) 80px clamp(52px, 6vw, 92px);
}

.rental-label {
  color: #8cb7ee;
  font-size: 13px;
  letter-spacing: .12em;
}

.rental-details h3 {
  margin-top: 15px;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
}

.rental-details > p:nth-of-type(2) {
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.8;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .32);
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.area-grid span {
  padding: 18px 14px;
  color: rgba(255, 255, 255, .92);
  font-family: Arial, var(--font-sans);
  font-size: 15px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .32);
  border-bottom: 1px solid rgba(255, 255, 255, .32);
}

.delivery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 28px;
}

.delivery-list span {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.delivery-list span::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #8cb7ee;
}

.amenities-section {
  padding-bottom: 90px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 72px;
  margin-top: 42px;
}

.amenity-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  min-height: 132px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.amenity-item > span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
}

.amenity-item h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
}

.amenity-item p {
  color: #5f646b;
  font-size: 13px;
  line-height: 1.8;
}

.map-section {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 560px;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

.map-media {
  min-width: 0;
  overflow: hidden;
  background: #e6ebf0;
}

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

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(45px, 5vw, 78px);
}

.map-address {
  margin-top: 32px;
  color: #4c5158;
  font-size: 15px;
  line-height: 1.85;
}

.map-copy dl {
  margin-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.map-copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.map-copy dt {
  color: #737880;
}

.outline-button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 46px;
  margin-top: 32px;
  padding: 12px 24px;
  color: var(--blue);
  font-size: 14px;
  border: 1px solid var(--blue);
  transition: color .2s ease, background .2s ease;
}

.outline-button:hover {
  color: #fff;
  background: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 52px;
  align-items: start;
  padding: 54px max(40px, calc((100vw - var(--max-width)) / 2));
  color: rgba(255, 255, 255, .72);
  background: #101c2c;
  font-size: 12px;
  line-height: 1.8;
}

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

.footer-brand span {
  color: rgba(255, 255, 255, .55);
}

.footer-info p + p,
.footer-meta p + p {
  margin-top: 5px;
}

.footer-info a,
.footer-meta a {
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-meta {
  text-align: right;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 225px 1fr 190px;
    padding-left: 28px;
  }

  .desktop-nav {
    gap: 27px;
    padding: 0 22px;
  }

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

  .hero-panel {
    padding: 45px 44px 0;
  }

  .hero h1 {
    margin-top: 15px;
  }

  .hero h2 {
    margin-top: 20px;
  }

  .hero-service {
    margin-top: 18px;
  }

  .hero-contact {
    margin-top: 17px;
    padding-top: 18px;
  }

  .hero-stats {
    right: 44px;
    bottom: 28px;
    left: 44px;
  }

  .hero-stats > div {
    padding-right: 13px;
    padding-left: 13px;
  }

  .hero-stats dd {
    font-size: 15px;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto auto;
    padding: 0 22px;
    box-shadow: 0 3px 18px rgba(20, 30, 45, .06);
  }

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

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: 16px;
    padding: 0;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle img {
    grid-area: 1 / 1;
    width: 26px;
    height: 26px;
  }

  .menu-close-icon {
    opacity: 0;
    transform: rotate(-40deg);
    transition: opacity .2s ease, transform .2s ease;
  }

  .menu-open-icon {
    transition: opacity .2s ease, transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-open-icon {
    opacity: 0;
    transform: rotate(40deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-close-icon {
    opacity: 1;
    transform: rotate(0);
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    z-index: 96;
    display: flex;
    width: min(86vw, 390px);
    flex-direction: column;
    padding: 24px 28px 100px;
    background: #fff;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s;
    overflow: auto;
  }

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

  .mobile-menu a {
    padding: 18px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu .mobile-menu-phone {
    margin-top: 20px;
    padding: 15px 18px;
    color: #fff;
    background: var(--blue);
    font-family: Arial, var(--font-sans);
    font-size: 15px;
    text-align: center;
    border: 0;
  }

  .menu-overlay {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 95;
    display: block;
    padding: 0;
    background: rgba(14, 25, 40, .42);
    border: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
  }

  .menu-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    grid-template-columns: 50% 50%;
    height: 570px;
  }

  .hero-panel {
    padding: 44px 34px 0;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero h2 {
    font-size: 21px;
  }

  .hero-summary br {
    display: none;
  }

  .hero-summary {
    font-size: 14px;
  }

  .hero-service {
    font-size: 14px;
  }

  .primary-button {
    min-width: 195px;
    font-size: 15px;
  }

  .contact-divider {
    margin: 0 20px;
  }

  .hotline-copy a {
    font-size: 19px;
  }

  .hero-stats {
    right: 34px;
    bottom: 28px;
    left: 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .hero-stats > div:nth-child(2) {
    border-right: 1px solid #c6cad0;
  }

  .hero-stats > div:nth-child(3) {
    padding-left: 13px;
    border-right: 0;
  }

  .profile-section {
    grid-template-columns: 60% 40%;
  }

  .content-section {
    width: min(100% - 56px, var(--max-width));
    padding: 90px 0;
  }

  .rental-section {
    grid-template-columns: 45% 55%;
  }

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

@media (max-width: 820px) {
  .brand strong {
    font-size: 21px;
  }

  .hero {
    display: block;
    height: auto;
    min-height: 0;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-panel {
    height: auto;
    padding: 42px 28px 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-stats {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line-dark);
  }

  .hero-stats > div {
    padding: 0 16px;
  }

  .hero-stats > div:nth-child(2) {
    border-right: 1px solid #c6cad0;
  }

  .profile-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .profile-copy {
    padding: 56px 28px;
  }

  .profile-media {
    aspect-ratio: 4 / 3;
  }

  .profile-media::before {
    right: 0;
    bottom: auto;
    width: auto;
    height: 72px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .72) 38%, rgba(255, 255, 255, 0) 100%);
  }

  .profile-media img {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 16px;
    padding: 0;
    text-align: left;
  }

  .params-grid,
  .gallery-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .parameter-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .parameter-column:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    gap: 34px;
  }

  .rental-section {
    grid-template-columns: 1fr;
  }

  .rental-contact,
  .rental-details {
    padding: 64px 28px;
  }

  .amenities-grid {
    gap: 0;
  }

  .map-media {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 28px 100px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand span {
    font-size: 8px;
  }

  .hero-panel {
    padding: 36px 20px 0;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: 34px;
  }

  .title-rule {
    margin-top: 19px;
  }

  .hero h2 {
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-summary {
    line-height: 1.75;
  }

  .hero-service {
    flex-wrap: wrap;
    gap: 8px 0;
    line-height: 1.6;
    white-space: normal;
  }

  .hero-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

  .contact-divider {
    display: none;
  }

  .hotline-copy {
    align-items: center;
    margin-top: 22px;
  }

  .hero-contact--hotline .hotline-copy {
    align-items: flex-start;
    margin-top: 0;
  }

  .hotline-copy a {
    font-size: 23px;
  }

  .hero-stats {
    gap: 0;
    margin-top: 30px;
  }

  .hero-stats > div {
    padding: 0 12px;
  }

  .hero-stats dt {
    font-size: 12px;
  }

  .hero-stats dd {
    margin-top: 8px;
    font-size: 15px;
    white-space: normal;
  }

  .content-section {
    width: calc(100% - 40px);
    padding: 72px 0;
  }

  .gallery-section {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .profile-copy h2,
  .section-heading h2,
  .map-copy h2 {
    font-size: 30px;
  }

  .parameter-column {
    padding: 30px 0;
  }

  .parameter-column dl > div {
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }

  .rental-contact h2 {
    font-size: 34px;
  }

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

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .amenity-item {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .map-copy {
    padding: 58px 20px 72px;
  }

  .mobile-call-bar {
    position: fixed;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 92;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 55px;
    color: #fff;
    background: var(--blue);
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 28px rgba(6, 74, 168, .3);
  }
}

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

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

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