:root {
  --bg: #0e1116;
  --surface: #161b22;
  --surface-alt: #1d232c;
  --text: #eef1f5;
  --text-muted: #a3adba;
  --border: rgba(238, 241, 245, 0.14);
  --accent: #c8a45c;
  --accent-2: #7fa8c9;
  --secondary: #232b36;
  --on-accent: #141821;
  --deep: #080b0f;
  --radius: 6px;
  --radius-btn: 0px;
  --font-heading: Baskerville, 'Baskerville Old Face', Georgia, serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --content: 1200px;
  --section-pad: 104px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
  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.5vw, 26px);
}

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

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

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

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

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

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

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

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

.header-inner {
  width: min(100% - 40px, var(--content));
  margin-inline: auto;
  padding: 16px 0 0;
}

.brand-row {
  display: flex;
  justify-content: center;
  padding-bottom: 14px;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding: 12px 0 14px;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  position: absolute;
  right: 20px;
  top: 14px;
}

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

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

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

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

.independence-notice {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 72ch;
  margin-bottom: 36px;
}

.independence-notice--hero {
  margin: 28px auto 0;
  text-align: center;
  max-width: 56ch;
}

.footer-main {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}

.footer-brand {
  flex: 1 1 340px;
  max-width: 420px;
}

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

.footer-blurb {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-email {
  font-size: 15px;
}

.footer-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1 1 480px;
  justify-content: flex-end;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

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

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

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

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

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

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

.footer-consent-line {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-consent-line button,
[data-cookie-settings="1"] {
  background: none;
  border: none;
  color: var(--accent-2);
  font: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
}

.footer-consent-line button:hover,
[data-cookie-settings="1"]:hover {
  color: var(--accent);
}

.adults-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero {
  padding: 72px 0 80px;
  background: var(--bg);
  text-align: center;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 48px;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 20px;
}

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-frame {
  flex: 1;
  text-align: center;
}

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

.hero-frame:nth-child(1) img { height: 180px; }
.hero-frame:nth-child(2) img { height: 280px; }
.hero-frame:nth-child(3) img { height: 220px; }

.hero-frame figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

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

.section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 14px;
}

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

.category-card {
  position: relative;
  min-height: 420px;
}

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

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

.category-card__panel h3 {
  margin-bottom: 10px;
}

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

.category-card__panel a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

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

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

.photo-strip figure {
  margin: 0;
}

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

.photo-strip figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.testimonials-grid > div:first-child p {
  color: var(--text-muted);
  margin-top: 14px;
}

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

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

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

.quote-block cite {
  font-style: normal;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}

.mission-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.mission-grid p {
  color: var(--text-muted);
  margin-top: 14px;
}

.mission-grid .mission-right p:first-child {
  margin-top: 0;
}

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

.steps-row::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: center;
  padding-top: 0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent);
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 10px;
}

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

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

.closing-cta h2 {
  margin-bottom: 20px;
}

.closing-cta p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.closing-cta a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

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

.page-title {
  padding: 64px 0 48px;
  background: var(--bg);
}

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

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

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

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

.venue-card__photo {
  margin-bottom: 16px;
  order: 1;
}

.venue-card__body {
  order: 2;
}

.venue-card__foot {
  order: 3;
  margin-top: 0;
}

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

.venue-card--flip .venue-card__photo {
  order: 2;
  margin-bottom: 16px;
  margin-top: 16px;
}

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

.venue-card__photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

.venue-card__body h2 {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 6px;
}

.venue-meta {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.venue-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.venue-card__body > p:not(.venue-meta):not(.venue-stars) {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

.venue-card__foot {
  padding-top: 4px;
}

.venue-card__rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.venue-card--heritage .venue-card__photo img {
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}

.venue-card--heritage .venue-title-line {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.venue-card--heritage .venue-title-line .sep {
  color: var(--text-muted);
  margin: 0 8px;
  font-weight: 400;
}

.season-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

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

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

.season-row--flip .season-row__body {
  order: 1;
  padding-right: 28px;
  padding-left: 0;
}

.season-row__photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.season-row__body {
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.season-row__body h2 {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.season-row__body > p:not(.venue-meta):not(.venue-stars) {
  color: var(--text-muted);
  font-size: 15px;
}

.season-row .venue-card__rule {
  margin: 16px 0;
}

.catalog-close {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 62ch;
}

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

.catalog-close a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

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

.editorial-col {
  max-width: 70ch;
}

.editorial-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

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

.editorial-section h2 {
  margin-bottom: 20px;
}

.editorial-section p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.editorial-section p:last-child {
  margin-bottom: 0;
}

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

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

.contact-email-display {
  font-size: 18px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

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

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

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

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

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

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

.agree-error {
  color: #e07070;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

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

.form-error {
  color: #e07070;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

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

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

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

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

.confirm-panel .ref {
  color: var(--accent);
  font-weight: 600;
}

.legal-body {
  padding: 0 0 var(--section-pad);
  max-width: 70ch;
}

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

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

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

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

.legal-body ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.sitemap-body {
  padding: 48px 0 var(--section-pad);
}

.sitemap-body > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 62ch;
}

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

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

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

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

.consent-anchor {
  scroll-margin-top: 100px;
}

.consent-banner {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  padding: 28px 32px;
  margin: 32px auto;
  width: min(100% - 40px, var(--content));
}

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

.consent-banner h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
}

.consent-banner p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 10px;
  max-width: 68ch;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-top: 20px;
}

.consent-actions .btn {
  margin-right: 4px;
}

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

.consent-link:hover {
  color: var(--accent);
}

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

.consent-pill {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

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

.consent-pill:hover {
  background: var(--accent-2);
  color: var(--on-accent);
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 15, 0.72);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.consent-dialog {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  padding: 28px;
  width: min(100%, 420px);
  max-height: 90vh;
  overflow-y: auto;
}

.consent-dialog h3 {
  margin-bottom: 20px;
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.consent-cat strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.consent-cat span {
  font-size: 13px;
  color: var(--text-muted);
}

.consent-cat input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.consent-dialog .btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-groups {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .header-inner {
    position: relative;
    padding: 14px 0;
  }

  .brand-row {
    justify-content: flex-start;
    padding-bottom: 0;
  }

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

  .nav-row {
    display: none;
    border-top: 1px solid var(--border);
    margin-top: 14px;
    padding: 12px 0 4px;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 10px 0;
  }

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

  .mission-grid::before {
    display: none;
  }

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

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

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

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

  .hero-frame {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero-frame:nth-child(1) img,
  .hero-frame:nth-child(2) img,
  .hero-frame:nth-child(3) img {
    height: 220px;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .photo-strip figure {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }

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

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

  .season-row--flip .season-row__photo {
    order: 0;
  }

  .season-row--flip .season-row__body {
    order: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .season-row__body {
    padding-left: 0;
    padding-top: 20px;
  }

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

  .steps-row::before {
    display: none;
  }
}

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

  .brand-name {
    font-size: 18px;
  }

  .consent-banner {
    padding: 22px 20px;
  }

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

  .footer-groups {
    flex-direction: column;
    gap: 28px;
  }

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