/* ===================================================================
   VICTORIA FALLS ART MART — DESIGN SYSTEM v4
   Direction: midday at the Falls. Sun-bleached warm ground, sculpture
   lit bright, and every section standing on its own block of colour
   pulled from the rainbow the spray throws up. Cheerful, saturated,
   still museum-precise in its labelling.
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;0,6..96,900;1,6..96,400;1,6..96,700&family=Space+Grotesk:wght@300;400;500;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  /* grounds */
  --sun:      #FFF3DF;   /* warm sunlit paper */
  --sun-deep: #FFE9C4;
  --coral:    #FF6B4A;
  --sunflower:#FFC93C;
  --jade:     #14A87C;
  --jade-deep:#0C7D5C;
  --lagoon:   #2BA8CE;
  --grape:    #8B5FBF;
  --cocoa:    #34211A;   /* warm dark, never pure black */

  /* ink */
  --ink:      #2B1B12;
  --ink-soft: #7A6455;
  --chalk:    #FFF8EC;
  --chalk-soft: rgba(255,248,236,.78);

  --rainbow: linear-gradient(90deg, var(--coral), var(--sunflower) 26%, var(--jade) 52%, var(--lagoon) 76%, var(--grape));

  --display: 'Bodoni Moda', serif;
  --body: 'Space Grotesk', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --hair: rgba(43,27,18,.16);
  --hair-light: rgba(255,248,236,.28);
  --ease: cubic-bezier(.16,.84,.44,1);
  --bounce: cubic-bezier(.34,1.4,.64,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background: var(--sun); color: var(--ink);
  font-family: var(--body); line-height:1.5;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

h1,h2,h3,h4{ font-family: var(--display); font-weight:700; line-height:.94; margin:0 0 .35em; letter-spacing:-.02em; }
.mega{ font-size: clamp(3rem, 11vw, 9rem); font-weight:900; line-height:.86; letter-spacing:-.04em; }
.big{ font-size: clamp(2rem, 5.5vw, 4.4rem); }

.container{ max-width:1280px; margin:0 auto; padding:0 34px; }
.wide{ max-width:1600px; margin:0 auto; padding:0 34px; }

/* Specimen label */
.spec{
  font-family: var(--mono); font-size:.68rem; letter-spacing:.18em;
  text-transform:uppercase; color: var(--ink-soft);
  display:inline-flex; align-items:center; gap:10px;
}
.spec b{ color: var(--coral); font-weight:500; }
.spec::before{ content:''; width:26px; height:2px; border-radius:2px; background: var(--rainbow); background-size:400% 100%; animation:drift 7s linear infinite; }

/* on dark blocks */
.on-dark .spec, .on-dark.spec{ color: var(--chalk-soft); }
.on-dark .spec b{ color: var(--sunflower); }
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4{ color: var(--chalk); }

/* Bright colour blocks (jade, coral, sunflower, lagoon) carry INK, not chalk.
   Measured: chalk scores 1.45–2.87:1 on those grounds and fails WCAG AA;
   ink scores 5.46–10.78:1 and passes. .on-dark stays for the genuinely dark
   grounds only — the cocoa footer and photographic scrims. */
.on-bright h1,.on-bright h2,.on-bright h3,.on-bright h4{ color: var(--ink); }
.on-bright p{ color: rgba(43,27,18,.82); }
.on-bright .spec{ color: rgba(43,27,18,.72); }
.on-bright .spec b{ color: var(--ink); }
.on-bright .spec::before{ background: var(--ink); }
.on-bright .btn{ border-color: var(--ink); color: var(--ink); }
.on-bright .btn:hover{ color: var(--ink); }
.on-bright .rev-num, .on-bright .rev-quote{ color: var(--ink); }
.on-bright .rev-meta, .on-bright .rev-quote cite{ color: rgba(43,27,18,.72); }

.rainbow-rule{ height:6px; background: var(--rainbow); background-size:300% 100%; animation: drift 9s linear infinite; }
@keyframes drift{ to{ background-position:300% 50%; } }

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

/* ---------- Nav ---------- */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 34px;
  background: rgba(255,243,223,.82); backdrop-filter: blur(12px);
  border-bottom:2px solid var(--ink);
}
.site-nav .wordmark{ font-family:var(--display); font-weight:900; font-size:1.05rem; letter-spacing:.02em; text-transform:uppercase; }
.nav-links{ display:flex; gap:8px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-family:var(--mono); font-size:.66rem; letter-spacing:.14em; text-transform:uppercase;
  padding:9px 15px; border-radius:999px; transition:background .3s var(--ease), color .3s var(--ease);
}
.nav-links li:nth-child(1) a:hover,.nav-links li:nth-child(1) a.active{ background:var(--coral); color:var(--chalk); }
.nav-links li:nth-child(2) a:hover,.nav-links li:nth-child(2) a.active{ background:var(--sunflower); color:var(--ink); }
.nav-links li:nth-child(3) a:hover,.nav-links li:nth-child(3) a.active{ background:var(--jade); color:var(--chalk); }
.nav-links li:nth-child(4) a:hover,.nav-links li:nth-child(4) a.active{ background:var(--lagoon); color:var(--chalk); }
.nav-links li:nth-child(5) a:hover,.nav-links li:nth-child(5) a.active{ background:var(--grape); color:var(--chalk); }
.nav-cart{
  font-family:var(--mono); font-size:.66rem; letter-spacing:.14em; text-transform:uppercase;
  padding:9px 16px; border:2px solid var(--ink); border-radius:999px;
  transition:background .3s var(--ease), color .3s var(--ease);
}
.nav-cart:hover{ background:var(--ink); color:var(--sun); }
@media (max-width:980px){ .nav-links{ display:none; } }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:12px;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase;
  padding:16px 30px; border:2px solid var(--ink); border-radius:999px;
  position:relative; overflow:hidden; color:var(--ink); background:transparent;
  transition: color .4s var(--ease), transform .4s var(--bounce), box-shadow .4s var(--ease);
}
.btn span{ position:relative; z-index:2; }
.btn::before{
  content:''; position:absolute; inset:0; background:var(--rainbow); background-size:200% 100%;
  transform:translateY(101%); transition:transform .45s var(--bounce);
}
.btn:hover{ transform:translateY(-4px); box-shadow:0 12px 0 -4px rgba(43,27,18,.18); }
.btn:hover::before{ transform:translateY(0); }
.btn-solid{ background:var(--coral); color:var(--chalk); border-color:var(--ink); }
.btn-light{ border-color:var(--chalk); color:var(--chalk); }
.btn-light:hover{ color:var(--ink); }

/* ---------- Reveal ---------- */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.stagger .reveal:nth-child(1){transition-delay:0s}
.stagger .reveal:nth-child(2){transition-delay:.09s}
.stagger .reveal:nth-child(3){transition-delay:.18s}
.stagger .reveal:nth-child(4){transition-delay:.27s}
.stagger .reveal:nth-child(5){transition-delay:.36s}
.stagger .reveal:nth-child(6){transition-delay:.45s}
.stagger .reveal:nth-child(7){transition-delay:.54s}
.stagger .reveal:nth-child(8){transition-delay:.63s}

/* ---------- Plinth (image stand-in) — now bright colour washes ---------- */
.plinth{
  position:relative; overflow:hidden;
  background: var(--sun-deep);
  border:2px solid var(--ink);
  border-radius:4px;
}
.plinth::before{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 62% 48% at 26% 20%, rgba(255,201,60,.92), transparent 62%),
    radial-gradient(ellipse 55% 46% at 80% 26%, rgba(255,107,74,.85), transparent 60%),
    radial-gradient(ellipse 58% 50% at 72% 82%, rgba(20,168,124,.78), transparent 62%),
    radial-gradient(ellipse 46% 42% at 16% 84%, rgba(43,168,206,.7), transparent 60%),
    radial-gradient(ellipse 38% 34% at 50% 54%, rgba(139,95,191,.45), transparent 62%);
  transition:transform 1s var(--ease);
}
/* An empty or absent data-label must draw nothing at all, otherwise the
   pseudo-element still paints its padding, fill and borders as a blank chip. */
.plinth[data-label=""]::after,
.plinth:not([data-label])::after{ content:none; display:none; }

.plinth::after{
  content:attr(data-label);
  position:absolute; left:0; bottom:0; padding:9px 13px;
  font-family:var(--mono); font-size:.58rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink); background:var(--sun); border-top:2px solid var(--ink); border-right:2px solid var(--ink);
  border-radius:0 4px 0 0;
}
.plinth:hover::before{ transform:scale(1.09) rotate(-2deg); }
/* variants so grids don't read as one repeated swatch */
.p-b::before{ background:
  radial-gradient(ellipse 60% 50% at 74% 22%, rgba(43,168,206,.9), transparent 62%),
  radial-gradient(ellipse 55% 46% at 20% 30%, rgba(139,95,191,.8), transparent 60%),
  radial-gradient(ellipse 58% 50% at 40% 84%, rgba(255,201,60,.8), transparent 62%),
  radial-gradient(ellipse 44% 40% at 88% 78%, rgba(20,168,124,.72), transparent 60%); }
.p-c::before{ background:
  radial-gradient(ellipse 58% 50% at 30% 76%, rgba(255,107,74,.9), transparent 62%),
  radial-gradient(ellipse 54% 46% at 78% 68%, rgba(255,201,60,.85), transparent 60%),
  radial-gradient(ellipse 56% 48% at 62% 18%, rgba(20,168,124,.78), transparent 62%),
  radial-gradient(ellipse 40% 36% at 14% 22%, rgba(43,168,206,.66), transparent 60%); }
.p-d::before{ background:
  radial-gradient(ellipse 60% 52% at 50% 24%, rgba(139,95,191,.85), transparent 62%),
  radial-gradient(ellipse 52% 44% at 18% 70%, rgba(255,107,74,.8), transparent 60%),
  radial-gradient(ellipse 54% 46% at 84% 76%, rgba(255,201,60,.82), transparent 62%); }

/* ---------- Marquee ---------- */
.marquee{ overflow:hidden; padding:22px 0; background:var(--coral); border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); }
.marquee-track{ display:flex; gap:52px; width:max-content; animation:slide 40s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes slide{ to{ transform:translateX(-50%); } }
.marquee-item{ font-family:var(--display); font-size:1.55rem; font-weight:700; font-style:italic; white-space:nowrap; display:flex; align-items:center; gap:52px; color:var(--chalk); }
.marquee-item::after{ content:''; width:10px; height:10px; border-radius:50%; background:var(--sunflower); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--cocoa); color:var(--chalk); padding:0 0 30px; }
.site-footer::before{ content:''; display:block; height:6px; background:var(--rainbow); background-size:300% 100%; animation:drift 9s linear infinite; }
.footer-inner{ padding-top:70px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.3fr; gap:44px; padding-bottom:50px; border-bottom:1px solid var(--hair-light); }
.footer-grid h4{ font-size:1rem; color:var(--chalk); }
.footer-grid .spec{ color:var(--chalk-soft); }
.footer-grid .spec b{ color:var(--sunflower); }
.footer-links{ list-style:none; margin:12px 0 0; padding:0; display:flex; flex-direction:column; gap:11px; font-size:.9rem; }
.footer-links a{ color:var(--chalk-soft); transition:color .3s var(--ease); }
.footer-links a:hover{ color:var(--sunflower); }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:22px; font-family:var(--mono); font-size:.64rem; letter-spacing:.12em; text-transform:uppercase; color:var(--chalk-soft); flex-wrap:wrap; gap:10px; }
input.newsletter{ width:100%; padding:14px; background:transparent; border:1px solid var(--hair-light); color:var(--chalk); font-family:var(--body); margin:12px 0 10px; border-radius:999px; }
input.newsletter::placeholder{ color:var(--chalk-soft); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }

/* ===================================================================
   GALLERY WALK — horizontal room system
   The homepage is not a stack of sections. It is a floor plan you move
   through sideways. Vertical scroll drives lateral travel; a fixed
   spine tells you which room you're standing in.
   =================================================================== */

.walk{ position:relative; }
.walk-vp{ position:sticky; top:0; height:100vh; overflow:hidden; }
.walk-track{ display:flex; height:100%; will-change:transform; }

.room{ position:relative; height:100%; flex:0 0 auto; display:flex; align-items:center; border-right:3px solid var(--ink); }
.room-in{ padding:0 7vw; width:100%; }
.room-tag{
  position:absolute; left:26px; top:50%; transform:translateY(-50%) rotate(180deg);
  writing-mode:vertical-rl; font-family:var(--mono); font-size:.62rem;
  letter-spacing:.32em; text-transform:uppercase; opacity:.6;
}

/* room grounds */
.r-entrance{ background:
  radial-gradient(ellipse 70% 65% at 74% 42%, rgba(255,201,60,.6), transparent 66%),
  radial-gradient(ellipse 50% 50% at 6% 14%, rgba(255,107,74,.3), transparent 62%),
  var(--sun); }
.r-whats{ background:var(--jade); }
.r-collection{ background:linear-gradient(100deg, var(--sun) 0%, var(--sun-deep) 100%); }
.r-carvers{ background:var(--sunflower); }
.r-visit{ background:var(--lagoon); }

/* fixed gallery furniture */
.spine{
  position:fixed; left:0; top:0; bottom:0; width:64px; z-index:80;
  border-right:3px solid var(--ink); background:var(--chalk);
  display:flex; flex-direction:column; align-items:center; justify-content:space-between;
  padding:96px 0 26px;
}
.spine-num{ font-family:var(--display); font-weight:900; font-size:1.5rem; line-height:1; }
.spine-name{
  writing-mode:vertical-rl; font-family:var(--mono); font-size:.62rem;
  letter-spacing:.3em; text-transform:uppercase; color:var(--ink-soft);
}
.spine-of{ font-family:var(--mono); font-size:.56rem; letter-spacing:.2em; color:var(--ink-soft); }

.floorplan{
  position:fixed; left:64px; right:0; bottom:0; z-index:80;
  display:flex; align-items:center; gap:0;
  background:var(--chalk); border-top:3px solid var(--ink); height:52px;
}
.fp-step{
  flex:1; height:100%; border-right:2px solid var(--ink); background:none; cursor:pointer;
  font-family:var(--mono); font-size:.58rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-soft); display:flex; align-items:center; justify-content:center; gap:8px;
  transition:background .3s var(--ease), color .3s var(--ease);
}
.fp-step:last-child{ border-right:0; }
.fp-step:hover{ background:var(--sun-deep); color:var(--ink); }
.fp-step.on{ background:var(--coral); color:var(--chalk); }
.fp-bar{ position:absolute; left:0; top:-3px; height:3px; background:var(--ink); width:0; }

.walk-hint{
  position:fixed; right:24px; bottom:70px; z-index:80;
  font-family:var(--mono); font-size:.6rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--ink); background:var(--sunflower); border:2px solid var(--ink);
  padding:9px 15px; border-radius:999px; transition:opacity .5s var(--ease);
}
.walk-hint.gone{ opacity:0; }

@media (max-width:900px){
  .spine,.floorplan,.walk-hint{ display:none; }
  .walk-vp{ position:static; height:auto; overflow:visible; }
  .walk-track{ display:block; height:auto; }
  .room{ height:auto; flex:none !important; width:100% !important; border-right:0; border-bottom:3px solid var(--ink); padding:90px 0; }
  .room-in{ padding:0 26px; }
  .room-tag{ display:none; }
}

/* ===================================================================
   LEDGER — the artists index as a wall list, not a card grid
   =================================================================== */
.ledger{ border-top:3px solid var(--ink); }
.led-row{
  display:grid; grid-template-columns:70px 1fr auto; gap:26px; align-items:center;
  padding:26px 34px; border-bottom:2px solid var(--hair); position:relative;
  transition:background .35s var(--ease), padding-left .4s var(--bounce);
}
.led-row:hover{ background:var(--sunflower); padding-left:52px; }
.led-num{ font-family:var(--mono); font-size:.66rem; letter-spacing:.14em; color:var(--coral); }
.led-name{ font-family:var(--display); font-weight:700; font-size:clamp(1.5rem,4vw,3rem); line-height:1; letter-spacing:-.02em; }
.led-meta{ font-family:var(--mono); font-size:.64rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft); text-align:right; }
.led-row:hover .led-meta{ color:var(--ink); }
.led-row.mem .led-name{ font-style:italic; }
.led-peek{
  position:fixed; width:210px; aspect-ratio:3/4; pointer-events:none; z-index:70;
  opacity:0; transform:translate(-50%,-50%) scale(.9) rotate(-3deg);
  transition:opacity .3s var(--ease), transform .45s var(--bounce);
}
.led-peek.show{ opacity:1; transform:translate(-50%,-50%) scale(1) rotate(-3deg); }
@media (max-width:900px){
  .led-row{ grid-template-columns:44px 1fr; padding:20px 22px; }
  .led-meta{ grid-column:2; text-align:left; }
  .led-peek{ display:none; }
}

/* ===================================================================
   SPLIT — fixed plate left, scrolling detail right
   =================================================================== */
.split{ display:grid; grid-template-columns:46% 54%; }
.split-fixed{ position:sticky; top:0; height:100vh; border-right:3px solid var(--ink); display:flex; align-items:center; justify-content:center; padding:90px 40px 40px; }
.split-fixed .plinth{ width:100%; max-width:440px; aspect-ratio:4/5; }
.split-flow{ padding:130px 6% 100px; }
.split-block{ padding:44px 0; border-top:3px solid var(--ink); }
.split-block:first-child{ border-top:0; padding-top:0; }
@media (max-width:900px){
  .split{ grid-template-columns:1fr; }
  .split-fixed{ position:static; height:auto; border-right:0; border-bottom:3px solid var(--ink); padding:110px 26px 40px; }
  .split-flow{ padding:50px 26px 90px; }
}

/* ===================================================================
   WALL HANG — asymmetric shop, pieces at real different scales
   =================================================================== */
.hang{ display:grid; grid-template-columns:repeat(24,1fr); gap:30px 20px; padding:0 0 140px; }
.hw{ position:relative; display:block; }
.hw .idx{ position:absolute; top:-17px; left:0; font-family:var(--mono); font-size:.6rem; letter-spacing:.14em; color:var(--coral); z-index:3; }
.hw .plinth{ margin-bottom:14px; transition:transform .6s var(--bounce); }
.hw:hover .plinth{ transform:translateY(-10px) rotate(-1deg); }
.hw h3{ font-size:1.25rem; margin-bottom:5px; }
.hw .amt{ font-family:var(--mono); font-size:.78rem; font-weight:500; color:var(--ink); background:var(--sunflower); display:inline-block; padding:4px 11px; border-radius:999px; border:2px solid var(--ink); margin-top:9px; }
.hw .out{ font-family:var(--mono); font-size:.58rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); margin-top:8px; }
@media (max-width:900px){
  .hang{ grid-template-columns:1fr 1fr; gap:34px 18px; }
  .hw{ grid-column:auto !important; margin-top:0 !important; }
  .hw .plinth{ aspect-ratio:3/4 !important; }
}

/* ---- real photography, once it replaces the colour plates ---- */
.plinth.has-img::before{ display:none; }
.plinth.has-img::after{ display:none; }
.plinth.has-img img{ width:100%; height:100%; object-fit:cover; }
.plinth.has-img .plate-label:empty{ display:none; }
.plinth.has-img .plate-label{
  position:absolute; left:0; bottom:0; padding:9px 13px;
  font-family:var(--mono); font-size:.58rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink); background:var(--sun); border-top:2px solid var(--ink); border-right:2px solid var(--ink);
}

/* ===================================================================
   CUSTOM CURSOR — a chisel point with a stone-dust ring trailing it.
   Pointer-driven only; touch devices keep the native behaviour.
   =================================================================== */
@media (hover:hover) and (pointer:fine){
  body.has-cursor, body.has-cursor *{ cursor:none !important; }

  .cur-dot, .cur-ring{
    position:fixed; top:0; left:0; z-index:9999; pointer-events:none;
    will-change:transform; mix-blend-mode:normal;
  }
  .cur-dot{
    width:9px; height:9px; margin:-4.5px 0 0 -4.5px; border-radius:50%;
    background:var(--coral); border:1.5px solid var(--ink);
  }
  .cur-ring{
    width:38px; height:38px; margin:-19px 0 0 -19px; border-radius:50%;
    border:2px solid var(--ink); opacity:.5;
    transition:width .3s var(--bounce), height .3s var(--bounce),
               margin .3s var(--bounce), opacity .3s var(--ease),
               background .3s var(--ease), border-color .3s var(--ease);
  }
  /* over anything clickable the ring opens up and fills */
  body.cur-active .cur-ring{
    width:58px; height:58px; margin:-29px 0 0 -29px;
    background:rgba(255,201,60,.3); border-color:var(--ink); opacity:1;
  }
  /* over the sculpture it becomes a grab target */
  body.cur-grab .cur-ring{
    width:64px; height:64px; margin:-32px 0 0 -32px;
    background:rgba(255,107,74,.22); border-style:dashed; opacity:1;
  }
  body.cur-down .cur-ring{ width:30px; height:30px; margin:-15px 0 0 -15px; }
}

/* ===================================================================
   WHATSAPP — floating, always reachable
   =================================================================== */
.wa{
  position:fixed; right:22px; bottom:22px; z-index:90;
  display:flex; align-items:center; gap:11px;
  background:#25D366; color:#08301A;
  border:3px solid var(--ink); border-radius:999px;
  padding:13px 20px 13px 15px;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  box-shadow:4px 4px 0 var(--ink);
  transition:transform .35s var(--bounce), box-shadow .35s var(--ease);
}
.wa:hover{ transform:translate(-2px,-3px); box-shadow:7px 7px 0 var(--ink); }
.wa svg{ width:21px; height:21px; flex-shrink:0; }
.wa .lbl{ white-space:nowrap; }
@media (max-width:900px){
  .wa{ right:16px; bottom:16px; padding:14px; }
  .wa .lbl{ display:none; }
}
/* keep it clear of the horizontal-walk floor plan */
body.has-walk .wa{ bottom:70px; }
@media (max-width:900px){ body.has-walk .wa{ bottom:16px; } }

/* ===================================================================
   REVIEWS — the Google rating, shown honestly
   =================================================================== */
.rev{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.rev-score{ display:flex; align-items:baseline; gap:10px; }
.rev-num{ font-family:var(--display); font-weight:900; font-size:3.2rem; line-height:1; }
.rev-stars{ display:flex; gap:3px; }
.rev-stars svg{ width:19px; height:19px; fill:var(--sunflower); stroke:var(--ink); stroke-width:1.2; }
.rev-meta{ font-family:var(--mono); font-size:.64rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); line-height:1.9; }
.rev-quote{ font-family:var(--display); font-style:italic; font-size:1.35rem; line-height:1.4;
  border-left:4px solid var(--coral); padding-left:18px; margin:0; max-width:40ch; }
.rev-quote cite{ display:block; font-family:var(--mono); font-style:normal; font-size:.6rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft); margin-top:10px; }
.on-dark .rev-num, .on-dark .rev-quote{ color:var(--chalk); }
.on-dark .rev-meta, .on-dark .rev-quote cite{ color:var(--chalk-soft); }
