:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #efece4;
  --text: #12211a;
  --text-muted: #4d5c55;
  --border: rgba(18, 33, 26, 0.12);
  --accent: #0f5132;
  --accent-2: #c9a227;
  --secondary: #1c3d2c;
  --on-accent: #ffffff;
  --dark-band: #0c1a13;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', Roboto, Arial, sans-serif;
  --content-width: 1200px;
  --section-pad: 104px;
  --header-h: auto;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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.4vw, 26px);
}

p {
  margin: 0 0 1em;
}

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

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.7em 1.35em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(18, 33, 26, 0.14);
}

.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(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem 0.85rem;
}

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

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

.brand-lockup__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.site-header__nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 0.55rem 1.25rem;
  position: relative;
}

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

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

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

.independence {
  margin: 1.5rem auto 0;
  width: min(100% - 40px, var(--content-width));
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero .wrap {
  max-width: var(--content-width);
}

.page-hero .independence {
  margin-top: 1.75rem;
  width: 100%;
}

.hero {
  padding: 4.5rem 0 0;
  border-bottom: 1px solid var(--border);
}

.hero__text {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.hero__text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero__frames {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: end;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.hero__frame {
  margin: 0;
}

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

.hero__frame--short img {
  height: 200px;
}

.hero__frame--tall img {
  height: 320px;
}

.hero__frame--medium img {
  height: 260px;
}

.hero__frame figcaption {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

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

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

.section__head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

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

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

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.category-card__img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.category-card__panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 4px);
  padding: 1.35rem 1.4rem;
}

.category-card__panel h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0.45em;
}

.category-card__panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.category-card__panel a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-2);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}

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

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

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

.timeline__item {
  position: relative;
  padding: 0 0 2.25rem 2rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.timeline__item h3 {
  margin-bottom: 0.4em;
}

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

.amenity-lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

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

.amenity-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.amenity-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}

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

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

.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: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.regions-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.regions-list li {
  display: grid;
  grid-template-columns: minmax(140px, 280px) 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.regions-list li:first-child {
  border-top: 1px solid var(--border);
}

.regions-list__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
}

.regions-list__note {
  color: var(--text-muted);
  margin: 0;
}

.catalog-band {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.catalog-band:last-of-type {
  border-bottom: none;
}

.catalog-band__photo {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto 1.75rem;
}

.catalog-band__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.catalog-band__body {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  width: min(100% - 40px, var(--content-width));
}

.catalog-band__body .kicker {
  text-align: center;
}

.catalog-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.catalog-close {
  padding: 3rem 0 var(--section-pad);
  border-top: 1px solid var(--border);
}

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

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.masonry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.masonry-card__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.masonry-card--img-bottom .masonry-card__stack {
  flex-direction: column-reverse;
}

.masonry-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}

.masonry-card__meta .kicker {
  margin-bottom: 0.4rem;
}

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

.masonry-card__foot {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.lesser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

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

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

.lesser-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.lesser-card__title span {
  color: var(--text-muted);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.lesser-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.lesser-card .btn {
  margin-top: auto;
}

.editorial-stack {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 2rem 0 var(--section-pad);
}

.editorial-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.editorial-block:last-child {
  border-bottom: none;
}

.editorial-block .kicker {
  color: var(--accent);
}

.editorial-block p {
  color: var(--text-muted);
  max-width: 48rem;
}

.narrow-column {
  width: min(100% - 40px, 70ch);
  margin: 0 auto;
  padding: 2rem 0 var(--section-pad);
}

.narrow-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.narrow-section:last-child {
  border-bottom: none;
}

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

.contact-intro {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.contact-intro p {
  max-width: 40rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  padding: 3.5rem 0 var(--section-pad);
}

.contact-form {
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7em 0.9em;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  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;
}

.form-agree {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.form-agree input {
  margin-top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-error {
  display: none;
  width: 100%;
  font-size: 0.88rem;
  color: #8a1c1c;
  margin: 0;
}

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

.form-actions {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
}

.form-status {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

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

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

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

.legal-body {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 2rem 0 var(--section-pad);
}

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

.legal-body h3 {
  margin-top: 1.5rem;
}

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

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 2rem 0 var(--section-pad);
  width: min(100% - 40px, var(--content-width));
  margin-inline: auto;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list li:first-child {
  border-top: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

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

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

.footer-brand-band {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
}

.footer-brand-band .brand-lockup {
  margin-bottom: 1.25rem;
}

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

.footer-brand-band__blurb {
  max-width: 36rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-pills li {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35em 0.9em;
}

.footer-links {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  padding: 0 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-links__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

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

.footer-independence {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.footer-bottom {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 1.15rem 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

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

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

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  box-shadow: none;
  padding: 1.25rem 1.5rem;
}

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

.consent__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.consent__copy h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

.consent__copy p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.5em;
}

.consent__copy a {
  font-size: 0.88rem;
}

.consent__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

.consent__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.consent__link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

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

.consent__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.consent__cat input {
  margin-top: 0.2rem;
}

.consent__cat label {
  color: var(--text);
}

.consent__cat small {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

  .category-card {
    min-height: 0;
  }

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

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

  .catalog-band__photo img {
    height: 340px;
  }
}

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

  .site-header__brand-row {
    justify-content: space-between;
    padding: 0.85rem 1rem;
  }

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

  .site-header__nav-row {
    display: block;
    padding: 0;
    border-top: none;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
  }

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

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 1.25rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .hero__frames {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }

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

  .hero__frame img,
  .hero__frame--short img,
  .hero__frame--tall img,
  .hero__frame--medium img {
    height: 240px;
  }

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

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

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

  .regions-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .consent__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .consent__divider {
    width: 100%;
    height: 1px;
  }

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

  .catalog-band__photo img {
    height: 260px;
  }
}

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

@media (max-width: 480px) {
  .wrap,
  .hero__frames,
  .independence,
  .catalog-band__photo,
  .catalog-band__body,
  .masonry,
  .lesser-grid,
  .editorial-stack,
  .narrow-column,
  .legal-body,
  .sitemap-list,
  .footer-brand-band,
  .footer-links,
  .footer-independence,
  .footer-bottom {
    width: min(100% - 28px, var(--content-width));
  }

  body {
    font-size: 16px;
  }

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

  .brand-lockup__name {
    font-size: 1.1rem;
  }

  .category-card__img {
    min-height: 300px;
    height: 300px;
  }

  .consent {
    padding: 1rem;
  }
}
