:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-alt: #e9ebef;
  --text: #1a1f27;
  --text-muted: #525c6b;
  --border: rgba(26, 31, 39, 0.12);
  --accent: #b3623a;
  --accent-2: #2f4a63;
  --secondary: #2b3542;
  --on-accent: #ffffff;
  --dark: #161c24;
  --radius: 2px;
  --radius-btn: 6px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --content-max: 1400px;
  --section-pad: 136px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  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: 3px;
}

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

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

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
}

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.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

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

.section--tight {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

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

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

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}

.notice-strip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  width: min(100% - 32px, var(--content-max));
  margin-inline: auto;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0 0;
}

.header-brand {
  display: flex;
  justify-content: center;
  padding-bottom: 1.1rem;
}

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

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-nav-row {
  border-top: 1px solid var(--border);
  padding: 0.85rem 0 1.1rem;
  position: relative;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  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 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.75rem;
}

.nav-list a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0;
}

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

.hero {
  position: relative;
  min-height: max(420px, 62vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 28, 36, 0.55) 0%, rgba(22, 28, 36, 0.72) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--on-accent);
  width: min(100% - 48px, 900px);
  padding: 4rem 0;
}

.hero__content .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero__content h1 {
  color: var(--on-accent);
  margin-bottom: 1rem;
}

.hero__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42em;
  margin-inline: auto;
}

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

.category-card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.category-card__body {
  padding: 1.75rem 1.5rem 2rem;
}

.category-card h3 {
  margin-bottom: 0.75rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.band-dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0;
}

.band-dark h2 {
  color: var(--on-accent);
}

.band-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.band-dark-grid .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.band-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.band-dark .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.section--flush {
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
}

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

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

.mission-grid__left,
.mission-grid__right {
  min-width: 0;
}

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

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
}

.timeline li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}

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

.timeline__marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
  position: relative;
  z-index: 1;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.2rem;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline li:last-child::before {
  display: none;
}

.timeline h3 {
  margin-bottom: 0.4rem;
}

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

.page-hero {
  padding: 100px 0 60px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.page-hero p {
  max-width: 48em;
  margin: 0.5rem auto 0;
  color: var(--text-muted);
}

.page-hero--left {
  text-align: left;
}

.page-hero--left p {
  margin-left: 0;
}

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

.highlight-band__media {
  position: relative;
}

.highlight-band__media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  aspect-ratio: 21 / 9;
}

.highlight-band__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 28, 36, 0.62);
  color: var(--on-accent);
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  letter-spacing: -1px;
  margin: 0;
}

.highlight-band__body {
  text-align: center;
  padding: 2.5rem 1.5rem 3.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.highlight-band__meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

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

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

.catalog-close p {
  max-width: 42em;
  margin: 0 auto 0.75rem;
  color: var(--text-muted);
}

.shore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.shore-card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shore-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.shore-card__body {
  padding: 1.75rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shore-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0.65rem;
  display: block;
  width: 100%;
}

.shore-card__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1rem;
  border: none;
}

.shore-card__meta {
  display: block;
  width: 100%;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.shore-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.gem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 3rem;
}

.gem-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

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

.gem-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gem-row__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.gem-row__text h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 0.4rem;
}

.gem-row__meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.gem-row__text p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.gem-row .btn {
  white-space: nowrap;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.editorial-band--flip .editorial-band__visual {
  order: 2;
}

.editorial-band__visual {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
  min-height: 100%;
}

.editorial-band--flip .editorial-band__visual {
  border-left: none;
  border-right: 1px solid var(--border);
  padding-left: 0;
  padding-right: 2rem;
  order: 1;
}

.editorial-band--flip .editorial-band__copy {
  order: 2;
}

.editorial-band__visual .kicker {
  margin-top: 0.5rem;
}

.editorial-band__visual p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.method-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

.method-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

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

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

.contact-wrap .intro-email {
  margin: 1rem 0 2rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

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

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

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

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.form-agree input {
  margin-top: 0.35rem;
  flex-shrink: 0;
  width: auto;
}

.form-agree label {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}

.form-error {
  color: #8b2e1f;
  font-size: 0.9rem;
  margin-top: 0.4rem;
  display: none;
}

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

.form-status {
  margin-top: 1rem;
  color: #8b2e1f;
  font-size: 0.95rem;
  display: none;
}

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

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}

.confirm-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
}

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

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

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

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

.legal-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-body h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-top: 1.5rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1.1em;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 40px 0 var(--section-pad);
}

.sitemap-group h2 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-group li {
  margin-bottom: 0.65rem;
}

.sitemap-group a {
  text-decoration: none;
  color: var(--text);
}

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

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

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 36em;
  margin-bottom: 1rem;
}

.footer-brand .footer-email {
  font-size: 1.15rem;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.footer-group li {
  margin-bottom: 0.45rem;
}

.footer-group a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}

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

.footer-group button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
}

.footer-pill {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
}

.footer-mailto-large {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 2rem;
}

.footer-mailto-large:hover {
  color: var(--accent);
}

.footer-notice {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-notice p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 60em;
  margin-inline: auto;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  text-align: center;
}

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

.footer-bottom [data-cookie-settings] {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent-2);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

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

  .reveal {
    opacity: 1;
    transition: none;
  }
}

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

.consent {
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin: 2rem auto 2.5rem;
  width: min(100% - 32px, var(--content-max));
}

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

.consent__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: -1px;
  margin: 0 0 0.75rem;
}

.consent__copy {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin: 1.25rem 0 1.5rem;
}

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

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.consent__btn {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.consent-pill {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  appearance: none;
  border: none;
  background: var(--secondary);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

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

@media (max-width: 1024px) {
  .category-grid {
    gap: 1.5rem;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .shore-grid {
    gap: 1.75rem;
  }
}

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

  .header-nav-row {
    padding: 0.65rem 0;
    min-height: 56px;
  }

  .header-brand {
    padding-bottom: 0.85rem;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

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

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

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

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

  .band-dark-grid .cols {
    grid-template-columns: 1fr;
  }

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

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

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

  .editorial-band,
  .editorial-band--flip {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .editorial-band__visual,
  .editorial-band--flip .editorial-band__visual {
    border: none;
    padding: 0;
    order: 0;
  }

  .editorial-band--flip .editorial-band__copy {
    order: 0;
  }

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

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

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

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

  .gem-row {
    grid-template-columns: 96px 1fr;
    gap: 1.25rem;
  }

  .gem-row img {
    width: 96px;
    height: 96px;
  }

  .gem-row .btn {
    grid-column: 2;
    justify-self: center;
    margin-top: 0.25rem;
  }

  .gem-row__text {
    text-align: left;
  }

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

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

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

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

  .brand-lockup span {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

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

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

  .gem-row img {
    width: 100%;
    height: 200px;
  }

  .gem-row .btn {
    grid-column: 1;
    width: 100%;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__btn {
    width: 100%;
    text-align: center;
  }

  .highlight-band__media img {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}
