:root {
  --bg: #120e0e;
  --surface: #1b1414;
  --surface-alt: #241a1a;
  --text: #f3ece9;
  --text-muted: #b4a29d;
  --border: rgba(243, 236, 233, 0.14);
  --accent: #bf8f4f;
  --accent-2: #9d5a4e;
  --secondary: #2a1e1e;
  --on-accent: #171111;
  --deep: #0a0707;
  --radius: 4px;
  --radius-pill: 999px;
  --font-heading: Baskerville, 'Baskerville Old Face', Georgia, serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --content-width: 1180px;
  --section-pad: 108px;
  --header-offset: 0px;
}

*,
*::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.78;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

h3 {
  font-size: clamp(22px, 2.8vw, 28px);
}

p + p {
  margin-top: 1em;
}

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

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

.site-header {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}

.header-brand-row {
  border-bottom: 1px solid var(--border);
}

.header-brand-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.2px;
  font-weight: 500;
}

.brand-lockup:hover {
  color: var(--accent);
}

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

.header-nav-row {
  position: relative;
}

.header-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  gap: 16px;
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
  flex-wrap: wrap;
  list-style: none;
  grid-column: 2;
}

.nav-primary a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

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

.nav-contact {
  grid-column: 3;
  justify-self: end;
}

.nav-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
  grid-column: 3;
}

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

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

.independence-notice p {
  width: min(100% - 48px, var(--content-width));
  margin: 0 auto;
  padding: 10px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

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

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

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

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

.btn-block {
  width: 100%;
}

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

.text-link:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

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

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

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

.page-hero {
  padding: calc(var(--section-pad) * 0.72) 0 64px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .intro {
  max-width: 62ch;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
}

.hero-home {
  padding: calc(var(--section-pad) * 0.85) 0 var(--section-pad);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero-home .lede {
  max-width: 58ch;
  margin: 1.4rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
  margin-top: 56px;
  text-align: left;
}

.hero-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
}

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

.hero-frame:nth-child(2) img {
  height: 340px;
}

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

.hero-frame figcaption {
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

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

.category-card {
  display: flex;
  flex-direction: column;
  background: #f3ece9;
  color: var(--on-accent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  flex: 1;
  border-top: 1px solid rgba(23, 17, 17, 0.16);
}

.category-card h3 {
  padding-top: 10px;
  border-top: 1px solid rgba(23, 17, 17, 0.16);
  font-size: 28px;
  color: var(--on-accent);
}

.category-card p {
  color: #3a2c28;
  flex: 1;
}

.category-card .text-link {
  color: #8a6230;
  border-bottom-color: rgba(23, 17, 17, 0.2);
}

.category-card .text-link:hover {
  color: var(--on-accent);
}

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

.quote-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.quote-item:first-child {
  padding-top: 0;
}

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

.quote-item blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.quote-item cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

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

.pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--accent);
  letter-spacing: -0.2px;
}

.pull-quote .frame-line {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 48ch;
  margin-inline: auto;
}

.timeline {
  list-style: none;
  position: relative;
  max-width: 760px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 36px;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

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

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

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

.mission-grid .mission-left h2 {
  margin-bottom: 20px;
}

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

.region-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.region-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.region-tile h3 {
  font-size: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

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

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

.venue-card {
  display: flex;
  flex-direction: column;
  background: #f3ece9;
  color: var(--on-accent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
}

.venue-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.venue-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 14px;
}

.venue-card h2 {
  font-size: clamp(22px, 2.4vw, 26px);
  color: var(--on-accent);
  padding-top: 12px;
  border-top: 1px solid rgba(23, 17, 17, 0.16);
  line-height: 1.3;
}

.venue-meta {
  font-size: 14px;
  color: #6d5a54;
}

.venue-card p {
  color: #3a2c28;
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
}

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

.landmark-band {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.landmark-band:last-of-type {
  border-bottom: 0;
}

.landmark-band img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.landmark-copy {
  text-align: center;
  padding: 56px 24px 64px;
  max-width: 720px;
  margin: 0 auto;
}

.landmark-copy h2 {
  margin-bottom: 8px;
}

.landmark-copy .venue-meta {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.landmark-copy p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.catalog-close {
  padding: 64px 0 var(--section-pad);
  border-top: 1px solid var(--border);
  text-align: center;
}

.catalog-close p {
  max-width: 58ch;
  margin: 0 auto;
  color: var(--text-muted);
}

.editorial-column {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

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

.editorial-block:first-child {
  padding-top: 0;
}

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

.editorial-block h2 {
  margin-bottom: 24px;
}

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

.method-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.method-band:nth-child(even) .method-copy {
  order: 2;
}

.method-band:nth-child(even) .method-aside {
  order: 1;
}

.method-copy h2 {
  margin-bottom: 20px;
}

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

.method-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method-aside .aside-kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.method-aside p {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--text);
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

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

.contact-email {
  margin-bottom: 36px;
  color: var(--text-muted);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 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);
  outline-offset: 2px;
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.agree-row input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

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

.agree-row label a {
  color: var(--accent);
}

.field-error {
  color: var(--accent-2);
  font-size: 13px;
  margin-top: 6px;
}

.form-status[aria-live] {
  min-height: 1.5em;
  color: var(--accent-2);
  font-size: 14px;
}

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

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

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

.confirm-panel .btn {
  margin-top: 28px;
}

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

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

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

.legal-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 32px);
}

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

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

.legal-body ul {
  margin: 12px 0 12px 1.25rem;
}

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

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

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  line-height: 2;
}

.sitemap-links a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.footer-band:last-child {
  border-bottom: 0;
}

.footer-brand-band {
  padding: 56px 0 48px;
}

.footer-brand-band .brand-lockup {
  margin-bottom: 18px;
}

.footer-blurb {
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-links-band {
  padding: 36px 0;
}

.footer-link-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
}

.footer-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-group a,
.footer-group 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-group a:hover,
.footer-group button:hover {
  color: var(--accent);
}

.footer-bottom-band {
  padding: 28px 0 40px;
}

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

.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  align-items: baseline;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

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

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

.footer-requisites {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
}

[data-reveal] {
  opacity: 0;
  transition: opacity 240ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transition: none;
  }
}

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

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

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

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

.consent-banner > p {
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 62ch;
}

.consent-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.consent-cat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 14px;
}

.consent-cat input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.consent-cat label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.consent-cat label small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 4px;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.consent-actions button {
  min-height: 46px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 12px;
}

.consent-actions button[data-consent="accept"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent-actions button:hover {
  border-color: var(--accent);
}

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

.consent-policy a {
  color: var(--accent);
}

.consent-pill {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

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

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

@media (max-width: 1024px) {
  .region-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-band {
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .header-nav-inner {
    grid-template-columns: 1fr auto;
  }

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

  .nav-primary,
  .nav-contact {
    display: none;
  }

  .header-nav-row.is-open .nav-primary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 12px 0 20px;
    gap: 0;
  }

  .header-nav-row.is-open .nav-primary a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .header-nav-row.is-open .nav-contact {
    display: block;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: stretch;
    padding-bottom: 20px;
  }

  .header-nav-row.is-open .nav-contact a {
    display: block;
    padding: 14px 0;
  }

  .category-grid,
  .gem-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .method-band,
  .method-band:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .method-band:nth-child(even) .method-copy,
  .method-band:nth-child(even) .method-aside {
    order: initial;
  }

  .consent-cats,
  .consent-actions {
    grid-template-columns: 1fr;
  }
}

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

  .wrap,
  .independence-notice p {
    width: min(100% - 32px, var(--content-width));
  }

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

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

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

  .region-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta-row {
    flex-direction: column;
  }
}

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

  .method-aside {
    min-height: 0;
  }
}

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

  .wrap,
  .independence-notice p,
  .consent-banner {
    width: min(100% - 24px, var(--content-width));
  }

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

  .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .hero-frame {
    flex-basis: 88%;
  }

  .landmark-copy {
    padding: 40px 16px 48px;
  }

  .consent-banner {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .consent-pill {
    right: 12px;
    bottom: 12px;
  }
}
