/* ============================================
   Voir Visual Agency — voirvisualagency.dk
   Scandinavian minimalism: space, type, intent
   ============================================ */

:root {
  --ink: #080b10;             /* primary text, buttons */
  --navy: #001331;            /* dark section background */
  --slate: #3d4656;           /* secondary body text */
  --grey: #8d96a5;            /* muted text, numbers, metadata */
  --cloud: #dbdee8;           /* hairlines, light text on navy */
  --paper: #fcfcfd;           /* page background */
  --paper-dim: #f5f5f5;       /* media placeholders */
  --accent: #0000ff;          /* brand blue — tiny details only */
  --line: var(--cloud);
  --line-light: rgba(252, 252, 253, 0.18);

  --font-display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;

  --space-section: clamp(6rem, 14vw, 11rem);
  --space-gutter: clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  /* native fallback when Lenis isn't running (reduced motion / CDN blocked) */
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem; /* keep anchored sections clear of the fixed header */
}

html.lenis {
  scroll-behavior: auto; /* let Lenis own the scrolling */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header / nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem var(--space-gutter);
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}

@media (min-width: 760px) {
  .nav-logo img { height: 30px; }
}

.nav-logo-reg {
  font-size: 0.55em;
  vertical-align: super;
  letter-spacing: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  position: relative;
  z-index: 10; /* stays clickable above the open drawer */
}

.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle[aria-expanded="true"] span {
  background: var(--paper); /* visible on the dark drawer */
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Full-screen mobile drawer */

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 1.2rem clamp(1.25rem, 5vw, 2rem) 2rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  z-index: 200;
  overflow-y: auto;
}

.nav-drawer.is-open { transform: translateX(0); }

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-brand {
  display: flex;
  align-items: center;
}

.drawer-brand img {
  height: 26px;
  width: auto;
  display: block;
}

.drawer-close {
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.drawer-close-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--paper);
}

.drawer-label {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 2.25rem 0 0.6rem;
}

.nav-links li { border-top: 1px solid var(--line-light); }

.nav-links { border-bottom: 1px solid var(--line-light); }

.nav-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  padding: 1rem 0;
}

/* Kontakt lives in the drawer as the CTA button, not a list row */
.nav-links .drawer-hide { display: none; }

.drawer-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  margin: 2.5rem 0 0.9rem;
}

/* Sub-button: its whole pill sits shorter than the heading above it */
.nav-drawer .drawer-cta {
  align-self: start;
  font-size: 0.78rem;
  line-height: 1.2;
  padding: 0.45rem 1.1rem;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 3rem;
}

.drawer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 0.5rem;
}

.drawer-link {
  display: block;
  font-size: 0.95rem;
  padding: 0.15rem 0;
}

@media (min-width: 760px) {
  .nav { gap: 2.2rem; }

  .nav-toggle { display: none; }

  /* The drawer dissolves — only the link list remains, inline in the header */
  .nav-drawer {
    display: contents;
    color: inherit; /* drop the drawer's paper text — it would vanish on the light header */
  }

  .nav-drawer .drawer-top,
  .nav-drawer .drawer-label,
  .nav-drawer .drawer-heading,
  .nav-drawer .drawer-cta,
  .nav-drawer .drawer-footer { display: none; }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.2rem;
    border-bottom: none;
  }

  .nav-links li { border-top: none; }

  .nav-links .drawer-hide { display: block; }

  .nav-links a {
    display: inline-block;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta { color: var(--accent); }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-light:hover {
  background: transparent;
  color: var(--paper);
}

/* ---------- Media placeholders ---------- */

.media-placeholder {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-placeholder span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
}

.media-hero { aspect-ratio: 16 / 9; }
.media-wide { aspect-ratio: 4 / 3; }
.media-tall { aspect-ratio: 3 / 4; }
.media-portrait { aspect-ratio: 4 / 5; }

/* ---------- Section heads ---------- */

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.section-head-light { border-color: var(--line-light); }

/* ---------- Hero ---------- */

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

/* Front-page hero — the name carries it (Hugo Aren model) */

.hero-name {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(3rem, 10vh, 8rem);
  padding: calc(5.5rem + 6vh) var(--space-gutter) clamp(1.75rem, 4vw, 3rem);
}

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

.hero-wordmark {
  font-size: clamp(2.75rem, 9vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.hero-meta {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate);
}

.hero-meta a {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease);
}

.hero-meta a:hover { border-color: var(--ink); }

/* Two columns only once "Visual Agency" can hold one line beside the meta */
@media (min-width: 1000px) {
  .hero-name-top {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .hero-meta { text-align: right; }

  .hero-wordmark {
    font-size: clamp(3.5rem, 5vw, 6rem);
    white-space: nowrap;
  }
}

/* Quiet row of work teasers along the bottom of the hero */

.hero-strip {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  /* bleed to the viewport edges so tiles scroll past the gutter */
  margin-inline: calc(var(--space-gutter) * -1);
  padding-inline: var(--space-gutter);
  scroll-padding-inline: var(--space-gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-strip::-webkit-scrollbar { display: none; }

/* Snap is suspended mid-drag so the tiles track the cursor exactly */
.hero-strip.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

.strip-item {
  flex: 0 0 auto;
  width: 58vw;
  scroll-snap-align: start;
}

.strip-cap {
  display: block;
  font-size: 0.72rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.strip-item .media-placeholder {
  aspect-ratio: 4 / 5;
  transition: transform 0.5s var(--ease);
}

.hero-strip:not(.is-dragging) .strip-item:hover .media-placeholder {
  transform: scale(0.98);
}

@media (min-width: 600px) {
  .strip-item { width: 30vw; }
}

@media (min-width: 1000px) {
  /* just wide enough that the row always overflows a little — the cue that it swipes */
  .strip-item { width: 18.5vw; }
  .strip-item .media-placeholder { aspect-ratio: 1 / 1; }
}

.showreel-strip {
  padding: var(--space-section) var(--space-gutter);
}

/* ---------- Manifest ---------- */

.manifest {
  padding: 0 var(--space-gutter) var(--space-section);
}

.manifest-text {
  max-width: 52rem;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  text-align: center;
}

/* ---------- Services ---------- */

.services {
  padding: 0 var(--space-gutter) var(--space-section);
}

.services-list { border-top: 1px solid var(--line); }

.service-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  grid-template-areas:
    "index title"
    "index desc";
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-index {
  grid-area: index;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--grey);
}

.service-item h3 {
  grid-area: title;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  margin-bottom: 0.6rem;
  transition: transform 0.4s var(--ease);
}

.service-item p {
  grid-area: desc;
  max-width: 36rem;
  color: var(--slate);
}

@media (min-width: 760px) {
  .service-item {
    grid-template-columns: 5rem 1fr 1.2fr;
    grid-template-areas: "index title desc";
    gap: 2rem;
    padding: 2.6rem 0;
  }

  .service-item h3 { margin-bottom: 0; }

  .service-item:hover h3 { transform: translateX(10px); }
}

/* ---------- Retainer ---------- */

.retainer {
  background: var(--navy);
  color: var(--paper);
}

.retainer-inner {
  padding: var(--space-section) var(--space-gutter);
}

.retainer-grid {
  display: grid;
  gap: 3rem;
}

.retainer-copy h3 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.retainer-copy > p {
  max-width: 34rem;
  color: var(--cloud);
  margin-bottom: 2rem;
}

.retainer-points li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-light);
  font-size: 0.95rem;
}

.retainer-points li::before {
  content: "—";
  color: var(--grey);
  margin-right: 0.85rem;
}

.retainer-card {
  background: rgba(252, 252, 253, 0.05);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: clamp(2rem, 5vw, 3rem);
  align-self: start;
}

.retainer-card-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.retainer-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.retainer-currency { font-size: 0.35em; letter-spacing: 0; }

.retainer-terms {
  color: var(--grey);
  margin: 0.75rem 0 2.25rem;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .retainer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(3rem, 8vw, 7rem);
  }
}

/* ---------- Work (arbejde.html) ---------- */

.work-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.work-count {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}

.work-count sup {
  color: var(--grey);
  font-size: 0.72em;
  margin-left: 0.15em;
}

.view-toggle {
  display: flex;
  gap: 1.75rem;
}

.view-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--grey);
  transition: color 0.3s var(--ease);
}

.view-btn:hover,
.view-btn.is-active { color: var(--ink); }

/* Grid view — uniform tiles, caption above like an index card */

.work-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  transition: opacity 0.25s var(--ease);
}

.work-item figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.work-index {
  font-family: var(--font-display);
  color: var(--grey);
}

.work-item figcaption strong {
  font-family: var(--font-display);
  font-weight: 500;
}

.work-cat {
  color: var(--grey);
  margin-left: auto;
  text-align: right;
}

.work-item .media-placeholder {
  aspect-ratio: 4 / 5;
  transition: transform 0.5s var(--ease);
}

.work-item:hover .media-placeholder { transform: scale(0.98); }

@media (min-width: 600px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

/* List view — quiet index rows, images hidden */

.work-grid.is-list { display: block; }

.work-grid.is-list .media-placeholder { display: none; }

.work-grid.is-list .work-item { border-bottom: 1px solid var(--line); }

.work-grid.is-list figcaption {
  margin: 0;
  padding: 1.5rem 0;
  font-size: 1rem;
  transition: transform 0.4s var(--ease);
}

.work-grid.is-list figcaption strong {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.work-grid.is-list .work-item:hover figcaption { transform: translateX(10px); }

/* ---------- About ---------- */

.about {
  padding: var(--space-section) var(--space-gutter);
}

.about-lede {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 44rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.about-people {
  display: grid;
  gap: 3rem;
}

.about-person .media-placeholder { margin-bottom: 1.4rem; }

.about-person h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.about-person p {
  color: var(--slate);
  max-width: 28rem;
}

@media (min-width: 760px) {
  .about-people {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

/* ---------- Contact ---------- */

.contact {
  background: var(--navy);
  color: var(--paper);
}

.contact-inner {
  padding: var(--space-section) var(--space-gutter);
  text-align: center;
}

.contact-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.75rem;
}

.contact-title {
  font-size: clamp(2.2rem, 6.5vw, 4.8rem);
  margin-bottom: 2.5rem;
}

.contact-mail {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  border-bottom: 1px solid var(--paper);
  padding-bottom: 0.3rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-mail:hover {
  color: var(--cloud);
  border-color: var(--cloud);
}

.contact-meta {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.contact-meta a {
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.contact-meta a:hover { border-color: var(--paper); }

/* ---------- Subpages ---------- */

.nav-links a.is-current {
  text-decoration: underline;
  text-underline-offset: 0.45em;
  text-decoration-thickness: 1px;
}

@media (min-width: 760px) {
  .nav-links a.is-current::after { display: none; }
}

.page-hero {
  padding: calc(5.5rem + 7vh) var(--space-gutter) clamp(3rem, 7vw, 5rem);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  max-width: 16ch;
  margin-bottom: 1.5rem;
}

.page-hero-sub {
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--slate);
}

.page-section {
  padding: clamp(3rem, 8vw, 6rem) var(--space-gutter) var(--space-section);
}

/* Expanded service blocks (ydelser.html) */

.detail-list { border-top: 1px solid var(--line); }

.detail-item {
  display: grid;
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.detail-index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--grey);
}

.detail-item h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.detail-item > p {
  max-width: 36rem;
  color: var(--slate);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.detail-tags li {
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

@media (min-width: 900px) {
  .detail-item {
    grid-template-columns: 5rem 1fr 1.2fr;
    gap: 2rem;
  }

  .detail-item > p { margin-top: 0.3rem; }
}

/* Numbered steps (retainer.html, kontakt.html, values on om.html) */

.steps {
  display: grid;
  gap: 2.5rem;
}

.step {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0.8rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--slate);
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

/* FAQ (retainer.html) */

.faq { max-width: 46rem; }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3em;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p {
  padding: 0 0 1.6rem;
  max-width: 38rem;
  color: var(--slate);
}

/* CTA band before footer on subpages */

.cta-band {
  background: var(--navy);
  color: var(--paper);
  text-align: center;
  padding: var(--space-section) var(--space-gutter);
}

.cta-band h2 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  margin-bottom: 2.25rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--grey);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem 2.5rem;
  justify-content: space-between;
  padding: 2.5rem var(--space-gutter);
  border-top: 1px solid var(--line-light);
  font-size: 0.85rem;
}

.footer-logo {
  width: clamp(90px, 12vw, 130px);
  height: auto;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 2rem;
}

.site-footer a {
  color: var(--cloud);
  transition: color 0.3s var(--ease);
}

.site-footer a:hover { color: var(--paper); }
