:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --surface-alt: #f0f0ec;
  --text: #1b1b1a;
  --text-muted: #585856;
  --border: rgba(27, 27, 26, 0.12);
  --accent: #2e2e2c;
  --accent-2: #9a7b4f;
  --secondary: #3d3d3a;
  --on-accent: #fbfbf9;
  --dark: #1b1b1a;
  --radius: 4px;
  --radius-btn: 0px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max-w: 1240px;
  --section-pad: 128px;
  --header-h: 96px;
  --header-h-scrolled: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  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.5em;
  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(20px, 2.5vw, 28px);
}

p {
  margin: 0 0 1.25em;
}

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

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms 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--light {
  background: var(--on-accent);
  color: var(--dark);
  border-color: var(--on-accent);
}

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

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

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
  gap: 24px;
}

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

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

.brand__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
  padding: 8px 10px;
  white-space: nowrap;
  transition: color 160ms ease;
}

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

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--accent-2);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: stretch;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 33.333%;
  overflow: hidden;
}

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

.hero__panel {
  position: relative;
  z-index: 1;
  width: min(42%, 560px);
  margin: 8vh 0 8vh max(24px, calc((100% - var(--max-w)) / 2));
  padding: clamp(40px, 5vw, 72px);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.hero__panel p {
  color: var(--text-muted);
  max-width: 38ch;
}

.hero__notice {
  margin-top: 2rem;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 42ch;
}

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

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

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

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

.section--dark .kicker,
.section--dark p {
  color: rgba(251, 251, 249, 0.72);
}

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

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

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

.category-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.category-card__panel {
  position: relative;
  z-index: 1;
  margin: 0 20px 20px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.category-card__panel h3 {
  margin-bottom: 0.6em;
}

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

.category-card__panel a {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 2px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.section--dark .approach-grid {
  border-top-color: rgba(251, 251, 249, 0.14);
}

.section--dark .approach-block p {
  color: rgba(251, 251, 249, 0.78);
}

.approach-block h3 {
  font-size: 18px;
  margin-bottom: 0.75em;
}

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

.pull-quote {
  max-width: 52ch;
  margin: 0 auto;
  text-align: center;
}

.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pull-quote__frame {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 40ch;
  margin-inline: auto;
}

.testimonials {
  max-width: 760px;
  margin: 0 auto;
}

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

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

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

.testimonial p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 72px;
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  max-width: 68ch;
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: var(--section-pad) 0;
}

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

.venue-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 24px 32px;
  gap: 12px;
}

.venue-card__body .kicker {
  margin-bottom: 0;
  font-size: 10px;
}

.venue-card__body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 0;
}

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

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.historic-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: var(--section-pad) 0;
}

.historic-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

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

.historic-row--flip .historic-row__photo {
  order: 2;
}

.historic-row--flip .historic-row__body {
  order: 1;
}

.historic-row__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  min-height: 320px;
}

.historic-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.historic-row__body {
  padding: 40px 48px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.historic-row--flip .historic-row__body {
  padding: 40px 0 40px 48px;
}

.historic-row__body .kicker {
  margin-bottom: 0;
}

.historic-row__body h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0;
}

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

.historic-row__body .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  max-width: 62ch;
}

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

.prose-page {
  padding: calc(var(--header-h) + 72px) 0 var(--section-pad);
}

.prose-page__inner {
  max-width: 70ch;
  margin-inline: auto;
}

.prose-page__intro {
  margin-bottom: 48px;
}

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

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

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

.prose-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 1.25rem;
}

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

.legal-body {
  padding: calc(var(--header-h) + 72px) 0 var(--section-pad);
}

.legal-body__inner {
  max-width: 70ch;
  margin-inline: auto;
}

.legal-body h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 0.4em;
}

.legal-body > .legal-body__inner > p:first-of-type {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 2.5rem;
}

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

.legal-body h3 {
  font-size: 18px;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
  margin: 0 0 1.25em;
}

.contact-page {
  padding: calc(var(--header-h) + 72px) 0 var(--section-pad);
}

.contact-page__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: left;
}

.contact-page__inner > .kicker,
.contact-page__inner > h1,
.contact-page__inner > p {
  text-align: center;
}

.contact-page__inner > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-email {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.5rem;
}

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

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

.form-error {
  display: none;
  font-size: 13px;
  color: #8b3a3a;
  margin-top: 0.5rem;
}

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

.form-status[aria-live] {
  margin-top: 1rem;
  font-size: 14px;
  color: #8b3a3a;
}

.confirm-panel {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.confirm-panel h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sitemap-page {
  padding: calc(var(--header-h) + 72px) 0 var(--section-pad);
}

.sitemap-page__inner {
  max-width: 900px;
}

.sitemap-page p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.sitemap-links a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
}

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

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

.site-footer {
  background: var(--bg);
  padding-top: 64px;
}

.site-footer__notice {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 32px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-footer__top {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px 48px;
  padding-bottom: 40px;
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__brand .brand {
  margin-bottom: 16px;
}

.site-footer__brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer__links {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
}

.site-footer__links .group-kicker {
  width: 100%;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.site-footer__links .group-kicker + .group-kicker,
.site-footer__links a + .group-kicker {
  margin-top: 16px;
}

.site-footer__links a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 13px;
}

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

.site-footer__links .sep {
  margin: 0 10px;
  color: var(--border);
}

.site-footer__rule {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  border: 0;
  border-top: 1px solid var(--border);
}

.site-footer__meta {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.site-footer__meta a {
  color: var(--text-muted);
}

.site-footer__bottom {
  background: var(--surface-alt);
  padding: 18px 0;
}

.site-footer__bottom-inner {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

.site-footer__bottom-links a,
.site-footer__bottom-links button {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__bottom-links button:hover,
.site-footer__bottom-links a:hover {
  color: var(--text);
}

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

  .site-header,
  .btn,
  .nav-toggle span {
    transition: none;
  }
}

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

.consent {
  background: var(--dark);
  color: var(--on-accent);
  padding: 32px 0;
}

.consent__inner {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
}

.consent__copy {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(251, 251, 249, 0.85);
  max-width: 72ch;
  margin-bottom: 20px;
}

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

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(251, 251, 249, 0.12);
  border-bottom: 1px solid rgba(251, 251, 249, 0.12);
}

.consent__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(251, 251, 249, 0.9);
}

.consent__cat input {
  width: 16px;
  height: 16px;
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.consent__actions .btn {
  font-size: 12px;
  padding: 12px 20px;
}

.consent .btn--ghost {
  background: transparent;
  color: var(--on-accent);
  border-color: rgba(251, 251, 249, 0.35);
}

.consent .btn--ghost:hover {
  background: rgba(251, 251, 249, 0.1);
  color: var(--on-accent);
  border-color: var(--on-accent);
}

.consent__manage {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: 0;
  color: rgba(251, 251, 249, 0.7);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 0;
}

.consent__manage:hover {
  color: var(--on-accent);
}

.consent__details {
  display: none;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(251, 251, 249, 0.65);
  max-width: 70ch;
}

.consent__details.is-open {
  display: block;
}

.consent-pill {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: var(--dark);
  color: var(--on-accent);
  border: 1px solid rgba(251, 251, 249, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  display: none;
}

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

.consent.is-hidden {
  display: none;
}

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

  .category-grid {
    gap: 24px;
  }

  .approach-grid {
    gap: 32px;
  }

  .historic-row__body,
  .historic-row--flip .historic-row__body {
    padding: 32px;
  }
}

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

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

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

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero__media {
    position: relative;
    inset: auto;
    height: 52vh;
    min-height: 280px;
  }

  .hero__panel {
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
  }

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

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

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

  .container,
  .site-header__inner,
  .site-footer__notice,
  .site-footer__top,
  .site-footer__rule,
  .site-footer__meta,
  .site-footer__bottom-inner,
  .consent__inner {
    width: min(100% - 32px, var(--max-w));
  }

  .historic-row,
  .historic-row--flip {
    grid-template-columns: 1fr;
  }

  .historic-row--flip .historic-row__photo,
  .historic-row--flip .historic-row__body {
    order: unset;
  }

  .historic-row__photo {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .historic-row__body,
  .historic-row--flip .historic-row__body {
    padding: 28px 24px 32px;
  }

  .site-footer__top {
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer__links .group-kicker {
    text-align: left;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

  .consent__actions .btn {
    width: 100%;
  }
}

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

  .hero__panel {
    padding: 32px 24px;
  }

  .venue-card__body {
    padding: 22px 18px 26px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}
