: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: 4px;
  --radius-btn: 6px;
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', Roboto, Arial, sans-serif;
  --max: 1140px;
  --header-h: 72px;
  --header-h-shrunk: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  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: 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.5px;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

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

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.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.section {
  padding: 96px 0;
}

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

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

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

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

.site-header__inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  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;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  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;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

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

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

.independence {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
  padding: 12px 16px;
  margin: 24px 0 0;
}

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

.page-hero .independence {
  margin-top: 28px;
}

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

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

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

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

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

.link-arrow {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

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

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

.hero-corner {
  position: relative;
  padding: 80px 0 120px;
  overflow: visible;
}

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

.hero-corner__title {
  grid-column: 1 / -1;
  max-width: 18ch;
  justify-self: start;
  margin-inline: 0;
}

.hero-corner__intro {
  grid-column: 1;
  max-width: 36ch;
  margin-left: clamp(24px, 8vw, 96px);
  color: var(--text-muted);
  font-size: 18px;
}

.hero-corner__media {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  width: min(100%, 340px);
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

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

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.cat-band:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.cat-band--flip .cat-band__media {
  order: 2;
}

.cat-band--flip .cat-band__body {
  order: 1;
}

.cat-band__media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cat-band__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.cat-band:hover .cat-band__media img {
  transform: scale(1.02);
}

.cat-band__body h2 {
  margin-bottom: 12px;
}

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

.amenities-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.amenities-list li {
  padding: 20px 24px 20px 0;
  border-top: 1px solid var(--border);
}

.amenities-list li:nth-child(even) {
  padding-left: 24px;
  padding-right: 0;
}

.amenities-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}

.amenities-list span {
  color: var(--text-muted);
  font-size: 15px;
}

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

.closing-cta p {
  color: var(--text-muted);
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: var(--accent);
  margin: 0 0 28px;
  max-width: 28ch;
}

.mission-body {
  max-width: 62ch;
  color: var(--text-muted);
}

.timeline {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.timeline li {
  position: relative;
  padding: 0 0 36px 32px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline h3 {
  margin-bottom: 8px;
}

.timeline p {
  color: var(--text-muted);
  margin-bottom: 0.6em;
}

.accordion {
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
}

.accordion__btn span:last-child {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.accordion__panel {
  display: none;
  padding: 0 0 20px;
  color: var(--text-muted);
  max-width: 70ch;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__item.is-open .accordion__btn span:last-child {
  transform: rotate(45deg);
}

.catalog-intro {
  max-width: 62ch;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.water-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.water-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.water-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.water-row__thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

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

.water-row__body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.water-row__body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 8px;
}

.water-row__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 12px;
  border: 0;
}

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

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

.alt-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.alt-row:first-of-type {
  border-top: 1px solid var(--border);
}

.alt-row--flip .alt-row__media {
  order: 2;
}

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

.alt-row__media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.alt-row__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.alt-row:hover .alt-row__media img {
  transform: scale(1.02);
}

.alt-row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.alt-row__line {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.alt-row__line span {
  color: var(--text-muted);
  font-weight: 400;
}

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

.alt-row .btn {
  width: 100%;
}

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

.season-band:first-of-type {
  border-top: 1px solid var(--border);
}

.season-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.season-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

.season-card__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

.season-card__body {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.season-card__body h2 {
  margin-bottom: 8px;
  width: 100%;
}

.season-card__meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  width: 100%;
}

.season-card__body p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.season-card__rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.notes-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 96px;
}

.editorial-index {
  position: sticky;
  top: calc(var(--header-h-shrunk) + 24px);
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.editorial-index a {
  display: block;
  padding: 10px 0 10px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  border-left: 2px solid transparent;
  margin-left: -1px;
}

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

.editorial-content section {
  padding: 0 0 48px;
  scroll-margin-top: 100px;
}

.editorial-content h2 {
  margin-bottom: 16px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 96px;
}

.contact-grid__intro p {
  color: var(--text-muted);
}

.contact-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 18px;
  color: var(--accent);
  text-decoration: none;
}

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

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

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

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

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

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

.form-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.form-error {
  color: #e08a8a;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

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

.form-status {
  color: #e08a8a;
  font-size: 14px;
  margin-bottom: 12px;
  display: none;
}

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

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

.confirm-panel h2 {
  color: var(--accent);
  margin-bottom: 12px;
}

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

.legal-body {
  padding-bottom: 96px;
  max-width: 72ch;
}

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

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

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

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

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

.sitemap-list {
  list-style: none;
  margin: 0 0 96px;
  padding: 0;
}

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

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

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

.sitemap-list span {
  color: var(--text-muted);
  font-size: 15px;
}

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

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

.footer-brand-band {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 64px 0 40px;
}

.footer-brand-band .brand {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.footer-brand-band .brand img {
  width: 48px;
  height: 48px;
}

.footer-blurb {
  max-width: 54ch;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 0 48px;
}

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

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

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

.footer-col a,
.footer-col button {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--accent);
}

.footer-bottom {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
}

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

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

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

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

.consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  width: min(380px, calc(100vw - 40px));
  background: var(--deep);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  padding: 20px;
  display: none;
}

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

.consent__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.consent__text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.55;
}

.consent__cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 16px;
}

.consent__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.consent__cat input:disabled {
  opacity: 0.7;
}

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

.consent__actions button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

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

  .cat-band {
    gap: 32px;
  }

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

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

  .nav-list {
    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;
  }

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

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

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

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

  .editorial-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    border-left: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 8px;
  }

  .editorial-index a {
    border-left: 0;
    padding: 4px 0;
    margin: 0;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero-corner {
    padding: 56px 0 80px;
  }

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

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

  .hero-corner__intro {
    margin-left: 0;
    max-width: none;
  }

  .hero-corner__media {
    grid-column: 1;
    justify-self: start;
    width: min(100%, 280px);
    margin-bottom: -48px;
  }

  .cat-band,
  .cat-band--flip {
    grid-template-columns: 1fr;
  }

  .cat-band--flip .cat-band__media,
  .cat-band--flip .cat-band__body {
    order: initial;
  }

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

  .amenities-list li:nth-child(even) {
    padding-left: 0;
  }

  .water-row {
    grid-template-columns: 80px 1fr;
  }

  .water-row__action {
    grid-column: 2;
    justify-self: center;
  }

  .water-row__thumb {
    width: 80px;
    height: 80px;
  }

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

  .alt-row--flip .alt-row__media,
  .alt-row--flip .alt-row__body {
    order: initial;
  }

  .season-card__media img {
    aspect-ratio: 16 / 9;
  }

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

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

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

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

  .site-header__inner,
  .footer-brand-band,
  .footer-links,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .brand-text-full {
    font-size: 16px;
  }

  .water-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .water-row__thumb {
    margin-inline: auto;
  }

  .water-row__action {
    grid-column: 1;
  }

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