:root {
  --bg: #f4f5fa;
  --surface: #ffffff;
  --surface-alt: #e8eaf4;
  --text: #191c2b;
  --text-muted: #515674;
  --border: rgba(25, 28, 43, 0.12);
  --accent: #3a4485;
  --accent-2: #b08a3e;
  --secondary: #262c4d;
  --on-accent: #ffffff;
  --dark: #151830;
  --radius: 0px;
  --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --max: 1320px;
  --section-pad: 120px;
  --shadow-hover: 0 18px 40px rgba(21, 24, 48, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

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

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

p {
  margin: 0 0 1.1em;
}

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

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

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

.section--dark {
  background: var(--dark);
  color: var(--on-accent);
}

.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: var(--on-accent);
}

.section--dark .kicker {
  color: var(--accent-2);
}

.btn,
button,
.listing-link,
.nav-toggle {
  font-family: var(--font-heading);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  box-shadow: var(--shadow-hover);
  color: var(--on-accent);
}

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

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

.text-link {
  font-family: var(--font-heading);
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  border-bottom-color: var(--accent);
  box-shadow: none;
}

.text-link--arrow::after {
  content: " →";
}

.site-header {
  position: relative;
  z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
}

.home .site-header.is-solid {
  position: fixed;
  top: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 1.1rem 0 0.9rem;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

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

.nav-rule {
  height: 1px;
  background: var(--border);
  margin: 0.9rem 0 0.7rem;
}

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

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

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

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

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}

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

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

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

.hero {
  position: relative;
  padding: calc(var(--section-pad) + 4rem) 0 var(--section-pad);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 3rem;
  align-items: end;
  min-height: 62vh;
}

.hero-copy h1 {
  max-width: 14ch;
  margin-inline: 0;
}

.hero-intro {
  margin-top: 2rem;
  margin-left: clamp(2rem, 12vw, 8rem);
  max-width: 38ch;
  color: var(--text-muted);
}

.hero-notice {
  margin-top: 2.5rem;
  margin-left: clamp(2rem, 12vw, 8rem);
  max-width: 42ch;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-photo {
  justify-self: end;
  width: min(100%, 420px);
  margin-bottom: -4.5rem;
  position: relative;
  z-index: 2;
}

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

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

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: var(--shadow-hover);
}

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

.category-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.category-card h3 {
  margin: 0;
}

.category-card p {
  color: var(--text-muted);
  flex: 1;
}

.amenities-lead {
  max-width: 58ch;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

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

.amenity-tile {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.4rem 1.25rem;
}

.amenity-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

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

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.timeline li {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  background: var(--accent-2);
  border: 1px solid var(--accent);
}

.timeline h3 {
  margin-bottom: 0.4rem;
}

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

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.quote-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
}

.quote-card cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.about-band__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.about-band__copy a {
  color: var(--accent-2);
}

.page-hero {
  padding: calc(var(--section-pad) * 0.7) 0 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero p {
  max-width: 58ch;
  color: var(--text-muted);
}

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

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

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

.quiet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.quiet-card:hover {
  box-shadow: var(--shadow-hover);
}

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

.quiet-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.quiet-card h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 0.75rem;
}

.quiet-card .accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1rem;
}

.quiet-card .meta {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.quiet-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.4rem;
}

.quiet-card .listing-link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-heading);
  color: var(--accent);
  text-decoration: none;
}

.quiet-card .listing-link::after {
  content: " →";
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.downtown-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s ease;
}

.downtown-card:hover {
  box-shadow: var(--shadow-hover);
}

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

.downtown-card__text h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 0.4rem;
}

.downtown-card .meta {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.downtown-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.downtown-card__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.downtown-card .listing-link {
  font-family: var(--font-heading);
  color: var(--accent);
  text-decoration: none;
}

.downtown-card .listing-link::after {
  content: " →";
}

.downtown-card--image-bottom .downtown-card__media {
  order: 2;
}

.downtown-card--image-bottom .downtown-card__text {
  order: 1;
}

.downtown-card--image-bottom .downtown-card__foot {
  order: 3;
}

.past-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.past-row {
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem;
  transition: box-shadow 0.2s ease;
}

.past-row:hover {
  box-shadow: var(--shadow-hover);
}

.past-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.past-row__copy {
  text-align: center;
}

.past-row h2 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 0.35rem;
}

.past-row .meta-line {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

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

.past-row .listing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-heading);
  white-space: nowrap;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.past-row .listing-link:hover {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--shadow-hover);
}

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

.editorial-column {
  max-width: 70ch;
  margin-inline: auto;
}

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

.editorial-block:first-child {
  padding-top: 0;
}

.editorial-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.editorial-block p {
  color: var(--text-muted);
}

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

.contact-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
}

.contact-email-line {
  max-width: 640px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.form-field {
  margin-bottom: 1.15rem;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--text);
}

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

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

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0 1rem;
}

.form-agree input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

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

.form-error {
  color: #8b2e2e;
  font-size: 0.9rem;
  margin: 0.35rem 0 0.75rem;
  min-height: 1.2em;
}

.form-status[aria-live] {
  margin-top: 0.75rem;
}

.confirm-panel {
  text-align: left;
}

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

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

.legal-body .container {
  max-width: 78ch;
}

.legal-body h2 {
  margin-top: 2.25rem;
  font-size: clamp(24px, 3vw, 32px);
}

.legal-body h3 {
  margin-top: 1.5rem;
}

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

.legal-meta {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  align-items: center;
  font-family: var(--font-heading);
  line-height: 2;
}

.sitemap-links a {
  text-decoration: none;
  color: var(--accent);
  padding: 0 0.35rem;
}

.sitemap-links .sep {
  color: var(--text-muted);
  padding: 0 0.15rem;
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: 0;
}

.footer-independence {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 1.1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-brand-band {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand-band .brand {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 1rem;
}

.footer-brand-band .brand img {
  width: 52px;
  height: 52px;
}

.footer-blurb {
  max-width: 62ch;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-mailto-large {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  text-decoration: none;
  color: var(--accent);
  margin-top: 0.5rem;
}

.footer-links {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
  position: relative;
  padding-bottom: 0.55rem;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

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

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a,
.footer-col button {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--accent);
}

.footer-bottom {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-bottom .adults-note,
.footer-bottom .consent-line {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom .consent-line {
  margin-top: 0.35rem;
}

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

.consent-banner {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.25rem 1.4rem;
  box-shadow: none;
  transform: translateY(110%);
  transition: transform 0.28s ease;
}

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

.consent-banner h2 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.consent-banner > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 52ch;
}

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

.consent-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.consent-manage-row {
  margin-top: 0.75rem;
}

.consent-manage-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.4rem 0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.consent-policy {
  display: inline-block;
  margin-left: 0.75rem;
  font-size: 0.85rem;
}

.consent-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.consent-panel.is-open {
  max-height: 420px;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

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

.consent-cat:last-of-type {
  border-bottom: none;
}

.consent-cat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.consent-cat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.consent-cat input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.consent-save-row {
  margin-top: 0.85rem;
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(420px, calc(100vw - 3rem));
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
  }
}

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

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

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

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

  .past-row {
    grid-template-columns: 96px 1fr;
    grid-template-areas:
      "thumb copy"
      "btn btn";
  }

  .past-row img {
    width: 96px;
    height: 96px;
    grid-area: thumb;
  }

  .past-row__copy {
    grid-area: copy;
    text-align: left;
  }

  .past-row .listing-link {
    grid-area: btn;
    width: 100%;
    white-space: normal;
  }
}

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

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

  .nav-row {
    display: none;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 0.5rem;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .category-grid,
  .quiet-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-intro,
  .hero-notice {
    margin-left: 0;
  }

  .hero-photo {
    justify-self: start;
    width: min(100%, 360px);
    margin-bottom: -3rem;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 560px) {
  .category-grid,
  .quiet-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: calc(var(--section-pad) + 2rem);
  }

  .contact-panel {
    padding: 1.35rem;
  }

  .container,
  .header-inner,
  .footer-brand-band,
  .footer-links,
  .footer-bottom,
  .footer-independence {
    width: min(100% - 1.5rem, var(--max));
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero-photo {
    width: 100%;
  }

  .btn,
  .consent-actions .btn {
    width: 100%;
  }
}
