:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244, 239, 233, 0.14);
  --accent: #cfa456;
  --accent-2: #8c6a4f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --dark-band: #0c0908;
  --radius: 14px;
  --radius-btn: 2px;
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', Roboto, Arial, sans-serif;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --max-w: 1180px;
  --section-pad: 108px;
  --cream: #f4efe9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-link:hover {
  color: var(--text);
}

.btn-link::after {
  content: "→";
}

.notice-strip {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--border);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem 0.85rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand-lockup:hover {
  color: var(--accent);
}

.brand-lockup img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.header-nav-wrap {
  border-top: 1px solid var(--border);
  position: relative;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.6rem;
  padding: 0.75rem 1.25rem;
  list-style: none;
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.site-footer {
  background: var(--dark-band);
  color: var(--text);
  margin-top: auto;
}

.footer-band {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.footer-band:last-child {
  border-bottom: none;
}

.footer-brand-row {
  display: grid;
  gap: 1.25rem;
  max-width: 640px;
}

.footer-brand-row .brand-lockup span {
  font-size: 1.2rem;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text);
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.footer-group ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-notices {
  display: grid;
  gap: 1rem;
}

.footer-independence {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 720px;
}

.footer-bottom {
  display: grid;
  gap: 0.35rem;
}

.footer-bottom .copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom .consent-line {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-bottom button[data-cookie-settings] {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-bottom button[data-cookie-settings]:hover {
  color: var(--accent);
}

.footer-email {
  color: var(--accent);
}

.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0 calc(var(--section-pad) + 40px);
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 3rem;
  align-items: start;
}

.hero-copy h1 {
  margin-bottom: 0;
}

.hero-intro {
  grid-column: 1;
  max-width: 36rem;
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-photo {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: end;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.section--surface {
  background: var(--surface);
}

.section--dark {
  background: var(--dark-band);
}

.section-head {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.category-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.category-card__panel {
  position: relative;
  z-index: 1;
  background: var(--surface);
  margin: 0 1rem 1rem;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: calc(var(--radius) - 4px);
  border-top: 1px solid var(--border);
}

.category-card__panel h3 {
  margin-bottom: 0.65rem;
}

.category-card__panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.category-card__panel a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.category-card__panel a:hover {
  color: var(--text);
}

.photo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.photo-strip__text p {
  color: var(--text-muted);
}

.photo-strip__media figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.photo-strip__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.regions-band {
  text-align: center;
}

.regions-band .section-head {
  margin-inline: auto;
  text-align: center;
}

.regions-band .framing {
  max-width: 38rem;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

.regions-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
  list-style: none;
}

.regions-type li {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
}

.regions-type li::after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background: var(--accent-2);
  margin: 0.5rem auto 0;
}

.amenities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.amenity-block {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.amenity-block h3 {
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.amenity-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  background: var(--surface);
  overflow: hidden;
}

.arrival-card .num {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--border);
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 0.75rem;
}

.arrival-card p {
  position: relative;
  color: var(--text-muted);
}

.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 3rem;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero .lede {
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.catalog-section {
  padding: var(--section-pad) 0;
}

.catalog-close {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 40rem;
  color: var(--text-muted);
}

.water-rows {
  display: grid;
  gap: 3.5rem;
}

.water-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem;
  align-items: center;
}

.water-row--flip {
  grid-template-columns: 1fr 40%;
}

.water-row--flip .water-row__media {
  order: 2;
}

.water-row--flip .water-row__body {
  order: 1;
}

.water-row__media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.water-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.water-row__body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0.35rem;
}

.water-row__meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.water-row__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.route-list {
  display: grid;
  gap: 0;
}

.route-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid transparent;
}

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

.route-row__thumb {
  width: 96px;
  height: 96px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}

.route-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-row__body {
  text-align: center;
}

.route-row__body h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--accent);
  display: inline-block;
}

.route-row__meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.route-row__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 36rem;
}

.downtown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.downtown-card {
  background: var(--cream);
  color: var(--on-accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.downtown-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.downtown-card__body {
  padding: 1.5rem 1.35rem 1.5rem;
  border-top: 1px solid rgba(24, 19, 18, 0.12);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.downtown-card .city-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #704f3a;
  margin-bottom: 0.55rem;
}

.downtown-card h2 {
  color: var(--on-accent);
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0.75rem;
}

.downtown-card p {
  color: #5c5048;
  flex: 1;
  margin-bottom: 1.25rem;
}

.downtown-card .btn {
  margin-top: auto;
}

.prose-page {
  padding: var(--section-pad) 0;
}

.prose-col {
  max-width: 70ch;
  margin-inline: auto;
}

.prose-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.prose-section:first-child {
  padding-top: 0;
}

.prose-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prose-section h2 {
  margin-bottom: 1.25rem;
}

.prose-section p {
  color: var(--text-muted);
}

.legal-body {
  padding: var(--section-pad) 0;
}

.legal-body .prose-col h1 {
  margin-bottom: 0.5rem;
}

.legal-body .prose-col > p:first-of-type {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 2rem 0 0.85rem;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.65rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body ul {
  margin: 0.75rem 0 1rem 1.25rem;
}

.contact-intro {
  background: var(--surface-alt);
  padding: clamp(48px, 7vw, 88px) 0 3rem;
  border-bottom: 1px solid var(--border);
}

.contact-intro .lede {
  max-width: 40rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-email {
  margin-top: 1.25rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  padding: var(--section-pad) 0;
}

.contact-form {
  max-width: 820px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.85rem 1rem;
  width: 100%;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.5rem 0 1rem;
}

.agree-row input {
  margin-top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
}

.agree-row label {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.agree-row label a {
  color: var(--accent);
}

.form-error {
  color: #e8a090;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-actions {
  margin-top: 0.5rem;
}

.confirm-panel {
  max-width: 640px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.25rem;
}

.sitemap-list {
  list-style: none;
  max-width: 40rem;
  margin: 0 auto;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1.1rem 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

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

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-band);
  color: var(--text);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  padding: 1.35rem 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 280ms ease;
}

.consent.is-open {
  transform: translateY(0);
}

.consent__inner {
  max-width: 420px;
  margin: 0 auto;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.consent__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.consent__text a {
  color: var(--accent);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.15rem;
}

.consent__btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
}

.consent__btn:hover {
  background: transparent;
  color: var(--accent);
}

.consent__link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent__link:hover {
  color: var(--accent);
}

.consent__manage {
  margin-top: 0.85rem;
}

.consent__cats {
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms ease;
}

.consent__cats.is-open {
  max-height: 320px;
}

.consent__cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.consent__cat:first-child {
  border-top: none;
  margin-top: 0.75rem;
}

.consent__cat strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.consent__cat span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.consent__cat input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
}

.consent__policy {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 400px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transform: translateY(120%);
  }

  .consent.is-open {
    transform: translateY(0);
  }

  .consent__inner {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-card {
    min-height: 360px;
  }

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

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

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

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

  .header-brand {
    padding-right: 4rem;
    justify-content: flex-start;
  }

  .header-nav-wrap {
    min-height: 0;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav li {
    border-top: 1px solid var(--border);
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 1.25rem;
  }

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

  .hero-intro {
    grid-column: 1;
  }

  .hero-photo {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 320px);
    margin-bottom: -48px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .water-row,
  .water-row--flip {
    grid-template-columns: 1fr;
  }

  .water-row--flip .water-row__media,
  .water-row--flip .water-row__body {
    order: initial;
  }

  .route-row {
    grid-template-columns: 72px 1fr;
    gap: 1rem;
  }

  .route-row__thumb {
    width: 72px;
    height: 72px;
  }

  .route-row__body {
    text-align: left;
  }

  .route-row__body p {
    margin: 0;
  }

  .route-row__action {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
  }

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

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

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

@media (max-width: 480px) {
  :root {
    --section-pad: 64px;
  }

  .container {
    width: min(100% - 28px, var(--max-w));
  }

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

  .brand-lockup span {
    font-size: 1.1rem;
  }

  .hero-photo {
    width: 100%;
  }

  .consent__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
