: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-pill: 999px;
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --max: 1080px;
  --section-pad: 76px;
  --header-h: 68px;
  --header-h-shrink: 52px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  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: 0.18em;
}

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

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

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

p {
  margin: 0 0 1em;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  min-height: 44px;
  padding: 0.65em 1.5em;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  transition: min-height 0.2s ease;
}

.site-header.is-shrunk .site-header__inner {
  min-height: var(--header-h-shrink);
}

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

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

.site-header.is-shrunk .brand img {
  width: 28px;
  height: 34px;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  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);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35em 0;
  border-bottom: 1px solid transparent;
}

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

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

.independence {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence__text {
  margin: 0;
  padding: 0.55rem 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero {
  position: relative;
  background: var(--surface-alt);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666%;
  height: 100%;
}

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

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  min-height: 520px;
  align-items: stretch;
}

.hero__panel {
  background: var(--surface);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.hero__panel p {
  color: var(--text-muted);
  max-width: 36ch;
  font-size: 1.02rem;
}

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

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

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

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

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

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.cat-band__media {
  overflow: hidden;
  min-height: 320px;
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.cat-band__body {
  padding: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  border-left: 1px solid var(--border);
}

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

.cat-band--flip .cat-band__body {
  order: 1;
  border-left: none;
  border-right: 1px solid var(--border);
}

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

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

.testimonials {
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) 1.15fr;
  gap: 3rem;
  align-items: start;
}

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

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.quote p {
  margin: 0 0 0.85em;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

.quote footer {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.note-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  min-height: 180px;
}

.note-card__num {
  position: absolute;
  top: 0.4rem;
  right: 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 84px);
  font-weight: 700;
  line-height: 1;
  color: var(--border);
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
}

.note-card h3 {
  position: relative;
  margin-bottom: 0.55em;
  max-width: 16ch;
}

.note-card p {
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

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

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

.regions-list strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: -0.3px;
}

.regions-list span {
  color: var(--text-muted);
}

.page-hero {
  padding: calc(var(--section-pad) * 0.72) 0 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.catalog-close {
  padding: 2.5rem 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 48rem;
}

.elite-stack {
  display: flex;
  flex-direction: column;
}

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

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

.elite-card {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.2s ease;
}

.elite-card:hover {
  transform: translateY(-2px);
}

.elite-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-alt);
}

.elite-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.elite-card:hover .elite-card__photo img {
  transform: scale(1.02);
}

.elite-card__body {
  padding: 1.75rem 1.75rem 1.5rem;
  text-align: center;
}

.elite-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.85em;
}

.elite-card__meta strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.4px;
}

.elite-card__meta span {
  color: var(--text-muted);
}

.elite-card__body p {
  color: var(--text-muted);
  margin-bottom: 1.35em;
}

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

.masonry-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.2s ease;
  overflow: hidden;
}

.masonry-card:hover {
  transform: translateY(-2px);
}

.masonry-card__photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-alt);
}

.masonry-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.masonry-card:hover .masonry-card__photo img {
  transform: scale(1.02);
}

.masonry-card__body {
  padding: 1.75rem 1.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--surface);
}

.masonry-card__loc {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.45rem;
}

.masonry-card__body h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 0.55em;
}

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

.masonry-card__btn {
  width: calc(100% - 3.2rem);
  margin: 0 1.6rem 1.5rem;
  align-self: center;
}

.catalog-section {
  padding-top: 2.5rem;
}

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

.stay-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.2s ease;
  height: 100%;
}

.stay-card:hover {
  transform: translateY(-2px);
}

.stay-card__photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-alt);
}

.stay-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.stay-card:hover .stay-card__photo img {
  transform: scale(1.02);
}

.stay-card__body {
  padding: 1.6rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--surface);
}

.stay-card__loc {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.45rem;
}

.stay-card__body h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 0.55em;
}

.stay-card__body p {
  color: var(--text-muted);
  margin-bottom: 1.35em;
  flex: 1;
}

.story-lead {
  padding: var(--section-pad) 0 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.story-lead p {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.4px;
  max-width: 28em;
  margin: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  padding: var(--section-pad) 0;
}

.story-block h2 {
  margin-bottom: 0.85em;
  padding-bottom: 0.55em;
  border-bottom: 1px solid var(--border);
}

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

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

.contact-intro p {
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-intro a {
  font-weight: 600;
}

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

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

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

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

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}

.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-2);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.35rem 0 0.5rem;
}

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

.agree-row label {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.agree-row[aria-invalid="true"] {
  outline: 2px solid #8a2f2f;
  outline-offset: 4px;
  padding: 0.35rem;
}

.form-error {
  color: #8a2f2f;
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
  min-height: 1.2em;
}

.form-actions {
  margin-top: 1.5rem;
}

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

.confirm-panel h2 {
  margin-bottom: 0.5em;
}

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

.confirm-panel .ref {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.confirm-again {
  margin-top: 1.25rem;
}

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

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

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

.legal-body h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.65em;
  font-size: clamp(20px, 2.5vw, 26px);
}

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

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

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

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

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

.sitemap-list a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

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

.site-footer {
  background: var(--dark);
  color: var(--on-accent);
  padding: 3.5rem 0 0;
  margin-top: 0;
}

.site-footer a {
  color: rgba(251, 251, 249, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--on-accent);
  text-decoration: underline;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.site-footer .brand {
  color: var(--on-accent);
}

.site-footer .brand__name {
  color: var(--on-accent);
}

.footer-blurb {
  max-width: 42rem;
  margin: 0;
  color: rgba(251, 251, 249, 0.72);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0;
  max-width: 52rem;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links .sep {
  margin: 0 0.55rem;
  color: rgba(251, 251, 249, 0.35);
  user-select: none;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--on-accent);
  margin: 0.5rem 0 0;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 251, 249, 0.14);
  padding: 1.15rem 0 1.35rem;
}

.footer-notice {
  margin: 0 0 1rem;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(251, 251, 249, 0.62);
  text-align: center;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 12px;
  color: rgba(251, 251, 249, 0.62);
}

.footer-meta button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(251, 251, 249, 0.78);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

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

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

.consent__inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.consent__copy {
  flex: 1;
  min-width: 0;
}

.consent__copy p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 54ch;
}

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

.consent__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45em 1.1em;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.consent__btn--ghost {
  border-color: var(--border);
  color: var(--text-muted);
}

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

.consent__manage {
  margin-top: 0.85rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.consent__manage.is-open {
  max-height: 280px;
  opacity: 1;
}

.consent__cats {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 0 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
}

.consent__cat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.consent__cat input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent__cat label {
  cursor: pointer;
}

.consent__cat input:disabled + label {
  cursor: default;
  color: var(--text-muted);
}

.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) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .hero__inner {
    min-height: 460px;
  }

  .testimonials {
    gap: 2rem;
  }
}

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

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

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

  .site-nav a {
    padding: 0.85rem 20px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .site-nav a[aria-current="page"] {
    border-left-color: var(--accent-2);
    background: var(--surface-alt);
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

  .hero__media {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }

  .hero__panel {
    border-right: none;
    border-top: 1px solid var(--border);
  }

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

  .cat-band__media,
  .cat-band--flip .cat-band__media {
    order: 0;
    min-height: 240px;
  }

  .cat-band__body,
  .cat-band--flip .cat-band__body {
    order: 1;
    border: none;
    border-top: 1px solid var(--border);
  }

  .cat-band__media img {
    min-height: 240px;
  }

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

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

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

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

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

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

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

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

  .consent__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .consent__controls {
    justify-content: flex-start;
  }

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

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

  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .brand__name {
    font-size: 15px;
  }

  .elite-card__body {
    padding: 1.35rem 1.15rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero__media {
    height: 220px;
  }

  .consent__btn {
    width: 100%;
  }

  .consent__controls {
    width: 100%;
  }

  .footer-links {
    font-size: 12px;
  }
}
