/* Your PT Hub — shared component library. Defined once, reused across every page (FR-2.3). */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section {
  padding-block: var(--space-12);
}
.section--tight {
  padding-block: var(--space-8);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "— ";
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.18s var(--ease-out),
    color 0.18s var(--ease-out),
    border-color 0.18s var(--ease-out),
    transform 0.18s var(--ease-out);
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-accent-ink);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-accent-ink);
}
.btn--ghost {
  background: transparent;
  color: var(--color-fg);
  border-color: currentColor;
}
.btn--ghost:hover {
  background: var(--color-fg);
  color: var(--color-bg);
}
.btn--sm {
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  /* Text-only padding put this under 44px tall (measured ~34px) — below
     FR-2.4's ≥44px tap-target requirement. min-height keeps the compact
     label/padding but pads the hit area out vertically via centering
     (.btn already sets align-items:center), not by growing the visible
     button chrome. */
  min-height: 44px;
}
.btn--icon {
  padding: var(--space-1);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  border-bottom: 1px solid transparent;
  transition:
    padding 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}
/* The header's inner row. The markup carries `class="container fx ac jb"`,
   but .fx/.ac/.jb were never defined in any stylesheet — so the container
   fell back to display:block, stacking the logo above a full-width actions
   row and left-aligning the burger. Layout belongs on a real selector
   rather than phantom utility classes, so it's defined here. */
.nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
}
/* Keeps the actions cluster hard-right even if the centre nav list is
   hidden (mobile) or absent. */
.nav__right {
  margin-left: auto;
}
/* The glass-blur background lives on a ::before layer, not on .nav itself.
   backdrop-filter (like transform/filter/will-change) makes the element
   that carries it a new containing block for any position:fixed
   descendant — and .mobile-nav-disclosure > .mobile-nav below is exactly
   that, nested inside .nav__right. With the filter on .nav directly, the
   "full-screen" mobile-nav overlay resolved inset:0 against .nav's own
   ~60px box instead of the viewport. Keeping the blur on a pseudo-element
   gives the same visual header effect without .nav itself acquiring a
   containing block, so .mobile-nav's position:fixed resolves against the
   viewport like it's supposed to. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(8px);
  transition: background-color 0.25s var(--ease-out);
}
.nav.is-condensed {
  padding-block: var(--space-1);
  border-color: var(--color-border);
}
.nav.is-condensed::before {
  background: var(--color-bg);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-md);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-fg);
  text-decoration: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--color-fg);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--color-accent);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav__theme-toggle {
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-fg);
}
.nav__theme-toggle:hover {
  border-color: var(--color-fg);
}
/* Mobile nav trigger — a native <summary>, so opening/closing the panel
   works with JS disabled (FR-3.6/AR-3.2). main.js enhances it with an
   injected close button, Escape-to-close, backdrop-click and a focus trap;
   none of that is required for the base open/close to function. */
.mobile-nav-disclosure {
  display: none;
}
/* Shared 44px icon-button look for both the <summary> trigger and the
   real <button class="nav__menu-btn"> that main.js injects as the close
   control (JS previously left that button entirely unstyled — matching
   only "summary.nav__menu-btn" — so it fell back to the browser's raw
   default button chrome: outset border, wrong size, mismatched color). */
.nav__menu-btn {
  display: inline-flex;
  list-style: none;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-fg);
}
summary.nav__menu-btn {
  /* Hidden above the mobile breakpoint (re-shown in the media query
     below); the injected <button> close control doesn't need this since
     it only ever exists inside the already mobile-only overlay. */
  display: none;
  /* An un-positioned element with no z-index still stacks *below* a
     positioned descendant that has one (.mobile-nav, z-index:100), even
     inside a parent with a higher z-index of its own — z-index only
     orders siblings that are each positioned. Give the summary its own
     explicit stacking order so it stays visible/tappable above the open
     overlay (that's how the panel closes without JS). */
  position: relative;
  z-index: 102;
}
summary.nav__menu-btn::-webkit-details-marker {
  display: none;
}
summary.nav__menu-btn::marker {
  content: "";
}
.mobile-nav-disclosure[open] > summary.nav__menu-btn {
  background: var(--color-bg);
  border-color: var(--color-fg);
}
/* With the panel open there were two competing controls on screen: this
   burger (still in the header) and the overlay's own ✕. Collapse to the
   single ✕ — the conventional pattern. Guarded on html.js because the ✕
   is injected by main.js; with JS off the burger is the only way to close
   the panel, so it must stay visible there (AR-3.2). */
html.js .mobile-nav-disclosure[open] > summary.nav__menu-btn {
  display: none;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .mobile-nav-disclosure {
    display: block;
  }
  summary.nav__menu-btn {
    display: inline-flex;
  }
}

/* Below ~560px the header can't hold logo + theme toggle + a text CTA +
   the burger on one row without crowding (they previously wrapped onto a
   second line, doubling header height). The CTA is the item to drop: it
   is already the last entry in the open menu, so nothing becomes
   unreachable — the standard pattern of logo-left / burger-right. */
@media (max-width: 560px) {
  .nav__right > .btn {
    display: none;
  }
  .nav > .container {
    gap: var(--space-2);
  }
}

/* Mobile nav overlay (FR-3.6) — shown/hidden by the parent <details>'s
   native open state; no JS required. */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  /* Matches the header's own inline padding so the panel's logo/✕ row
     lands exactly where the header's logo/burger row was — the panel
     reads as the header expanding, not as a separate misaligned layer. */
  padding: var(--space-3) var(--container-pad);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}
.mobile-nav__links {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__links a {
  font-family: var(--font-display);
  /* Was --text-2xl (39px), which made nine items overflow the panel and
     read as a poster rather than a menu. --text-lg keeps the display face
     confident while fitting the full list without scrolling on a phone. */
  font-size: var(--text-lg);
  text-transform: uppercase;
  color: var(--color-fg);
  /* Full-row hit target (≥44px) rather than just the glyph bounds. */
  display: block;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__links a:hover,
.mobile-nav__links a[aria-current="page"] {
  color: var(--color-accent);
}
/* The trailing CTA is an action, not a destination — give it the button
   treatment so it reads as the primary thing to do in the panel. */
.mobile-nav__links li:last-child a {
  margin-top: var(--space-2);
  border-bottom: 0;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  text-align: center;
  border-radius: var(--radius-sm);
}
body.no-scroll {
  overflow: hidden;
}

/* Hero */
.hero {
  display: grid;
  gap: var(--space-6);
  padding-block: var(--space-12);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gray-500);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}
.hero h1 {
  max-width: 16ch;
}
.hero__lede {
  font-size: var(--text-md);
  color: var(--color-gray-600);
  max-width: 52ch;
  margin-top: var(--space-3);
}
.hero__ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}
.hero__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media (max-width: 700px) {
  /* Text-and-photo pairs (hero, testimonial+photo) need more room to
     breathe than the generic .grid--2 content grid (which only collapses
     at 560px) — stack a beat earlier so the photo doesn't get squeezed thin. */
  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Interior page header */
.page-header {
  padding-block: var(--space-10);
}
.page-header h1 {
  max-width: 22ch;
}
.page-header__lede {
  font-size: var(--text-md);
  color: var(--color-gray-600);
  max-width: 60ch;
  margin-top: var(--space-3);
}

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--space-4);
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .grid--2,
  .grid--3,
  .grid--5 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Cards */
.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  background: var(--color-bg);
  transition:
    border-color 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-card:hover {
  border-color: var(--color-fg);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-fg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-1);
}
.service-card h3 {
  text-transform: none;
}
.service-card p {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  flex: 1;
}
.service-card .btn {
  align-self: flex-start;
  margin-top: var(--space-1);
}

/* Stat block (FR-3.2: counts up via JS, static final value in HTML for no-JS) */
.stats {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-6);
}
.stat {
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-fg);
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-top: var(--space-1);
}

/* Testimonial */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  height: 100%;
}
.testimonial__by {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}
.testimonial-card--placeholder {
  border-style: dashed;
  text-align: center;
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

/* Accordion (FAQ) — native <details>, content always in the DOM (FR-3.4/AR-3.2) */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding-block: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-md);
  text-transform: none;
}
.accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-item summary::after {
  content: "+";
  font-size: var(--text-lg);
  color: var(--color-accent);
  flex: none;
  transition: transform 0.2s var(--ease-out);
}
.accordion-item[open] summary::after {
  transform: rotate(45deg);
}
.accordion-item__answer {
  padding-bottom: var(--space-3);
  color: var(--color-gray-600);
  max-width: 68ch;
}

/* Pricing */
.price-card {
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.price-card--featured {
  border-color: var(--color-fg);
  border-width: 2px;
}
.price-card__figure {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-block: var(--space-2);
}
.price-card__figure span {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  text-transform: none;
  font-family: var(--font-body);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0;
  text-align: left;
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.price-card li::before {
  content: "— ";
  color: var(--color-accent);
}

/* Pricing comparison table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.pricing-table th {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gray-500);
  font-weight: 600;
}
.pricing-table td:first-child,
.pricing-table th:first-child {
  padding-left: 0;
}
.pricing-table td:last-child,
.pricing-table th:last-child {
  padding-right: 0;
}
.pricing-table__service {
  font-weight: 600;
  color: var(--color-fg);
}
.pricing-table__price {
  font-family: var(--font-display);
  white-space: nowrap;
}
.pricing-table__wrap {
  overflow-x: auto;
}
@media (max-width: 700px) {
  .pricing-table {
    font-size: var(--text-xs);
  }
  .pricing-table th,
  .pricing-table td {
    padding: var(--space-2);
  }
}

/* Forms (Contact) */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-3);
}
@media (max-width: 560px) {
  .form__row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gray-600);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-fg);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  min-height: 44px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-accent);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-2);
}
.field--checkbox input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  min-height: 0;
}
.field--checkbox label {
  text-transform: none;
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}
.field--checkbox a {
  color: var(--color-accent);
}
.field--error input,
.field--error textarea {
  border-color: var(--color-accent);
}
.field__error {
  font-size: var(--text-xs);
  color: var(--color-accent);
}
.form__status {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-gray-600);
}
.form__status--error {
  border-color: var(--color-accent);
  color: var(--color-fg);
}
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Badge / tag */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-1) var(--space-2);
  border: 1.5px solid var(--color-fg);
  border-radius: var(--radius-sm);
}

/* Gallery + lightbox (FR-3.3) */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}
@media (max-width: 700px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gallery__item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.lightbox {
  border: none;
  padding: 0;
  background: color-mix(in oklab, var(--color-ink) 92%, transparent);
  max-width: 92vw;
  max-height: 92vh;
  width: min(1000px, 92vw);
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.lightbox__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  margin: auto;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: var(--color-paper);
  color: var(--color-ink);
  border: none;
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close {
  top: var(--space-2);
  right: var(--space-2);
}
.lightbox__nav--prev {
  left: var(--space-2);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--next {
  right: var(--space-2);
  top: 50%;
  transform: translateY(-50%);
}

/* Photo carousel — a horizontal scroll-snap strip. Works with JS disabled
   via native scrolling (touch swipe, trackpad, shift+wheel, keyboard on a
   focused item); main.js only adds optional prev/next buttons on top. */
.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--space-1);
  padding-bottom: var(--space-2);
  /* Keep the native scrollbar for no-JS discoverability rather than
     hiding it — this is the only way to scroll without the JS-added
     buttons, so it shouldn't be invisible. */
}
.carousel__item {
  flex: 0 0 auto;
  width: min(320px, 78vw);
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - var(--space-2)));
  background: var(--color-paper);
  color: var(--color-ink);
  border: none;
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
/* Only shown once main.js confirms the track actually overflows and adds
   this class — no dead-looking buttons on a strip that already fits. */
.carousel.js-has-nav .carousel__nav {
  display: flex;
}
.carousel__nav--prev {
  left: var(--space-2);
}
.carousel__nav--next {
  right: var(--space-2);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-8);
  background: var(--color-ink);
  color: var(--color-paper);
}
.site-footer a {
  color: var(--color-paper);
}
.site-footer a:hover {
  color: var(--color-accent);
}
.site-footer .eyebrow {
  color: var(--color-gray-400);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-6);
}
@media (max-width: 800px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 500px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--text-sm);
}
.site-footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-ink-dim);
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Placeholder imagery — subtle stripes + monospace explainer, swapped for real photos at launch */
.ph {
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    var(--color-gray-200),
    var(--color-gray-200) 10px,
    var(--color-gray-100) 10px,
    var(--color-gray-100) 20px
  );
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
  font-family: ui-monospace, Menlo, monospace;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-2);
}

/* Scroll reveal (FR-3.1) — progressive enhancement only; see AR-3.2 */
.reveal {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.6s var(--ease-out),
      transform 0.6s var(--ease-out);
  }
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
