/* ─────────────────────────────────────────────
   COOKART HOMEPAGE — scoped stylesheet (front page only)
   Loads after style.css; new .ca-home-* namespace so the old
   .ca-hero / cinematic rules simply don't apply.
───────────────────────────────────────────── */

/* Tokens — only loaded on the homepage, so :root scoping is safe here */
:root {
  --home-red:      #D6232C;
  --home-red-d:    #A81820;
  --home-red-ink:  #8f1319;
  --home-ink:      #171717;
  --home-charcoal: #201E1C;
  --home-white:    #FCFAF7;
  --home-cream:    #F4EFE7;
  --home-stone:    #E4DBCD;
  --home-secondary:#4D4A46;
  --home-muted:    #6B6761;
  --home-border:   rgba(32,28,24,0.12);
  --home-border2:  rgba(32,28,24,0.18);
  --home-r:        12px;
  --home-r-card:   18px;
  --home-r-lg:     24px;
  --home-sh-xs:    0 1px 2px rgba(24,20,17,0.05);
  --home-sh-sm:    0 6px 18px rgba(24,20,17,0.07);
  --home-sh-md:    0 12px 28px rgba(24,20,17,0.09);
  --home-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --home-sans:     'Outfit', system-ui, -apple-system, sans-serif;
  --home-ease:     cubic-bezier(0.16,1,0.3,1);
}

/* Shared homepage reveal (uses caReveal from main.js). Gated on .ca-home-ready
   so content stays visible if JS never runs; targets are below the fold. */
.ca-home-ready .ca-home-reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--home-ease), transform 0.5s var(--home-ease); }
.ca-home-ready .ca-home-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ca-home-ready .ca-home-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ═══════════════════════════════════════════
   HERO — contained, product-led, 2 columns
═══════════════════════════════════════════ */
.ca-home-hero {
  background: var(--home-cream);
  padding: clamp(28px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--home-border);
}
.ca-home-hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.ca-home-hero__content { max-width: 600px; }
.ca-home-hero__eyebrow {
  font-family: var(--home-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-red-ink);
  margin: 0 0 16px;
}
.ca-home-hero__title {
  font-family: var(--home-serif);
  font-size: clamp(2.75rem, 4.6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--home-ink);
  margin: 0 0 18px;
  max-width: 13ch;
  text-wrap: balance;
}
.ca-home-hero__desc {
  font-family: var(--home-sans);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 450;
  line-height: 1.55;
  color: var(--home-secondary);
  margin: 0 0 28px;
  max-width: 34em;
}
.ca-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 22px;
}
.ca-home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--home-sans);
  font-size: 15.5px;
  font-weight: 700;
  border-radius: var(--home-r);
  transition: background 0.2s var(--home-ease), transform 0.15s var(--home-ease), box-shadow 0.2s var(--home-ease), border-color 0.2s var(--home-ease), color 0.2s var(--home-ease);
  cursor: pointer;
}
.ca-home-hero__btn svg { transition: transform 0.2s var(--home-ease); }
.ca-home-hero__btn--primary {
  background: var(--home-red);
  color: #fff;
  padding: 15px 24px;
  min-height: 52px;
  box-shadow: 0 4px 12px rgba(24,20,17,0.14);
}
.ca-home-hero__btn--ghost {
  background: transparent;
  color: var(--home-ink);
  padding: 15px 20px;
  min-height: 52px;
  border: 1px solid var(--home-border2);
}
@media (hover: hover) and (pointer: fine) {
  .ca-home-hero__btn--primary:hover { background: var(--home-red-d); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(24,20,17,0.18); }
  .ca-home-hero__btn--primary:hover svg { transform: translateX(3px); }
  .ca-home-hero__btn--ghost:hover { border-color: var(--home-ink); background: rgba(23,23,23,0.03); }
}
.ca-home-hero__btn:active { transform: translateY(0) scale(0.985); }
.ca-home-hero__btn:focus-visible { outline: 2px solid var(--home-ink); outline-offset: 2px; }
.ca-home-hero__reassure {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--home-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--home-secondary);
  margin: 0;
}
.ca-home-hero__reassure svg { color: var(--home-red); flex-shrink: 0; }
.ca-home-hero__reassure-sep { color: var(--home-stone); }

.ca-home-hero__media {
  border-radius: var(--home-r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--home-stone);
  border: 1px solid var(--home-border2);
  box-shadow: var(--home-sh-md);
  max-width: 620px;
  width: 100%;
  margin-left: auto;
}
.ca-home-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .ca-home-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .ca-home-hero__content { max-width: 100%; }
  .ca-home-hero__title { font-size: clamp(2.375rem, 8vw, 3rem); max-width: 100%; }
  .ca-home-hero__media { max-width: 460px; margin: 0 auto; aspect-ratio: 4 / 3; }
  .ca-home-hero__btn { flex: 1 1 auto; justify-content: center; }
}


/* ── Neutralize the old sticky-hero choreography (hero is now normal flow).
   The collection + story sections get their full redesign in later stages;
   this just removes the 100vh gap/height so the page flows correctly now. ── */
.ca-cats { margin-top: 0 !important; min-height: 0 !important; box-shadow: none !important; padding: clamp(48px,7vw,80px) 0 !important; }
.ca-story { min-height: 0 !important; }


/* ═══════════════════════════════════════════
   TRUST STRIP — compact, static, 4 reassurances
═══════════════════════════════════════════ */
.ca-home-trust {
  background: var(--home-white);
  border-bottom: 1px solid var(--home-border);
  padding: 16px 0;
}
.ca-home-trust__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
}
.ca-home-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--home-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--home-secondary);
  white-space: nowrap;
}
.ca-home-trust__item svg { color: var(--home-red); flex-shrink: 0; }
@media (max-width: 720px) {
  .ca-home-trust__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .ca-home-trust__item { font-size: 12.5px; white-space: normal; }
}


/* ═══════════════════════════════════════════
   COLLECTIONS — "Nos collections", 2 restrained tiles
═══════════════════════════════════════════ */
.ca-home-coll { background: var(--home-cream); padding: clamp(48px, 6vw, 80px) 0; }
.ca-home-coll__inner { max-width: 1100px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.ca-home-coll__head { margin-bottom: clamp(24px, 3vw, 36px); }
.ca-home-coll__title {
  font-family: var(--home-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--home-ink);
  margin: 0 0 8px;
  line-height: 1.1;
}
.ca-home-coll__sub {
  font-family: var(--home-sans);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.55;
  color: var(--home-secondary);
  margin: 0;
  max-width: 54ch;
}
.ca-home-coll__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 28px); }
.ca-home-coll__card {
  position: relative;
  display: block;
  border-radius: var(--home-r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  max-height: 520px;
  border: 1px solid var(--home-border2);
  box-shadow: var(--home-sh-sm);
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
}
.ca-home-coll__media { position: absolute; inset: 0; }
.ca-home-coll__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--home-ease); }
.ca-home-coll__label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(18px, 2.5vw, 26px);
  background: linear-gradient(to top, rgba(15,12,9,0.84) 0%, rgba(15,12,9,0.5) 30%, rgba(15,12,9,0) 52%);
  color: #fff;
}
.ca-home-coll__name { font-family: var(--home-serif); font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; color: #fff; margin: 0 0 5px; }
.ca-home-coll__tag { font-family: var(--home-sans); font-size: 14px; line-height: 1.45; color: rgba(255,255,255,0.86); margin: 0 0 12px; max-width: 34ch; }
.ca-home-coll__count {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--home-sans); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
}
.ca-home-coll__count svg { width: 17px; height: 17px; transition: transform 0.25s var(--home-ease); }
.ca-gamme-gzero .ca-home-coll__label { background: linear-gradient(to top, rgba(9,11,13,0.86) 0%, rgba(9,11,13,0.52) 30%, rgba(9,11,13,0) 52%); }
.ca-home-coll__card:focus-visible { outline: 2px solid var(--home-ink); outline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  .ca-home-coll__card:hover { transform: translateY(-2px); box-shadow: var(--home-sh-md); }
  .ca-home-coll__card:hover .ca-home-coll__img { transform: scale(1.02); }
  .ca-home-coll__card:hover .ca-home-coll__count svg { transform: translateX(4px); }
}
@media (max-width: 768px) {
  .ca-home-coll__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 14px;
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: clamp(16px, 4vw, 40px);
    margin-inline: calc(-1 * clamp(16px, 4vw, 40px));
    scroll-padding-inline: clamp(16px, 4vw, 40px);
  }
  .ca-home-coll__grid::-webkit-scrollbar { display: none; }
  .ca-home-coll__card { scroll-snap-align: start; aspect-ratio: 4 / 3; }
}


/* ═══════════════════════════════════════════
   BEST SELLERS — product-card system
═══════════════════════════════════════════ */
.ca-home-products { background: var(--home-white); padding: clamp(48px, 6vw, 80px) 0; }
.ca-home-products__inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.ca-home-products__head { margin-bottom: clamp(24px, 3vw, 36px); }
.ca-home-products__title {
  font-family: var(--home-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--home-ink);
  margin: 0 0 8px;
  line-height: 1.1;
}
.ca-home-products__sub { font-family: var(--home-sans); font-size: 16px; font-weight: 450; color: var(--home-secondary); margin: 0; }
.ca-home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.ca-home-prod {
  border: 1px solid var(--home-border);
  border-radius: var(--home-r-card);
  overflow: hidden;
  background: var(--home-white);
  box-shadow: var(--home-sh-xs);
  transition: transform 0.22s var(--home-ease), box-shadow 0.22s var(--home-ease), border-color 0.22s var(--home-ease);
}
.ca-home-prod__link { display: flex; flex-direction: column; height: 100%; }
.ca-home-prod__media { aspect-ratio: 1 / 1; background: var(--home-cream); overflow: hidden; }
/* Product photos: contain + breathing space + centre (same frame as the shop cards);
   the product stays fully visible, no crop of handles/lids. */
.ca-home-prod__img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 8%; display: block; transition: transform 0.35s var(--home-ease); }
.ca-home-prod__body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.ca-home-prod__name {
  font-family: var(--home-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--home-ink);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ca-home-prod__meta { font-family: var(--home-sans); font-size: 13px; font-weight: 500; color: var(--home-muted); margin: 0; }
.ca-home-prod__price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 6px; }
.ca-home-prod__now { font-family: var(--home-serif); font-size: 1.2rem; font-weight: 700; color: var(--home-ink); font-variant-numeric: tabular-nums; }
.ca-home-prod__old { font-family: var(--home-sans); font-size: 13px; font-weight: 500; color: var(--home-muted); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.ca-home-prod__link:focus-visible { outline: 2px solid var(--home-ink); outline-offset: 2px; }
@media (hover: hover) and (pointer: fine) {
  .ca-home-prod:hover { transform: translateY(-3px); box-shadow: var(--home-sh-md); border-color: var(--home-border2); }
  .ca-home-prod:hover .ca-home-prod__img { transform: scale(1.03); }
  .ca-home-prod:hover .ca-home-prod__name { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
}
.ca-home-products__foot { margin-top: clamp(28px, 3vw, 40px); text-align: center; }
.ca-home-products__cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--home-sans); font-size: 15.5px; font-weight: 700;
  color: var(--home-ink);
  padding: 14px 26px;
  border: 1px solid var(--home-border2);
  border-radius: var(--home-r);
  transition: background 0.2s var(--home-ease), border-color 0.2s var(--home-ease), transform 0.15s var(--home-ease);
}
.ca-home-products__cta svg { transition: transform 0.2s var(--home-ease); }
@media (hover: hover) and (pointer: fine) {
  .ca-home-products__cta:hover { border-color: var(--home-ink); background: rgba(23,23,23,0.03); }
  .ca-home-products__cta:hover svg { transform: translateX(3px); }
}
.ca-home-products__cta:focus-visible { outline: 2px solid var(--home-ink); outline-offset: 2px; }
@media (min-width: 769px) and (max-width: 900px) { .ca-home-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .ca-home-products__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 68%;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: clamp(16px, 4vw, 40px);
    margin-inline: calc(-1 * clamp(16px, 4vw, 40px));
    scroll-padding-inline: clamp(16px, 4vw, 40px);
  }
  .ca-home-products__grid::-webkit-scrollbar { display: none; }
  .ca-home-prod { scroll-snap-align: start; }
}
@media (max-width: 400px) { .ca-home-products__grid { grid-auto-columns: 80%; } .ca-home-prod__name { font-size: 14.5px; } }


/* ═══════════════════════════════════════════
   CATEGORY DISCOVERY — compact type entry points
═══════════════════════════════════════════ */
.ca-home-cats { background: var(--home-cream); padding: clamp(44px, 5vw, 68px) 0; }
.ca-home-cats__inner { max-width: 1100px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.ca-home-cats__head { margin-bottom: clamp(20px, 2.5vw, 30px); }
.ca-home-cats__title {
  font-family: var(--home-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--home-ink);
  margin: 0;
  line-height: 1.1;
}
.ca-home-cats__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
}
.ca-home-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 16px 12px 18px;
  background: var(--home-white);
  border: 1px solid var(--home-border);
  border-radius: var(--home-r-card);
  transition: transform 0.2s var(--home-ease), box-shadow 0.2s var(--home-ease), border-color 0.2s var(--home-ease);
}
.ca-home-cat__media { width: 78px; height: 78px; border-radius: 12px; overflow: hidden; background: var(--home-stone); margin-bottom: 8px; }
.ca-home-cat__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s var(--home-ease); }
.ca-home-cat__name { font-family: var(--home-sans); font-size: 14.5px; font-weight: 700; color: var(--home-ink); }
.ca-home-cat__count { font-family: var(--home-sans); font-size: 12px; font-weight: 500; color: var(--home-muted); }
.ca-home-cat:focus-visible { outline: 2px solid var(--home-ink); outline-offset: 2px; }
@media (hover: hover) and (pointer: fine) {
  .ca-home-cat:hover { transform: translateY(-2px); box-shadow: var(--home-sh-sm); border-color: var(--home-border2); }
  .ca-home-cat:hover .ca-home-cat__img { transform: scale(1.05); }
}
@media (max-width: 768px) {
  .ca-home-cats__row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 30%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: clamp(16px, 4vw, 40px);
    margin-inline: calc(-1 * clamp(16px, 4vw, 40px));
    scroll-padding-inline: clamp(16px, 4vw, 40px);
  }
  .ca-home-cats__row::-webkit-scrollbar { display: none; }
  .ca-home-cat { scroll-snap-align: start; }
}
@media (max-width: 480px) { .ca-home-cats__row { grid-auto-columns: 40%; } }


/* ═══════════════════════════════════════════
   STORY — clean 2-column editorial (no grain/sketches)
═══════════════════════════════════════════ */
.ca-home-story { background: var(--home-white); padding: clamp(48px, 6vw, 80px) 0; }
.ca-home-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.ca-home-story__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 440px;
  border: 1px solid var(--home-border2);
  box-shadow: var(--home-sh-sm);
  background: var(--home-stone);
}
.ca-home-story__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ca-home-story__label {
  font-family: var(--home-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-red-ink);
  margin: 0 0 14px;
}
.ca-home-story__title {
  font-family: var(--home-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--home-ink);
  margin: 0 0 16px;
  text-wrap: balance;
}
.ca-home-story__text {
  font-family: var(--home-sans);
  font-size: 16.5px;
  font-weight: 450;
  line-height: 1.6;
  color: var(--home-secondary);
  margin: 0 0 14px;
  max-width: 46ch;
}
.ca-home-story__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-family: var(--home-sans);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--home-red);
  padding: 13px 22px;
  border-radius: var(--home-r);
  box-shadow: 0 4px 12px rgba(24,20,17,0.14);
  transition: background 0.2s var(--home-ease), transform 0.15s var(--home-ease), box-shadow 0.2s var(--home-ease);
}
.ca-home-story__btn svg { transition: transform 0.2s var(--home-ease); }
@media (hover: hover) and (pointer: fine) {
  .ca-home-story__btn:hover { background: var(--home-red-d); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(24,20,17,0.18); }
  .ca-home-story__btn:hover svg { transform: translateX(3px); }
}
.ca-home-story__btn:focus-visible { outline: 2px solid var(--home-ink); outline-offset: 2px; }
@media (max-width: 820px) {
  .ca-home-story__inner { grid-template-columns: 1fr; gap: 24px; }
  .ca-home-story__media { order: 2; max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 3; }
}


/* The site-wide .ca-reassure strip duplicates the homepage trust strip — hide
   it here (home.css is front-page only, so other pages keep it). */
.ca-reassure { display: none; }


/* ═══════════════════════════════════════════
   COHERENCE PASS — section labels, outcomes, proof
═══════════════════════════════════════════ */
/* Named section label (no numbers) — small red chapter marker */
.ca-home-label {
  font-family: var(--home-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-red-ink);
  margin: 0 0 10px;
}

/* Collection card — audience + benefit (taller gradient to stay readable) */
.ca-home-coll__label { background: linear-gradient(to top, rgba(15,12,9,0.9) 0%, rgba(15,12,9,0.62) 42%, rgba(15,12,9,0) 74%); }
.ca-gamme-gzero .ca-home-coll__label { background: linear-gradient(to top, rgba(9,11,13,0.92) 0%, rgba(9,11,13,0.64) 42%, rgba(9,11,13,0) 74%); }
.ca-home-coll__audience {
  font-family: var(--home-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin: 0 0 6px;
}
.ca-home-coll__benefit {
  font-family: var(--home-sans);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
  margin: 0 0 12px;
  max-width: 36ch;
}

/* Best-seller outcome line */
.ca-home-prod__use {
  font-family: var(--home-sans);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--home-secondary);
  margin: 3px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Category use line (replaces the bare count) */
.ca-home-cat__use {
  font-family: var(--home-sans);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--home-muted);
  text-align: center;
  margin-top: 3px;
}

/* ── Brand PROOF section (replaces the story) ── */
.ca-home-proof { background: var(--home-white); padding: clamp(48px, 6vw, 80px) 0; }
.ca-home-proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.ca-home-proof__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 440px;
  border: 1px solid var(--home-border2);
  box-shadow: var(--home-sh-sm);
  background: var(--home-stone);
}
.ca-home-proof__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ca-home-proof__title {
  font-family: var(--home-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--home-ink);
  margin: 0 0 22px;
  text-wrap: balance;
}
.ca-home-proof__list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.ca-home-proof__item { display: flex; gap: 16px; align-items: flex-start; }
.ca-home-proof__num {
  font-family: var(--home-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--home-red); flex-shrink: 0; min-width: 26px; line-height: 1.4;
  font-variant-numeric: tabular-nums;
}
.ca-home-proof__label { font-family: var(--home-sans); font-size: 15.5px; font-weight: 700; color: var(--home-ink); margin: 0 0 3px; }
.ca-home-proof__text { font-family: var(--home-sans); font-size: 15px; font-weight: 450; line-height: 1.55; color: var(--home-secondary); margin: 0; max-width: 44ch; }
.ca-home-proof__btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--home-sans); font-size: 15px; font-weight: 700; color: var(--home-ink);
  border: 1px solid var(--home-border2); border-radius: var(--home-r); padding: 13px 22px;
  transition: border-color 0.2s var(--home-ease), background 0.2s var(--home-ease);
}
.ca-home-proof__btn svg { transition: transform 0.2s var(--home-ease); }
@media (hover: hover) and (pointer: fine) {
  .ca-home-proof__btn:hover { border-color: var(--home-ink); background: rgba(23,23,23,0.03); }
  .ca-home-proof__btn:hover svg { transform: translateX(3px); }
}
.ca-home-proof__btn:focus-visible { outline: 2px solid var(--home-ink); outline-offset: 2px; }
@media (max-width: 820px) {
  .ca-home-proof__inner { grid-template-columns: 1fr; gap: 24px; }
  .ca-home-proof__media { order: 2; max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 3; }
}
