/* beerowbags.com v4 — "Barbie pink, Legally Blonde": the page is pink, silver
   is a material, movement is a feature. The luxury half is what stays:
   Cormorant + Inter, editorial spacing, every photo framed on a mat.
   Palette history: v1 blush → v2 raspberry → v3 bubblegum → v4 Barbie. */

@font-face { font-family: "Cormorant"; src: url(/assets/fonts/cormorant-500.woff2) format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url(/assets/fonts/cormorant-500i.woff2) format("woff2"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url(/assets/fonts/cormorant-600.woff2) format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "InterS"; src: url(/assets/fonts/inter-400.woff2) format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "InterS"; src: url(/assets/fonts/inter-500.woff2) format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }

:root {
  --ivory: #FFE1EF;          /* the ground — baby pink (name kept from v1) */
  --white: #FFFFFF;
  --powder: #FFB8D9;         /* bubblegum mat */
  --powder-deep: #FF9CCB;
  --rose: #DA1884;           /* Barbie pink */
  --rose-deep: #FF2D95;      /* hover = hotter, not darker */
  --ink: #2B0A1F;
  --muted: #8A4C6C;
  --hair: #F3C4DA;
  --silver: linear-gradient(135deg, #FAFAFC 0%, #C8CBD6 35%, #F5F6F9 55%, #AEB3C2 100%);
  --silver-flat: #C9CCD6;
  --champagne: #C9CCD6;      /* retired; aliased to silver for any stragglers */
  --glow: rgba(255, 45, 149, .22);
  --card-glow: 0 12px 40px rgba(218, 24, 132, .18);
  --card-glow-hover: 0 22px 60px rgba(218, 24, 132, .30);

  --serif: "Cormorant", "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "InterS", "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 44px);
  --ease: cubic-bezier(.2, .6, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;   /* blooms/sparkles may poke past the edge; never a sideways scroll */
  background: var(--ivory);
  color: var(--ink);
  font: 400 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
figure { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 600; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 10; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* ---------- type roles ---------- */
.eyebrow {
  display: block;
  font: 500 11.5px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
}

/* Chrome wordmark: silver gradient text, lifted off the pink by a pink edge. */
.wordmark {
  font: 600 26px/1 var(--serif);
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(110deg, #FFFFFF 0%, #8E94A6 28%, #FFFFFF 48%, #7C8296 68%, #F4F5F8 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 #B0126A) drop-shadow(0 0 1px rgba(43, 10, 31, .45)) drop-shadow(0 4px 10px rgba(218, 24, 132, .35));
}
.wordmark:hover { animation: shine 1.1s var(--ease) 1; }
@keyframes shine { from { background-position: 100% 0; } to { background-position: -100% 0; } }
.wordmark-sm { font-size: 20px; margin: 0 0 8px; }

@media (max-width: 480px) {
  .wordmark { font-size: 22px; letter-spacing: .1em; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 11px; letter-spacing: .1em; }
}

/* ---------- header + ticker ---------- */
.site-head { padding: 24px 0 16px; }
.site-head-inner { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.site-nav { display: flex; gap: 26px; }
.site-nav a {
  font: 500 12px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.site-nav a:hover { color: var(--rose); border-color: var(--silver-flat); }

/* The Legally Blonde bit: a slow silver ticker. One block to delete. */
.ticker {
  overflow: hidden;
  background: var(--silver);
  border-top: 1px solid rgba(255, 255, 255, .8);
  border-bottom: 1px solid #B4B8C6;
}
.ticker-track { display: flex; width: max-content; animation: ticker 44s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span {
  padding: 9px 22px;
  font: 500 11px/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.ticker i { font-style: normal; color: var(--rose); margin-right: 8px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 96px) var(--gutter) clamp(28px, 5vw, 56px);
}
.page-home .hero::before {
  content: "";
  position: absolute; z-index: -1;
  top: -12%; left: 26%; width: 74%; height: 140%;
  background: radial-gradient(ellipse at 60% 40%, var(--glow), transparent 62%);
  pointer-events: none;
}
.hero > * { animation: rise .5s var(--ease) both; }
.hero > :nth-child(2) { animation-delay: .06s; }
.hero > :nth-child(3) { animation-delay: .12s; }
.hero > :nth-child(4) { animation-delay: .18s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero .eyebrow { margin-bottom: 18px; }
.hero-line {
  font: 600 clamp(38px, 6.2vw, 74px)/1.02 var(--serif);
  letter-spacing: -.01em;
  max-width: 14ch;
}
/* "chosen with care." shimmers pink → magenta → pink, slowly. */
.hero-line em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(90deg, var(--rose) 0%, #FF2D95 35%, #FF8AC8 50%, #FF2D95 65%, var(--rose) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 300% 0; } }
.hero-sub { margin: 22px 0 0; color: var(--muted); font-size: 15px; }
.hero-sub .dot { margin: 0 .5em; color: var(--rose); }

/* Sparkles: silver ✦ that twinkle on their own clocks. */
.sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; animation: none; }
.sparkle {
  position: absolute;
  font-size: 16px; line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 0 2px #FFFFFF, 0 0 10px rgba(255, 255, 255, .95), 0 0 18px rgba(255, 45, 149, .7);
  opacity: 0;
  animation: twinkle 3.2s ease-in-out infinite;
}
.sparkle.lg { font-size: 26px; }
.sparkle.sm { font-size: 11px; }
.sparkle:nth-child(2n) { animation-duration: 2.6s; animation-delay: .5s; }
.sparkle:nth-child(3n) { animation-duration: 4s; animation-delay: 1.1s; }
.sparkle:nth-child(4n) { animation-delay: 1.7s; }
.sparkle:nth-child(5n) { animation-duration: 3.6s; animation-delay: .9s; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.15) rotate(25deg); }
}

/* ---------- reviews in the hero + quote row ---------- */
.hero-proof { margin: 14px 0 0; font-size: 15px; color: var(--muted); }
.hero-proof strong { color: var(--ink); }
.hero-proof a { color: var(--rose); border-bottom: 1px solid var(--silver-flat); }
.hero-proof a:hover { color: var(--rose-deep); }
.stars {
  letter-spacing: .08em; margin-right: 6px;
  background: linear-gradient(180deg, #F5F6F9 0%, #B9BDC9 40%, var(--rose) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.7));
}
.reviews-top { padding-bottom: clamp(28px, 5vw, 56px); }
.quotes { display: grid; gap: 18px; align-items: start; }
@media (min-width: 700px) { .quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.quote {
  margin: 0; padding: 26px 26px 22px;
  background: var(--white);
  position: relative;
  box-shadow: var(--card-glow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote::after {
  content: ""; position: absolute; inset: 8px;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #FAFAFC, #B9BDC9 40%, #FFFFFF 55%, #A9AEBD) 1;
  pointer-events: none;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--card-glow-hover); }
.quote p { margin: 0 0 12px; font: 500 italic 21px/1.35 var(--serif); color: var(--ink); }
.quote footer { font: 500 11.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--rose); }
.quote footer::before { content: "✦ "; color: var(--silver-flat); }

/* ---------- toolbar ---------- */
.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--silver-flat);
  border-bottom: 1px solid var(--silver-flat);
  margin-bottom: 36px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--white);
  border: 1px solid var(--silver-flat);
  border-radius: 999px;
  padding: 8px 14px;
  font: 500 12px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { color: var(--rose); border-color: var(--rose); transform: translateY(-1px); }
.chip[aria-pressed="true"] {
  background: var(--rose); border-color: var(--rose); color: #fff;
  box-shadow: 0 0 0 1px var(--silver-flat), 0 6px 18px rgba(218, 24, 132, .35);
}
.sort select {
  appearance: none; -webkit-appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23DA1884' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid var(--silver-flat); border-radius: 999px;
  padding: 8px 30px 8px 14px;
  font: 500 12px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
.sort select:hover { color: var(--rose); border-color: var(--rose); }

/* ---------- grid + cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 18px;
}
@media (min-width: 700px)  { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 26px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 52px 30px; } }

.card { display: block; transition: transform .45s var(--ease); }
.card:hover { transform: translateY(-6px); }
.card[hidden] { display: none; }

/* The dressing-room mat: a photo, whole, on bubblegum, inside a chrome rule,
   glowing pink. Hover: the mat deepens, the photo settles, a shine sweeps. */
.mat {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--powder);
  padding: 7%;
  overflow: hidden;
  box-shadow: var(--card-glow);
  transition: background-color .5s var(--ease), box-shadow .5s var(--ease);
}
.mat::after {
  content: "";
  position: absolute; inset: 4.5%;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #FAFAFC 0%, #B9BDC9 40%, #FFFFFF 55%, #A9AEBD 100%) 1;
  pointer-events: none;
  z-index: 2;
}
.mat::before {
  content: "";
  position: absolute; top: -60%; left: -70%; width: 55%; height: 220%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .6) 50%, transparent 100%);
  pointer-events: none; opacity: 0; z-index: 3;
}
.mat img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .5s var(--ease);
}
.card:hover .mat { background: var(--powder-deep); box-shadow: var(--card-glow-hover); }
.card:hover .mat img { transform: scale(1.03); }
.card:hover .mat::before, .gallery .mat:hover::before, .about-photo:hover::before { animation: sweep 1s var(--ease) 1; }
@keyframes sweep {
  0%   { left: -70%; opacity: 0; }
  12%  { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}

.card-text { padding-top: 14px; }
.card-name {
  display: block;
  margin-top: 6px;
  font: 500 19px/1.25 var(--serif);
  color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card:hover .card-name { color: var(--rose); }
.card-price {
  display: block;
  margin-top: 6px;
  font: 500 italic 22px/1 var(--serif);
  color: var(--rose);
}
.card-price-sold { font-style: italic; color: var(--muted); font-size: 16px; }
.card-sold .mat { background: #E9EAEF; box-shadow: 0 8px 24px rgba(43, 10, 31, .08); }
.card-sold .mat img { filter: saturate(.85); opacity: .92; }
.card-sold { cursor: default; }
.card-sold:hover { transform: none; }
.card-sold:hover .mat { background: #E9EAEF; box-shadow: 0 8px 24px rgba(43, 10, 31, .08); }
.card-sold:hover .mat img { transform: none; }

.empty { margin: 40px 0; color: var(--muted); }
.linklike { background: none; border: 0; padding: 0; color: var(--rose); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* ---------- scroll reveal (JS adds .in; without JS everything is visible) ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.js [data-reveal].in { opacity: 1; transform: none; }
/* a revealed card still needs its hover transform */
.js .card[data-reveal].in { transition: transform .45s var(--ease); }

/* ---------- about (the personal bit) ---------- */
.about {
  display: grid; gap: 34px;
  margin-top: clamp(64px, 10vw, 120px);
  padding-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--silver-flat);
  align-items: center;
}
@media (min-width: 900px) {
  .about { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; }
}
.about-photo { aspect-ratio: 4 / 5; max-width: 420px; }
.about-photo img { object-fit: cover; }
.about-text .eyebrow { margin-bottom: 14px; }
.about-title { font: 600 clamp(30px, 3.8vw, 44px)/1.08 var(--serif); margin-bottom: 22px; max-width: 16ch; }
.about-title em { font-style: italic; font-weight: 500; color: var(--rose); }
.about-text p { margin: 0 0 1em; max-width: 56ch; }
.about-text .btn { margin-top: 8px; }
.prose-photo { aspect-ratio: 4 / 5; width: 180px; margin-bottom: 28px; padding: 10px; }
.prose-photo::after { inset: 6px; }
.prose-photo img { object-fit: cover; }

/* ---------- sections ---------- */
.section-head { margin: clamp(56px, 9vw, 110px) 0 26px; display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.section-title { font: 600 clamp(26px, 3.4vw, 36px)/1.1 var(--serif); }
.section-note { margin: 0; color: var(--muted); font-size: 15px; }
.sold-strip .section-head { padding-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--silver-flat); margin-top: clamp(56px, 9vw, 110px); }
.grid-sold { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (min-width: 700px)  { .grid-sold { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .grid-sold { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 36px 22px; } }
.grid-sold .card-name { font-size: 16px; -webkit-line-clamp: 1; }

.closing { padding: clamp(64px, 10vw, 120px) var(--gutter) 0; text-align: center; }
.closing-line { font: 500 italic clamp(22px, 3vw, 30px)/1.3 var(--serif); margin: 0; }
.closing-line a { color: var(--rose); border-bottom: 1px solid var(--silver-flat); }
.closing-line a:hover { color: var(--rose-deep); }

/* ---------- bag page ---------- */
.crumb { grid-column: 1 / -1; padding: 6px 0 22px; }
.crumb a { font: 500 12px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.crumb a:hover { color: var(--rose); }

.bag-layout { display: grid; gap: 34px; padding-top: 8px; }
@media (min-width: 900px) {
  .bag-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: start; }
  .details { position: sticky; top: 28px; }
}
.mat-lg { padding: 5%; }
.mat-lg::after { inset: 3%; }
.thumbs {
  list-style: none; margin: 14px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px;
}
@media (min-width: 600px) { .thumbs { grid-template-columns: repeat(8, minmax(0, 1fr)); } }
.thumb { display: block; aspect-ratio: 1 / 1; background: var(--powder); padding: 6%; opacity: .72; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb:hover, .thumb.is-current { opacity: 1; }
.thumb:hover { transform: translateY(-2px); }
.thumb.is-current { box-shadow: 0 0 0 2px var(--rose), 0 6px 16px rgba(218, 24, 132, .3); }

.details .eyebrow { margin-bottom: 12px; }
.bag-name { font: 600 clamp(30px, 3.6vw, 42px)/1.08 var(--serif); letter-spacing: -.005em; }
.bag-price { margin: 14px 0 0; font: 500 italic clamp(28px, 3.2vw, 36px)/1 var(--serif); color: var(--rose); }

.cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px;
  font: 500 12.5px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .3s var(--ease);
}
.btn::after {
  content: ""; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .55) 50%, transparent 100%);
  opacity: 0; pointer-events: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { animation: sweep .8s var(--ease) 1; }
.btn-rose {
  background: var(--rose); color: #fff;
  box-shadow: 0 0 0 1px var(--silver-flat), 0 10px 26px rgba(218, 24, 132, .35);
}
.btn-rose:hover { background: var(--rose-deep); box-shadow: 0 0 0 1px #fff, 0 14px 34px rgba(255, 45, 149, .45); }
.btn-line { background: var(--white); color: var(--rose); box-shadow: 0 0 0 1px var(--rose), 0 8px 22px rgba(218, 24, 132, .15); }
.btn-line:hover { background: var(--rose); color: #fff; }
.cta-note { margin: 14px 0 0; font-size: 14px; color: var(--muted); }
.cta-note a { color: var(--rose); border-bottom: 1px solid var(--silver-flat); }

.copy { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--silver-flat); max-width: 58ch; }
.copy p { margin: 0 0 1em; }
.copy p:last-child { margin-bottom: 0; }

.facts { margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--silver-flat); }
.facts > div { display: grid; grid-template-columns: 9em 1fr; gap: 14px; padding: 8px 0; font-size: 14.5px; }
.facts dt { color: var(--rose); font: 500 11px/1.6 var(--sans); letter-spacing: .14em; text-transform: uppercase; padding-top: 3px; }
.facts dd { margin: 0; }

.more { padding-bottom: 20px; }

/* ---------- prose pages ---------- */
.prose { max-width: 66ch; padding-top: clamp(24px, 5vw, 56px); padding-bottom: 20px; }
.prose-center { text-align: center; margin-inline: auto; padding-top: clamp(60px, 12vw, 140px); }
.prose .eyebrow { margin-bottom: 16px; }
.prose-title { font: 600 clamp(34px, 5vw, 54px)/1.05 var(--serif); margin-bottom: 30px; }
.prose section { padding: 26px 0; border-top: 1px solid var(--silver-flat); }
.prose section:last-of-type { border-bottom: 1px solid var(--silver-flat); }
.prose h2 { font: 600 24px/1.2 var(--serif); margin-bottom: 10px; }
.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }
.prose .btn { margin-top: 6px; }

/* ---------- footer: the page ends on colour ---------- */
.site-foot {
  position: relative;
  margin-top: clamp(72px, 12vw, 140px);
  padding: 40px 0 48px;
  background: var(--rose);
  color: #fff;
}
.site-foot::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--silver); }
.foot-rule { display: none; }
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px 40px; }
.site-foot .wordmark { filter: drop-shadow(0 1px 0 rgba(43, 10, 31, .35)) drop-shadow(0 3px 8px rgba(43, 10, 31, .25)); }
.foot-line { margin: 0; color: rgba(255, 255, 255, .85); font-size: 14.5px; }
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links a { font: 500 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .85); border-bottom: 1px solid transparent; }
.foot-links a:hover { color: #fff; border-color: rgba(255, 255, 255, .7); }
.foot-fine { margin: 34px 0 0; font: 500 italic 17px/1.4 var(--serif); color: #FFD1E6; }

/* ---------- reduced motion: everything still, everything visible ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .sparkle { opacity: .6; }
  .card:hover, .quote:hover, .btn:hover, .chip:hover { transform: none; }
  .card:hover .mat img { transform: none; }
}
