:root {
  --pine: #153e35;
  --pine-deep: #0d2c26;
  --citron: #d8ef4f;
  --citron-soft: #eaf6a8;
  --limestone: #eee8dc;
  --paper: #f8f5ee;
  --cobalt: #3157a4;
  --cherry: #8d2944;
  --plum: #221c2a;
  --ink: #171a18;
  --muted: #5e625e;
  --line: rgba(23, 26, 24, 0.19);
  --light-line: rgba(255, 255, 255, 0.25);
  --display: "Bodoni 72", Didot, "Iowan Old Style", "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --label: "Avenir Next Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --shadow: 0 22px 70px rgba(13, 44, 38, 0.16);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

::selection {
  background: var(--citron);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--citron);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--citron);
  color: var(--ink);
  font-weight: 700;
}

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

.shell {
  width: min(100% - 36px, 1320px);
  margin-inline: auto;
}

.shell-narrow {
  width: min(100% - 36px, 900px);
  margin-inline: auto;
}

.eyebrow,
.chapter-no,
.nav-label,
.meta-label,
.mini-label {
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.3rem;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 11vw, 8.6rem);
}

h2 {
  font-size: clamp(2.45rem, 6.5vw, 5.9rem);
}

h3 {
  font-size: clamp(1.65rem, 3.3vw, 2.8rem);
  line-height: 1.05;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

p {
  margin-top: 0;
}

.lead-copy {
  max-width: 42rem;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: relative;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--pine-deep);
  color: #fff;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: var(--citron);
  color: var(--pine-deep);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.brand-words {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.brand-kind {
  margin-top: 0.25rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.76;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--citron);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--pine);
  color: #fff;
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: 1fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 12vw, 9rem) max(18px, calc((100vw - 1320px) / 2)) 5rem;
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 4%;
  width: clamp(88px, 20vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 239, 79, 0.65);
  border-radius: 50%;
  content: "";
}

.hero h1 {
  max-width: 8.5ch;
  margin-bottom: 1.6rem;
}

.hero-intro {
  max-width: 35rem;
  margin-bottom: 2rem;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
}

.hero-media {
  position: relative;
  min-height: 56vh;
  overflow: hidden;
}

.hero-media::after,
.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(13, 44, 38, 0.48));
  content: "";
  pointer-events: none;
}

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

.hero-caption,
.image-caption {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: 18rem;
  margin: 0;
  color: #fff;
  font-family: var(--label);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button-cut,
.button-outline,
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--label);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-cut {
  padding: 0.86rem 1.25rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  background: var(--citron);
  color: var(--ink);
}

.button-outline {
  padding: 0.8rem 1.2rem;
  border: 1px solid currentColor;
}

.text-link {
  min-height: 44px;
  justify-content: flex-start;
  border-bottom: 1px solid currentColor;
}

.text-link::after {
  content: "↗";
}

.availability {
  position: relative;
  z-index: 5;
  background: var(--citron);
  color: var(--ink);
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.availability-cell {
  min-height: 92px;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(23, 26, 24, 0.2);
}

.availability-cell:last-child {
  border-bottom: 0;
}

.availability strong,
.availability a {
  display: block;
  margin-top: 0.22rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.availability a {
  text-decoration-thickness: 1px;
}

.section-pad {
  padding-block: clamp(5rem, 11vw, 10rem);
}

.section-tight {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.bg-paper {
  background: var(--paper);
}

.bg-limestone {
  background: var(--limestone);
}

.bg-pine {
  background: var(--pine);
  color: #fff;
}

.bg-cobalt {
  background: var(--cobalt);
  color: #fff;
}

.bg-cherry {
  background: var(--cherry);
  color: #fff;
}

.bg-plum {
  background: var(--plum);
  color: #fff;
}

.intro-grid,
.editorial-split,
.contact-grid,
.legal-grid {
  display: grid;
  gap: clamp(2.2rem, 6vw, 6rem);
}

.section-heading {
  max-width: 9ch;
  margin-bottom: 1.5rem;
}

.chapter-no {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.editorial-copy {
  align-self: center;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 38rem;
}

.media-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--pine-deep);
}

.media-frame.cut-corner {
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.media-frame:hover img {
  transform: scale(1.025);
}

.fact-rail {
  display: grid;
  margin-top: 2.2rem;
  border-top: 1px solid currentColor;
}

.fact-row {
  display: grid;
  gap: 0.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid currentColor;
}

.fact-row span:first-child {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-row span:last-child {
  max-width: 32rem;
}

.room-ledger {
  border-top: 1px solid var(--line);
}

.room-row {
  display: grid;
  gap: 1rem;
  padding-block: clamp(1.8rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.room-row h3 {
  margin-bottom: 0;
}

.room-row p {
  margin-bottom: 0;
}

.room-index {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--cherry);
}

.photo-pair {
  display: grid;
  gap: 1rem;
}

.photo-pair .media-frame:first-child {
  min-height: 460px;
}

.photo-pair .media-frame:last-child {
  min-height: 300px;
}

.quote-band {
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  position: absolute;
  top: 50%;
  right: -6vw;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(216, 239, 79, 0.55);
  border-radius: 50%;
  content: "";
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 1.02;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--light-line);
}

.timeline-item {
  display: grid;
  gap: 1rem;
  padding-block: 1.7rem;
  border-bottom: 1px solid var(--light-line);
}

.timeline-item time {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--citron);
}

.timeline-item h3 {
  margin-bottom: 0.6rem;
}

.timeline-item p {
  max-width: 38rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.amenity-strip {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.amenity-item {
  min-height: 210px;
  padding: 1.5rem;
  background: var(--cobalt);
}

.amenity-item:nth-child(2) {
  background: var(--cherry);
}

.amenity-item:nth-child(3) {
  background: var(--pine);
}

.amenity-item h3 {
  margin-bottom: 0.8rem;
}

.responsible {
  border-top: 10px solid var(--citron);
  background: #dfe6d9;
  color: var(--ink);
}

.responsible-grid {
  display: grid;
  gap: 2rem;
}

.responsible-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.responsible-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.responsible-list li::before {
  margin-right: 0.7rem;
  color: var(--cherry);
  content: "—";
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--pine);
  color: #fff;
}

.page-hero-grid {
  display: grid;
  min-height: min(820px, calc(100svh - var(--header-height)));
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-block: clamp(4rem, 9vw, 8rem);
}

.page-hero-copy h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
}

.page-hero-copy p {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-media {
  position: relative;
  min-height: 48vh;
  overflow: hidden;
}

.page-hero-accent {
  position: absolute;
  right: 10%;
  bottom: -72px;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--citron);
  opacity: 0.86;
}

.page-index {
  border-bottom: 1px solid var(--line);
  background: var(--limestone);
}

.page-index-list {
  display: flex;
  gap: 1.2rem 2.4rem;
  margin: 0;
  padding: 1rem 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: thin;
}

.page-index-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.offer-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.offer-list li {
  display: grid;
  gap: 0.6rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid currentColor;
}

.offer-list strong {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.number-stat {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-top: 1px solid currentColor;
}

.number-stat strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  font-weight: 400;
  line-height: 0.9;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 5vw, 4rem);
  background: var(--citron);
  color: var(--ink);
}

.contact-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 26, 24, 0.4);
  border-radius: 50%;
  content: "";
}

.contact-email {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.4vw, 3.8rem);
  line-height: 1.1;
}

.inactive-form {
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.inactive-notice {
  margin-bottom: 1.6rem;
  padding: 1rem;
  border-left: 6px solid var(--cherry);
  background: #fff;
}

.inactive-form .form-control,
.inactive-form .form-select {
  min-height: 48px;
  border-color: rgba(23, 26, 24, 0.24);
  border-radius: 0;
  background: #e8e4dc;
}

.inactive-form textarea.form-control {
  min-height: 140px;
}

.inactive-form label {
  margin-bottom: 0.45rem;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inactive-form button:disabled {
  min-height: 48px;
  border: 0;
  background: #aaa89f;
  color: #343632;
  cursor: not-allowed;
  opacity: 1;
}

.legal-main {
  background: var(--limestone);
}

.legal-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--plum);
  color: #fff;
}

.legal-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 8vw, 7rem);
}

.legal-toc {
  position: static;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.3rem;
}

.legal-toc li + li {
  margin-top: 0.5rem;
}

.legal-copy section {
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.site-footer {
  background: var(--plum);
  color: #fff;
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.footer-brand p {
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin-bottom: 1rem;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
}

.footer-email {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--citron);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 576px) {
  .shell,
  .shell-narrow {
    width: min(100% - 56px, 1320px);
  }

  .shell-narrow {
    max-width: 900px;
  }

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

  .availability-cell:nth-child(odd) {
    padding-right: 1.2rem;
    border-right: 1px solid rgba(23, 26, 24, 0.2);
  }

  .availability-cell:nth-child(even) {
    padding-left: 1.2rem;
  }

  .photo-pair {
    grid-template-columns: 1.18fr 0.82fr;
    align-items: end;
  }

  .photo-pair .media-frame:last-child {
    margin-bottom: -3rem;
  }

  .room-row {
    grid-template-columns: 70px minmax(150px, 0.75fr) 1.4fr;
    align-items: start;
  }

  .fact-row {
    grid-template-columns: minmax(120px, 0.42fr) 1fr;
  }

  .timeline-item {
    grid-template-columns: 100px 1fr;
  }

  .offer-list li {
    grid-template-columns: minmax(170px, 0.7fr) 1fr;
  }
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .editorial-split {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
  }

  .editorial-split .editorial-copy {
    grid-column: 1 / span 5;
  }

  .editorial-split .media-frame {
    min-height: 600px;
    grid-column: 7 / -1;
  }

  .editorial-split.media-left .media-frame {
    grid-row: 1;
    grid-column: 1 / span 7;
  }

  .editorial-split.media-left .editorial-copy {
    grid-row: 1;
    grid-column: 9 / -1;
  }

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

  .responsible-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .legal-grid {
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
    align-items: start;
  }

  .legal-toc {
    position: sticky;
    top: 2rem;
  }

  .footer-main {
    grid-template-columns: 1.35fr 0.7fr 0.7fr 1.2fr;
  }
}

@media (min-width: 992px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-copy {
    padding-right: clamp(2rem, 5vw, 6rem);
    padding-left: max(28px, calc((100vw - 1320px) / 2));
  }

  .hero-media {
    min-height: calc(100svh - var(--header-height));
  }

  .availability {
    box-shadow: var(--shadow);
  }

  .availability-grid {
    grid-template-columns: 0.95fr 0.95fr 1.2fr 1.6fr;
  }

  .availability-cell,
  .availability-cell:nth-child(odd),
  .availability-cell:nth-child(even) {
    min-height: 118px;
    padding: 1.35rem 1.5rem;
    border-right: 1px solid rgba(23, 26, 24, 0.2);
    border-bottom: 0;
  }

  .availability-cell:first-child {
    padding-left: 0;
  }

  .availability-cell:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .page-hero-copy {
    min-height: calc(100svh - var(--header-height));
    padding-right: clamp(2rem, 7vw, 7rem);
  }

  .page-hero-media {
    min-height: calc(100svh - var(--header-height));
  }
}

@media (max-width: 1120px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 0;
    visibility: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    background: var(--pine-deep);
    transition: transform 240ms ease, visibility 240ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    transform: translateX(0);
  }

  .site-nav ul {
    width: min(100% - 36px, 720px);
    margin-inline: auto;
    padding-block: 2rem 5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    min-height: 58px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--display);
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after {
    right: auto;
    bottom: 0;
    width: 64px;
  }
}

@media (max-width: 420px) {
  .brand-kind {
    display: none;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .button-row > * {
    width: 100%;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
