/* ==========================================================================
   Cannon Catalyst — cannoncatalyst.com
   Ink · Paper · Ember

   Static stylesheet, hand-compiled from the original Tailwind v4 source.
   No build step, no dependencies. Edit directly.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand palette */
  --ink: #0c0d0e;
  --paper: #edeae3;
  --ember: #d2621c;
  --ember-deep: #ae4e14;

  /* Ink at alpha (light sections) */
  --ink-80: rgba(12, 13, 14, 0.8);
  --ink-70: rgba(12, 13, 14, 0.7);
  --ink-60: rgba(12, 13, 14, 0.6);
  --ink-30: rgba(12, 13, 14, 0.3);
  --ink-20: rgba(12, 13, 14, 0.2);
  --ink-15: rgba(12, 13, 14, 0.15);
  --rule: rgba(12, 13, 14, 0.16);

  /* Paper at alpha (dark sections) */
  --paper-80: rgba(237, 234, 227, 0.8);
  --paper-70: rgba(237, 234, 227, 0.7);
  --paper-60: rgba(237, 234, 227, 0.6);
  --paper-50: rgba(237, 234, 227, 0.5);
  --paper-40: rgba(237, 234, 227, 0.4);
  --paper-30: rgba(237, 234, 227, 0.3);
  --paper-25: rgba(237, 234, 227, 0.25);
  --paper-15: rgba(237, 234, 227, 0.15);
  --paper-10: rgba(237, 234, 227, 0.1);

  /* Type */
  --font-display: "Archivo", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --shell: 80rem;   /* max-w-7xl */
  --pad: 1.5rem;    /* px-6 */
}

@media (min-width: 1024px) {
  :root { --pad: 2.5rem; } /* lg:px-10 */
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; border: 0 solid var(--rule); }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Offset anchor targets so the sticky header doesn't cover section tops */
  scroll-padding-top: 4rem;
}

body {
  min-height: 100vh;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

button { font: inherit; color: inherit; background: none; cursor: pointer; }

::selection { background: var(--ember); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

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

/* --------------------------------------------------------------------------
   3. Shared utilities
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Uppercase mono micro-label — used throughout for eyebrows and meta */
.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}

/* Blueprint grid — 48px drafting rule, ink at 6% */
.grid-blueprint {
  background-image:
    linear-gradient(to right,  rgba(12, 13, 14, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 13, 14, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ember-underline {
  color: var(--ember);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 0.125rem;
}

.arrow {
  width: 1rem;
  height: 1rem;
  flex: none;
  transition: transform 0.2s ease;
}
.arrow-sm { width: 0.875rem; height: 0.875rem; }

/* Every group-hover arrow nudge in the original */
.group:hover .arrow { transform: translate(0.125rem, -0.125rem); }

/* Section head: "§ 01 · Services" */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow .num { color: var(--ember); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
.btn-solid:hover { background-color: var(--ember); }

.btn-ember {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background-color: var(--ember);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
.btn-ember:hover { background-color: var(--ember-deep); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--rule);
  background-color: rgba(237, 234, 227, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .bar {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo { height: 1.75rem; width: auto; }

.site-nav { display: none; align-items: center; gap: 2rem; color: var(--ink); }
.site-nav a { transition: color 0.2s ease; }
.site-nav a:hover { color: var(--ember); }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--ink);
  padding: 0.5rem 1rem;
  color: var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header-cta:hover { background-color: var(--ink); color: var(--paper); }

/* Hamburger — the only control in the header below 768px */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  margin-right: -0.5rem; /* optically align to the shell edge */
  flex: none;
  border: 1px solid transparent;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.nav-toggle:hover { border-color: var(--ink-20); }
.nav-toggle svg { height: 1.375rem; width: 1.375rem; }

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  border-top: 1px solid var(--rule);
  background-color: var(--paper);
  animation: menu-in 0.18s ease-out;
}
.mobile-menu[hidden] { display: none; }

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem 1.25rem;
}
.mobile-menu nav a {
  padding-block: 0.875rem;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-15);
}
.mobile-menu nav a:last-child { border-bottom: 0; }

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.875rem 1.25rem !important;
  background-color: var(--ink);
  color: var(--paper) !important;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
.mobile-cta:hover { background-color: var(--ember); }

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero .backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.hero .inner {
  position: relative;
  padding-block: 5rem 6rem;
}

.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow .dot {
  height: 0.5rem;
  width: 0.5rem;
  flex: none;
  border-radius: 9999px;
  background-color: var(--ember);
}
.hero-eyebrow .tail {
  margin-left: 0.5rem;
  height: 1px;
  flex: 1;
  max-width: 8rem;
  background-color: var(--ink-20);
}

.hero h1 {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 13vw;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 .muted { color: var(--ink-30); }
.hero h1 .catalyst { font-style: italic; color: var(--ember); }

.hero-cols {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

.hero-lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-80);
}

.hero-aside {
  border-left: 2px solid var(--ember);
  padding-left: 1.25rem;
}
.hero-aside .k { color: var(--ink-60); }
.hero-aside .v {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--ink-15);
  padding-top: 2.5rem;
}
.hero-stats .n {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.hero-stats .l { margin-top: 0.25rem; color: var(--ink-60); }

@media (min-width: 640px) {
  .hero h1 { font-size: 4.5rem; }
  .hero-lede { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 6rem; }
  .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-stats .n { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .hero .inner { padding-block: 7rem 8rem; }
  .hero h1 { font-size: 8.5rem; }
  .hero-cols { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .hero-lede { grid-column: 1 / span 6; }
  .hero-aside-wrap { grid-column: 8 / span 5; }
}

/* --------------------------------------------------------------------------
   7. Services  (dark)
   -------------------------------------------------------------------------- */

.services {
  border-bottom: 1px solid var(--rule);
  background-color: var(--ink);
  color: var(--paper);
}

.services .inner { padding-block: 6rem; }

.services-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--paper-15);
  padding-bottom: 1.5rem;
}
.services-head .eyebrow-right { display: none; color: var(--paper-40); }
.services-head .section-eyebrow .name { color: var(--paper-70); }

.services h2 {
  margin-top: 2.5rem;
  max-width: 56rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.services h2 .muted { color: var(--paper-50); }
.services h2 .accent { color: var(--ember); }

/* 1px gaps reveal the paper/10 track beneath — the original's `gap-px` trick */
.services-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  background-color: var(--paper-10);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--ink);
  padding: 2rem;
  transition: background-color 0.2s ease;
}
.service-card:hover { background-color: #16181a; }

.service-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card .id { color: var(--ember); }
.service-card .top .arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--paper-30);
  transition: transform 0.2s ease, color 0.2s ease;
}
.service-card:hover .top .arrow { color: var(--ember); }

.service-card h3 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--paper);
}
.service-card p {
  margin-top: 1rem;
  color: var(--paper-70);
  line-height: 1.7;
}

.service-outputs {
  margin-top: 2rem;
  border-top: 1px solid var(--paper-10);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.service-outputs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper-60);
}
.service-outputs li::before {
  content: "";
  height: 1px;
  width: 1rem;
  flex: none;
  background-color: var(--ember);
}

@media (min-width: 768px) {
  .services-head .eyebrow-right { display: inline; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services h2 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .services .inner { padding-block: 8rem; }
  .services h2 { font-size: 3.75rem; }
  .service-card { padding: 2.5rem; }
}

/* --------------------------------------------------------------------------
   8. Approach
   -------------------------------------------------------------------------- */

.approach { border-bottom: 1px solid var(--rule); }

.approach .inner {
  display: grid;
  gap: 4rem;
  padding-block: 6rem;
}

.approach h2 {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.approach .lede {
  margin-top: 1.5rem;
  max-width: 28rem;
  color: var(--ink-70);
  line-height: 1.7;
}
.approach .section-eyebrow .name { color: var(--ink-70); }

.approach .mark {
  display: none;
  margin-top: 3rem;
  height: 10rem;
  width: 10rem;
  opacity: 0.9;
}

.principles {
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
}
.principles li {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding-block: 2rem;
  border-top: 1px solid var(--ink-15);
}
.principles li:first-child { border-top: 0; }
.principles .k { grid-column: span 2; color: var(--ember); }
.principles .body { grid-column: span 10; }
.principles h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.principles p {
  margin-top: 0.75rem;
  max-width: 42rem;
  color: var(--ink-70);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .principles li { padding-block: 2.5rem; }
  .principles .k { grid-column: span 1; }
  .principles .body { grid-column: span 11; }
  .principles h3 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .approach .inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
    padding-block: 8rem;
  }
  .approach .col-left { grid-column: span 4; }
  .approach .col-right { grid-column: span 8; }
  .approach .sticky-wrap { position: sticky; top: 6rem; }
  .approach .mark { display: block; }
  .approach h2 { font-size: 3rem; }
}

/* --------------------------------------------------------------------------
   9. Compass / YouTube  (dark)
   -------------------------------------------------------------------------- */

.compass {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background-color: var(--ink);
  color: var(--paper);
}

.compass .backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.compass .inner { position: relative; padding-block: 6rem; }
.compass .section-eyebrow .name { color: var(--paper-70); }

.compass-cols { margin-top: 2.5rem; display: grid; gap: 3.5rem; }

.compass-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ember);
}
.compass-kicker svg { width: 1rem; height: 1rem; flex: none; }

.compass h2 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.compass h2 .accent { font-style: italic; color: var(--ember); }

.compass .lede {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--paper-80);
}

.compass-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.compass-actions .note { color: var(--paper-50); }
.compass-actions .btn-ember svg:first-child { width: 1.25rem; height: 1.25rem; flex: none; }

/* Faux player card */
.player-card { display: block; }

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--paper-15);
  background: linear-gradient(to bottom right, var(--ink), #231c18);
}
.player-frame .backdrop { position: absolute; inset: 0; opacity: 0.3; }

.player-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.player-top { display: flex; align-items: center; justify-content: space-between; }
.player-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--paper-25);
  background-color: rgba(12, 13, 14, 0.4);
  padding: 0.25rem 0.625rem;
  color: var(--paper-80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.player-badge .dot {
  height: 0.375rem;
  width: 0.375rem;
  flex: none;
  border-radius: 9999px;
  background-color: var(--ember);
}
.player-top .ep { color: var(--paper-50); }

.player-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.player-bottom .show { color: var(--ember); }
.player-bottom .title {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--paper);
}

.play-button {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--ember);
  transition: transform 0.2s ease;
}
.play-button svg {
  height: 1.5rem;
  width: 1.5rem;
  transform: translateX(0.125rem);
  color: var(--paper);
}
.player-card:hover .play-button { transform: scale(1.1); }

.player-foot {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--paper-15);
  padding-top: 1rem;
}
.player-foot .left { display: flex; align-items: center; gap: 0.5rem; }
.player-foot .left svg { width: 1rem; height: 1rem; flex: none; color: var(--ember); }
.player-foot .left span { color: var(--paper-70); }
.player-foot .arrow { color: var(--paper-50); transition: transform 0.2s ease, color 0.2s ease; }
.player-card:hover .player-foot .arrow { color: var(--ember); }

@media (min-width: 640px) {
  .compass h2 { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .compass .inner { padding-block: 8rem; }
  .compass-cols { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 2.5rem; }
  .compass .col-left { grid-column: span 7; }
  .compass .col-right { grid-column: span 5; }
  .compass h2 { font-size: 4.5rem; }
}

/* --------------------------------------------------------------------------
   10. Contact
   -------------------------------------------------------------------------- */

.contact { border-bottom: 1px solid var(--rule); }
.contact .inner { padding-block: 6rem; }
.contact .section-eyebrow .name { color: var(--ink-70); }

.contact-cols { display: grid; gap: 3rem; }

.contact h2 {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact .lede {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-70);
}

.contact-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
/* The email CTA carries a real address — keep it legible at small widths */
.contact-actions .btn-solid { text-transform: none; letter-spacing: 0.02em; }

.expect-card {
  border: 1px solid var(--ink-20);
  background-color: var(--paper);
  padding: 2rem;
}
.expect-card .head { color: var(--ink-60); }
.expect-card ol {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.expect-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.expect-card .n { color: var(--ember); }
.expect-card .t {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}
.expect-card .d {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-70);
}

@media (min-width: 640px) {
  .contact h2 { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .contact .inner { padding-block: 8rem; }
  .contact-cols { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .contact .col-left { grid-column: span 7; }
  .contact .col-right { grid-column: span 5; }
  .contact h2 { font-size: 4.5rem; }
}

/* --------------------------------------------------------------------------
   11. Footer  (dark)
   -------------------------------------------------------------------------- */

.site-footer { background-color: var(--ink); color: var(--paper); }
.site-footer .inner { padding-block: 3.5rem; }

.footer-cols { display: grid; gap: 2.5rem; }

/* The lockup is ink-on-transparent; inverting renders it light on the dark
   footer. Keep any replacement logo monochrome or this will shift hue. */
.site-footer .logo { height: 1.75rem; width: auto; filter: invert(1); }

.site-footer .blurb {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--paper-60);
}

.footer-col .head { color: var(--paper-40); }
.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--paper-80);
}
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--ember); }
.footer-col .with-icon { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col .with-icon svg { width: 1rem; height: 1rem; flex: none; }

.footer-base {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--paper-15);
  padding-top: 1.5rem;
  color: var(--paper-40);
}

@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: span 5; }
  .footer-explore { grid-column: span 3; }
  .footer-contact { grid-column: span 4; }
  .footer-base { flex-direction: row; align-items: center; }
}
