/* ==========================================================================
   UNACO marketing page.

   Hand-written CSS, no framework and no build step: this page has to load
   instantly on mobile data, has to be editable by anyone, and must never be
   able to break because of a dependency. It is also the URL both app stores
   get as the marketing link, so it is the first thing a reviewer clicks.

   Tokens mirror constants/theme.ts. Keep them in sync by hand — the app and
   this page are separate builds on purpose, so nothing here can take the app
   down and nothing there can take this down.

   Fraunces is self-hosted rather than loaded from Google Fonts: a Danish app
   that promises not to track anyone should not hand every visitor's IP to a
   third party for the sake of a headline typeface.
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  src: url("/fonts/Fraunces_700Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/Fraunces_900Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

:root {
  --primary: #dc5d2a;
  --primary-dark: #be4c1e;
  --primary-light: #fbeadf;
  --accent: #5e7f3e;
  --sage: #9caf88;
  --sage-light: #e6ecdd;
  --mustard: #e3a63c;
  --bg: #fbf8f1;
  --card: #ffffff;
  --ink: #2c2013;
  --ink-muted: #7c6b52;
  --ink-faint: #a99b85;
  --line: #eae0ce;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  --radius: 18px;
  --shadow: 0 6px 16px rgba(74, 46, 26, 0.12);
  --shadow-lg: 0 24px 60px -20px rgba(74, 46, 26, 0.35);
  --page: min(1120px, 100% - 2.5rem);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  /* The decorative glow and the tilted phones bleed past the content column on
     purpose. `clip` rather than `hidden` because `hidden` here would turn the
     root into a scroll container and break `position: sticky` further down the
     line. `hidden` stays on body as the fallback for Safari < 16. */
  overflow-x: clip;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: var(--primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Off-screen via clip rather than a huge negative offset: the old trick
   contributes to the document's scroll width on some engines, and this page
   must not be able to scroll sideways. */
.skip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 10px 0;
  clip-path: inset(50%);
}
.skip:focus {
  clip-path: none;
}

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

/* --- reveal ------------------------------------------------------------- */
/* Visible by default. The script opts in, so no-JS shows a finished page. */
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.has-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* --- buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
  white-space: nowrap;
}
.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(220, 93, 42, 0.85);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--ink-faint);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--primary-dark);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --- header ------------------------------------------------------------- */
.site-header {
  width: var(--page);
  margin-inline: auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mustard), var(--primary));
  box-shadow: inset 0 0 0 2.5px rgba(255, 255, 255, 0.55);
  flex: none;
}
.brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 1.75rem;
  font-size: 0.98rem;
  font-weight: 600;
}
.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
}
.site-nav a:hover {
  color: var(--ink);
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }
  .site-header .btn {
    margin-left: auto;
  }
}

/* --- hero --------------------------------------------------------------- */
.hero {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  /* Stays inside the content column: even with overflow clipping in place, a
     decorative element should not be the reason a page can scroll sideways. */
  inset: -30% 0 auto auto;
  width: min(760px, 85vw);
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(227, 166, 60, 0.4),
    rgba(220, 93, 42, 0.16) 45%,
    transparent 68%
  );
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.9rem, 7.5vw, 5rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
/* Hand-drawn underline under the payoff word. */
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: -0.06em;
  height: 0.12em;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.55;
  transform: rotate(-0.7deg);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-muted);
  max-width: 34ch;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-faint);
}

/* --- hero artwork (an illustration of the app's own card) --------------- */
.hero-art {
  position: relative;
  min-height: 380px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.card-float {
  position: absolute;
  width: min(320px, 82%);
}
.hero-art .card-float:first-child {
  right: 4%;
  top: 8%;
  transform: rotate(2.2deg);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
.card-behind {
  left: 0;
  bottom: 4%;
  transform: rotate(-3.5deg) scale(0.9);
  opacity: 0.96;
  z-index: 1;
  animation: float 7s ease-in-out 0.9s infinite reverse;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

/* Category cover: the diagonal gradient + soft circles + caps label the app
   generates for an activity without a photo. */
.cover {
  position: relative;
  height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 1rem;
  overflow: hidden;
}
.cover::before,
.cover::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.cover::before {
  width: 130px;
  height: 130px;
  top: -46px;
  right: -28px;
}
.cover::after {
  width: 80px;
  height: 80px;
  bottom: -34px;
  left: 12%;
  background: rgba(255, 255, 255, 0.1);
}
.cover-label {
  position: relative;
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
}
.cover.sm {
  height: 3.9em;
  padding: 0.5em 0.65em;
}
.cover.sm .cover-label {
  font-size: 0.58em;
}
.cover.tall {
  height: 8em;
}

.cover-sport {
  background: linear-gradient(135deg, #e8843a, #dc5d2a 55%, #be4c1e);
}
.cover-natur {
  background: linear-gradient(135deg, #7fa15a, #5e7f3e 55%, #4a6630);
}
.cover-mad {
  background: linear-gradient(135deg, #efc06a, #e3a63c 55%, #c98a25);
}
.cover-spil {
  background: linear-gradient(135deg, #a3937a, #8a7a63 55%, #6f6250);
}

.card-body {
  padding: 1rem 1.1rem 1.15rem;
}
.card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.card-meta {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.stack {
  display: flex;
  align-items: center;
}
.avatar,
.stack-more {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--card);
  margin-right: -8px;
}
.av-1 {
  background: #dc5d2a;
}
.av-2 {
  background: #5e7f3e;
}
.av-3 {
  background: #e3a63c;
}
.av-4 {
  background: #8a7a63;
}
.stack-more {
  background: var(--sage-light);
  color: var(--accent);
  margin-right: 0;
  margin-left: 4px;
  border-color: transparent;
}
.stack-lg .avatar,
.stack-lg .stack-more {
  width: 32px;
  height: 32px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.tag-free {
  background: var(--sage-light);
  color: var(--accent);
}
.tag-host {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.blip {
  position: absolute;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.5;
}
.blip-1 {
  width: 14px;
  height: 14px;
  left: 6%;
  top: 6%;
}
.blip-2 {
  width: 9px;
  height: 9px;
  right: 2%;
  bottom: 12%;
  background: var(--mustard);
  opacity: 0.7;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 340px;
    order: -1;
  }
  .lede {
    max-width: 46ch;
  }
}

/* --- manifesto ---------------------------------------------------------- */
.manifest {
  width: var(--page);
  margin: clamp(1rem, 4vw, 2.5rem) auto clamp(3rem, 8vw, 6rem);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.manifest > p:first-child {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.8vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-inline: auto;
}
.manifest em {
  font-style: normal;
  color: var(--accent);
}
.manifest-sub {
  margin-top: 1.5rem;
  color: var(--ink-muted);
  max-width: 56ch;
  margin-inline: auto;
}

/* --- sections ----------------------------------------------------------- */
.section-head {
  max-width: 40ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.section-sub {
  margin-top: 1rem;
  color: var(--ink-muted);
}

.steps {
  width: var(--page);
  margin: 0 auto clamp(3.5rem, 9vw, 7rem);
}
.step-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.25rem;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.9rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mustard), var(--primary));
}
.step-no {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.step h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--ink-muted);
  font-size: 0.99rem;
}

/* --- peek --------------------------------------------------------------- */
.peek {
  width: var(--page);
  margin: 0 auto clamp(3.5rem, 9vw, 7rem);
  display: grid;
  /* minmax(0, …) rather than 1fr: `1fr` refuses to shrink below its content's
     min-content width, which is how the phone mock-up used to widen the whole
     section and push it off a narrow screen. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.peek-text h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 1.1rem;
}
.peek-text > p {
  color: var(--ink-muted);
}
.ticks {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px;
  height: 10px;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* The phones are drawn, not screenshotted, so they scale as a unit: `.phone`
   sets a font-size and everything inside is in `em`. Changing --phone-w and the
   font-size together at a breakpoint resizes the whole mock-up in proportion.
   The earlier version had a fixed 232px width, which grid could not shrink —
   `1fr` means `minmax(auto, 1fr)`, so the column grew to the phones' min-content
   and dragged the text column out with it, past the viewport on a phone. */
.phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  position: relative;
  min-width: 0;
}
.phone {
  width: var(--phone-w, 232px);
  font-size: var(--phone-fs, 16px);
  flex: none;
  background: #241a10;
  border-radius: 2em;
  padding: 0.56em;
  box-shadow: var(--shadow-lg);
}
.phone-a {
  transform: rotate(-4deg);
  z-index: 2;
}
.phone-b {
  transform: rotate(5deg) translate(-1.5em, 1.6em);
  z-index: 1;
}
.phone-screen {
  background: var(--bg);
  border-radius: 1.5em;
  overflow: hidden;
  padding: 0.85em 0.7em;
  height: 25em;
}
.phone-b .phone-screen {
  padding: 0;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.app-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.05em;
}
.app-dot {
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background: var(--primary-light);
}
.chips {
  display: flex;
  gap: 0.3em;
  margin-bottom: 0.7em;
}
.chip {
  font-size: 0.6em;
  font-weight: 700;
  padding: 0.24em 0.55em;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  white-space: nowrap;
}
.chip-on {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.mini {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.75em;
  overflow: hidden;
  margin-bottom: 0.55em;
  box-shadow: 0 2px 6px rgba(74, 46, 26, 0.06);
}
.mini-body {
  padding: 0.5em 0.6em 0.6em;
}
.mini-body h4 {
  margin: 0;
  font-size: 0.78em;
  font-weight: 700;
}
.mini-body p {
  font-size: 0.66em;
  color: var(--ink-muted);
  margin-top: 0.15em;
}

.detail {
  padding: 0.85em 0.85em 1em;
}
.detail h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1em;
}
.detail-meta {
  font-size: 0.7em;
  color: var(--ink-muted);
  margin-top: 0.25em;
}
.detail-row {
  display: flex;
  gap: 0.35em;
  margin: 0.7em 0;
}
.detail-row .tag {
  font-size: 0.6em;
  padding: 0.2em 0.5em;
}
.fake-btn {
  display: block;
  margin-top: 0.9em;
  text-align: center;
  background: var(--sage-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75em;
  padding: 0.6em;
  border-radius: 999px;
}

/* Two columns get tight before the layout collapses, so the phones shrink
   first. Order matters: the 880 rule restores the full size, because a single
   column has the whole page width to play with again. */
@media (max-width: 1024px) {
  .phones {
    --phone-w: 198px;
    --phone-fs: 13.5px;
  }
}
@media (max-width: 880px) {
  .peek {
    grid-template-columns: minmax(0, 1fr);
  }
  .phones {
    --phone-w: 232px;
    --phone-fs: 16px;
  }
}
@media (max-width: 520px) {
  .phones {
    --phone-w: 150px;
    --phone-fs: 10.5px;
  }
}

/* --- trust -------------------------------------------------------------- */
.trust {
  background: var(--sage-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  margin-bottom: clamp(3.5rem, 9vw, 7rem);
}
.trust-inner {
  width: var(--page);
  margin-inline: auto;
}
.trust-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 1.1rem;
}
.trust-grid li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(94, 127, 62, 0.16);
  border-radius: 14px;
  padding: 1.4rem 1.3rem;
}
.trust-grid h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.trust-grid p {
  font-size: 0.96rem;
  color: var(--ink-muted);
}

/* --- faq ---------------------------------------------------------------- */
.faq {
  width: min(760px, 100% - 2.5rem);
  margin: 0 auto clamp(3.5rem, 9vw, 7rem);
}
.faq .section-head {
  margin-inline: auto;
  text-align: center;
  max-width: 30ch;
}
.faq-list {
  display: grid;
  gap: 0.7rem;
}
details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 1.25rem;
  overflow: hidden;
}
details[open] {
  border-color: var(--sage);
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.03rem;
  padding: 1.1rem 2rem 1.1rem 0;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 1.45rem;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--primary);
  border-bottom: 2.5px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
details[open] summary::after {
  transform: rotate(-135deg);
}
details p {
  color: var(--ink-muted);
  padding-bottom: 1.3rem;
  max-width: 60ch;
}

/* --- closing cta -------------------------------------------------------- */
.cta {
  width: var(--page);
  margin: 0 auto clamp(3rem, 8vw, 5rem);
  background: linear-gradient(135deg, #e8843a, var(--primary) 55%, #be4c1e);
  border-radius: 26px;
  padding: clamp(2.75rem, 7vw, 4.75rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.cta::before {
  width: 260px;
  height: 260px;
  top: -110px;
  right: -60px;
}
.cta::after {
  width: 170px;
  height: 170px;
  bottom: -90px;
  left: 6%;
  background: rgba(255, 255, 255, 0.09);
}
.cta h2 {
  position: relative;
  font-size: clamp(1.75rem, 4.2vw, 2.85rem);
  margin-bottom: 2rem;
}
.cta .btn {
  position: relative;
}
.cta-note {
  position: relative;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --- footer ------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4rem) 0 2.5rem;
}
.footer-inner {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-brand {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.site-footer nav {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  font-size: 0.95rem;
}
.site-footer nav h2 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.35rem;
}
.site-footer nav a {
  color: var(--ink-muted);
  text-decoration: none;
}
.site-footer nav a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
.footer-fine {
  color: var(--ink-faint);
  font-size: 0.85rem;
}
.copyright {
  width: var(--page);
  margin: 2.5rem auto 0;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
