:root {
  --bg: var(--background);
  --fg: var(--foreground);
  --muted: var(--muted-66);
  --line: var(--line-25);
  --surface: var(--surface-warm-light);
}
html[data-theme="dark"] {
  --surface: var(--surface-warm-dark);
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
}
.info-page {
  margin: 0 auto;
  max-width: var(--page-max-width);
  min-height: 100svh;
  padding: var(--page-gutter);
}
.info-home-link,
.info-header nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.66rem 0.82rem;
  text-decoration: none;
  width: fit-content;
}
.info-header a:hover,
.info-header a:focus-visible {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
  outline: none;
}
@media (max-width: 1040px) {
  .info-header > .info-home-link,
  .info-header > nav,
  .info-header > p {
    display: none;
  }
  .info-header {
    grid-template-columns: 1fr;
  }
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}
.info-intro {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  padding: clamp(48px, 8vh, 86px) 0 clamp(28px, 5vh, 52px);
}
.info-intro .eyebrow {
  grid-column: 1/-1;
  margin-bottom: -0.7rem;
}
.info-intro h1,
.info-block h2,
.amenity-heading h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}
.info-intro h1 {
  font-size: clamp(4.5rem, 8.5vw, 8.5rem);
  line-height: 0.72;
  white-space: nowrap;
}
.info-intro > p:last-child {
  align-self: end;
  font-size: clamp(0.92rem, 1.25vw, 1.1rem);
  line-height: 1.5;
  margin: 0;
  max-width: 31rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-block {
  border-bottom: 1px solid var(--line);
  min-height: 250px;
  padding: clamp(24px, 3.2vw, 44px) clamp(20px, 3vw, 42px);
}
.info-block:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.info-block-wide {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  column-gap: clamp(2rem, 9vw, 10rem);
  min-height: 0;
}
.info-block h2 {
  font-size: clamp(2.1rem, 3vw, 3.35rem);
}
.info-block p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: 38rem;
}
.info-block-wide p:not(.eyebrow) {
  grid-column: 2;
}
.info-block-wide p:nth-of-type(2) {
  margin-top: 0.5rem;
}
.amenity-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
  padding: clamp(45px, 7vw, 90px) 0;
}
.amenity-heading h2 {
  font-size: clamp(2.7rem, 3.8vw, 4.2rem);
}
.amenity-heading > p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 1.2rem 0 0;
  max-width: 24rem;
}
.amenity-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.amenity-item {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  padding: 1.1rem 0;
}
.amenity-item:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 1.3rem;
}
.amenity-item:nth-child(even) {
  padding-left: 1.3rem;
}
.amenity-item img {
  height: 1.1rem;
  margin-top: 0.18rem;
  width: 1.1rem;
}
.amenity-age-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.75;
  margin-top: 0.2rem;
}
html[data-theme="dark"] .amenity-item img {
  filter: invert(1);
}
.amenity-item h3 {
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}
.amenity-item p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}
.info-footer {
  border-top: 2px solid var(--fg);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  padding: 1rem 0 0;
  text-transform: uppercase;
}
.info-footer p {
  margin: 0;
}
@media (max-width: 720px) {
  .info-page {
    padding: 15px;
  }
  .info-header {
    grid-template-columns: 1fr auto;
  }
  .info-header > p {
    display: none;
  }
  .info-header nav {
    gap: 0.3rem;
  }
  .info-header nav a,
  .info-home-link {
    font-size: 0.62rem;
    padding: 0.66rem 0.72rem;
  }
  .info-header nav a:first-child {
    display: none;
  }
  .info-intro {
    display: block;
    padding: 52px 0 28px;
  }
  .info-intro .eyebrow {
    margin-bottom: 0.9rem;
  }
  .info-intro h1 {
    font-size: clamp(4.5rem, 21vw, 6.3rem);
    white-space: normal;
  }
  .info-intro > p:last-child {
    font-size: 0.9rem;
    margin-top: 1.2rem;
    max-width: 19rem;
  }
  .info-grid {
    display: block;
  }
  .info-block,
  .info-block:nth-child(odd) {
    border-right: 0;
    min-height: 0;
    padding: 28px 0;
  }
  .info-block-wide {
    display: block;
  }
  .info-block h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .info-block p:not(.eyebrow) {
    font-size: 0.88rem;
  }
  .amenity-section {
    display: block;
    padding: 50px 0;
  }
  .amenity-heading h2 {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }
  .amenity-heading > p:last-child {
    font-size: 0.88rem;
    margin-bottom: 1.75rem;
  }
  .amenity-grid {
    display: block;
  }
  .amenity-item,
  .amenity-item:nth-child(odd),
  .amenity-item:nth-child(even) {
    border-right: 0;
    padding: 1rem 0;
  }
  .info-footer {
    font-size: 0.61rem;
    line-height: 1.5;
  }
}
.info-footer nav {
  margin-top: 0.65rem;
}
.info-footer a {
  color: var(--muted);
  text-underline-offset: 0.18em;
}
