:root {
  --bg: #141019;
  --surface: #1d1725;
  --surface-alt: #261e31;
  --text: #f2eef6;
  --text-muted: #b0a3bd;
  --border: rgba(242, 238, 246, 0.14);
  --accent: #d8c08e;
  --accent-2: #9b7fc0;
  --secondary: #2b2236;
  --on-accent: #1a1421;
  --dark-band: #0d0a11;
  --radius: 14px;
  --radius-btn: 6px;
  --font-heading: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --content-max: 1240px;
  --section-pad: 128px;
  --header-h: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 1.05rem;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: var(--dark-band);
  border-bottom-color: var(--border);
}

.header-inner {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  padding: 1.25rem 0 1rem;
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  font-weight: 500;
}

.nav-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 0.85rem;
}

.nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.independence {
  margin: 2rem auto 0;
  width: min(100% - 48px, var(--content-max));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  background: var(--surface);
}

.page-hero {
  padding: 4.5rem 0 1rem;
}

.page-hero .container {
  max-width: var(--content-max);
}

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

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

.hero-letterbox {
  padding-top: 0.5rem;
}

.hero-letterbox__media {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-letterbox__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-letterbox__copy {
  width: min(100% - 48px, 720px);
  margin: 3rem auto 0;
  text-align: center;
}

.hero-letterbox__copy .lede {
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-size: 1.12rem;
}

.hero-letterbox__rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem auto 0;
  width: min(100% - 48px, 420px);
}

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

.stack-gap {
  margin-top: 2.5rem;
}

.category-rows {
  border-top: 1px solid var(--border);
}

.category-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) 1.6fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.category-row h3 {
  color: var(--text);
}

.category-row p {
  color: var(--text-muted);
  margin: 0;
}

.category-row .row-link {
  color: var(--accent);
  white-space: nowrap;
  font-size: 0.95rem;
}

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

.amenity-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  background: var(--surface);
}

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

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

.amenity-block p + p {
  margin-top: 0.75rem;
}

.mission-wrap {
  max-width: 68ch;
  margin-inline: auto;
  text-align: left;
}

.mission-wrap::before {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.75rem;
}

.mission-wrap h2 {
  margin-bottom: 1.5rem;
}

.mission-wrap p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: end;
}

.photo-strip__text p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.photo-strip__figure {
  margin: 0;
}

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

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

.testimonials {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 3rem;
  align-items: start;
}

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

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--surface);
}

.quote-card p {
  color: var(--text);
  margin-bottom: 1rem;
}

.quote-card cite {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.about-band {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.about-band__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-band p {
  color: var(--text-muted);
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.venue-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.75rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.venue-row__thumb {
  width: 120px;
  height: 120px;
  align-self: stretch;
}

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

.venue-row__body {
  padding: 1.75rem 1rem 1.75rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.venue-row__body h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 0.35rem;
}

.venue-meta {
  color: var(--accent-2);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.venue-row__body p:not(.venue-meta) {
  color: var(--text-muted);
  max-width: 58ch;
}

.venue-row__action {
  padding-right: 1.75rem;
}

.venue-row--inset {
  grid-template-columns: 112px 1fr;
  grid-template-rows: auto auto;
  padding: 1.25rem;
  overflow: visible;
  gap: 1.25rem;
}

.venue-row--inset .venue-row__thumb {
  grid-row: 1 / 2;
  width: 112px;
  height: 112px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid var(--border);
}

.venue-row--inset .venue-row__body {
  grid-column: 2;
  grid-row: 1;
  padding: 0.25rem 0 0.5rem;
}

.venue-row--inset .venue-row__action {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding: 1.1rem 0 0;
  margin-top: 0.25rem;
  width: 100%;
}

.shore-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.shore-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

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

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

.shore-row--flip .shore-row__content {
  order: 1;
}

.shore-row__media {
  position: relative;
  min-height: 280px;
}

.shore-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.shore-row__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(13, 10, 17, 0.72);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.5px;
  font-weight: 500;
  line-height: 1.2;
  z-index: 1;
}

.shore-row__content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.shore-row__content .venue-meta {
  margin-bottom: 0;
}

.shore-row__content p {
  color: var(--text-muted);
}

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

.editorial-stack {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.editorial-block .num-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.editorial-block h2 {
  margin-bottom: 1.5rem;
}

.editorial-block p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  max-width: 72ch;
}

.band-stack {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.band:nth-child(odd) {
  background: var(--bg);
}

.band:nth-child(even) {
  background: var(--surface-alt);
}

.band-inner {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.band--flip .band-copy {
  order: 2;
}

.band--flip .band-aside {
  order: 1;
}

.band-copy h2 {
  margin-bottom: 1.5rem;
}

.band-copy p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.band-aside {
  border-left: 1px solid var(--border);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.band-aside .aside-mark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--accent-2);
  opacity: 0.35;
  line-height: 1;
  letter-spacing: -2px;
}

.band-aside .aside-note {
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  max-width: 28ch;
}

.contact-intro {
  background: var(--surface-alt);
  padding: 4rem 0;
}

.contact-intro p {
  color: var(--text-muted);
  max-width: 60ch;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.contact-email {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

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

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: 820px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

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

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

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

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

.agree-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.agree-row label {
  color: var(--text-muted);
  flex: 1;
  line-height: 1.5;
}

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

.form-error {
  color: #e8a0a0;
  font-size: 0.88rem;
  width: 100%;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

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

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

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

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

.legal-body h2 {
  margin: 2.5rem 0 1rem;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-body h3 {
  margin: 1.75rem 0 0.75rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 75ch;
}

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.cookie-settings-block {
  margin-top: 2rem;
}

.sitemap-list {
  list-style: none;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

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

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

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

.site-footer {
  background: var(--dark-band);
  color: var(--text);
  padding: 4.5rem 0 0;
  border-top: 1px solid var(--border);
}

.footer-about {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  max-width: 70ch;
}

.footer-grid {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-lockup {
  margin-bottom: 1.25rem;
}

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

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 1.15rem;
}

.footer-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

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

.footer-independence {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

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

.footer-bottom button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-bottom button:hover {
  color: var(--accent);
}

.consent-anchor {
  scroll-margin-top: 120px;
}

.consent-banner {
  background: var(--dark-band);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.consent-banner[hidden],
.consent-pill[hidden],
.consent-dialog-backdrop[hidden] {
  display: none !important;
}

.consent-inner {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.consent-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.consent-inner > p {
  color: var(--text-muted);
  max-width: 62ch;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.consent-actions .btn {
  border: none;
}

.consent-link {
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  padding: 0;
}

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

.consent-policy {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consent-pill {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.consent-pill:hover {
  background: var(--text);
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 10, 17, 0.72);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.consent-dialog-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  width: min(100%, 420px);
  max-height: 90vh;
  overflow: auto;
}

.consent-dialog-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.consent-cat p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.consent-cat label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

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

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

  .photo-strip,
  .testimonials,
  .about-band {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .band-inner {
    gap: 2.5rem;
  }
}

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

  .brand-row {
    justify-content: space-between;
    padding-bottom: 0;
  }

  .nav-rule {
    display: none;
  }

  .nav-row {
    display: none;
    padding-top: 1rem;
  }

  .site-header.is-open .nav-row {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .container,
  .header-inner,
  .independence,
  .hero-letterbox__media,
  .hero-letterbox__copy,
  .footer-about,
  .footer-grid,
  .footer-independence,
  .footer-bottom,
  .consent-inner,
  .band-inner {
    width: min(100% - 32px, var(--content-max));
  }

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

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

  .venue-row {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
  }

  .venue-row__thumb {
    width: 96px;
    height: 96px;
    grid-row: 1 / 2;
  }

  .venue-row__body {
    padding: 1.25rem 1.25rem 0.5rem 0;
  }

  .venue-row__action {
    grid-column: 1 / -1;
    padding: 0 1.25rem 1.25rem;
  }

  .venue-row--inset {
    grid-template-columns: 96px 1fr;
  }

  .venue-row--inset .venue-row__thumb {
    width: 96px;
    height: 96px;
  }

  .shore-row,
  .shore-row--flip {
    grid-template-columns: 1fr;
  }

  .shore-row--flip .shore-row__media,
  .shore-row--flip .shore-row__content {
    order: initial;
  }

  .shore-row__media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .shore-row__media img {
    position: absolute;
  }

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

  .band-inner,
  .band--flip .band-copy,
  .band--flip .band-aside {
    grid-template-columns: 1fr;
  }

  .band--flip .band-copy,
  .band--flip .band-aside {
    order: initial;
  }

  .band-aside {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  body {
    font-size: 1rem;
  }

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

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

  .venue-row__thumb {
    width: 100%;
    height: 200px;
  }

  .venue-row__body {
    padding: 1.25rem;
  }

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

  .venue-row--inset .venue-row__thumb {
    width: 100%;
    height: 200px;
  }

  .consent-pill {
    right: 0.75rem;
    bottom: 0.75rem;
  }

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