:root {
  --bg: #f6fbfc;
  --bg-strong: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #12323d;
  --ink-soft: #4a6a74;
  --ink-muted: #6f8d95;
  --line: rgba(14, 84, 103, 0.12);
  --line-strong: rgba(14, 84, 103, 0.2);
  --accent: #0c6f86;
  --accent-deep: #0d5164;
  --accent-soft: rgba(12, 111, 134, 0.12);
  --accent-soft-strong: rgba(12, 111, 134, 0.2);
  --gold: #c59b52;
  --gold-soft: rgba(197, 155, 82, 0.15);
  --teal-panel: linear-gradient(135deg, #0d5164 0%, #0d7086 100%);
  --shadow-lg: 0 26px 60px rgba(13, 64, 79, 0.15);
  --shadow-md: 0 18px 40px rgba(13, 64, 79, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-height: 98px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(12, 111, 134, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(197, 155, 82, 0.08), transparent 20%),
    linear-gradient(180deg, #fbfdfe 0%, #f2f9fb 100%);
  font-family: "Aptos", "Segoe UI", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 12vh;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(12, 111, 134, 0.1);
  border-radius: 0 100% 100% 0;
}

body::after {
  right: -6rem;
  bottom: 14vh;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(12, 111, 134, 0.08);
  border-radius: 100% 0 0 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-frame {
  min-height: 100vh;
}

.section-shell {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-shell.narrow {
  width: min(820px, calc(100% - 2.5rem));
}

.topbar {
  border-bottom: 1px solid rgba(12, 111, 134, 0.08);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}

.topbar-row {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.topbar-links,
.topbar-badges {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.topbar-badges span {
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  background: rgba(12, 111, 134, 0.06);
  color: var(--accent-deep);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 252, 253, 0.78);
  border-bottom: 1px solid rgba(12, 111, 134, 0.08);
  backdrop-filter: blur(22px);
}

.header-row {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), #09495a);
  box-shadow: 0 15px 24px rgba(12, 111, 134, 0.2);
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
}

.brand-copy strong {
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
}

.brand-copy span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.header-nav {
  display: flex;
  justify-content: center;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
  border: 1px solid rgba(12, 111, 134, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(13, 64, 79, 0.08);
}

.nav-link,
.nav-dropdown summary,
.pill-link,
.button,
.chip {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-link,
.nav-dropdown summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.nav-link:hover,
.nav-dropdown summary:hover,
.pill-link:hover,
.button:hover,
.chip:hover {
  transform: translateY(-1px);
}

.nav-link.is-active,
.nav-dropdown.is-active summary,
.pill-link.is-active {
  background: rgba(12, 111, 134, 0.1);
  color: var(--accent-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown[open] summary {
  background: rgba(12, 111, 134, 0.1);
  color: var(--accent-deep);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
  border: 1px solid rgba(12, 111, 134, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.nav-panel a {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
}

.nav-panel a:hover {
  background: rgba(12, 111, 134, 0.06);
}

.nav-panel strong {
  font-size: 0.96rem;
}

.nav-panel span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 28px rgba(12, 111, 134, 0.22);
}

.button-secondary {
  color: var(--accent-deep);
  background: rgba(12, 111, 134, 0.08);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(12, 111, 134, 0.12);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--accent-deep);
  background: rgba(12, 111, 134, 0.08);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
}

.page-shell {
  padding-bottom: 4rem;
}

.section {
  padding: 4.8rem 0;
}

.section.compact {
  padding: 3.6rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-head h1,
.section-head h2,
.section-head h3 {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
}

.section-head h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.94;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.section-head p {
  margin: 0;
  max-width: 64ch;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero {
  padding: 2.4rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(9, 50, 61, 0.32)),
    var(--visual-image) var(--visual-position, center top) / var(--visual-size, cover) no-repeat;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.78), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%);
  mix-blend-mode: screen;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 110px;
  height: 110px;
  border-radius: 0 0 0 100%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-top: 0;
  border-right: 0;
}

.hero-badge {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(9, 50, 61, 0.74);
  color: white;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 1rem 0;
}

.hero-copy .lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 60ch;
}

.hero-actions,
.button-row,
.chip-row,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.7rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.metric-card,
.info-card,
.contact-card,
.timeline-card,
.panel-card,
.article-card,
.map-card,
.form-shell,
.footer-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.metric-card {
  padding: 1.15rem;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent-deep);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.6rem;
}

.metric-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.chip-row {
  margin-bottom: 1.2rem;
}

.chip,
.pill-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid rgba(12, 111, 134, 0.12);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.contact-card,
.timeline-card,
.article-card,
.panel-card,
.map-card {
  overflow: hidden;
}

.info-card {
  display: grid;
  gap: 1rem;
}

.card-media {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(9, 50, 61, 0.24)),
    var(--preview-image) var(--preview-position, center top) / var(--preview-size, cover) no-repeat;
}

.card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.3rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card-body h3,
.card-body h4 {
  margin: 0;
  font-size: 1.12rem;
}

.card-body p,
.card-body li,
.contact-card p,
.panel-card p,
.timeline-card p,
.article-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.list-clean {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 1.2rem;
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.immersive-band {
  position: relative;
  margin: 0.8rem 0;
}

.immersive-band::before {
  content: "";
  position: absolute;
  inset: 1.4rem 0;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 45%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent 26%),
    var(--teal-panel);
  box-shadow: var(--shadow-lg);
}

.band-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 3.6rem 3rem;
  color: white;
}

.band-copy h2,
.band-copy p,
.band-copy .eyebrow {
  color: inherit;
}

.band-copy .eyebrow {
  opacity: 0.78;
}

.band-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.band-card .list-clean li {
  color: rgba(255, 255, 255, 0.92);
}

.band-card .list-clean li::before {
  background: white;
}

.subnav {
  margin-top: 1.2rem;
}

.timeline-wrapper {
  display: grid;
  gap: 1.2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-step {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  font-weight: 800;
}

.timeline-card {
  padding: 1.25rem 1.3rem;
}

.timeline-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: center;
}

.split-visual {
  min-height: 320px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(9, 50, 61, 0.2)),
    var(--preview-image) var(--preview-position, center center) / var(--preview-size, cover) no-repeat;
}

.split-copy {
  display: grid;
  gap: 1rem;
}

.split-copy h2,
.split-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1.04;
}

.split-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.article-card .card-body {
  padding-top: 1.1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.article-meta span:first-child {
  padding: 0.36rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.form-shell,
.footer-panel {
  padding: 1.45rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(12, 111, 134, 0.15);
  border-radius: 16px;
  background: white;
  color: var(--ink);
}

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

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

.form-status {
  min-height: 1.5rem;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card,
.panel-card,
.map-card {
  padding: 1.35rem;
}

.contact-card h3,
.panel-card h3,
.map-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.contact-list,
.footer-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.footer-list li {
  color: var(--ink-soft);
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background:
    radial-gradient(circle at 76% 62%, rgba(197, 155, 82, 0.35), transparent 8%),
    radial-gradient(circle at 76% 62%, rgba(197, 155, 82, 0.22), transparent 14%),
    linear-gradient(180deg, rgba(12, 111, 134, 0.04), rgba(12, 111, 134, 0.01));
}

.map-blob {
  position: absolute;
  inset: auto 8% 12% auto;
  width: min(240px, 58%);
  aspect-ratio: 0.92;
  background:
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.18), transparent 18%),
    #0c5f75;
  clip-path: polygon(42% 2%, 58% 0, 70% 10%, 84% 17%, 100% 32%, 92% 46%, 95% 63%, 80% 78%, 72% 100%, 55% 92%, 39% 95%, 27% 85%, 11% 80%, 0 58%, 9% 40%, 6% 24%, 18% 14%, 32% 12%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.map-point {
  position: absolute;
  right: 22%;
  bottom: 33%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 14px rgba(197, 155, 82, 0.14);
}

.map-label {
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  max-width: 24ch;
}

.footer {
  padding: 1rem 0 2rem;
}

.footer-shell {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 88%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #0b4050 0%, #0d6177 100%);
  color: white;
  box-shadow: var(--shadow-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.7fr)) minmax(0, 0.9fr);
  gap: 1.4rem;
  padding: 2.1rem;
}

.footer-brand strong {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
}

.footer-brand p,
.footer-note,
.footer-list li,
.footer-contact p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-list a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2.1rem 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.empty-page {
  padding: 6rem 0;
  text-align: center;
}

.empty-page .panel-card {
  width: min(640px, 100%);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .nav-link,
  .nav-dropdown summary,
  .pill-link,
  .button,
  .chip {
    transition: none;
  }

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

@media (max-width: 1160px) {
  .header-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-nav,
  .header-actions .button-primary {
    display: none;
  }

  .menu-toggle,
  .mobile-panel {
    display: block;
  }

  .mobile-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease;
  }

  body.nav-open .mobile-panel {
    max-height: 100vh;
  }

  .mobile-panel-inner {
    padding: 0 0 1.2rem;
  }

  .mobile-stack {
    display: grid;
    gap: 0.8rem;
    padding-top: 0.5rem;
  }

  .mobile-group {
    padding: 1rem;
    border: 1px solid rgba(12, 111, 134, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
  }

  .mobile-group strong {
    display: block;
    margin-bottom: 0.7rem;
  }

  .mobile-links {
    display: grid;
    gap: 0.45rem;
  }

  .mobile-links a {
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
  }

  .mobile-links a:hover,
  .mobile-links a.is-active {
    background: rgba(12, 111, 134, 0.08);
    color: var(--accent-deep);
  }

  .hero-grid,
  .band-grid,
  .contact-layout,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-grid,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 380px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .section-shell.narrow {
    width: min(100%, calc(100% - 1.3rem));
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: static;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-visual {
    min-height: 290px;
  }

  .article-grid,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .band-grid {
    padding: 2.5rem 1.4rem;
  }

  .footer-grid,
  .footer-bottom {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
}
