:root {
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-alt: #f0e6da;
  --text: #241c14;
  --text-muted: #645648;
  --border: rgba(36, 28, 20, 0.12);
  --accent: #a8533a;
  --accent-2: #4f6b52;
  --secondary: #3a2c20;
  --on-accent: #ffffff;
  --deep: #2a2017;
  --radius: 6px;
  --radius-btn: 0px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Garamond, "EB Garamond", Georgia, serif;
  --font-body: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 58px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

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

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

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

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 1.5rem, calc(var(--max) + 80px));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand:hover {
  text-decoration: none;
  color: var(--secondary);
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
}

.nav-center a,
.nav-contact a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-center a:hover,
.nav-contact a:hover {
  color: var(--accent);
  text-decoration: none;
}

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

.nav-contact {
  justify-self: end;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 40px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.independence {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence p {
  margin: 0;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero-quiet {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--section-pad) + 8px) 0 var(--section-pad);
}

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

.hero-quiet .lead {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

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

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

.section-head {
  margin-bottom: 1.75rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 62ch;
  margin-bottom: 0;
}

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

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

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

.cat-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.cat-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.cat-card .text-link {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

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

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

.mosaic-intro {
  max-width: 58ch;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: 180px 220px;
  gap: 0.75rem;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mosaic img:nth-child(1) {
  grid-row: 1 / 3;
  height: 100%;
  min-height: 280px;
}

.mosaic img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.mosaic img:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  margin-top: 1.25rem;
  height: calc(100% - 1.25rem);
}

.mosaic img:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  margin-top: -0.5rem;
  height: calc(100% + 0.5rem);
}

.mosaic img:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.approach-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

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

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

.approach-block {
  border-top: 2px solid var(--accent);
  padding-top: 0.9rem;
}

.approach-block h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 0.6em;
}

.approach-block p:last-child {
  margin-bottom: 0;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--accent);
  max-width: 28ch;
  margin: 0 0 1.25rem;
}

.mission-body {
  max-width: 62ch;
  color: var(--text-muted);
}

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

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

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

.amenity-tile h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

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

.page-title {
  padding: calc(var(--section-pad) - 12px) 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-title p {
  max-width: 62ch;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

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

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

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

.venue-card__body {
  padding: 0.9rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

.venue-card .name-rule {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 0.65rem;
  border: 0;
}

.venue-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.55rem;
}

.venue-card .desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  flex: 1;
}

.listing-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
}

.listing-link:hover {
  text-decoration: underline;
}

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

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

.downtown-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.downtown-row--flip .downtown-photo {
  order: 2;
}

.downtown-row--flip .downtown-copy {
  order: 1;
}

.downtown-photo {
  position: relative;
  min-height: 240px;
}

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

.downtown-photo .name-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.75rem 1rem;
  background: rgba(42, 32, 23, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.downtown-copy {
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.downtown-copy .venue-meta {
  margin-bottom: 0.65rem;
}

.downtown-copy .desc {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.section-index {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
}

.section-index strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.section-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: idx;
}

.section-index li {
  border-top: 1px solid var(--border);
  padding: 0.45rem 0;
}

.section-index li:first-child {
  border-top: 0;
  padding-top: 0;
}

.section-index a {
  color: var(--text-muted);
  font-size: 0.86rem;
  text-decoration: none;
  line-height: 1.35;
}

.section-index a:hover {
  color: var(--accent);
}

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

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

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

.legal-body {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
  max-width: 720px;
}

.legal-body h1 {
  margin-bottom: 0.35em;
}

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

.legal-body h2 {
  margin-top: 1.75rem;
  font-size: clamp(20px, 2.5vw, 26px);
}

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

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

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

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

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

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

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

.contact-col {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-col > p {
  color: var(--text-muted);
  text-align: left;
}

.contact-col .mailto-line {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-form {
  text-align: left;
  display: grid;
  gap: 0.95rem;
}

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

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

.form-field textarea {
  min-height: 140px;
  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.55rem;
  align-items: start;
}

.agree-row input {
  margin-top: 0.25rem;
}

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

.agree-error {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0;
  display: none;
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--secondary);
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--surface-alt);
  color: var(--accent);
}

.form-status {
  display: none;
  color: var(--accent);
  font-size: 0.9rem;
  margin: 0;
}

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

.confirm-panel {
  text-align: left;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
}

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

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

.site-footer {
  background: var(--surface-alt);
  color: var(--text);
  padding: 0;
}

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

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

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

.footer-blurb {
  max-width: 58ch;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

.footer-email {
  font-size: 0.95rem;
}

.footer-regions {
  margin: 1rem 0 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-adults {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.2px;
}

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

.footer-group li {
  margin-bottom: 0.35rem;
}

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

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

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

.footer-bottom .independence-foot {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  max-width: 70ch;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-consent-line button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

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

.consent-banner {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 0;
  padding: 1.15rem 1.15rem 1.25rem;
  transform: translateY(110%);
  transition: transform 0.28s ease;
  max-height: 92vh;
  overflow: auto;
}

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

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

.consent-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin: 0.85rem 0 1rem;
}

.consent-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text);
}

.consent-cat input:disabled {
  opacity: 0.85;
}

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.consent-actions .btn[data-consent="accept"] {
  order: 1;
}

.consent-actions .btn-reject,
.consent-actions .btn-save {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.consent-actions .btn-reject:hover,
.consent-actions .btn-save:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.consent-policy {
  display: inline-block;
  margin-top: 0.75rem;
  margin-right: 1rem;
  font-size: 0.82rem;
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: underline;
}

@media (min-width: 600px) {
  .consent-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(420px, calc(100% - 2.5rem));
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
}

@media (max-width: 1024px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .mosaic img:nth-child(1),
  .mosaic img:nth-child(2),
  .mosaic img:nth-child(3),
  .mosaic img:nth-child(4),
  .mosaic img:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    height: 200px;
    min-height: 0;
  }

  .mosaic img:nth-child(1) {
    grid-column: 1 / -1;
    height: 260px;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-center,
  .nav-contact {
    display: none;
  }

  .nav-inner.is-open .nav-center,
  .nav-inner.is-open .nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    grid-column: 1 / -1;
    padding-bottom: 0.85rem;
  }

  .nav-inner.is-open .nav-contact {
    padding-top: 0;
  }

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

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

  .approach-cols {
    grid-template-columns: 1fr;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .section-index {
    position: static;
  }

  .section-index ol {
    display: flex;
    flex-direction: column;
  }

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

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

  .downtown-row--flip .downtown-photo,
  .downtown-row--flip .downtown-copy {
    order: initial;
  }

  .downtown-photo {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .downtown-photo img {
    position: absolute;
  }
}

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

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

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

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

  .mosaic img:nth-child(1) {
    grid-column: auto;
    height: 220px;
  }

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

  :root {
    --section-pad: 52px;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max));
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero-quiet {
    padding-top: 48px;
  }
}