/* The website around the guide.
 *
 * Warm paper, a dotted grid, one blue, a serif for anything that speaks
 * and a sans for everything that explains. Deliberately one look, light
 * only: these pages are a shop window, not the thing itself — the guide
 * at /app has its own palette and follows the phone's dark mode. */

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/site/fonts/instrument-serif.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/site/fonts/instrument-serif-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/site/fonts/dm-sans.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
  src: url('/site/fonts/dm-sans-italic.woff2') format('woff2');
}

:root {
  --paper: #f6f3ec;
  --paper-2: #fffdf8;
  --ink: #17160f;
  --ink-2: #5f5b52;
  --ink-3: #736e66;
  --line: rgba(23, 22, 15, 0.12);
  --line-strong: rgba(23, 22, 15, 0.22);
  --blue: #2b6ef2;
  --blue-deep: #1f57cc;
  --blue-tint: #e7eefe;
  --serif: 'Instrument Serif', 'Iowan Old Style', 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --header: 68px;
  --shadow: 0 1px 2px rgba(23, 22, 15, 0.05), 0 14px 36px -14px rgba(23, 22, 15, 0.22);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
}
html.curtain-on,
html.menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--paper);
  background-image: radial-gradient(circle, rgba(23, 22, 15, 0.16) 1px, transparent 1.4px);
  background-size: 22px 22px;
  color: var(--ink);
  font: 400 17px/1.55 var(--sans);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: min(var(--wrap), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ------------------------------------------------------------------ type */

.kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

h1 {
  margin: 0 0 22px;
  font: 400 clamp(40px, 5.6vw, 68px) / 1.04 var(--serif);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lede {
  margin: 0 0 28px;
  max-width: 58ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.pill {
  display: inline-block;
  padding: 0 0.32em;
  border: 2px solid var(--ink);
  border-radius: 999px;
  line-height: 1.12;
}

.arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
a:hover .arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font: 600 16px/1.2 var(--sans);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.15s var(--ease),
    background 0.15s,
    box-shadow 0.15s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(43, 110, 242, 0.7);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-sm {
  padding: 9px 16px;
  font-size: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.chip b {
  font-weight: 600;
  color: var(--ink-3);
}
.chip:hover,
.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.chip.is-active b,
.chip:hover b {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  height: var(--header);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: -10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle:hover {
  background: rgba(23, 22, 15, 0.06);
}
.burger {
  display: grid;
  gap: 4px;
  width: 20px;
}
.burger i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s;
}
.menu-toggle[aria-expanded='true'] .burger i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] .burger i:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded='true'] .burger i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.brand .mark {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.header-nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.header-nav a:not(.btn):hover {
  color: var(--blue);
}
@media (max-width: 719px) {
  .header-nav a:not(.btn) {
    display: none;
  }
}
@media (max-width: 420px) {
  .header-row {
    gap: 10px;
  }
  .brand {
    font-size: 17px;
  }
  .header-nav .btn-sm {
    padding: 8px 13px;
    font-size: 13px;
  }
}

/* The menu: a panel that drops over the page, like a folded map opening. */
.menu {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: calc(var(--header) + 16px) 0 30px;
  border-radius: 0 0 30px 30px;
  background: #fff;
  box-shadow: 0 40px 80px -30px rgba(23, 22, 15, 0.4);
  animation: menu-in 0.4s var(--ease);
}
@keyframes menu-in {
  from {
    transform: translateY(-16px);
    opacity: 0;
  }
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(23, 22, 15, 0.28);
  animation: fade-in 0.3s;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
}
.menu-links {
  display: grid;
  gap: 4px;
}
.menu-links a {
  padding: 6px 0;
  color: var(--ink);
  font: 400 clamp(30px, 4vw, 40px) / 1.15 var(--serif);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.menu-links a:hover {
  color: var(--blue);
}
.menu-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: var(--ink-2);
  font-size: 14px;
}

/* --------------------------------------------------------------- curtain */

.curtain {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background-color: var(--blue);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.24) 1px, transparent 1.4px);
  background-size: 22px 22px;
  color: #fff;
  cursor: pointer;
}
.curtain.is-leaving {
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}
.no-curtain .curtain {
  display: none;
}
.curtain-inner {
  padding: 0 var(--gutter);
  text-align: center;
}
.curtain-intro {
  margin: 0 0 12px;
  font: italic 400 clamp(22px, 3vw, 32px) / 1 var(--serif);
  opacity: 0.85;
  animation: rise 0.8s var(--ease) both;
}
.curtain-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12em;
  margin: 0;
  font: 400 clamp(48px, 11vw, 132px) / 1 var(--serif);
  letter-spacing: -0.02em;
  animation: rise 0.9s 0.15s var(--ease) both;
}
.curtain-name .mark {
  width: 0.68em;
  height: 0.68em;
  animation: drop 0.9s 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.25) both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}
@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(-0.5em);
  }
}

/* ------------------------------------------------------------------ hero */

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 24px clamp(32px, 6vw, 96px);
  align-items: center;
  min-height: calc(100svh - var(--header));
  padding-block: 20px 28px;
}
.hero-copy {
  max-width: 640px;
}
.hero h1 {
  font-size: clamp(42px, 5.2vw, 70px);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(23, 22, 15, 0.05), 0 22px 44px -16px rgba(23, 22, 15, 0.3);
}
.cta img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}
.cta strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.cta small {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
}
.cta .arrow {
  margin-left: 6px;
  font-size: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.qr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.3;
}
.qr-code {
  width: 54px;
  height: 54px;
  flex: none;
}
@media (max-width: 899px) {
  .qr {
    display: none;
  }
}

.hero-phone {
  display: grid;
  justify-items: center;
}
.phone {
  position: relative;
  width: 300px;
  height: 620px;
  padding: 10px;
  border-radius: 46px;
  background: #0f0f10;
  box-shadow:
    inset 0 0 0 2px #2c2c2e,
    0 40px 70px -28px rgba(23, 22, 15, 0.55);
}
.phone-island {
  position: absolute;
  top: 21px;
  left: 50%;
  z-index: 2;
  width: 90px;
  height: 26px;
  border-radius: 999px;
  background: #0f0f10;
  transform: translateX(-50%);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 37px;
  background: #e9e6df;
}
/* The still sits over the frame until the guide inside it is drawn, then
   fades to reveal it. */
.phone-still {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 0.6s;
}
.phone.is-live .phone-still {
  opacity: 0;
}
.phone-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 836px;
  border: 0;
  transform: scale(calc(280 / 390));
  transform-origin: 0 0;
  background: #e9e6df;
}

.hero-try {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 30px;
}
.hero-try-label {
  font: italic 400 19px/1 var(--serif);
  color: var(--ink-2);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.facts {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 8px 0 0;
  padding: 11px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink-2);
  font-size: 14px;
  list-style: none;
  text-align: center;
}
.facts li {
  display: inline;
}
.facts li + li::before {
  content: '•';
  margin: 0 16px;
  color: var(--ink-3);
}
.facts b {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 899px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    padding-top: 28px;
    gap: 40px;
  }
  .hero-copy {
    order: -1;
  }
  .phone {
    width: 260px;
    height: 540px;
    border-radius: 42px;
  }
  .phone-screen {
    border-radius: 33px;
  }
  .facts {
    border-radius: 24px;
    padding: 12px 20px;
    line-height: 1.7;
  }
  .facts li + li::before {
    margin: 0 10px;
  }
}
@media (max-width: 480px) {
  .facts li {
    display: block;
  }
  .facts li + li::before {
    content: none;
  }
}

/* ------------------------------------------------------------- the guide */

.page-head {
  max-width: 820px;
  padding: 56px 0 28px;
}
.page-head h1 {
  font-size: clamp(40px, 6vw, 72px);
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chapter {
  padding: 36px 0 44px;
}
.chapter + .chapter {
  border-top: 1px solid var(--line);
}
.chapter-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.chapter-head h2 {
  margin: 0 0 8px;
  font: 400 clamp(30px, 3.6vw, 44px) / 1.1 var(--serif);
  letter-spacing: -0.015em;
}
.chapter-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-2);
  text-wrap: pretty;
}
.count {
  flex: none;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(23, 22, 15, 0.04);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
/* The photo is pinned inside a fixed 4:3 box: a portrait picture would
   otherwise stretch the box to its own height and the card with it. */
.card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--blue-tint);
}
.card-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 16px 18px 20px;
}
.card-kind {
  margin: 0 0 6px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card h3 {
  margin: 0 0 8px;
  font: 400 26px/1.15 var(--serif);
  letter-spacing: -0.01em;
}
.card-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}

/* ---------------------------------------------------------------- a place */

.place {
  max-width: 820px;
  padding: 36px 0 64px;
}
.crumbs {
  margin-bottom: 28px;
  color: var(--ink-3);
  font-size: 14px;
}
.crumbs a {
  color: var(--ink-2);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--blue);
}
.crumbs span {
  margin: 0 6px;
}
.place-head h1 {
  font-size: clamp(40px, 6vw, 72px);
}
.place-hero {
  margin: 8px 0 24px;
}
.place-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
  background: var(--blue-tint);
}
figcaption {
  margin-top: 8px;
  color: var(--ink-3);
  font-size: 12px;
}
figcaption a {
  color: inherit;
}

.player {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 16px;
  margin: 0 0 36px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.play {
  display: grid;
  place-items: center;
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s var(--ease);
}
.play:hover {
  background: var(--blue-deep);
  transform: scale(1.04);
}
.play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.play .ico-pause,
.is-playing .play .ico-play {
  display: none;
}
.is-playing .play .ico-pause {
  display: block;
}
.player-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.player-time {
  color: var(--ink-2);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.player-bar {
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--blue-tint);
  cursor: pointer;
}
.player-fill {
  width: 0;
  height: 100%;
  background: var(--blue);
}

.story p {
  max-width: 68ch;
  margin: 0 0 1.2em;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.62;
  text-wrap: pretty;
}

.stand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  margin: 40px 0;
  padding: 24px 28px;
  border-radius: 24px;
  background: var(--blue-tint);
}
.stand strong {
  font: 400 26px/1.2 var(--serif);
}
.stand p {
  max-width: 46ch;
  margin: 6px 0 0;
  color: var(--ink-2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin: 32px 0;
}
.gallery figure {
  margin: 0;
}
.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: var(--blue-tint);
}

.place-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.place-nav a {
  color: var(--ink);
  font: 400 22px/1.2 var(--serif);
  text-decoration: none;
}
.place-nav a:hover {
  color: var(--blue);
}
.place-nav small {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-3);
  font: 500 12px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.place-nav .next {
  text-align: right;
}

/* --------------------------------------------------- about, legal, reviews */

.prose {
  max-width: 720px;
  padding: 56px 0 64px;
}
.prose h1 {
  font-size: clamp(38px, 5.5vw, 64px);
}
.prose h2 {
  margin: 40px 0 10px;
  font: 400 clamp(26px, 3vw, 32px) / 1.2 var(--serif);
  letter-spacing: -0.01em;
}
.prose p,
.prose li {
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}
.prose p {
  margin: 0 0 1em;
}
.prose ul {
  padding-left: 22px;
}
.prose li {
  margin-bottom: 0.6em;
}
.prose .lede {
  font-size: clamp(20px, 2vw, 23px);
  color: var(--ink);
}
.prose .meta {
  margin: -8px 0 28px;
  color: var(--ink-3);
  font-size: 14px;
}
.prose code {
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(23, 22, 15, 0.07);
  font-size: 0.9em;
}
.prose-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding-bottom: 64px;
}
.review {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.review p {
  margin: 0 0 14px;
  font: 400 22px/1.3 var(--serif);
}
.review footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-size: 14px;
}
.review .via {
  margin-left: auto;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 600;
}

/* ---------------------------------------------------------------- footer */

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0 32px;
}
.footer-brand p {
  max-width: 34ch;
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 15px;
}
.footer-brand .made {
  color: var(--ink-3);
}
.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}
.site-footer h4 {
  margin: 0 0 4px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer nav a {
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
}
.site-footer nav a:hover {
  color: var(--blue);
}
.footer-line {
  padding: 18px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
}
.footer-line p {
  margin: 0;
}
.footer-line a {
  color: inherit;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ---------------------------------------------------------------- motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
