:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --dark: #122029;
  --radius: 2px;
  --radius-btn: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', Roboto, Arial, sans-serif;
  --content: 1180px;
  --section-pad: 108px;
  --header-h: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  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-thickness: 1px;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  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, 26px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: #fff;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

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

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

.link-arrow::after {
  content: "→";
  transition: transform 160ms ease;
}

.link-arrow:hover {
  color: var(--secondary);
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 250, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-brand-row {
  border-bottom: 1px solid var(--border);
}

.header-brand-inner {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 10px 0;
}

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

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.1;
}

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

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

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

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

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

.header-nav-row {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px 22px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 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);
}

.nav-contact {
  justify-self: end;
  white-space: nowrap;
}

.nav-contact a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
}

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

.hero {
  position: relative;
  padding: 72px 0 140px;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px 48px;
  align-items: start;
}

.hero-mark {
  width: 48px;
  height: 48px;
  border-left: 2px solid var(--accent-2);
  border-top: 2px solid var(--accent-2);
  margin-bottom: 28px;
}

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

.hero-intro {
  grid-column: 2;
  grid-row: 1;
  padding-top: 88px;
  color: var(--text-muted);
  font-size: 18px;
  max-width: 38ch;
}

.hero-notice {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 62ch;
  margin: 8px 0 0;
  line-height: 1.55;
}

.hero-photo {
  position: absolute;
  right: max(24px, calc((100% - var(--content)) / 2));
  bottom: -72px;
  width: min(340px, 38vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 2;
}

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

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

.category-card {
  position: relative;
  min-height: 420px;
  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-panel {
  position: relative;
  z-index: 1;
  margin: 0 18px 18px;
  background: var(--surface);
  padding: 22px 22px 20px;
  border-radius: var(--radius);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.category-panel h3 {
  margin-bottom: 8px;
}

.category-panel p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

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

.amenity-block {
  padding: 8px 28px 8px 0;
  border-right: 1px solid var(--border);
  padding-right: 28px;
  margin-right: 28px;
}

.amenity-block:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.amenity-block h3 {
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--accent-2);
}

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

.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.about-split .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-split .cols p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-block {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 22px 24px;
  border-radius: var(--radius);
  border-top: 2px solid var(--accent);
}

.quote-block p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 12px;
}

.quote-block cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.region-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 22px;
  border-radius: var(--radius);
}

.region-tile h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.region-tile p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin: 0;
}

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

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

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
  align-items: start;
}

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

.venue-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

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

.venue-card__body {
  padding: 20px 22px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venue-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.venue-card__stars {
  color: var(--accent-2);
  letter-spacing: 1px;
  margin-right: 6px;
}

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

.venue-card__action {
  padding: 8px 22px 22px;
}

.venue-card--flip .venue-card__media {
  order: 2;
}

.venue-card--flip .venue-card__body {
  order: 1;
}

.venue-card--flip .venue-card__action {
  order: 3;
}

.venue-card--rule .venue-card__body {
  padding-top: 22px;
}

.venue-card--rule h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.featured-grid .venue-card {
  height: 100%;
  min-height: 100%;
}

.featured-grid .venue-card__body {
  flex: 1;
}

.featured-grid .venue-card__action {
  margin-top: auto;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.section-index {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 18px 0;
}

.section-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: idx;
}

.section-index a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  display: block;
  padding-left: 12px;
  border-left: 2px solid var(--border);
}

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

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

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

.editorial-prose p {
  color: var(--text-muted);
  max-width: 68ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
}

.contact-email:hover {
  color: var(--secondary);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary);
}

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

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(43, 106, 143, 0.35);
  border-color: var(--accent);
}

.agree-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.agree-row input {
  margin-top: 5px;
  flex-shrink: 0;
}

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

.form-error {
  color: #8b2e2e;
  font-size: 13px;
  margin: 6px 0 12px;
  min-height: 1.2em;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

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

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

.legal-body h2 {
  margin-top: 1.6em;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-body h3 {
  margin-top: 1.2em;
}

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

.legal-body ul {
  padding-left: 1.2em;
  margin: 0 0 1.1em;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: var(--section-pad);
  border-top: 1px solid var(--border);
}

.sitemap-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-row a {
  font-family: var(--font-heading);
  font-size: 20px;
  text-decoration: none;
  color: var(--text);
}

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

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

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

.catalog-close p {
  max-width: 62ch;
  color: var(--text-muted);
}

.site-footer {
  background: var(--surface-alt);
  padding-top: 64px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px 28px;
  padding-bottom: 40px;
}

.footer-brand .brand-lockup {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 36ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-mail {
  width: min(100% - 48px, var(--content));
  margin: 0 auto 28px;
}

.footer-mail a {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 34px);
  color: var(--secondary);
  text-decoration: none;
}

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

.footer-bottom {
  width: min(100% - 48px, var(--content));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-notice {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

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

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

.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-banner {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 22px 20px 24px;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(110%);
  transition: transform 280ms ease;
}

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

.consent-inner {
  width: min(100%, 520px);
  margin: 0 auto;
}

.consent-banner h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.consent-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}

.consent-banner a {
  color: #c9dff0;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 16px;
}

.consent-actions .btn {
  background: var(--accent);
  color: var(--on-accent);
}

.consent-link {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}

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

.consent-cats.is-open {
  max-height: 420px;
}

.consent-cat {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: start;
}

.consent-cat:first-child {
  margin-top: 14px;
}

.consent-cat strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.consent-cat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  grid-column: 1 / -1;
}

.consent-cat input {
  margin-top: 2px;
}

.consent-policy {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: min(420px, calc(100vw - 48px));
    border-radius: var(--radius-btn);
    padding: 22px;
  }

  .consent-inner {
    width: 100%;
  }
}

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

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

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

  .amenity-block {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }

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

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

  .hero-photo {
    width: min(280px, 42vw);
    bottom: -56px;
  }
}

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

  .header-nav-row {
    display: none;
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

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

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

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

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

  .hero-intro {
    grid-column: auto;
    grid-row: auto;
    padding-top: 0;
  }

  .hero {
    padding-bottom: 200px;
  }

  .hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(280px, 70%);
    margin: 28px 0 0 auto;
  }

  .about-split,
  .testimonials-layout,
  .contact-layout,
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .section-index {
    position: static;
  }

  .section-index ol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .section-index a {
    border-left: 0;
    padding-left: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
  }

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

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

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .wrap,
  .header-brand-inner,
  .header-nav-row,
  .footer-mail,
  .footer-bottom {
    width: min(100% - 32px, var(--content));
  }

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

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

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

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

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

  .hero h1 {
    max-width: none;
  }
}

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

  body {
    font-size: 16px;
  }

  .contact-form,
  .confirm-panel {
    padding: 20px;
  }

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