/* Failed Slip Test — Atlantis tokens from vendored foundation.css.
   Accent is request orange. Page is taupe. No glass, pills, or icon grids. */

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--typography--fontFamily-normal);
  font-size: var(--typography--fontSize-base);
  line-height: var(--typography--lineHeight-larger);
  background-color: var(--color-surface--background);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(118px + var(--space-large) + env(safe-area-inset-bottom, 0px));
}

main {
  animation: page-in var(--timing-slow) ease;
}

@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

a {
  color: var(--color-request);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2 {
  font-family: Poppins, Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--color-heading);
  line-height: var(--typography--lineHeight-tight);
  letter-spacing: -0.02em;
  margin: 0 0 0.45em;
  text-wrap: balance;
}
h3, h4 {
  font-family: var(--typography--fontFamily-normal);
  font-weight: 600;
  color: var(--color-heading);
  line-height: var(--typography--lineHeight-base);
  margin: 0 0 0.45em;
}

h1 { font-size: var(--typography--fontSize-jumbo); }
h2 { font-size: var(--typography--fontSize-largest); }
h3 { font-size: var(--typography--fontSize-large); }
h4 { font-size: var(--typography--fontSize-base); }

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

.lede {
  font-size: var(--typography--fontSize-base);
  line-height: var(--typography--lineHeight-larger);
  color: var(--color-text--secondary);
  max-width: 40em;
}
.muted { color: var(--color-text--secondary); }

::selection {
  background: var(--color-request);
  color: var(--color-text--reverse);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-heading);
  color: var(--color-text--reverse);
  padding: var(--space-small) var(--space-base);
  z-index: 200;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-large);
}

.section { padding: var(--space-larger) 0; }
.section-head { max-width: 40em; margin-bottom: var(--space-base); }
.band { background: var(--color-surface--background--subtle); }

.card {
  background: var(--color-surface);
  border: var(--border-base) solid var(--color-border);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-low);
}

/* Header — solid surface, no blur */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: var(--border-base) solid var(--color-border);
  view-transition-name: site-nav;
}
.site-nav .container {
  display: flex;
  align-items: center;
  gap: var(--space-large);
  min-height: 60px;
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: var(--color-heading);
  flex: none;
  line-height: var(--typography--lineHeight-tight);
}
.brand:hover { text-decoration: none; }
.brand-name {
  font-family: Poppins, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: var(--typography--fontSize-large);
  letter-spacing: -0.02em;
}
.brand-by {
  font-size: var(--typography--fontSize-smaller);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text--secondary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-smaller);
  margin-left: auto;
}
.nav-links a {
  color: var(--color-text);
  font-size: var(--typography--fontSize-base);
  font-weight: 500;
  padding: var(--space-smaller) var(--space-small);
  border-radius: var(--radius-small);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--color-surface--hover);
  color: var(--color-heading);
  text-decoration: none;
}
.nav-links a[aria-current="page"] { color: var(--color-request); }

.nav-end {
  display: flex;
  align-items: center;
  gap: var(--space-base);
  margin-left: auto;
  flex: none;
}
.nav-links + .nav-end { margin-left: var(--space-small); }

.nav-phone {
  color: var(--color-heading);
  font-weight: 600;
  font-size: var(--typography--fontSize-base);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--color-request); text-decoration: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-request);
  color: var(--color-text--reverse) !important;
  font-family: var(--typography--fontFamily-normal);
  font-weight: 500;
  font-size: var(--typography--fontSize-base);
  padding: var(--space-small) var(--space-base);
  border-radius: var(--radius-base);
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--color-base-orange--700);
  text-decoration: none;
}
.nav-cta:active { opacity: var(--opacity-pressed); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  body { padding-bottom: 0; }
}
@media (max-width: 959px) {
  .site-nav { display: none; }
}

/* Mobile sheet — expand, not snap. Hard bar, not a pill. */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: var(--space-small) var(--space-small) calc(var(--space-small) + env(safe-area-inset-bottom, 0px));
  background: var(--color-surface);
  border-top: var(--border-base) solid var(--color-border);
  box-shadow: var(--shadow-high);
  view-transition-name: tabbar;
}
.tabbar-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-small);
  padding: var(--space-smaller) var(--space-small) var(--space-small);
  border-bottom: var(--border-base) solid var(--color-border);
  margin-bottom: var(--space-small);
}
.tabbar-brand-row .brand-name { font-size: var(--typography--fontSize-base); }
.tabbar-brand-row .nav-cta {
  padding: var(--space-smaller) var(--space-slim);
  font-size: var(--typography--fontSize-small);
}

.tabbar-tabs { display: flex; align-items: stretch; }
.tabbar-tabs a,
.tabbar-tabs button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-smallest);
  padding: var(--space-small) 0;
  border-radius: var(--radius-small);
  color: var(--color-text--secondary);
  font: 500 var(--typography--fontSize-smaller) / var(--typography--lineHeight-base) var(--typography--fontFamily-normal);
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--timing-quick) ease, opacity var(--timing-base) ease;
}
.tabbar-tabs a:hover { text-decoration: none; color: var(--color-heading); }
.tabbar-tabs a:active,
.tabbar-tabs button:active { transform: scale(0.92); opacity: var(--opacity-pressed); }
.tabbar-tabs a svg,
.tabbar-tabs button svg { width: 22px; height: 22px; }
.tabbar-tabs a[aria-current="page"] {
  color: var(--color-request);
  background: var(--color-request--surface);
}

.tabbar-sheet {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--timing-slowest) cubic-bezier(0.32, 0.72, 0, 1);
}
.tabbar.is-open .tabbar-sheet { grid-template-rows: 1fr; }

.tabbar-sheet-inner {
  overflow: hidden;
  min-height: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition:
    visibility 0s linear var(--timing-slowest),
    opacity var(--timing-base) ease,
    transform var(--timing-slow) ease;
}
.tabbar.is-open .tabbar-sheet-inner {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition:
    visibility 0s,
    opacity var(--timing-slow) ease var(--timing-quick),
    transform var(--timing-slowest) cubic-bezier(0.32, 0.72, 0, 1);
}

.tabbar-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-base) var(--space-small);
  padding: var(--space-small) var(--space-smaller) var(--space-slim);
  border-bottom: var(--border-base) solid var(--color-border);
  margin-bottom: var(--space-small);
  max-height: min(52vh, 420px);
  overflow-y: auto;
}
.tabbar-menu-group strong {
  display: block;
  font-size: var(--typography--fontSize-smaller);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text--secondary);
  padding: 0 var(--space-small) var(--space-smaller);
}
.tabbar-menu-group a {
  display: block;
  font-size: var(--typography--fontSize-base);
  font-weight: 500;
  color: var(--color-heading);
  text-decoration: none;
  padding: var(--space-small);
  border-radius: var(--radius-small);
}
.tabbar-menu-group a:hover {
  background: var(--color-surface--hover);
  text-decoration: none;
}
.tabbar-menu-group a[aria-current="page"] {
  color: var(--color-request--onSurface);
  background: var(--color-request--surface);
}

.tabbar-menu-icon path {
  transform-box: view-box;
  transform-origin: center;
  transition: transform var(--timing-slow) cubic-bezier(0.32, 0.72, 0, 1), opacity var(--timing-base) ease;
}
.tabbar.is-open .tabbar-menu-icon .mi-top { transform: translateY(5px) rotate(45deg); }
.tabbar.is-open .tabbar-menu-icon .mi-mid { opacity: 0; transform: scaleX(0.4); }
.tabbar.is-open .tabbar-menu-icon .mi-bot { transform: translateY(-5px) rotate(-45deg); }

.tabbar.is-navigating .tabbar-sheet { transition-duration: var(--timing-slow); }
.tabbar.is-navigating .tabbar-sheet-inner {
  transition:
    visibility 0s linear var(--timing-slow),
    opacity var(--timing-quick) ease,
    transform var(--timing-base) ease;
}
.tabbar-scrim.is-navigating { transition-duration: var(--timing-base); }

.tabbar-scrim {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--timing-slow) ease;
}
.tabbar-scrim.is-open { opacity: 1; pointer-events: auto; }
body.sheet-locked { overflow: hidden; }

@media (min-width: 960px) {
  .tabbar, .tabbar-scrim { display: none; }
}

@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: var(--timing-base); }
::view-transition-old(tabbar),
::view-transition-new(tabbar),
::view-transition-old(site-nav),
::view-transition-new(site-nav) { animation: none; }

/* Buttons — Atlantis: 8px, Inter 14/500, ~8x16, press 0.6 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-small);
  font-family: var(--typography--fontFamily-normal);
  font-size: var(--typography--fontSize-base);
  font-weight: 500;
  line-height: var(--typography--lineHeight-base);
  padding: var(--space-small) var(--space-base);
  border-radius: var(--radius-base);
  text-decoration: none;
  border: var(--border-base) solid transparent;
  cursor: pointer;
  transition: background var(--timing-base) ease, opacity var(--timing-base) ease, box-shadow var(--timing-base) ease;
}
.btn:hover { text-decoration: none; }
.btn:active { opacity: var(--opacity-pressed); }
.btn-primary {
  background: var(--color-request);
  color: var(--color-text--reverse);
}
.btn-primary:hover { background: var(--color-base-orange--700); color: var(--color-text--reverse); }
.btn-secondary {
  background: var(--color-interactive--subtle);
  color: var(--color-text--reverse);
}
.btn-secondary:hover { background: var(--color-interactive--subtle--hover); color: var(--color-text--reverse); }
.btn-ghost {
  background: transparent;
  color: var(--color-text--reverse);
  border-color: var(--color-border);
}
.btn-ghost:hover { background: rgba(var(--color-white--rgb), 0.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-small); }

/* Page — title, supporting text, then the work */
.hero {
  padding: var(--space-larger) 0 var(--space-base);
}
.hero h1 { max-width: 18em; }
.hero .lede { margin: var(--space-small) 0 0; }

.hero-note {
  margin-top: var(--space-base);
  font-size: var(--typography--fontSize-small);
  color: var(--color-text--secondary);
}

.intake {
  margin-top: var(--space-large);
  color: var(--color-text);
  padding: var(--space-large);
}
.intake h2 {
  font-size: var(--typography--fontSize-larger);
  margin-bottom: var(--space-smaller);
}
.intake > p {
  color: var(--color-text--secondary);
  font-size: var(--typography--fontSize-base);
  margin-bottom: var(--space-base);
}

.page-head {
  padding: var(--space-larger) 0 var(--space-base);
}
.page-head h1 { max-width: 18em; }
.page-head .lede { margin-top: var(--space-small); }
.page-head + .section { padding-top: var(--space-base); }

.page-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-base) var(--space-large);
}
.page-heading-copy { flex: 1 1 18em; }
.page-actions { flex: none; padding-top: var(--space-smaller); }

.crumbs {
  font-size: var(--typography--fontSize-small);
  color: var(--color-text--secondary);
  margin-bottom: var(--space-base);
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-smaller); margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: var(--space-smaller); }
.crumbs a { color: var(--color-text--secondary); }

.split,
.help-grid {
  display: grid;
  gap: var(--space-base);
  align-items: stretch;
}
@media (min-width: 880px) {
  .split,
  .help-grid { grid-template-columns: 1fr 1fr; }
}
.help-card { padding: var(--space-large); }
.help-card h2 {
  font-size: var(--typography--fontSize-larger);
  margin-bottom: var(--space-small);
}

/* Four paths — stacked job sheet, not a matching icon grid */
.paths {
  display: grid;
  gap: var(--space-base);
  list-style: none;
  margin: 0;
  padding: 0;
}
.path {
  background: var(--color-surface);
  border: var(--border-base) solid var(--color-border);
  border-left: var(--border-thicker) solid var(--color-request);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-low);
  padding: var(--space-large);
}
.path .n {
  font-size: var(--typography--fontSize-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-request);
  margin-bottom: var(--space-small);
}
.path p { color: var(--color-text--secondary); }

/* What we do — numbered list in a card, not three identical icon cards */
.work-list {
  list-style: none;
  margin: 0;
  padding: 0 var(--space-large);
}
.work-list li {
  display: grid;
  gap: var(--space-small);
  padding: var(--space-base) 0;
  border-bottom: var(--border-base) solid var(--color-border);
}
.work-list li:first-child { padding-top: var(--space-large); }
.work-list li:last-child { border-bottom: none; padding-bottom: var(--space-large); }
@media (min-width: 720px) {
  .work-list li {
    grid-template-columns: 7em 1fr;
    gap: var(--space-large);
    align-items: start;
  }
}
.work-list h3 { margin: 0; }
.work-list p { color: var(--color-text--secondary); margin: 0; }
.work-n {
  font-family: Poppins, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: var(--typography--fontSize-large);
  color: var(--color-request);
}

.rule-table {
  overflow-x: auto;
  background: var(--color-surface);
  border: var(--border-base) solid var(--color-border);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-low);
}
table { width: 100%; border-collapse: collapse; font-size: var(--typography--fontSize-base); min-width: 520px; }
th, td {
  text-align: left;
  padding: var(--space-slim) var(--space-base);
  border-bottom: var(--border-base) solid var(--color-border);
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
th {
  font-size: var(--typography--fontSize-small);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  background: var(--color-surface--background--subtle);
  color: var(--color-heading);
}
td { color: var(--color-text--secondary); }
td:first-child, td:nth-child(2) { color: var(--color-heading); font-weight: 600; }

.note {
  font-size: var(--typography--fontSize-base);
  color: var(--color-text--secondary);
  margin-top: var(--space-base);
}

.banner-note {
  background: var(--color-surface);
  color: var(--color-text);
  border: var(--border-base) solid var(--color-border);
  border-radius: var(--radius-base);
  padding: var(--space-base);
  font-size: var(--typography--fontSize-base);
  max-width: 46em;
}
.work-list + .banner-note { margin-top: var(--space-base); }
.more-link { margin-top: var(--space-base); }
.page-head .btn-row { margin-top: var(--space-base); }

/* FAQ — same white card + hairline as the rest of the card system */
.faq-list { display: grid; gap: var(--space-base); max-width: 46em; }
.faq-item {
  background: var(--color-surface);
  border: var(--border-base) solid var(--color-border);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-low);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-base);
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-right: var(--border-thick) solid var(--color-request);
  border-bottom: var(--border-thick) solid var(--color-request);
  transform: rotate(45deg);
  transition: transform var(--timing-base) ease;
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-body { padding: 0 var(--space-base) var(--space-base); color: var(--color-text--secondary); }

.cta-section { padding-bottom: 0; }
.cta-banner {
  background: var(--color-request--surface);
  color: var(--color-text);
  border: var(--border-base) solid var(--color-border);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-low);
  padding: var(--space-large);
}
.cta-banner h2 { color: var(--color-heading); }
.cta-banner p {
  max-width: 38em;
  margin: 0 0 var(--space-base);
  color: var(--color-text--secondary);
}
.cta-banner .btn-secondary {
  background: var(--color-interactive--subtle);
  color: var(--color-text--reverse);
  border-color: transparent;
}
.cta-banner .btn-secondary:hover {
  background: var(--color-interactive--subtle--hover);
  color: var(--color-text--reverse);
}

.prose { max-width: 42em; }
.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.3em; }
.prose ul, .prose ol { padding-left: 1.2em; color: var(--color-text--secondary); }
.prose li { margin-bottom: 0.4em; }

/* Forms — Atlantis: labels above, grouped sections */
.enquiry-form,
.form-fields { display: grid; gap: var(--space-large); }
.form-section { display: grid; gap: var(--space-base); }
.form-section-fields { display: grid; gap: var(--space-base); }
.form-section-title {
  font-family: var(--typography--fontFamily-normal);
  font-size: var(--typography--fontSize-base);
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
}
.form-row { display: grid; gap: var(--space-base); }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--space-smaller); }
.field label {
  font-family: var(--typography--fontFamily-normal);
  font-size: var(--typography--fontSize-small);
  font-weight: 500;
  color: var(--color-heading);
}
.field input,
.field select,
.field textarea {
  font-family: var(--typography--fontFamily-normal);
  font-size: var(--typography--fontSize-base);
  color: var(--color-text);
  background: var(--color-surface);
  border: var(--border-base) solid var(--color-border);
  border-radius: var(--radius-base);
  padding: var(--space-small) var(--space-slim);
  width: 100%;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%234d6873' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.dropzone {
  display: grid;
  gap: var(--space-smaller);
  justify-items: start;
  cursor: pointer;
  background: var(--color-surface);
  border: var(--border-thick) dashed var(--color-border);
  border-radius: var(--radius-base);
  padding: var(--space-large);
  transition: background var(--timing-base) ease;
}
.dropzone:hover,
.dropzone.is-dragover,
.dropzone.is-ready {
  background: var(--color-interactive--background--subtle--hover);
}
.dropzone:focus-within { box-shadow: var(--shadow-focus); }
.dropzone input[type="file"] {
  width: 100%;
  font-size: var(--typography--fontSize-base);
}
.dropzone-title {
  font-family: var(--typography--fontFamily-normal);
  font-weight: 600;
  font-size: var(--typography--fontSize-large);
  color: var(--color-heading);
}
.dropzone-meta {
  font-size: var(--typography--fontSize-base);
  color: var(--color-text--secondary);
}
.dropzone-photos {
  padding: var(--space-base);
}
.dropzone-photos .dropzone-title {
  font-size: var(--typography--fontSize-base);
}

.file-hint { font-size: var(--typography--fontSize-small); color: var(--color-text--secondary); }
.form-note { font-size: var(--typography--fontSize-small); color: var(--color-text--secondary); }
.form-status {
  border-radius: var(--radius-base);
  padding: var(--space-base);
  font-size: var(--typography--fontSize-base);
}
.form-status.is-success {
  background: var(--color-success--surface);
  color: var(--color-success--onSurface);
}
.form-status.is-error {
  background: var(--color-critical--surface);
  color: var(--color-critical--onSurface);
}
.form-status a { font-weight: 600; }
.enquiry-form button[disabled] { opacity: var(--opacity-pressed); cursor: default; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--color-surface--reverse);
  color: var(--color-text--reverse--secondary);
  margin-top: var(--space-larger);
  padding: var(--space-largest) 0 var(--space-larger);
  font-size: var(--typography--fontSize-base);
}
.footer-grid {
  display: grid;
  gap: var(--space-larger);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-larger);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-grid h4 {
  font-size: var(--typography--fontSize-small);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text--reverse);
  margin-bottom: var(--space-small);
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-small); }
.footer-grid a { color: var(--color-text--reverse--secondary); }
.footer-grid a:hover { color: var(--color-orange--light); text-decoration: none; }
.footer-brand .brand-name { color: var(--color-text--reverse); }
.footer-brand .brand-by { color: var(--color-text--reverse--secondary); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-small) var(--space-base);
  border-top: var(--border-base) solid rgba(var(--color-white--rgb), 0.12);
  padding-top: var(--space-base);
  font-size: var(--typography--fontSize-small);
  color: var(--color-text--reverse--secondary);
}
.footer-legal a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  main { animation: none; }
  .btn:active, .tabbar-tabs a:active, .tabbar-tabs button:active { transform: none; }
  .tabbar-scrim,
  .tabbar-sheet,
  .tabbar.is-navigating .tabbar-sheet,
  .tabbar-sheet-inner,
  .tabbar.is-navigating .tabbar-sheet-inner,
  .tabbar-menu-icon path,
  .faq-item summary::after { transition-duration: 0.01s; }
  @view-transition { navigation: none; }
}
