/* ==========================================================================
   Chikara — page compositions
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Home hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-block-size: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-950);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  animation: drift 32s var(--ease-in-out) infinite alternate;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 62% at 50% 46%, color-mix(in oklab, var(--green-950) 46%, transparent) 0%, transparent 72%),
    radial-gradient(130% 90% at 50% 40%, transparent 30%, color-mix(in oklab, var(--green-950) 66%, transparent) 100%),
    linear-gradient(to top, var(--green-950) 1%, color-mix(in oklab, var(--green-950) 32%, transparent) 40%);
}

.hero__inner {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(1.75rem, 3.2vw, 2.75rem);
  text-align: center;
  padding-block: calc(var(--header-h) + 2rem) 2rem;
}

.hero__kanji {
  font-family: var(--font-jp);
  font-size: clamp(3.25rem, 8.5vw, 6.5rem);
  line-height: 1;
  color: color-mix(in oklab, var(--cream) 92%, transparent);
  animation: hero-kanji 1.6s var(--ease-out) 0.15s both;
}

@keyframes hero-kanji {
  from { opacity: 0; transform: translateY(1.5rem) scale(0.94); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  color: var(--cream);
}

.hero__sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 66%, transparent);
}

.hero__sub span:not(:last-child)::after {
  content: "·";
  margin-inline-start: 1.5rem;
  opacity: 0.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-block-start: clamp(0.75rem, 2vw, 1.5rem);
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block-end: clamp(1.5rem, 4vh, 2.75rem);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 52%, transparent);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.hero__scroll i {
  display: block;
  inline-size: 1px;
  block-size: 3.25rem;
  background: linear-gradient(to bottom, transparent, currentColor);
  position: relative;
  overflow: hidden;
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  block-size: 40%;
  background: var(--sand);
  animation: scroll-cue 2.4s var(--ease-in-out) infinite;
}

@keyframes scroll-cue {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(250%); }
  100% { transform: translateY(250%); }
}

/* Physical offsets on purpose: the rail sets its own writing-mode, which
   would otherwise remap the logical inset properties. */
.hero__rail {
  position: absolute;
  top: 50%;
  left: clamp(0.75rem, 2vw, 1.75rem);
  transform: translateY(-50%);
  z-index: 1;
  color: color-mix(in oklab, var(--cream) 40%, transparent);
}

@media (max-width: 64rem) {
  .hero__rail { display: none; }
}

/* --------------------------------------------------------------------------
   2. Split feature (image + copy)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* --lead / --trail describe which grid column is wider, not which kind of
   content sits in it, because --reverse can swap the two. */
@media (min-width: 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--lead { grid-template-columns: 1.25fr 1fr; }
  .split--trail { grid-template-columns: 1fr 1.25fr; }
  .split--reverse > :first-child { order: 2; }
}

/* For a short heading beside a long list, centring leaves the heading adrift.
   Pin it to the top and let it travel with the list instead. */
.split--top { align-items: start; }

@media (min-width: 56rem) {
  .split--top > .split__copy {
    position: sticky;
    inset-block-start: calc(var(--header-h) + clamp(2rem, 5vw, 4rem));
  }
}

.split__copy {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.75rem);
  align-content: start;
  max-width: 46ch;
}

.split__media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  align-items: stretch;
}

/* --------------------------------------------------------------------------
   3. Pillars (three-up cards)
   -------------------------------------------------------------------------- */

.pillars {
  display: grid;
  gap: clamp(2rem, 3.5vw, 3rem);
}

@media (min-width: 52rem) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   4. Chapters (sticky media + scrolling copy)
   -------------------------------------------------------------------------- */

.chapters {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

/* The grid item stays full height so the figure inside it has a track to
   travel down; putting position:sticky on the item itself would pin it only
   for the height of the image. */
@media (min-width: 60rem) {
  .chapters { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .chapters__sticky { position: relative; }
  .chapters__sticky > * {
    position: sticky;
    top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
  }
}

.chapters__list {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.chapter {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.chapter__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.8;
  color: var(--rule-strong);
}

.chapter__title {
  font-size: var(--fs-d3);
}

.chapter__media {
  display: none;
}

@media (max-width: 59.99rem) {
  .chapters__sticky { display: none; }
  .chapter__media { display: block; }
}

/* --------------------------------------------------------------------------
   5. Horizontal gallery strip
   -------------------------------------------------------------------------- */

.strip {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
  padding-block-end: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rule-strong) transparent;
}

.strip::-webkit-scrollbar {
  block-size: 3px;
}

.strip::-webkit-scrollbar-thumb {
  background: var(--rule-strong);
}

.strip__item {
  flex: none;
  inline-size: clamp(15rem, 34vw, 27rem);
  scroll-snap-align: center;
}

.strip__item figcaption {
  margin-block-start: 0.85rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   6. Quote
   -------------------------------------------------------------------------- */

.quote {
  display: grid;
  justify-items: center;
  gap: 1.75rem;
  text-align: center;
  max-width: min(100%, 46rem);
  margin-inline: auto;
}

.quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.22;
}

.quote__by {
  font-size: var(--fs-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   7. CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  display: grid;
  place-items: center;
  min-block-size: clamp(24rem, 60svh, 36rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: var(--green-950);
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta-band__bg img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.cta-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--green-950) 68%, transparent);
}

.cta-band__inner {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  color: var(--cream);
  padding-block: clamp(3rem, 8vw, 5rem);
}

/* --------------------------------------------------------------------------
   8. Menu page
   -------------------------------------------------------------------------- */

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.4rem;
  justify-content: center;
  border-block-end: 1px solid var(--rule);
  padding-block-end: 1.5rem;
}

.menu-tab {
  min-block-size: 2.75rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.menu-tab:hover {
  color: var(--fg);
}

.menu-tab[aria-selected="true"] {
  color: var(--fg);
  border-color: var(--rule-strong);
  background: color-mix(in oklab, var(--fg) 6%, transparent);
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel {
  animation: panel-in 0.6s var(--ease-out) both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(0.75rem); }
  to   { opacity: 1; transform: none; }
}

.menu-columns {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

@media (min-width: 56rem) {
  .menu-columns--2 { grid-template-columns: 1fr 1fr; }
}

.menu-group__head {
  display: grid;
  gap: 0.5rem;
  padding-block-end: 1.1rem;
  margin-block-end: 0.5rem;
  border-block-end: 1px solid var(--rule-strong);
}

.menu-group__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: var(--fs-d3);
}

.menu-group__title .jp {
  font-size: 0.9rem;
  color: var(--accent);
}

.menu-group__note {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}

.menu-item {
  display: grid;
  gap: 0.3rem;
  padding-block: 1.05rem;
  border-block-end: 1px solid var(--rule);
}

.menu-item__line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-item__name {
  font-size: 1.0625rem;
  color: var(--fg);
  /* Names come from the POS now, so they can be any length: let long ones
     wrap inside their box instead of shoving the price off the line. */
  min-inline-size: 0;
  max-inline-size: 100%;
  overflow-wrap: break-word;
}

.menu-item__name .jp {
  font-size: 0.8em;
  color: var(--fg-muted);
  margin-inline-start: 0.6rem;
}

.menu-item__leader {
  flex: 1;
  border-block-end: 1px dotted var(--rule-strong);
  transform: translateY(-0.28em);
  min-inline-size: 1.5rem;
}

.menu-item__price {
  /* flex:none keeps the price at its natural width (so "19 / 88" never
     wraps), while the cap stops an absurd price from crushing the name —
     beyond a third of the line it wraps instead. */
  flex: none;
  max-inline-size: 34%;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  color: var(--accent);
  text-align: end;
}

.menu-item__desc {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  max-width: 54ch;
}

.menu-hero-card {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  background: color-mix(in oklab, var(--fg) 4%, transparent);
}

.menu-hero-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
}

.menu-hero-card__price small {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-block-start: 0.75rem;
}

/* --------------------------------------------------------------------------
   9. Gallery page
   -------------------------------------------------------------------------- */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: clamp(0.65rem, 1.4vw, 1.1rem);
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--green-850);
  cursor: zoom-in;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.gallery-item img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: 2.5rem 1rem 0.9rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(to top, color-mix(in oklab, #000 78%, transparent), transparent);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: none;
}

/* Spanning tiles take two rows so their height stays consistent with the
   3:2 tiles that size the auto rows. */
.gallery-item--wide { grid-column: span 2; grid-row: span 2; }
.gallery-item--tall { grid-row: span 2; }

@media (max-width: 40rem) {
  .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
}

.gallery-item.is-hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   10. Events / buyout space
   -------------------------------------------------------------------------- */

.spaces {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
}

.space {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 56rem) {
  .space { grid-template-columns: 1.1fr 1fr; }
  .space:nth-child(even) > :first-child { order: 2; }
}

.space__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding-block: 1.1rem;
  border-block: 1px solid var(--rule);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.space__specs b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg);
}

/* --------------------------------------------------------------------------
   11. Info / contact blocks
   -------------------------------------------------------------------------- */

.info-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 48rem) {
  .info-grid--2 { grid-template-columns: 1fr 1fr; }
  .info-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.info-block {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.info-block h3 {
  font-size: var(--fs-xs);
  font-family: var(--font-sans);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.info-block p,
.info-block address {
  font-style: normal;
  color: var(--fg-muted);
}

.info-block a:hover {
  color: var(--fg);
}

/* The inline size has to be definite. Left to `auto`, the min-block-size
   feeds the aspect ratio backwards and the frame resolves to 672px wide,
   overflowing the page on any narrow screen. */
.map-frame {
  position: relative;
  inline-size: 100%;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--green-850);
}

.map-frame iframe {
  inline-size: 100%;
  block-size: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) hue-rotate(155deg) saturate(0.55) brightness(0.9);
}

/* --------------------------------------------------------------------------
   12. Numbered feature list
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.steps > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-block-start: 1px solid var(--rule);
  counter-increment: step;
}

.steps > li:last-child {
  border-block-end: 1px solid var(--rule);
}

.steps > li::before {
  content: counter(step, decimal-leading-zero);
  font-size: var(--fs-xs);
  letter-spacing: 0.24em;
  color: var(--accent);
  padding-block-start: 0.4em;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: var(--fs-d4);
  margin-block-end: 0.4rem;
}

.steps p {
  color: var(--fg-muted);
  font-size: var(--fs-body);
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   13. Accordion (FAQ)
   -------------------------------------------------------------------------- */

.faq {
  display: grid;
}

.faq details {
  border-block-start: 1px solid var(--rule);
}

.faq details:last-of-type {
  border-block-end: 1px solid var(--rule);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(1.1rem, 2.2vw, 1.6rem);
  font-family: var(--font-display);
  font-size: var(--fs-d4);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}

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

.faq summary:hover {
  color: var(--accent);
}

.faq summary::after {
  content: "";
  inline-size: 0.85rem;
  block-size: 0.85rem;
  flex: none;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat;
  transition: transform 0.4s var(--ease-out);
}

.faq details[open] summary::after {
  transform: rotate(90deg);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat;
}

.faq__body {
  padding-block-end: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--fg-muted);
  max-width: 68ch;
}

.faq__body > * + * {
  margin-block-start: 0.85rem;
}

/* --------------------------------------------------------------------------
   14. Awards / press row
   -------------------------------------------------------------------------- */

.press {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.press__item {
  display: grid;
  gap: 0.55rem;
  padding-inline: 0.5rem;
}

.press__source {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.press__line {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  font-style: italic;
  font-family: var(--font-display);
}

/* --------------------------------------------------------------------------
   15. 404
   -------------------------------------------------------------------------- */

.notfound {
  display: grid;
  place-items: center;
  min-block-size: 100svh;
  text-align: center;
  padding-block: calc(var(--header-h) + 4rem) 4rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.notfound__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.notfound__bg img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.62);
}

/* The veil is heavier than it looks: the photo's bright curtain sits right
   behind the lead line and the search link, and cream text needs 4.5:1
   against the brightest pixel back there, not the average one. */
.notfound__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 45%, color-mix(in oklab, var(--green-950) 90%, transparent), transparent 80%),
    color-mix(in oklab, var(--green-950) 86%, transparent);
}

.notfound__inner {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.notfound__code {
  font-family: var(--font-jp);
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 0.9;
  color: color-mix(in oklab, var(--cream) 88%, transparent);
}

/* --------------------------------------------------------------------------
   16. Booking panel (Resy)
   -------------------------------------------------------------------------- */

.booking {
  align-self: start;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  justify-items: start;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--rule-strong);
  background: color-mix(in oklab, var(--bg-raised) 60%, transparent);
}

/* The booking button is the whole point of the page, so let it fill the
   panel rather than sit as one more inline control. */
.booking > .btn {
  justify-self: stretch;
  justify-content: center;
}

.booking__note {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  max-width: 46ch;
}

.booking__seats {
  display: grid;
  gap: 0.75rem;
}

.booking__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.booking__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Narrow panels cannot fit six pills at their natural width, and a single
   orphaned "6" on a second row looks like a mistake. Share the width. */
@media (max-width: 32rem) {
  .booking__seats { justify-self: stretch; }

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

  .booking__chip {
    min-inline-size: 0;
    padding-inline: 0.25rem;
  }
}

.booking__chip {
  min-inline-size: 3rem;
  padding: 0.7rem 0.5rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    background-color 0.35s var(--ease-out);
}

.booking__chip:hover,
.booking__chip:focus-visible {
  color: var(--fg);
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
}

/* The widget takes a moment to arrive on a cold cache; say so rather than
   letting the button look inert. */
[data-resy][aria-busy="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.booking__brand {
  margin-block-start: 0.25rem;
  padding-block-start: clamp(1rem, 2vw, 1.35rem);
  border-block-start: 1px solid var(--rule);
  justify-self: stretch;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
