/* =================================================================
   NERO VELLUTO – Espresso shop
   ================================================================= */

:root {
  --bg: #0c0a09;
  --bg-soft: #14110e;
  --surface: #1a1612;
  --line: #2d2620;
  --ink: #f5efe6;
  --ink-mute: #b8aa97;
  --ink-faint: #76685a;
  --gold: #d6b06a;
  --gold-deep: #a8843e;
  --copper: #b96a3a;
  --copper-deep: #8a4a23;
  --brand-red: #d4292b;
  --brand-red-deep: #a01d1f;
  --accent: var(--gold);

  --serif: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 2px;
  --radius-lg: 4px;

  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px rgba(214, 176, 106, 0.18), 0 30px 80px -20px rgba(214, 176, 106, 0.18);

  --container: 1280px;
  --gutter: clamp(1rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
  line-height: 1.1;
}

h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-mute); }

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.4rem;
}

.muted { color: var(--ink-faint); font-size: .85rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem var(--gutter);
  background: linear-gradient(to bottom, rgba(7,6,5,.85), rgba(7,6,5,0));
  backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7,6,5,.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .92rem;
  color: var(--ink);
}
.brand__word small {
  display: inline;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--ink-mute);
  font-size: .82em;
}
.brand__tagline {
  display: none;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  font-size: .78rem;
  margin-left: .9rem;
  padding-left: .9rem;
  border-left: 1px solid var(--line);
}
@media (min-width: 1100px) {
  .brand__tagline { display: inline; }
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 0 0 1px rgba(0,0,0,.4);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.site-nav a { position: relative; padding: .25rem 0; }
.site-nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease, left .25s ease;
}
.site-nav a:hover::after { width: 100%; left: 0; }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .9rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-btn__count {
  display: inline-grid; place-items: center;
  min-width: 1.5em; height: 1.5em;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0805;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 0;
}

@media (max-width: 800px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; gap: 1rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -1;
  background: var(--bg);
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .9;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(0,0,0,.1) 0%, rgba(0,0,0,.7) 100%),
    linear-gradient(to bottom, rgba(7,6,5,.55) 0%, rgba(7,6,5,.1) 30%, rgba(7,6,5,.95) 100%);
}

.hero__content {
  max-width: 720px;
  margin-top: auto;
  animation: rise .9s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: .95;
  margin: 0 0 1.4rem;
  letter-spacing: -.025em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.hero__title-accent {
  background: linear-gradient(95deg, #f4d189 0%, var(--gold) 35%, #8a6629 70%, #f4d189 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.badge-bio {
  display: inline-block;
  background: #1f7a3a;
  color: #fff;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .2em;
  padding: .15em .55em;
  border-radius: 2px;
  vertical-align: 1px;
}

.hero__slogan {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: -.01em;
  color: var(--gold);
  margin: -.4rem 0 1.4rem;
  max-width: 36ch;
  position: relative;
  padding-left: 1.1rem;
}
.hero__slogan::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: .55rem; height: 1px;
  background: var(--gold);
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 52ch;
  color: var(--ink);
  margin-bottom: 2.4rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--ink-mute);
  border-radius: 12px;
  display: grid; place-items: start center;
  padding-top: 6px;
  opacity: .5;
}
.hero__scroll span {
  width: 2px; height: 8px;
  background: var(--ink);
  border-radius: 2px;
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95rem 1.6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #0a0805;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2), 0 18px 40px -18px rgba(214,176,106,.55);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(0,0,0,.2), 0 22px 50px -16px rgba(214,176,106,.7); color: #0a0805; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-mute);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--gold); background: rgba(214,176,106,.07); }
.btn--xl { padding: 1.1rem 1.8rem; font-size: .86rem; }
.btn--block { width: 100%; }

/* ===== PRODUCT ===== */
.product {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
}
@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
}

.gallery { position: sticky; top: 6.5rem; }
.gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.gallery__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.gallery__media.is-active { opacity: 1; pointer-events: auto; }

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin-top: .85rem;
}
.thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s ease, transform .2s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--gold); }
.thumb.is-active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.thumb__badge {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: .04em;
  background: radial-gradient(60% 60% at 50% 50%, rgba(214,176,106,.08), transparent);
}

/* ===== PRODUCT INFO ===== */
.product__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: .5rem;
}
.product__rating {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--ink-mute);
  margin: 0 0 1.6rem;
}
.product__rating span:first-child { color: var(--gold); letter-spacing: .15em; }
.product__lede { font-size: 1.02rem; line-height: 1.65; color: var(--ink); }

.notes {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1.4rem 0 2rem;
}
.note {
  display: inline-block;
  padding: .35rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-mute);
  font-size: .78rem;
  letter-spacing: .04em;
}

.price-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.6rem;
}
.price-row > div { flex: 1; }
.price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.price__sub {
  font-size: .78rem;
  color: var(--ink-faint);
  margin: .35rem 0 0;
}
.badge-roest {
  display: inline-flex; flex-direction: column;
  align-items: flex-end;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.3;
}
.badge-roest span { color: var(--ink-faint); }

.seals {
  list-style: none; padding: 0; margin: 0 0 1.6rem;
  display: grid; gap: .55rem;
  font-size: .82rem; color: var(--ink-mute);
}
.seals li { display: flex; align-items: center; gap: .65rem; }
.seal {
  display: inline-grid; place-items: center;
  min-width: 2.1rem; height: 1.5rem; padding: 0 .45rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
}
.seal--bio { background: #1f7a3a; }
.seal--ft  { background: #0a4a8c; }
.seal--co2 { background: var(--copper-deep); }

.opts { border: 0; padding: 0; margin: 0 0 1.4rem; }
.opts__legend {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0;
  margin-bottom: .6rem;
}
.opts__row {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.opts__row label {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.opts__row input { position: absolute; opacity: 0; pointer-events: none; }
.opts__row span {
  display: inline-block;
  padding: .65rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .82rem;
  color: var(--ink-mute);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.opts__row label:hover span { border-color: var(--ink-mute); color: var(--ink); }
.opts__row input:checked + span {
  border-color: var(--gold);
  color: var(--ink);
  background: rgba(214,176,106,.08);
  box-shadow: 0 0 0 1px var(--gold);
}
.opts__row input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.qty-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  margin: 1.8rem 0 1.4rem;
}
.qty {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.qty button {
  background: transparent;
  border: 0;
  color: var(--ink);
  width: 2.6rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color .2s ease;
}
.qty button:hover { color: var(--gold); }
.qty input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .95rem;
  text-align: center;
  width: 3rem;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.usp {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: .55rem;
  font-size: .85rem;
  color: var(--ink-mute);
}
.usp span { color: var(--gold); display: inline-block; width: 1.2em; }

/* ===== BREW SECTION ===== */
.brew {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .brew { grid-template-columns: 1fr; }
}
.brew__copy h2 { margin-bottom: 1.2rem; }
.brew__copy p { font-size: 1.05rem; line-height: 1.7; color: var(--ink); }

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
  margin: 2.2rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.specs > div { display: grid; gap: .15rem; }
.specs dt {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.specs dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}

.brew__media {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.brew__video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ===== STORY ===== */
.story {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(214,176,106,.06), transparent 60%),
    var(--bg-soft);
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story__inner { max-width: var(--container); margin: 0 auto; }
.story__inner h2 { margin-bottom: 3rem; }
.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
}
@media (max-width: 800px) {
  .story__grid { grid-template-columns: 1fr; }
}
.story__grid article {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.story__grid h3 {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .75rem;
}

/* ===== DETAILS ===== */
.details {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
}
.details h2 { margin-bottom: 2.4rem; }

.accordion details {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  padding: .4rem 0;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .25s ease;
}
.accordion details[open] summary::after { content: '−'; }
.accordion p { margin: .8rem 0 0; max-width: 65ch; }

/* ===== CART DRAWER ===== */
.cart {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr min(440px, 92vw);
}
.cart[hidden] { display: none; }
.cart__scrim {
  background: rgba(0,0,0,.55);
  border: 0;
  cursor: pointer;
  animation: fade .25s ease;
}
.cart__panel {
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr auto;
  animation: slide .3s cubic-bezier(.2,.7,.2,1);
  max-height: 100dvh;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.6rem;
  border-bottom: 1px solid var(--line);
}
.cart__head h2 { margin: 0; font-size: 1.3rem; }
.cart__head button {
  background: transparent; border: 0; color: var(--ink);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.cart__head button:hover { color: var(--gold); }

.cart__items {
  list-style: none; margin: 0; padding: 1rem 1.6rem;
  overflow-y: auto;
  display: grid; gap: 1rem;
}
.cart__items li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cart__items li:last-child { border-bottom: 0; }
.cart__items img {
  width: 64px; height: 64px;
  object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cart__items h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  margin: 0 0 .15rem;
  color: var(--ink);
  letter-spacing: .02em;
}
.cart__items p { margin: 0; font-size: .78rem; color: var(--ink-faint); }
.cart__items strong { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink); align-self: center; }
.cart__items .remove {
  background: none; border: 0; color: var(--ink-faint);
  font-size: .75rem; padding: 0; cursor: pointer; margin-top: .25rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.cart__items .remove:hover { color: var(--copper); }

.cart__empty {
  padding: 1.6rem; color: var(--ink-faint); text-align: center;
}
.cart__empty[hidden] { display: none; }

.cart__foot {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--line);
  display: grid; gap: .8rem;
}
.cart__total {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: .85rem; color: var(--ink-mute);
}
.cart__total strong { font-family: var(--serif); font-weight: 800; font-size: 1.4rem; letter-spacing: -.01em; color: var(--ink); }
.cart__note { margin: 0; font-size: .72rem; color: var(--ink-faint); text-align: center; }

/* ===== FOOTER ===== */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem var(--gutter) 4rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) {
  .site-footer { grid-template-columns: 1fr; text-align: center; }
}
.brand--footer { font-size: .82rem; }
.site-footer nav { display: flex; gap: 2rem; justify-content: center; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }
.site-footer .muted:last-child { text-align: right; font-size: .8rem; }
@media (max-width: 800px) {
  .site-footer .muted:last-child { text-align: center; }
}

/* ===== MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
