/* Vesk Casalor — the Python Legacy Collection.

   Naming
   ------
   .s-{section}              a section and anything that lives only inside it
                             (.s-hero, .s-hero__title, .s-footer__cta)
   .vc-{name}                anything that crosses section boundaries
                             (.vc-page, .vc-header, .vc-container, .vc-piece,
                              .vc-btn)
   .vc-btn--{variant}        a modifier: only what differs from the base.
   Grouped selectors (.s-craft__title, .s-restraint__title) share one rule
   only where the delivered declarations were byte-identical.

   Every colour, font size and spacing value below is a token from :root.
   letter-spacing, line-height, ch measures, aspect-ratio and sizing values
   are deliberately literal — they are outside the token rule's scope. */

:root {
  /* Palette — the six delivered colours. Nothing else is a brand colour. */
  --vc-cream: #F4EFE7;
  --vc-ink: #1A1512;
  --vc-clay: #8A6249;
  --vc-sand: #E8E0D3;
  --vc-espresso: #2A1D14;
  --vc-bone: #EDE5D9;

  /* Alpha primitives. Named by value, not by role: two roles that share a
     value share a token because the value is the same, not because the roles
     are. Literal rgba() rather than color-mix() so computed values are exact. */
  --vc-cream-90: rgba(244,239,231,0.9);
  --vc-cream-86: rgba(244,239,231,0.86);
  --vc-cream-78: rgba(244,239,231,0.78);
  --vc-cream-72: rgba(244,239,231,0.72);
  --vc-cream-70: rgba(244,239,231,0.7);
  --vc-cream-50: rgba(244,239,231,0.5);
  --vc-cream-45: rgba(244,239,231,0.45);
  --vc-cream-40: rgba(244,239,231,0.4);
  --vc-cream-16: rgba(244,239,231,0.16);
  --vc-ink-78: rgba(26,21,18,0.78);
  --vc-ink-68: rgba(26,21,18,0.68);
  --vc-ink-55: rgba(26,21,18,0.55);

  /* Scrims — tokenised whole; splitting three-stop gradients per stop buys nothing. */
  --vc-scrim-hero: linear-gradient(180deg, rgba(26,21,18,0.45) 0%, rgba(26,21,18,0.12) 38%, rgba(26,21,18,0.62) 100%);
  --vc-scrim-stat: linear-gradient(180deg, rgba(26,21,18,0.55) 0%, rgba(26,21,18,0.15) 40%, rgba(26,21,18,0.9) 100%);
  --vc-scroll-hint: linear-gradient(rgba(244,239,231,0.75), transparent);

  /* Type */
  --vc-font-display: 'Bodoni Moda', serif;
  --vc-font-body: Jost, system-ui, sans-serif;
  --vc-fs-9: 9px;
  --vc-fs-11: 11px;
  --vc-fs-12: 12px;
  --vc-fs-14: 14px;
  --vc-fs-15: 15px;
  --vc-fs-17: 17px;
  --vc-fs-22: 22px;

  /* Fluid type. Role-named: a clamp() cannot be named by its value.
     fs-h2, fs-h2-collection and fs-h2-footer are three DIFFERENT ramps.
     They are not interchangeable — see the near-miss note below. */
  --vc-fs-hero: clamp(44px, 9vw, 132px);
  --vc-fs-hero-lede: clamp(15px, 1.5vw, 19px);
  --vc-fs-quote: clamp(21px, 2.3vw, 31px);
  --vc-fs-body-lg: clamp(16px, 1.7vw, 22px);
  --vc-fs-statement: clamp(26px, 3.4vw, 52px);
  --vc-fs-h2: clamp(30px, 3.8vw, 58px);
  --vc-fs-h2-collection: clamp(30px, 4vw, 62px);
  --vc-fs-h2-footer: clamp(28px, 4vw, 58px);
  --vc-fs-close: clamp(28px, 4.4vw, 66px);
  --vc-fs-wordmark: clamp(20px, 3.2vw, 42px);

  /* Fluid space. section-y-tight and footer-y differ by 2px at their maximum;
     gap-split and gap-origin differ by 8px. Both pairs are deliberate. */
  --vc-gutter: clamp(20px, 5vw, 64px);
  --vc-section-y: clamp(96px, 16vh, 180px);
  --vc-section-y-tight: clamp(72px, 12vh, 132px);
  --vc-footer-y: clamp(72px, 12vh, 130px);
  --vc-forward-y: clamp(110px, 20vh, 220px);
  --vc-hero-y: clamp(48px, 8vh, 88px);
  --vc-hero-inset: clamp(0px, 6vw, 110px);
  --vc-gap-split: clamp(40px, 6vw, 88px);
  --vc-gap-origin: clamp(40px, 6vw, 96px);
  --vc-gap-cards: clamp(24px, 3vw, 44px);
  --vc-gap-heading: clamp(40px, 6vh, 72px);

  /* Fixed space — 20 ad-hoc steps carried from the delivered design with no
     interval relating them. Named by value, not rationalised: see issue #7. */
  --vc-space-3: 3px;
  --vc-space-8: 8px;
  --vc-space-12: 12px;
  --vc-space-14: 14px;
  --vc-space-16: 16px;
  --vc-space-17: 17px;
  --vc-space-18: 18px;
  --vc-space-20: 20px;
  --vc-space-22: 22px;
  --vc-space-24: 24px;
  --vc-space-26: 26px;
  --vc-space-28: 28px;
  --vc-space-32: 32px;
  --vc-space-34: 34px;
  --vc-space-38: 38px;
  --vc-space-40: 40px;
  --vc-space-44: 44px;
  --vc-space-46: 46px;
  --vc-space-52: 52px;
  --vc-space-56: 56px;

  /* Layout */
  --vc-container: 1180px;
  --vc-measure-hero: 900px;
}

/* ── Fonts ─────────────────────────────────────────────────────────── */
/* latin-ext */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/bodonimoda-400-3.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/bodonimoda-400-4.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/jost-300-2.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/jost-300-3.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Jost 400 deliberately points at the 300-weight subsets. It is
   LOAD-BEARING: 16 elements render at weight 400, and this declaration is
   what stops the browser synthesising faux-bold to reach it. It looks like
   the dead 500 faces removed in #3 and is not — do not delete it. */
/* latin-ext */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/jost-300-2.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Jost 400 deliberately points at the 300-weight subsets. It is
   LOAD-BEARING: 16 elements render at weight 400, and this declaration is
   what stops the browser synthesising faux-bold to reach it. It looks like
   the dead 500 faces removed in #3 and is not — do not delete it. */
/* latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/jost-300-3.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ── Base ──────────────────────────────────────────────────────────── */
  html, body { margin: 0; padding: 0; background: var(--vc-cream); }
  * { box-sizing: border-box; }
  /* <picture> wraps every image for format fallback. display:contents keeps the
     <img> itself as the flex/grid child, so .s-origin__poufs' 58%/42% items and
     every width:100% image size against their real container, not the wrapper. */
  picture { display: contents; }
  /* display:contents on <picture> promotes its <source> children into the
     parent's flex/grid layout, where each one consumes a gap. In
     .s-origin__poufs that shifted the images 40px and 80px right. */
  picture > source { display: none; }
  /* width/height attributes land in the presentational-hints origin, and an
     explicit height defeats aspect-ratio — it only fills in a MISSING dimension.
     Without this the images fall back to intrinsic height. Element specificity
     (0,0,1) loses to the two .s-*__img rules that set height:100% deliberately. */
  img { height: auto; }
  a { color: inherit; text-decoration: none; }
  a:hover { color: var(--vc-clay); }
  ::selection { background: var(--vc-clay); color: var(--vc-cream); }
  @keyframes vcRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
  @keyframes vcFade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes vcLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
  @keyframes vcHeroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
  @keyframes vcBob { 0%,100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(7px); opacity: 1; } }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ── Page ────────────────────────────────────────────────────────────── */
.vc-page {
  background: var(--vc-cream);
  color: var(--vc-ink);
  font-family: var(--vc-font-body);
  overflow-x: hidden;
}

/* ── Header ──────────────────────────────────────────────────────────── */
.vc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--vc-space-22) var(--vc-gutter);
  mix-blend-mode: difference;
  animation: vcFade 1.2s 1.6s both;
}

.vc-header__mark {
  font-family: var(--vc-font-display);
  font-size: var(--vc-fs-15);
  letter-spacing: 0.34em;
  color: var(--vc-cream);
}

.vc-header__link {
  font-size: var(--vc-fs-11);
  letter-spacing: 0.28em;
  color: var(--vc-cream);
  border-bottom: 1px solid var(--vc-cream-45);
  padding-bottom: var(--vc-space-3);
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.s-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  background: var(--vc-espresso);
}

.s-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  animation: vcFade 2s ease both, vcHeroZoom 14s ease-out both;
}

.s-hero__scrim {
  position: absolute;
  inset: 0;
  background: var(--vc-scrim-hero);
}

.s-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--vc-gutter) var(--vc-hero-y);
}

.s-hero__copy {
  max-width: var(--vc-measure-hero);
  padding-right: var(--vc-hero-inset);
}

.s-hero__eyebrow {
  margin: 0 0 var(--vc-space-22);
  font-size: var(--vc-fs-11);
  letter-spacing: 0.42em;
  color: var(--vc-cream-78);
  animation: vcRise 1s 0.9s both;
}

.s-hero__title {
  margin: 0;
  font-family: var(--vc-font-display);
  font-weight: 400;
  font-size: var(--vc-fs-hero);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--vc-cream);
  text-wrap: balance;
  animation: vcRise 1.2s 1.15s both;
}

.s-hero__rule {
  height: 1px;
  width: min(420px, 60%);
  background: var(--vc-cream-50);
  transform-origin: left;
  margin: var(--vc-space-34) 0 var(--vc-space-26);
  animation: vcLine 1.1s 1.6s both cubic-bezier(0.16,1,0.3,1);
}

.s-hero__lede {
  margin: 0;
  max-width: 46ch;
  font-weight: 300;
  font-size: var(--vc-fs-hero-lede);
  line-height: 1.65;
  color: var(--vc-cream-86);
  text-wrap: pretty;
  animation: vcRise 1s 1.75s both;
}

.s-hero__scroll {
  position: absolute;
  bottom: var(--vc-space-26);
  right: var(--vc-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vc-space-8);
  animation: vcFade 1s 2.2s both;
}

.s-hero__scroll-label {
  font-size: var(--vc-fs-9);
  letter-spacing: 0.34em;
  color: var(--vc-cream-70);
}

.s-hero__scroll-line {
  display: block;
  width: 1px;
  height: 34px;
  background: var(--vc-scroll-hint);
  animation: vcBob 2.4s ease-in-out infinite;
}

/* ── Origin ──────────────────────────────────────────────────────────── */
.s-origin,
.s-craft,
.s-restraint {
  padding: var(--vc-section-y) var(--vc-gutter);
}

.s-origin__grid {
  max-width: var(--vc-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vc-gap-origin);
  align-items: center;
}

.s-origin__poufs {
  display: flex;
  gap: var(--vc-space-20);
  align-items: flex-start;
}

.s-origin__pouf-patchwork {
  width: 58%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  background: var(--vc-sand);
}

.s-origin__pouf-plain {
  width: 42%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  margin-top: var(--vc-space-52);
  background: var(--vc-sand);
}

.s-origin__eyebrow {
  margin: 0 0 var(--vc-space-26);
  font-size: var(--vc-fs-11);
  letter-spacing: 0.36em;
  color: var(--vc-clay);
}

.s-origin__quote {
  margin: 0;
  font-family: var(--vc-font-display);
  font-weight: 400;
  font-size: var(--vc-fs-quote);
  line-height: 1.44;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.s-origin__attrib {
  margin: var(--vc-space-32) 0 0;
  font-size: var(--vc-fs-12);
  letter-spacing: 0.22em;
  color: var(--vc-ink-55);
}

/* ── Material Truth ──────────────────────────────────────────────────── */
.s-material {
  position: relative;
  width: 100%;
  background: var(--vc-ink);
  color: var(--vc-cream);
}

.s-material__stage {
  position: relative;
  width: 100%;
  height: clamp(560px, 92svh, 940px);
  overflow: hidden;
}

.s-material__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.s-material__scrim {
  position: absolute;
  inset: 0;
  background: var(--vc-scrim-stat);
}

.s-material__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--vc-gutter);
}

.s-material__band {
  max-width: var(--vc-container);
  margin: 0 auto;
  width: 100%;
}

.s-material__body {
  margin: 0;
  max-width: 60ch;
  font-weight: 300;
  font-size: var(--vc-fs-body-lg);
  line-height: 1.62;
  color: var(--vc-cream-90);
  text-wrap: pretty;
}

.s-material__closing {
  max-width: var(--vc-container);
  margin: 0 auto;
  padding: var(--vc-section-y-tight) var(--vc-gutter);
}

.s-material__statement {
  margin: 0;
  font-family: var(--vc-font-display);
  font-size: var(--vc-fs-statement);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 22ch;
  text-wrap: balance;
}

/* ── Craft ───────────────────────────────────────────────────────────── */
.s-craft__grid,
.s-restraint__grid {
  max-width: var(--vc-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vc-gap-split);
  align-items: center;
}

.s-craft__eyebrow,
.s-restraint__eyebrow {
  margin: 0 0 var(--vc-space-24);
  font-size: var(--vc-fs-11);
  letter-spacing: 0.36em;
  color: var(--vc-clay);
}

.s-craft__title,
.s-restraint__title {
  margin: 0 0 var(--vc-space-26);
  font-family: var(--vc-font-display);
  font-weight: 400;
  font-size: var(--vc-fs-h2);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.s-craft__body,
.s-restraint__body {
  margin: 0;
  max-width: 48ch;
  font-weight: 300;
  font-size: var(--vc-fs-17);
  line-height: 1.75;
  color: var(--vc-ink-78);
  text-wrap: pretty;
}

.s-craft__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--vc-sand);
}

/* ── Collection ──────────────────────────────────────────────────────── */
.s-collection {
  background: var(--vc-bone);
  padding: var(--vc-section-y) var(--vc-gutter);
}

.s-collection__heading {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vc-space-20);
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--vc-gap-heading);
}

.s-collection__title {
  margin: 0;
  font-family: var(--vc-font-display);
  font-weight: 400;
  font-size: var(--vc-fs-h2-collection);
  line-height: 1;
  letter-spacing: -0.02em;
}

.s-collection__meta {
  margin: 0;
  font-size: var(--vc-fs-11);
  letter-spacing: 0.3em;
  color: var(--vc-ink-55);
}

.s-collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--vc-gap-cards);
}

/* ── Collection — piece card ─────────────────────────────────────────── */
.vc-piece {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vc-piece__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16,1,0.3,1);
  display: block;
}

.vc-piece__crop {
  overflow: hidden;
  background: var(--vc-cream);
}

.vc-piece__heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--vc-space-16);
  padding-top: var(--vc-space-18);
}

.vc-piece__name {
  margin: 0;
  font-family: var(--vc-font-display);
  font-weight: 400;
  font-size: var(--vc-fs-22);
  letter-spacing: -0.01em;
}

.vc-piece__cta {
  font-size: var(--vc-fs-11);
  letter-spacing: 0.24em;
  color: var(--vc-clay);
}

.vc-piece__note {
  margin: var(--vc-space-8) 0 0;
  font-weight: 300;
  font-size: var(--vc-fs-14);
  line-height: 1.65;
  color: var(--vc-ink-68);
  text-wrap: pretty;
}

/* ── Restraint ───────────────────────────────────────────────────────── */
.s-restraint__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 30%;
  background: var(--vc-sand);
}

/* ── Walking Forward ─────────────────────────────────────────────────── */
.s-forward {
  background: var(--vc-clay);
  color: var(--vc-cream);
  padding: var(--vc-forward-y) var(--vc-gutter);
  text-align: center;
}

.s-forward__copy {
  max-width: var(--vc-measure-hero);
  margin: 0 auto;
}

.s-forward__eyebrow {
  margin: 0 0 var(--vc-space-34);
  font-size: var(--vc-fs-11);
  letter-spacing: 0.36em;
  color: var(--vc-cream-72);
}

.s-forward__statement {
  margin: 0 0 var(--vc-space-46);
  font-family: var(--vc-font-display);
  font-weight: 400;
  font-size: var(--vc-fs-close);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.s-forward__mark {
  font-family: var(--vc-font-display);
  font-size: var(--vc-fs-wordmark);
  letter-spacing: 0.3em;
  padding-left: 0.3em;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.s-footer {
  background: var(--vc-ink);
  color: var(--vc-cream);
  padding: var(--vc-footer-y) var(--vc-gutter) var(--vc-space-44);
}

.s-footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vc-space-40);
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: var(--vc-space-56);
  border-bottom: 1px solid var(--vc-cream-16);
}

.s-footer__title {
  margin: 0;
  font-family: var(--vc-font-display);
  font-weight: 400;
  font-size: var(--vc-fs-h2-footer);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
  text-wrap: balance;
}

.s-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vc-space-14);
}

.s-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vc-space-18);
  justify-content: space-between;
  padding-top: var(--vc-space-28);
  font-size: var(--vc-fs-11);
  letter-spacing: 0.2em;
  color: var(--vc-cream-50);
}

/* ── Shared ──────────────────────────────────────────────────────────── */
.vc-container {
  max-width: var(--vc-container);
  margin: 0 auto;
}

/* ── Shared — buttons ───────────────────────────────────────────────── */
.vc-btn {
  display: inline-block;
  padding: var(--vc-space-17) var(--vc-space-38);
  font-size: var(--vc-fs-12);
  letter-spacing: 0.26em;
  white-space: nowrap;
  line-height: 1;
}

.vc-btn--solid {
  background: var(--vc-cream);
  color: var(--vc-ink);
  transition: background 300ms ease, color 300ms ease;
}

.vc-btn--outline {
  border: 1px solid var(--vc-cream-40);
  color: var(--vc-cream);
  transition: border-color 300ms ease;
}

/* ── Interaction ────────────────────────────────────────────────────────
   The base block above sets `a:hover { color: var(--vc-clay) }` at
   specificity (0,1,1). A bare class is (0,1,0) and LOSES to it. In the
   delivered design an inline style outranked it; once these declarations
   move into classes, every `<a>` that sets its own colour has to restate
   that colour on :hover or it turns clay. Each restatement below names
   what it beats. */

/* Beats a:hover — without this the ENQUIRE link turns clay on hover.
   Not visible in a screenshot diff; proven by the interaction-state gate. */
.vc-header__link:hover {
  color: var(--vc-cream);
}

/* Beats a:hover — keeps the card's text inheriting instead of turning clay. */
.vc-piece:hover {
  color: inherit;
  opacity: 0.86;
}

.vc-piece__img:hover {
  transform: scale(1.045);
}

.vc-btn--solid:hover {
  background: var(--vc-clay);
  color: var(--vc-cream);
}

/* border-color is the delivered hover; color also beats a:hover. */
.vc-btn--outline:hover {
  border-color: var(--vc-cream);
  color: var(--vc-cream);
}
