:root {
  --teal-950: #0b1f36;
  --teal-900: #153b63;
  --teal-800: #1f5685;
  --teal-700: #2e6c9e;
  --teal-100: #e7eef6;
  --ink: #1b2633;
  --muted: #657286;
  --warm-white: #f8fafc;
  --surface: #eff3f8;
  --line: #d7e0ea;
  --white: #ffffff;
  --gold: #a98a54;
  --nav-height: 92px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--teal-950);
  color: var(--white);
  transform: translateY(-160%);
}

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

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(11, 31, 54, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.nav-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-left: clamp(28px, 3vw, 52px);
}

.logo {
  display: flex;
  align-items: center;
  color: var(--teal-900);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.25vw, 40px);
  height: 100%;
  margin-left: auto;
}

.nav-links > a:not(.contact-btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #182332;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links > a:not(.contact-btn)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--teal-800);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links > a:not(.contact-btn):hover,
.nav-links > a:not(.contact-btn).is-active {
  color: var(--teal-800);
}

.nav-links > a:not(.contact-btn):hover::after,
.nav-links > a:not(.contact-btn).is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 255px;
  padding: 0 30px;
  background: var(--teal-800);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 180ms ease;
}

.contact-btn:hover {
  background: var(--teal-950);
}

.contact-btn img,
.rental-btn img,
.map-btn img,
.mobile-call-bar img {
  width: 20px;
  height: 20px;
}

.contact-btn img,
.mobile-call-bar img {
  filter: brightness(0) invert(1);
}

.hamburger {
  display: none;
  width: 54px;
  height: 100%;
  margin-left: auto;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.hamburger img {
  width: 27px;
  height: 27px;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 auto;
  z-index: 999;
  display: none;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 32px rgba(8, 27, 51, 0.14);
}

.mobile-menu.is-open {
  display: block;
  animation: menu-in 180ms ease-out both;
}

.mobile-menu a {
  display: block;
  padding: 15px 24px;
  border-bottom: 1px solid #e5eaf0;
  color: var(--ink);
  font-weight: 600;
}

.mobile-menu a:active {
  background: var(--surface);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(5, 18, 35, 0.42);
  backdrop-filter: blur(2px);
}

.menu-overlay.is-open {
  display: block;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 674px;
  margin-top: var(--nav-height);
  background: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  filter: saturate(0.82) contrast(0.96) brightness(0.97);
  object-fit: cover;
  object-position: center center;
}

.hero-panel {
  display: flex;
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.hero-inner {
  width: min(100% - 72px, 620px);
  margin: 0 auto;
  padding: 78px 0 70px;
  transform: translateY(24px);
}

.hero-inner::before {
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 30px;
  background: #7a8796;
  content: "";
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(2.1rem, 2.45vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.48;
}

.hero h1 > .hero-name {
  display: block;
  margin-bottom: 14px;
  color: #182332;
  font-size: 1.5em;
  letter-spacing: 0.08em;
}

.hero-tagline {
  display: block;
}

.hero-tagline span {
  white-space: nowrap;
}

.hero-summary {
  max-width: 620px;
  margin: 62px 0 40px;
  color: #334155;
  font-size: 16px;
  line-height: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  padding: 14px 30px;
  border: 1px solid var(--teal-800);
  background: transparent;
  color: var(--teal-800);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  background: var(--teal-950);
  border-color: var(--teal-950);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-btn {
  min-width: 252px;
  background: var(--teal-800);
  color: var(--white);
}

main {
  overflow: hidden;
}

.section {
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
  padding: 104px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-title {
  position: relative;
  margin: 0 0 50px;
  padding: 38px 0 24px;
  color: var(--ink);
  font-family: "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: left;
}

.section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #6b778a;
  content: attr(data-section);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 74px;
  height: 2px;
  background: var(--teal-800);
  content: "";
}

.section-title span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

#info {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  column-gap: 100px;
  align-items: start;
}

.info-aside {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}

#info .info-aside > .section-title {
  margin-bottom: 0;
  padding: 0 0 24px 154px;
  font-size: 2.5rem;
  white-space: nowrap;
}

#info .info-aside > .section-title::before {
  top: 12px;
  left: -24px;
}

#info .info-aside > .section-title::after {
  left: 154px;
}

.intro-contact {
  width: min(300px, calc(100% - 154px));
  margin: 82px 0 0 154px;
  padding: 22px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--teal-900);
  transition: border-color 180ms ease, color 180ms ease;
}

.intro-contact > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.intro-contact img {
  width: 18px;
  height: 18px;
  filter: invert(31%) sepia(25%) saturate(1526%) hue-rotate(169deg) brightness(89%) contrast(87%);
}

.intro-contact strong {
  display: block;
  margin-top: 9px;
  color: var(--teal-800);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.intro-contact:hover {
  border-color: var(--teal-700);
  color: var(--teal-950);
}

#info > .intro-content {
  display: contents;
}

.intro-text {
  grid-column: 2;
  grid-row: 1;
  padding-top: 4px;
  color: #3f4b5b;
  font-size: 16px;
  line-height: 2.05;
}

.intro-text p {
  margin: 0 0 18px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text strong {
  color: var(--ink);
  font-weight: 700;
}

.params-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--teal-900);
  border-bottom: 1px solid var(--line);
}

.param-card {
  padding: 38px 34px 34px;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease;
}

.param-card:last-child {
  border-right: 0;
}

.param-card:hover {
  background: #f0f4f8;
}

.param-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--teal-900);
  font-size: 20px;
  font-weight: 700;
}

.param-card h3 img {
  width: 22px;
  height: 22px;
  filter: invert(31%) sepia(25%) saturate(1526%) hue-rotate(169deg) brightness(89%) contrast(87%);
}

.param-card dl,
.param-card dd {
  margin: 0;
}

.param-card dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e3e8ef;
}

.param-card dl > div:last-child {
  border-bottom: 0;
}

.param-card dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.param-card dd {
  color: var(--ink);
  font-weight: 500;
}

.amenities-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 86px);
}

.amenities-list {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.amenities-list li:first-child {
  border-top: 1px solid var(--line);
}

.amenities-list li > img {
  width: 20px;
  height: 20px;
  margin-top: 6px;
  filter: invert(31%) sepia(25%) saturate(1526%) hue-rotate(169deg) brightness(89%) contrast(87%);
}

.amenities-list p {
  margin: 0;
  color: #465365;
}

.amenities-list strong {
  color: var(--ink);
  font-weight: 700;
}

.amenities-image {
  min-height: 500px;
  overflow: hidden;
  background: #dce4ec;
}

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

.rental-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(11, 31, 54, 0.08);
}

.rental-contact {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-width: 0;
  padding: 60px 56px 58px;
  overflow: hidden;
  background: var(--teal-950);
  color: var(--white);
}

.rental-contact::after {
  position: absolute;
  right: -105px;
  bottom: -135px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.018);
  content: "";
  pointer-events: none;
}

.rental-kicker,
.rental-details-head > span {
  margin: 0;
  color: #aebfd1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.rental-eyebrow {
  margin: 14px 0 0;
  color: #d7e2ed;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.rental-contact h3 {
  margin: 25px 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.rental-note {
  margin: 0 0 38px;
  color: #b8cadb;
}

.rental-phone-label {
  color: #91a7bd;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.phone-number {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 5px 0 25px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.15rem, 3.35vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.rental-btn {
  position: relative;
  z-index: 1;
  min-width: 245px;
  border-color: var(--white);
  background: var(--white);
  color: var(--teal-950);
}

.rental-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 60px 56px 58px;
  background: linear-gradient(145deg, #f7f9fc 0%, #edf3f9 100%);
}

.rental-details-head > span {
  color: var(--teal-700);
}

.rental-details-head h3 {
  margin: 13px 0 10px;
  color: var(--teal-950);
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.rental-details-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.rental-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 24px;
}

.rental-area-grid span {
  min-width: 0;
  padding: 15px 10px;
  border: 1px solid #cbd7e4;
  background: rgba(255, 255, 255, 0.8);
  color: var(--teal-900);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.rental-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding-top: 23px;
  border-top: 1px solid #cfdae6;
}

.rental-service-list span {
  position: relative;
  padding-left: 19px;
  color: #40536a;
  font-size: 14px;
  font-weight: 600;
}

.rental-service-list span::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.rental-btn img,
.map-btn img {
  filter: invert(31%) sepia(25%) saturate(1526%) hue-rotate(169deg) brightness(89%) contrast(87%);
}

.rental-btn:hover img,
.map-btn:hover img {
  filter: brightness(0) invert(1);
}

.show-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
  min-height: 670px;
}

.show-card {
  position: relative;
  overflow: hidden;
  background: #dce3ea;
}

.show-card:first-child {
  grid-row: 1 / 3;
}

.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.show-card:hover img {
  transform: scale(1.035);
}

.show-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 18px;
  background: rgba(8, 27, 51, 0.82);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.map-info {
  padding: 60px 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal-800);
  background: var(--surface);
  text-align: center;
}

.map-icon {
  width: 43px;
  height: 43px;
  margin: 0 auto 20px;
  filter: invert(31%) sepia(25%) saturate(1526%) hue-rotate(169deg) brightness(89%) contrast(87%);
}

.map-address {
  max-width: 900px;
  margin: 0 auto 9px;
  color: var(--teal-950);
  font-family: "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.65;
}

.map-traffic {
  margin: 0;
  color: #5c6b7c;
}

.map-btns,
.map-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.map-btns {
  margin-bottom: 25px;
}

.map-btn {
  min-height: 50px;
  padding: 11px 24px;
  background: var(--white);
  font-size: 14px;
}

.map-tags span {
  border-color: #cad3df;
  color: var(--teal-900);
}

.footer {
  margin-top: 16px;
  padding: 58px 24px 30px;
  border-top: 3px solid var(--gold);
  background: var(--teal-950);
  color: #aab9ca;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
  font-family: "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.footer p {
  margin: 6px 0;
}

.footer strong {
  color: #dce7f2;
}

.footer-divider {
  width: 64px;
  height: 1px;
  margin: 24px auto;
  background: rgba(255, 255, 255, 0.2);
}

.footer .update-time,
.copyright {
  color: #7890a8;
  font-size: 13px;
}

.mobile-call-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--teal-800);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.16);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid #4a90c2;
  outline-offset: 4px;
}

@media (max-width: 1360px) {
  .nav-links {
    gap: 22px;
  }

  .contact-btn {
    min-width: 220px;
    padding-inline: 22px;
    font-size: 18px;
  }

  .hero-inner {
    width: min(100% - 54px, 620px);
  }
}

@media (max-width: 1180px) {
  :root {
    --nav-height: 78px;
  }

  .nav-container {
    padding-right: 22px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: clamp(2rem, 3.4vw, 2.35rem);
  }

  .hero-inner {
    transform: none;
  }

  .hero-summary {
    margin-block: 26px 32px;
    font-size: 15px;
  }

  .section {
    padding-block: 70px;
  }

  #info {
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.5fr);
    column-gap: 46px;
  }


  #info .info-aside > .section-title {
    padding: 38px 0 24px;
    font-size: clamp(2rem, 3vw, 2.75rem);
    white-space: normal;
  }

  #info .info-aside > .section-title::before {
    top: 0;
    left: 0;
  }

  #info .info-aside > .section-title::after {
    left: 0;
  }

  .intro-contact {
    width: 100%;
    margin: 54px 0 0;
  }

  .amenities-layout {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-panel {
    min-height: 500px;
  }

  .hero-inner {
    width: min(100% - 64px, 680px);
  }

  #info {
    display: block;
  }

  .info-aside {
    display: block;
  }

  #info .info-aside > .section-title {
    margin-bottom: 36px;
  }

  .intro-contact {
    display: none;
  }

  #info > .intro-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .intro-text {
    order: 1;
    padding-top: 0;
  }

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

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

  .param-card:last-child {
    border-bottom: 0;
  }

  .amenities-layout {
    grid-template-columns: 1fr;
  }

  .amenities-image {
    order: -1;
    min-height: 0;
  }

  .amenities-image img {
    height: auto;
    aspect-ratio: 965 / 576;
  }

  .show-grid {
    min-height: 560px;
  }

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

  .rental-contact,
  .rental-details {
    padding: 52px 44px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .nav-container {
    padding: 0 14px 0 20px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-panel {
    min-height: 0;
  }

  .hero-inner {
    width: 100%;
    padding: 50px 24px 56px;
  }

  .hero-inner::before {
    width: 56px;
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.25rem);
    line-height: 1.42;
  }

  .hero h1 > .hero-name {
    margin-bottom: 10px;
    font-size: 1.25em;
  }

  .hero-summary {
    margin: 24px 0 30px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-btn {
    width: 100%;
  }

  .btn {
    min-height: 52px;
    padding: 12px 22px;
  }

  .section {
    width: min(100% - 36px, 1320px);
    padding: 72px 0;
  }

  .section-title {
    margin-bottom: 34px;
    padding: 30px 0 20px;
    font-size: 2rem;
  }

  .section-title span {
    display: inline;
    font-size: 0.66em;
  }

  .intro-text {
    line-height: 1.95;
  }

  .param-card {
    padding: 28px 22px;
  }

  .param-card dl > div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .amenities-layout {
    gap: 26px;
  }

  .amenities-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 0;
  }

  .rental-contact,
  .rental-details {
    padding: 42px 24px;
  }

  .rental-eyebrow {
    font-size: 13px;
  }

  .rental-contact h3 {
    margin-top: 20px;
    font-size: 2rem;
  }

  .rental-note {
    margin-bottom: 30px;
  }

  .phone-number {
    font-size: clamp(2rem, 10vw, 2.75rem);
    letter-spacing: 0;
  }

  .rental-details-head h3 {
    font-size: 1.75rem;
  }

  .rental-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 28px 0 22px;
  }

  .rental-area-grid span {
    padding: 12px 6px;
    font-size: 13px;
  }

  .rental-service-list {
    gap: 10px 12px;
  }

  .rental-service-list span {
    padding-left: 16px;
    font-size: 13px;
  }

  .rental-btn {
    width: 100%;
    min-width: 0;
  }

  .show-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    min-height: 0;
  }

  .show-card,
  .show-card:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .map-info {
    padding: 42px 16px;
    border-left-width: 3px;
  }

  .map-btns {
    align-items: stretch;
    flex-direction: column;
  }

  .map-btn {
    width: 100%;
  }

  .footer {
    padding: 48px 18px 28px;
  }

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

@media (max-width: 390px) {
  .hero-media {
    min-height: 245px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    width: min(100% - 28px, 1320px);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .param-card dl > div {
    grid-template-columns: 76px minmax(0, 1fr);
  }
}

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

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