:root {
  --hero-navy: #06164a;
  --blue: #082070;
  --blue-dark: #05164f;
  --orange: #c09828;
  --orange-dark: #9f7a1f;
  --ink: #111111;
  --muted: #4f5158;
  --line: #e8e8eb;
  --line-strong: #d9e0ea;
  --soft: var(--blue-soft);
  --blue-soft: #eef2f7;
  --orange-soft: #fbf4df;
  --white: #ffffff;
  --shadow: 0 8px 22px rgba(20, 20, 25, 0.1);
  --max: 1280px;
  --red: var(--blue);
  --red-dark: var(--blue-dark);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  min-height: 92px;
  padding: 0 clamp(20px, 7vw, 88px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 14px rgba(15, 15, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(100%, 112px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-content {
  display: contents;
}

.nav-toggle,
.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: #35363b;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 34px 0 31px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red);
}

.main-nav a.is-active::after {
  background: var(--orange);
}

.header-cta,
.header-phone,
.button,
.reserve-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-phone {
  gap: 8px;
  justify-self: end;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.header-phone svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

.header-cta {
  min-width: 118px;
  padding: 0 22px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(242, 140, 56, 0.22);
}

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

.reserve-link.filled:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.header-cta:hover {
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: clamp(440px, 41vw, 520px);
  overflow: hidden;
  background: var(--hero-navy);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 26, 51, 0.98) 0%,
      rgba(3, 26, 51, 0.95) 38%,
      rgba(3, 26, 51, 0.72) 51%,
      rgba(3, 26, 51, 0.22) 66%,
      rgba(3, 26, 51, 0) 84%
    );
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(46%, 680px);
  min-width: 520px;
  min-height: clamp(440px, 41vw, 520px);
  padding: 52px 22px 52px clamp(24px, 7vw, 96px);
}

.hero h1 {
  max-width: 610px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(33px, 3.35vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 520px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.45;
}

.hero-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  color: var(--white);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 900;
  line-height: 1.1;
}

.hero-contact-link svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-address {
  margin: 0 0 7px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 0 0 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-badges svg,
.hero-badge-icon {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.hero-badge-icon {
  display: block;
  flex: 0 0 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.phone-link {
  margin-bottom: 12px;
}

.phone-link svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-width: 190px;
  padding: 0 28px;
  font-size: 14px;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-outline {
  color: var(--blue);
  border: 1.5px solid var(--blue);
  background: var(--white);
}

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

.hero .button-outline {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.hero .button-outline:hover {
  color: var(--blue);
  background: var(--white);
}

.reserve-link:hover {
  color: var(--white);
  background: var(--red);
}

.facility-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: clamp(440px, 41vw, 520px);
  overflow: hidden;
  background: var(--blue);
}

.facility-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 41vw, 520px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.04);
}

.hero-home .facility-photo img,
.hero-features .facility-photo img {
  object-position: 50% 55%;
}

.hero-units .facility-photo img,
.hero-reserve .facility-photo img {
  object-position: 50% 55%;
}

.hero-about .facility-photo img {
  object-position: 56% 52%;
}

.construction-page {
  display: grid;
  min-height: calc(100vh - 90px);
  place-items: center;
  padding: 56px 24px;
  text-align: center;
}

.construction-page h1 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.construction-page p {
  margin: 0 0 24px;
  color: #3f4148;
  font-size: 20px;
  font-weight: 700;
}

.rates-section {
  padding: 42px clamp(18px, 4vw, 56px) 18px;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto 12px;
  text-align: center;
}

.section-heading span {
  height: 2px;
  background: var(--line-strong);
}

.section-heading h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(21px, 2.2vw, 25px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rates-section #rates-title,
.property-photo-section #property-photo-title,
.features-overview #features-overview-title,
.feature-size-section #feature-size-title {
  color: var(--ink);
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.unit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  min-width: 0;
  min-height: 266px;
  padding: 14px 13px 13px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.unit-card.popular {
  border-color: var(--blue);
  box-shadow: 0 8px 23px rgba(7, 59, 115, 0.16);
}

.popular-label {
  position: absolute;
  top: -7px;
  min-width: 154px;
  padding: 4px 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: var(--blue);
  border-radius: 0 0 3px 3px;
}

.unit-card h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.unit-card p {
  margin: 5px 0 8px;
  color: #42434a;
  font-size: 15px;
  font-weight: 700;
}

.unit-icon {
  display: block;
  width: 124px;
  height: 112px;
  margin: 4px 0 10px;
  object-fit: contain;
}

.reserve-link {
  align-self: stretch;
  width: 100%;
  min-height: 30px;
  margin-top: auto;
  padding: 0 8px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  border: 1.5px solid var(--red);
}

.reserve-link.filled {
  color: var(--white);
  background: var(--red);
}

.unit-note {
  margin: 24px 0 26px;
  color: #565960;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.rates-more-action {
  display: flex;
  justify-content: center;
  max-width: var(--max);
  margin: 24px auto 0;
}

.rates-more-action .button {
  min-width: min(100%, 260px);
}

.rates-more-action .button-primary {
  background: var(--orange);
}

.rates-more-action .button-primary:hover {
  background: var(--orange-dark);
}

.unit-note::before {
  color: #444850;
  content: "✓ ";
}

.unit-note span {
  padding: 0 10px;
}

.feature-strip {
  padding: 26px clamp(18px, 7vw, 96px) 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
}

.feature-strip-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 0 26px;
  border-right: 1px solid #cacbd1;
}

.feature-strip-grid article:first-child {
  padding-left: 0;
}

.feature-strip-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-strip-grid svg {
  width: 52px;
  height: 52px;
  color: var(--red);
  stroke-width: 1.8;
}

.feature-icon-img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.feature-icon-pair {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.feature-icon-pair .feature-icon-img {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.feature-icon-pair .feature-icon-img + .feature-icon-img {
  margin-left: -9px;
}

.feature-strip-grid h3 {
  margin: 0 0 4px;
  color: #383941;
  font-size: 16px;
}

.feature-strip-grid p {
  margin: 0;
  color: #4e5057;
  font-size: 13px;
}

.property-photo-section {
  padding: 40px clamp(18px, 7vw, 96px) 44px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
}

.property-carousel {
  max-width: var(--max);
  margin: 0 auto;
}

.property-carousel-view {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 438px;
  overflow: hidden;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.property-carousel-view:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.property-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

.property-carousel-slide[hidden] {
  display: none;
}

.property-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 438px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.property-carousel-slide:nth-child(1) img {
  object-position: 50% 55%;
}

.property-carousel-slide:nth-child(2) img {
  object-position: 34% 53%;
}

.property-carousel-slide:nth-child(3) img {
  object-position: 50% 56%;
}

.property-carousel-slide:nth-child(4) img {
  object-position: 50% 52%;
}

.property-carousel-slide:nth-child(5) img {
  object-position: 50% 58%;
}

.property-carousel-slide:nth-child(6) img {
  object-position: 52% 50%;
}

.property-carousel-slide:nth-child(7) img {
  object-position: 52% 56%;
}

.property-carousel-slide:nth-child(8) img {
  object-position: 56% 52%;
}

.property-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(3, 26, 51, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(3, 26, 51, 0.22);
  transform: translateY(-50%);
}

.property-carousel-arrow:hover,
.property-carousel-arrow:focus-visible {
  background: var(--blue);
}

.property-carousel-arrow svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-carousel-prev {
  left: 18px;
}

.property-carousel-next {
  right: 18px;
}

.property-carousel-controls {
  display: block;
  margin-top: 16px;
}

.property-carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.property-carousel-thumb {
  aspect-ratio: 4 / 3;
  min-width: 0;
  padding: 3px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(17, 37, 64, 0.08);
  opacity: 0.76;
}

.property-carousel-thumb:hover,
.property-carousel-thumb:focus-visible,
.property-carousel-thumb.is-active {
  border-color: var(--blue);
  opacity: 1;
}

.property-carousel-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.local-section,
.faq-section {
  padding: 42px clamp(18px, 7vw, 96px);
  background: var(--white);
}

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

.faq-section {
  background: var(--blue-soft);
  border-top: 1px solid var(--line);
}

.local-content,
.faq-grid {
  max-width: var(--max);
  margin: 0 auto;
}

.local-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.local-content p,
.faq-grid p {
  margin: 0;
  color: #474a52;
  font-size: 15px;
  line-height: 1.55;
}

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

.faq-grid article {
  min-height: 170px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-grid h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 17px;
  line-height: 1.2;
}

.features-overview {
  padding: 42px clamp(18px, 4vw, 56px) 24px;
  background: var(--white);
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 14px;
  max-width: none;
  margin: 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  height: 100%;
  min-height: 160px;
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(17, 37, 64, 0.07);
}

.feature-card svg,
.feature-card .feature-icon-img {
  width: 48px;
  height: 48px;
}

.feature-card svg {
  color: var(--red);
  stroke-width: 1.7;
}

.feature-card h3 {
  max-width: 230px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.05;
}

.feature-card p {
  margin: 0;
  color: #464a54;
  font-size: 14px;
  line-height: 1.45;
}

.feature-text-link,
.feature-size-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.features-overview-action {
  display: flex;
  justify-content: center;
  max-width: var(--max);
  margin: 28px auto 0;
}

.features-overview-action .button {
  min-width: 180px;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "access-image access-copy"
    "security-copy security-image";
  margin-top: 18px;
  border-top: 0;
  border-bottom: 0;
}

.feature-photo-panel-units {
  grid-area: access-image;
}

.feature-copy-panel#access {
  grid-area: access-copy;
}

.feature-photo-panel-gate {
  grid-area: security-image;
}

.feature-copy-panel#security {
  grid-area: security-copy;
}

.feature-photo-panel {
  height: clamp(252px, 20vw, 268px);
  min-height: 0;
  overflow: hidden;
  background: var(--blue-soft);
}

.feature-photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.04) contrast(1.02);
}

.feature-photo-panel-crop img {
  object-position: 68% 50%;
}

.feature-photo-panel-units img {
  object-position: 52% 50%;
}

.feature-photo-panel-gate img {
  object-position: 34% 53%;
}

.feature-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: clamp(252px, 20vw, 268px);
  min-height: 0;
  padding: 18px clamp(28px, 5vw, 72px);
  background: var(--blue-soft);
}

.feature-eyebrow,
.feature-strip-heading span,
.feature-faq-heading span {
  display: block;
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feature-copy-panel h2 {
  max-width: 420px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(23px, 2.35vw, 28px);
  font-weight: 900;
  line-height: 1.05;
}

.feature-check-list {
  display: grid;
  gap: 5px;
  margin: 0 0 10px;
  padding: 0;
  color: #414854;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  list-style: none;
}

.feature-check-list li {
  position: relative;
  padding-left: 24px;
}

.feature-check-list li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
  content: "✓";
}

.feature-size-section {
  padding: 42px clamp(18px, 7vw, 96px);
  background: var(--white);
}

.feature-size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.feature-size-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 258px;
  padding: 18px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(17, 37, 64, 0.07);
}

.feature-size-card img {
  width: 116px;
  height: 96px;
  object-fit: contain;
}

.feature-size-card h3 {
  margin: 12px 0 7px;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.feature-size-card p {
  margin: 0 0 14px;
  color: #4b505a;
  font-size: 13px;
  line-height: 1.4;
}

.feature-size-card a {
  margin-top: auto;
}

.feature-benefit-strip {
  padding: 26px clamp(18px, 7vw, 96px) 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip-heading {
  margin: 0 auto 22px;
  text-align: center;
}

.feature-strip-heading h2,
.feature-faq-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.1;
}

.feature-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}

.feature-benefit-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 0 28px;
  border-right: 1px solid #d9dce2;
}

.feature-benefit-grid article:first-child {
  padding-left: 0;
}

.feature-benefit-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-benefit-grid svg,
.feature-benefit-grid .feature-icon-img,
.feature-benefit-grid .feature-icon-pair {
  width: 50px;
  height: 50px;
}

.feature-benefit-grid svg {
  color: var(--red);
  stroke-width: 1.7;
}

.feature-benefit-grid .feature-icon-pair .feature-icon-img {
  width: 33px;
  height: 33px;
}

.feature-benefit-grid h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 16px;
}

.feature-benefit-grid p {
  margin: 0;
  color: #4c515d;
  font-size: 13px;
  line-height: 1.35;
}

.location-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: 28px;
  align-items: stretch;
  width: calc(100% - (2 * clamp(18px, 7vw, 96px)));
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 0;
  background: var(--blue-soft);
  border-top: 1px solid var(--line);
  box-shadow: 0 0 0 100vmax var(--blue-soft);
  clip-path: inset(0 -100vmax);
}

.reserve-contact-section {
  padding: 44px clamp(18px, 7vw, 96px);
  background: var(--blue-soft);
  border-top: 1px solid var(--line);
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
  width: calc(100% - (2 * clamp(18px, 7vw, 96px)));
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 0;
}

.about-story-copy,
.about-story-photo {
  min-height: 390px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(17, 37, 64, 0.07);
}

.about-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.about-story-copy span {
  display: block;
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-story-copy h2 {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

.about-story-copy p {
  margin: 0;
  color: #4a5360;
  font-size: 16px;
  line-height: 1.58;
}

.about-story-copy p + p {
  margin-top: 14px;
}

.about-story-photo {
  overflow: hidden;
}

.about-story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(1.04) contrast(1.02);
}

.about-values-section {
  padding: 42px clamp(18px, 7vw, 96px) 46px;
  background: var(--blue-soft);
  border-top: 1px solid var(--line);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.about-values-grid article {
  min-height: 190px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(17, 37, 64, 0.06);
}

.about-values-grid .feature-icon-img,
.about-values-grid .feature-icon-pair {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.about-values-grid .feature-icon-pair {
  justify-content: flex-start;
}

.about-values-grid .feature-icon-pair .feature-icon-img {
  width: 33px;
  height: 33px;
}

.about-values-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.about-values-grid p {
  margin: 0;
  color: #4a5360;
  font-size: 14px;
  line-height: 1.45;
}

.reserve-contact-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(17, 37, 64, 0.07);
}

.reserve-contact-card > span {
  display: block;
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.reserve-contact-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.05;
}

.reserve-contact-card p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: #4a5360;
  font-size: 16px;
  line-height: 1.55;
}

.reserve-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.reserve-contact-grid a {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(17, 37, 64, 0.06);
}

.reserve-contact-grid svg {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.reserve-contact-grid strong {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.reserve-contact-grid span {
  color: var(--red);
  font-size: 19px;
  font-weight: 900;
}

.location-map-copy,
.location-map-frame {
  min-height: 330px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(17, 37, 64, 0.07);
}

.location-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.location-map-copy span {
  display: block;
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.location-map-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
}

.location-map-copy p,
.location-map-copy address {
  margin: 0;
  color: #4a5360;
  font-size: 15px;
  line-height: 1.5;
}

.location-map-copy address {
  margin-top: 18px;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.location-map-frame {
  overflow: hidden;
  position: relative;
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  position: relative;
  z-index: 1;
}

.feature-faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.4fr);
  gap: 42px;
  padding: 38px clamp(18px, 9vw, 112px);
  background: var(--white);
}

.home-faq-section {
  padding: 42px clamp(18px, 7vw, 96px) 46px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.home-faq-section .feature-faq-heading {
  max-width: 680px;
  margin: 0 auto 22px;
  text-align: center;
}

.home-faq-section .feature-faq-heading h2 {
  font-size: clamp(25px, 2.5vw, 34px);
}

.home-faq-section .feature-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.home-faq-section .feature-faq-list details {
  box-shadow: 0 7px 18px rgba(17, 37, 64, 0.06);
}

.feature-faq-heading {
  align-self: start;
}

.feature-faq-list {
  display: grid;
  gap: 8px;
}

.feature-faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 3px 10px rgba(17, 37, 64, 0.05);
}

.feature-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 0 18px;
  color: #394152;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.feature-faq-list summary span {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.feature-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.feature-faq-list p {
  margin: 0;
  padding: 0 18px 14px;
  color: #555b66;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1.2fr 1.15fr 1.25fr;
  gap: 42px;
  align-items: start;
  padding: 28px clamp(24px, 8vw, 110px) 34px;
  color: var(--white);
  background: var(--blue);
}

.footer-brand {
  align-self: center;
  text-align: center;
}

.footer-logo {
  display: block;
  width: min(100%, 96px);
  height: auto;
  margin: 0 auto;
  background: var(--white);
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 7px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 0 !important;
  padding-top: 10px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rates-page,
.size-guide-section,
.rates-faq-section {
  padding: 26px clamp(18px, 7vw, 96px);
  background: var(--blue-soft);
}

.rates-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rates-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin: 0 0 14px;
}

.rates-controls > * {
  min-width: 0;
}

.filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.filter-tab {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
  line-height: 1.1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.sort-control {
  display: block;
  min-width: 240px;
  color: var(--ink);
}

.sort-control select {
  width: 100%;
  min-height: 42px;
  padding: 0 34px 0 12px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
}

.rate-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 59, 115, 0.1);
}

.rate-row {
  display: grid;
  grid-template-columns: 180px minmax(270px, 340px) minmax(180px, 220px) 260px;
  column-gap: 26px;
  justify-content: center;
  min-height: 148px;
  background: var(--white);
  border-bottom: 1px solid var(--line-strong);
}

.rate-row:hover {
  background: var(--white);
}

.rate-row[hidden] {
  display: none;
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-empty {
  padding: 44px 22px;
  text-align: center;
  background: var(--white);
}

.rate-empty[hidden] {
  display: none;
}

.rate-empty h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.rate-empty p {
  max-width: 520px;
  margin: 0 auto;
  color: #4f5d70;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rate-visual {
  display: grid;
  place-items: center;
  padding: 16px 22px;
  background: var(--white);
  border-right: 0;
}

.rate-visual img {
  width: min(100%, 126px);
  height: 112px;
  object-fit: contain;
}

.rate-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 22px 0;
}

.rate-details h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 0.95;
}

.rate-details strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.rate-tags {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  padding: 22px 0;
  color: #4f5d70;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.rate-details p {
  max-width: 390px;
  margin: 0 0 12px;
  color: #35445a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rate-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  border-left: 0;
  background: var(--white);
}

.rate-actions {
  display: grid;
  gap: 9px;
  justify-items: stretch;
}

.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  background: var(--blue);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(7, 59, 115, 0.24);
}

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

.availability-link {
  justify-self: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.size-guide-section {
  padding-top: 22px;
}

.size-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.size-guide-card {
  display: grid;
  justify-items: center;
  min-height: 204px;
  padding: 18px 16px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(7, 59, 115, 0.08);
}

.size-guide-card img {
  width: 150px;
  height: 92px;
  object-fit: contain;
}

.size-guide-card h3 {
  max-width: 240px;
  margin: 12px 0 5px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.size-guide-card p {
  max-width: 230px;
  margin: 0;
  color: #4f5d70;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.rates-faq-section {
  padding-top: 18px;
  padding-bottom: 34px;
}

.faq-list {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(7, 59, 115, 0.08);
}

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

.faq-row:last-child {
  border-bottom: 0;
}

.faq-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  padding: 0 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-row summary span {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.faq-row[open] summary span {
  transform: rotate(45deg);
}

.faq-row p {
  margin: 0;
  padding: 0 22px 14px;
  color: #4f5d70;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .feature-size-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .feature-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rate-row {
    grid-template-columns: 150px minmax(230px, 320px) minmax(160px, 200px) 260px;
    column-gap: 18px;
  }

  .rate-offer {
    padding: 22px 24px;
  }

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

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

  .feature-strip-grid article,
  .feature-benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid #d8d8dc;
    padding: 16px 22px;
  }

  .feature-strip-grid article:nth-child(odd),
  .feature-benefit-grid article:nth-child(odd) {
    padding-left: 0;
  }

  .feature-strip-grid article:nth-child(even),
  .feature-benefit-grid article:nth-child(even) {
    padding-right: 0;
  }

  .feature-strip-grid article:nth-last-child(-n + 2),
  .feature-benefit-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: 72px;
    padding: 10px 18px;
  }

  .brand {
    justify-self: start;
  }

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

  .nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .features-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    position: relative;
    display: inline-grid;
    justify-self: end;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 9px;
    color: var(--red);
    border: 1.5px solid var(--red);
    border-radius: 4px;
    cursor: pointer;
    list-style: none;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
  }

  .menu-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 36px));
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ .menu-content {
    display: grid;
    gap: 10px;
  }

  .main-nav {
    display: grid;
    gap: 0;
    justify-content: stretch;
    color: var(--ink);
  }

  .main-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    width: 100%;
    min-width: 0;
    box-shadow: none;
  }

  .header-phone {
    justify-self: stretch;
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }
}

@media (max-width: 820px) {
  .rates-section,
  .features-overview,
  .feature-size-section,
  .feature-benefit-strip,
  .property-photo-section,
  .home-faq-section,
  .rates-page,
  .size-guide-section,
  .rates-faq-section,
  .about-values-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero::before {
    display: none;
  }

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

  .hero-copy {
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 28px 24px 20px;
    background: var(--hero-navy);
  }

  .facility-photo {
    position: relative;
    inset: auto;
    background: var(--white);
  }

  .facility-photo,
  .facility-photo img {
    min-height: 300px;
  }

  .facility-photo img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    transform: none;
    transform-origin: center center;
  }

  .hero-home .facility-photo img,
  .hero-features .facility-photo img {
    object-position: 50% 55%;
  }

  .hero-units .facility-photo img,
  .hero-reserve .facility-photo img {
    object-position: 50% 55%;
  }

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

  .section-heading span {
    width: 100%;
  }

  .unit-card {
    min-height: 238px;
    padding: 12px 8px 10px;
  }

  .unit-card h3 {
    font-size: clamp(19px, 3vw, 25px);
  }

  .unit-card p {
    font-size: 13px;
  }

  .unit-icon {
    width: min(100%, 104px);
    height: 90px;
  }

  .reserve-link {
    min-height: 34px;
    font-size: 10px;
  }

  .popular-label {
    max-width: calc(100% - 16px);
    min-width: 0;
    font-size: 10px;
  }

  .feature-strip-grid,
  .feature-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-showcase-grid,
  .feature-faq-section,
  .location-map-section,
  .about-story-section {
    grid-template-columns: 1fr;
  }

  .feature-showcase-grid {
    grid-template-areas:
      "access-image"
      "access-copy"
      "security-image"
      "security-copy";
  }

  .feature-photo-panel,
  .feature-photo-panel img {
    height: 260px;
    min-height: 0;
  }

  .feature-copy-panel {
    height: auto;
    min-height: 260px;
  }

  .feature-faq-section {
    gap: 18px;
  }

  .location-map-copy,
  .location-map-frame,
  .location-map-frame iframe {
    min-height: 280px;
  }

  .location-map-section,
  .about-story-section {
    width: calc(100% - 40px);
  }

  .about-story-copy,
  .about-story-photo,
  .about-story-photo img {
    min-height: 300px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .rate-row {
    grid-template-columns: 170px 1fr;
    column-gap: 0;
    justify-content: stretch;
  }

  .rate-details {
    padding: 22px 18px 22px 0;
  }

  .rate-tags {
    grid-column: 2;
    padding: 0 18px 18px 0;
  }

  .rate-offer {
    grid-column: 1 / -1;
    display: block;
    padding: 18px;
    border-top: 0;
    border-left: 0;
  }

  .rate-actions {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .menu-content {
    right: 16px;
    width: calc(100vw - 32px);
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: 24px 18px 18px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 31px;
  }

  .hero-copy > p {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .header-cta,
  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 12px;
  }

  .hero-badges li:last-child {
    grid-column: 1 / -1;
  }

  .hero-badges li:last-child:nth-child(even) {
    grid-column: auto;
  }

  .hero-contact-link {
    font-size: 15px;
  }

  .facility-photo,
  .facility-photo img {
    min-height: 224px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .faq-grid,
  .site-footer,
  .size-guide-grid {
    grid-template-columns: 1fr;
  }

  .unit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .unit-card {
    min-height: 236px;
    padding: 14px 12px 12px;
  }

  .unit-card h3 {
    font-size: 25px;
  }

  .unit-icon {
    width: 112px;
    height: 94px;
  }

  .feature-strip-grid,
  .feature-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .feature-size-grid,
  .size-guide-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid article {
    min-height: 0;
  }

  .features-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .property-carousel-view {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  .property-carousel-slide img {
    min-height: 260px;
  }

  .property-carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .property-carousel-prev {
    left: 10px;
  }

  .property-carousel-next {
    right: 10px;
  }

  .property-carousel-controls {
    display: block;
  }

  .property-carousel-thumbs {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .property-carousel-thumb {
    flex: 0 0 82px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    min-height: 0;
    padding: 16px 12px;
    text-align: center;
  }

  .feature-card svg,
  .feature-card .feature-icon-img {
    width: 38px;
    height: 38px;
  }

  .feature-card h3 {
    max-width: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.12;
  }

  .feature-card p {
    display: none;
  }

  .feature-copy-panel {
    height: auto;
    min-height: 0;
    padding: 24px 20px;
  }

  .feature-photo-panel,
  .feature-photo-panel img {
    height: 188px;
    min-height: 0;
  }

  .feature-copy-panel h2 {
    max-width: none;
    font-size: 24px;
  }

  .feature-size-card {
    min-height: 0;
    padding: 18px;
  }

  .rates-controls {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
    padding-bottom: 0;
    overflow: visible;
  }

  .filter-tab {
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    font-size: 12px;
  }

  .sort-control {
    width: 100%;
    min-width: 0;
  }

  .rate-row {
    grid-template-columns: 96px 1fr;
    gap: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(7, 59, 115, 0.08);
  }

  .rate-list {
    gap: 14px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .rate-row:last-child {
    border-bottom: 1px solid var(--line-strong);
  }

  .rate-visual {
    align-content: start;
    padding: 18px 10px 10px 16px;
  }

  .rate-visual img {
    width: 70px;
    height: 68px;
  }

  .rate-details {
    padding: 18px 16px 8px 0;
    text-align: left;
  }

  .rate-details h3 {
    font-size: 30px;
  }

  .rate-details strong {
    font-size: 15px;
  }

  .rate-tags {
    grid-column: 1 / -1;
    flex-flow: row wrap;
    gap: 8px;
    padding: 0 16px 16px;
  }

  .rate-tags span {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
  }

  .rate-details p {
    max-width: none;
  }

  .rate-offer {
    grid-column: 1 / -1;
    display: block;
    padding: 16px;
    background: var(--white);
    border-top: 1px solid var(--line-strong);
  }

  .rate-actions,
  .reserve-button {
    width: 100%;
  }

  .rate-actions {
    min-width: 0;
  }

  .reserve-button {
    min-height: 44px;
    padding: 0 12px;
  }

  .availability-link {
    justify-self: center;
  }

  .feature-strip-grid article,
  .feature-strip-grid article:first-child,
  .feature-strip-grid article:last-child,
  .feature-benefit-grid article,
  .feature-benefit-grid article:first-child,
  .feature-benefit-grid article:last-child {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid #d8d8dc;
  }

  .feature-strip-grid svg,
  .feature-strip-grid .feature-icon-img,
  .feature-strip-grid .feature-icon-pair,
  .feature-benefit-grid svg,
  .feature-benefit-grid .feature-icon-img,
  .feature-benefit-grid .feature-icon-pair {
    width: 38px;
    height: 38px;
  }

  .feature-strip-grid .feature-icon-pair .feature-icon-img,
  .feature-benefit-grid .feature-icon-pair .feature-icon-img {
    width: 26px;
    height: 26px;
  }

  .feature-strip-grid .feature-icon-pair .feature-icon-img + .feature-icon-img,
  .feature-benefit-grid .feature-icon-pair .feature-icon-img + .feature-icon-img {
    margin-left: -7px;
  }

  .feature-strip-grid h3,
  .feature-benefit-grid h3 {
    font-size: 14px;
    line-height: 1.12;
  }

  .feature-strip-grid p,
  .feature-benefit-grid p {
    font-size: 12px;
  }

  .feature-strip-grid article:last-child,
  .feature-benefit-grid article:last-child {
    border-bottom: 0;
  }

  .unit-note {
    display: grid;
    gap: 3px;
  }

  .unit-note span {
    display: none;
  }

  .site-footer {
    gap: 20px;
    justify-items: center;
    text-align: center;
  }

  .site-footer address,
  .site-footer > div,
  .site-footer nav {
    width: 100%;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (min-width: 360px) and (max-width: 620px) {
  .rate-row {
    grid-template-columns: 82px minmax(0, 1fr) minmax(116px, 0.4fr);
    align-items: stretch;
  }

  .rate-visual {
    align-content: center;
    padding: 16px 10px 16px 14px;
  }

  .rate-visual img {
    width: 62px;
    height: 62px;
  }

  .rate-details {
    justify-content: center;
    padding: 18px 14px 8px 0;
  }

  .rate-details h3 {
    font-size: 27px;
  }

  .rate-tags {
    grid-column: 2;
    justify-content: flex-start;
    gap: 7px 10px;
    padding: 0 12px 16px 0;
  }

  .rate-offer {
    grid-column: 3;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 16px 12px;
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .rate-actions {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
  }

  .reserve-button {
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .hero-badges {
    grid-template-columns: 1fr;
  }

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

  .feature-strip-grid,
  .feature-benefit-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip-grid article:nth-last-child(-n + 2),
  .feature-benefit-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid #d8d8dc;
  }

  .feature-strip-grid article:last-child,
  .feature-benefit-grid article:last-child {
    border-bottom: 0;
  }

}
