:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-alt: #e9ebef;
  --text: #1a1f27;
  --text-muted: #525c6b;
  --border: rgba(26, 31, 39, 0.12);
  --accent: #b3623a;
  --accent-2: #2f4a63;
  --secondary: #2b3542;
  --on-accent: #ffffff;
  --dark: #161c24;
  --radius: 10px;
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', Roboto, Arial, sans-serif;
  --max: 1240px;
  --header-h: 88px;
  --notice-h: 36px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

p {
  margin: 0 0 1.1em;
}

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

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

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

.section {
  padding: 128px 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(26, 31, 39, 0.12);
}

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

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

.btn--full {
  width: 100%;
}

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

.link-arrow:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

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

.independence-notice {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-solid {
  background: var(--surface);
  box-shadow: 0 1px 0 var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

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

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

.nav-center a,
.nav-right a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

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

.nav-right {
  display: flex;
  align-items: center;
}

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

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

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

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

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.hero-copy h1 {
  margin-bottom: 0;
}

.hero-intro {
  margin-top: 36px;
  margin-left: clamp(24px, 8vw, 120px);
  max-width: 38ch;
  color: var(--text-muted);
  font-size: 18px;
}

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

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

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

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

.cat-band:nth-child(even) .cat-band__media {
  order: 2;
}

.cat-band__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.cat-band__text h2 {
  margin-bottom: 0.5em;
}

.cat-band__text p {
  color: var(--text-muted);
  max-width: 46ch;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mission-grid__left {
  padding-right: 48px;
  border-right: 1px solid var(--border);
}

.mission-grid__right {
  color: var(--text-muted);
}

.amenity-lead {
  max-width: 62ch;
  margin-bottom: 48px;
  font-size: 19px;
  color: var(--text-muted);
}

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

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

.amenity-tile h3 {
  font-size: 20px;
  margin-bottom: 0.5em;
}

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

.quotes {
  display: flex;
  flex-direction: column;
}

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

.quote:first-child {
  padding-top: 0;
}

.quote:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.35;
  color: var(--text);
}

.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 0.4em;
}

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

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

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

.catalog {
  padding: 0 0 96px;
}

.row-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.venue-row:nth-child(even) {
  grid-template-columns: 1fr 40%;
}

.venue-row:nth-child(even) .venue-row__media {
  order: 2;
}

.venue-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.venue-row__body h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 0.35em;
}

.venue-row__meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 1em;
}

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

.venue-row--rule .venue-row__body h2 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.venue-row--overlay .venue-row__media {
  position: relative;
}

.venue-row--overlay .venue-row__media h2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 18px 20px;
  background: rgba(22, 28, 36, 0.72);
  color: var(--on-accent);
  font-size: clamp(22px, 2.5vw, 30px);
  border-radius: 0 0 var(--radius) var(--radius);
}

.venue-row--overlay .venue-row__body h2 {
  display: none;
}

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

.card-grand {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  height: 100%;
}

.card-grand__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.card-grand__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 12px;
  line-height: 1.3;
}

.card-grand__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--text);
}

.card-grand__meta {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.card-grand p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.card-place {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.card-place__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.card-place .kicker {
  margin-bottom: 8px;
}

.card-place h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 0.5em;
}

.card-place p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

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

.editorial-lead {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.5px;
  max-width: 28ch;
  margin-bottom: 72px;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}

.editorial-grid article h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 0.6em;
}

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

.contact-intro {
  padding: 80px 0 64px;
  background: var(--surface-alt);
}

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

.contact-email {
  margin-top: 20px;
  font-size: 16px;
}

.contact-form-wrap {
  padding: 80px 0 128px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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 {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}

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

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

.field-error {
  color: #a33a2a;
  font-size: 14px;
  width: 100%;
  margin: 0;
}

.form-actions {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.form-status[aria-live] {
  margin-top: 12px;
  color: #a33a2a;
  font-size: 15px;
}

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

.confirm-panel h2 {
  font-size: 36px;
}

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

.legal-body {
  padding: 80px 0 128px;
}

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

.legal-body > .container > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 48px;
}

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

.legal-body h3 {
  font-size: 22px;
  margin-top: 28px;
}

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

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 128px;
}

.sitemap-item {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-item a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.5px;
}

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

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

.site-footer {
  background: var(--bg);
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 64px;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-bottom: 64px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 42ch;
  margin-bottom: 16px;
}

.footer-brand a[href^="mailto"] {
  font-size: 15px;
}

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

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: var(--text);
}

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

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

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

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

.footer-bottom {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 24px 0;
}

.footer-independence {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

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

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

.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 {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  width: min(400px, calc(100vw - 32px));
  background: var(--dark);
  color: #e8eaee;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.consent::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
}

.consent[hidden] {
  display: none !important;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  color: #fff;
}

.consent__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(232, 234, 238, 0.82);
  margin: 0 0 18px;
}

.consent__text a {
  color: #d4a88c;
}

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.consent__cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.consent__cat-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.consent__cat-desc {
  grid-column: 1;
  font-size: 12px;
  color: rgba(232, 234, 238, 0.65);
  line-height: 1.4;
}

.consent__switch {
  position: relative;
  width: 44px;
  height: 24px;
  grid-row: 1 / 3;
  grid-column: 2;
}

.consent__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent__switch span {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease;
}

.consent__switch span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 160ms ease;
}

.consent__switch input:checked + span {
  background: var(--accent);
}

.consent__switch input:checked + span::after {
  transform: translateX(20px);
}

.consent__switch input:disabled + span {
  opacity: 0.55;
  cursor: not-allowed;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent__btn {
  flex: 1 1 auto;
  min-width: calc(50% - 4px);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

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

.consent__btn--ghost {
  background: transparent;
}

.consent__manage {
  display: none;
}

.consent.is-compact .consent__cats,
.consent.is-compact .consent__btn--save {
  display: none;
}

.consent.is-compact .consent__manage {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  background: none;
  border: none;
  color: #d4a88c;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 1024px) {
  .section { padding: 96px 0; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { gap: 32px; }
}

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

  .nav-toggle { display: inline-flex; }

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

  .nav-inner.is-open .nav-center,
  .nav-inner.is-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    gap: 0;
    padding-bottom: 16px;
  }

  .nav-inner.is-open .nav-center a,
  .nav-inner.is-open .nav-right a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-grid__left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-band {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0;
  }

  .cat-band:nth-child(even) .cat-band__media {
    order: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps::before {
    display: none;
  }

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

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

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

@media (max-width: 768px) {
  .container,
  .nav-inner,
  .footer-main,
  .footer-bottom-inner {
    width: min(100% - 32px, var(--max));
  }

  .section { padding: 72px 0; }

  .venue-row,
  .venue-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .venue-row:nth-child(even) .venue-row__media {
    order: 0;
  }

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

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

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

  .sitemap-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

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

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

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

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

  .hero {
    padding: 48px 0 100px;
  }
}

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

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

  .confirm-panel {
    padding: 28px;
  }
}
