:root {
  /* Replace these brand colors for each new facility. */
  --red: #b22234;
  --red-dark: #8f1b28;
  --ink: #2d2e34;
  --muted: #62656d;
  --line: #e8e8eb;
  --soft: #f7f7f8;
  --white: #ffffff;
  --shadow: 0 8px 22px rgba(20, 20, 25, 0.1);
  --max: 1280px;
}

* {
  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: 250px 1fr auto;
  align-items: center;
  gap: 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: grid;
  justify-items: center;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

.brand span {
  font-size: clamp(24px, 2.2vw, 34px);
}

.brand small {
  margin-top: 3px;
  font-size: clamp(16px, 1.35vw, 21px);
  letter-spacing: 1px;
  text-align: center;
}

.menu-content {
  display: contents;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
  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(--red);
}

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

.header-cta {
  gap: 10px;
  min-width: 210px;
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 6px 16px rgba(178, 34, 52, 0.22);
}

.header-cta svg {
  width: 22px;
  height: 22px;
}

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

.hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      #fff 34%,
      rgba(255, 255, 255, 0.98) 42%,
      rgba(255, 255, 255, 0.82) 50%,
      rgba(255, 255, 255, 0.28) 59%,
      rgba(255, 255, 255, 0) 66%
    );
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(50%, 760px);
  min-width: 560px;
  min-height: 340px;
  padding: 28px 18px 28px clamp(24px, 7vw, 96px);
}

.hero h1 {
  max-width: 610px;
  margin: 0 0 10px;
  color: var(--red);
  font-size: clamp(32px, 4.1vw, 54px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 520px;
  margin: 0 0 16px;
  color: #3f4148;
  font-size: 18px;
}

.hero-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  color: var(--red);
  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: 8px 16px;
  margin: 0 0 12px;
  padding: 0;
  color: #41434a;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.hero-badges svg {
  width: 18px;
  height: 18px;
  color: #5f626b;
}

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

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

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

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

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

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

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

.facility-photo {
  position: absolute;
  inset: 0 0 0 29%;
  z-index: 0;
  min-height: 340px;
  overflow: hidden;
  background: #e6dcc9;
}

.facility-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 35% 50%;
  filter: saturate(1.05) contrast(1.03);
}

.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, 7vw, 96px) 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(--red);
}

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

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

.unit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 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-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 {
  padding-top: 22px;
  border-color: var(--red);
  box-shadow: 0 8px 23px rgba(178, 34, 52, 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(--red);
  border-radius: 0 0 3px 3px;
}

.unit-card h3 {
  margin: 0;
  color: var(--red);
  font-size: 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;
}

.price {
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 8px;
}

.price span {
  margin-left: 2px;
  font-size: 17px;
}

.reserve-link {
  align-self: stretch;
  width: 100%;
  min-height: 34px;
  margin-top: auto;
  color: var(--red);
  font-size: 12px;
  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;
}

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

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

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 15px clamp(18px, 7vw, 96px) 18px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.feature-strip 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 article:first-child {
  padding-left: 0;
}

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

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

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

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

.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(--red);
}

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

.footer-brand strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.85;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}

.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);
}

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

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

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

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

  .site-footer {
    grid-template-columns: 1fr 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;
  }

  .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: 6px;
    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;
  }
}

@media (max-width: 820px) {
  .hero::before {
    display: none;
  }

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

  .facility-photo {
    position: relative;
    inset: auto;
  }

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

  .facility-photo img {
    object-position: 35% 50%;
  }

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

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

  .unit-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

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

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

  .hero-actions {
    gap: 10px;
  }

  .hero-badges {
    display: grid;
  }

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

  .unit-grid,
  .feature-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip article,
  .feature-strip article:first-child,
  .feature-strip article:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid #d8d8dc;
  }

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

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

  .unit-note span {
    display: none;
  }

  .site-footer {
    gap: 20px;
  }

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