:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-alt: #e9eee5;
  --text: #1a221a;
  --text-muted: #525d51;
  --border: rgba(26, 34, 26, 0.12);
  --accent: #5c7350;
  --accent-2: #9c6f3c;
  --secondary: #2c3a2a;
  --on-accent: #ffffff;
  --dark: #161f16;
  --radius: 14px;
  --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --max: 1200px;
  --section-pad: 104px;
  --header-h: 72px;
  --header-h-shrunk: 56px;
}

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

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

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

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

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

a:hover {
  color: var(--accent-2);
}

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

h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

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

p {
  margin: 0 0 1em;
}

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

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

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.btn--text {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
  text-decoration: none;
  border-radius: 0;
}

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

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

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.notice-strip p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  transition: height 0.2s ease;
}

.site-header.is-shrunk .site-header__inner {
  height: var(--header-h-shrunk);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.4px;
  flex-shrink: 0;
}

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

.site-header.is-shrunk .brand img {
  width: 30px;
  height: 30px;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

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

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

.page-hero {
  padding: 72px 0 56px;
}

.page-hero--compact {
  padding: 56px 0 40px;
  background: var(--bg);
}

.page-hero__intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 18px;
}

.hero {
  padding: 80px 0 0;
}

.hero__copy {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.hero__copy p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 58ch;
  margin: 0 auto;
}

.hero__frames {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: end;
  padding-bottom: 24px;
}

.hero__frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.hero__frame img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero__frame:hover img {
  transform: scale(1.02);
}

.hero__frame:nth-child(1) img {
  height: 220px;
}

.hero__frame:nth-child(2) img {
  height: 340px;
}

.hero__frame:nth-child(3) img {
  height: 280px;
}

.hero__frame figcaption {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

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

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

.section--dark {
  background: var(--dark);
  color: #d7ddd5;
}

.section--dark h2,
.section--dark h3 {
  color: #f3f6f1;
}

.section--dark p {
  color: #b8c0b6;
}

.section__head {
  margin-bottom: 40px;
  max-width: 62ch;
}

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

.category-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.category-row:hover {
  transform: translateY(-2px);
}

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

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

.category-row__link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

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

.regions-band__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 48px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.regions-band__list li {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.8px;
  color: #f3f6f1;
  line-height: 1.1;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.amenity-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease;
}

.amenity-tile:hover {
  transform: translateY(-2px);
}

.amenity-tile h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

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

.approach-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 48px;
  align-items: start;
}

.approach-grid__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.catalog-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.band-card {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.band-card:first-child {
  border-top: 1px solid var(--border);
}

.band-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.band-card__media img {
  width: 100%;
  height: clamp(260px, 42vw, 480px);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.band-card:hover .band-card__media img {
  transform: scale(1.02);
}

.band-card__body {
  max-width: 640px;
  margin: 0 auto;
}

.band-card__body h2 {
  margin-bottom: 12px;
}

.band-card__rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 18px;
  border: none;
}

.band-card__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.band-card__body p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

.venue-card:hover {
  transform: translateY(-2px);
}

.venue-card__media {
  position: relative;
  overflow: hidden;
}

.venue-card__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue-card:hover .venue-card__media img {
  transform: scale(1.02);
}

.venue-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: rgba(22, 31, 22, 0.72);
  color: #f3f6f1;
}

.venue-card__overlay h2 {
  margin: 0;
  color: #f3f6f1;
  font-size: clamp(20px, 2.2vw, 26px);
}

.venue-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.venue-card__body p {
  color: var(--text-muted);
  flex: 1;
}

.venue-card__kicker {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0;
}

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.shore-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shore-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 0.2s ease;
}

.shore-row:hover {
  transform: translateY(-2px);
}

.shore-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.shore-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shore-row:hover .shore-row__thumb img {
  transform: scale(1.02);
}

.shore-row__content h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 28px);
}

.shore-row__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.shore-row .btn {
  white-space: nowrap;
}

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

.prose-column {
  max-width: 70ch;
  margin: 0;
}

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

.prose-column section:first-of-type {
  padding-top: 0;
}

.prose-column section:last-of-type {
  border-bottom: none;
}

.prose-column h2 {
  margin-bottom: 18px;
}

.about-lead {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
  max-width: none;
  margin-bottom: 48px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.6px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.about-grid section h2 {
  margin-bottom: 14px;
}

.contact-intro {
  background: var(--surface-alt);
  padding: var(--section-pad) 0 56px;
}

.contact-intro__inner {
  max-width: 62ch;
}

.contact-intro .mailto-lg {
  margin-top: 20px;
}

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

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  max-width: 800px;
}

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

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

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

.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: flex;
  gap: 12px;
  align-items: flex-start;
}

.agree-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.form-error {
  display: none;
  color: #8a2e2e;
  font-family: var(--font-heading);
  font-size: 13px;
  margin-top: 8px;
}

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

.mailto-lg {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--accent);
  text-decoration: none;
}

.mailto-lg:hover {
  color: var(--accent-2);
}

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

.confirm-panel h2 {
  margin-bottom: 12px;
}

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

.legal-body .container {
  max-width: 760px;
}

.legal-body h1 {
  margin-bottom: 8px;
}

.legal-body > .container > p:first-of-type {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  margin-bottom: 28px;
}

.legal-body h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 28px);
}

.legal-body h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.sitemap-wrap {
  padding: 40px 0 var(--section-pad);
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  line-height: 2;
}

.sitemap-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

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

.sitemap-links .sep {
  margin: 0 12px;
  color: var(--text-muted);
}

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

.footer-band {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

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

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand .brand {
  margin-bottom: 0;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

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

.footer-group li {
  margin-bottom: 10px;
}

.footer-group a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

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

.footer-email {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.footer-bottom__notice {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom__bar button {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-anchor {
  scroll-margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 8px;
}

.consent-banner {
  display: none;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0 0 16px;
}

.consent-banner.is-visible {
  display: block;
}

.consent-banner__copy {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
  max-width: 68ch;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.consent-banner__policy {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.consent-panel {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.consent-panel.is-open {
  display: block;
}

.consent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

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

.consent-row h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.consent-row p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.consent-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-toggle span {
  position: absolute;
  inset: 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consent-toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 4px;
  top: 4px;
  background: var(--text-muted);
  transition: transform 0.2s ease, background 0.2s ease;
}

.consent-toggle input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
}

.consent-toggle input:checked + span::after {
  transform: translateX(20px);
  background: var(--on-accent);
}

.consent-toggle input:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent-panel__save {
  margin-top: 16px;
}

.consent-pill {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  background: var(--secondary);
  color: var(--on-accent);
  border: 1px solid var(--secondary);
  border-radius: 0;
  cursor: pointer;
}

.consent-pill.is-visible {
  display: inline-flex;
}

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

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

  .approach-grid {
    gap: 32px;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
  }

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

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

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

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

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

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

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

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

  .hero__frames {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    align-items: stretch;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .hero__frame {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .hero__frame:nth-child(1) img,
  .hero__frame:nth-child(2) img,
  .hero__frame:nth-child(3) img {
    height: 240px;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

  .shore-row__thumb {
    width: 96px;
    height: 96px;
  }

  .shore-row .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

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

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

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

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

  .venue-card__media img {
    height: 240px;
  }
}

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

  .hero {
    padding-top: 48px;
  }

  .page-hero {
    padding: 48px 0 36px;
  }

  .regions-band__list {
    gap: 12px 24px;
  }

  .consent-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

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