/* ─────────────────────────────────────────────────────────
 * Home page (index.html) styles.
 * ───────────────────────────────────────────────────────── */

/* ── CINEMATIC HERO — 3D website build space ───────────── */
.h-cine {
  position: relative;
  height: 340vh;                 /* scroll runway for the build + reveal */
  background: var(--bark);
  z-index: 0;
}
.h-cine-stage {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  background:
    radial-gradient(ellipse 82% 72% at 50% 40%, #3a2c20 0%, #2e2219 56%, #1d130c 100%);
  perspective: 1300px;
  perspective-origin: 50% 46%;
}

/* Layer 0 — the finished hero image, revealed once the build resolves. */
.h-cine-img {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--bark);
  background-image: url('./assets/hero/hero.gif');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.2);
  opacity: 0;
  will-change: transform, opacity;
}
.h-cine-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 32%, transparent 0%, rgba(46,34,25,.32) 100%),
    linear-gradient(to bottom, rgba(46,34,25,.30) 0%, transparent 28%, transparent 50%, rgba(46,34,25,.94) 100%);
}

/* ── The 3D build space ──────────────────────────────────
 * .bs-world is anchored at stage centre; every .bs-panel positions itself
 * relative to that origin via translate3d in the scroll handler. Panels are
 * decorative, so the world ignores pointer events (custom cursor still reads
 * the page beneath). */
.bs-world {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  transform-style: preserve-3d;
  pointer-events: none;
  will-change: transform;
}
.bs-panel {
  position: absolute; left: 0; top: 0;
  transform-style: preserve-3d;
  opacity: 0;
  will-change: transform, opacity;
}
/* Editorial tag on each piece. */
.bs-tag {
  position: absolute; top: -17px; left: 1px;
  font-family: var(--font-ui); font-size: 8px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--sand); opacity: .66; white-space: nowrap;
}

/* grid floor / wireframe panel (deep background piece) */
.bs-grid {
  width: 760px; height: 460px; border-radius: 4px;
  border: 1px solid rgba(217,201,178,.14);
  background-image:
    repeating-linear-gradient(to right,  rgba(217,201,178,.10) 0 1px, transparent 1px calc(100% / 12)),
    repeating-linear-gradient(to bottom, rgba(217,201,178,.07) 0 1px, transparent 1px 56px);
}
.bs-grid .bs-tag { color: var(--clay); opacity: .9; }

/* hero screen mock */
.bs-screen {
  width: 600px; height: 350px; border-radius: 5px;
  background-color: #1d130c;
  background-image:
    linear-gradient(to top, rgba(46,34,25,.72) 0%, transparent 60%),
    url('./assets/hero/hero.gif');
  background-size: cover; background-position: center;
  box-shadow: 0 50px 90px rgba(0,0,0,.5), inset 0 0 0 1px rgba(217,201,178,.16);
}
.bs-screen .bs-dots {
  position: absolute; top: 13px; left: 16px; display: flex; gap: 7px;
}
.bs-screen .bs-dots i {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(243,238,227,.5);
}

/* nav bar mock */
.bs-nav {
  width: 720px; height: 46px; border-radius: 4px;
  background: rgba(36,26,18,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.4), inset 0 0 0 1px rgba(217,201,178,.14);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
}
.bs-nav-mark {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 16px; color: var(--terracotta);
}
.bs-nav-links { display: flex; gap: 22px; }
.bs-nav-links i { width: 38px; height: 6px; border-radius: 3px; background: rgba(217,201,178,.34); }

/* project card mocks */
.bs-card {
  width: 150px; height: 104px; border-radius: 4px;
  background-size: cover; background-position: center;
  box-shadow: 0 26px 54px rgba(0,0,0,.46), inset 0 0 0 1px rgba(217,201,178,.12);
}
.bs-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 4px;
  background: linear-gradient(to top, rgba(46,34,25,.82), transparent 64%);
}
.bs-card-1 { background-image: url('./assets/work/studio-vino.jpg'); }
.bs-card-2 { background-image: url('./assets/work/grand-pinotage.jpg'); }

/* palette strip */
.bs-palette {
  width: 300px; height: 40px; border-radius: 4px; overflow: hidden;
  display: flex; box-shadow: 0 20px 44px rgba(0,0,0,.4), inset 0 0 0 1px rgba(217,201,178,.12);
}
.bs-palette i { flex: 1; height: 100%; }

/* type specimen */
.bs-type {
  width: 130px; height: 130px; border-radius: 4px;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 28px 56px rgba(0,0,0,.44);
}
.bs-type-aa {
  font-family: var(--font-display); font-weight: 300; font-size: 56px; line-height: 1;
  color: var(--bark);
}
.bs-type-meta {
  font-family: var(--font-ui); font-size: 7.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--clay);
}
.bs-type .bs-tag { color: var(--sand); }

/* CTA pill */
.bs-button {
  width: 170px; height: 48px; border-radius: 50px;
  background: var(--terracotta); color: var(--bark);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 24px 50px rgba(168,92,56,.4), inset 0 0 0 1px rgba(46,34,25,.15);
}
.bs-button-arrow { font-size: 14px; }
.bs-button .bs-tag { color: var(--sand); }

/* Layer 3 — the finished hero copy. */
.h-cine-content {
  position: absolute; z-index: 4;
  left: 48px; bottom: 104px; max-width: 880px;
  opacity: 0; will-change: opacity, transform;
}

/* Layer 4 — scroll hint. */
.h-cine-hint {
  position: absolute; z-index: 5; left: 50%; bottom: 46px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-ui); font-size: 9px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--sand); opacity: .6;
}
.h-cine-hint::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: h-scroll 1.8s ease-in-out infinite;
}

/* Reduced-motion / fallback: no build, hero shown plainly. */
.h-cine.reduce { height: 100vh; }
.h-cine.reduce .bs-world { display: none; }
.h-cine.reduce .h-cine-img { opacity: 1; transform: scale(1); }
.h-cine.reduce .h-cine-veil { opacity: 1; }
.h-cine.reduce .h-cine-content { opacity: 1; transform: none; }
.h-cine.reduce .h-cine-hint { display: none; }


/* ── HERO (legacy static, retained for the headline classes) ─ */
.h-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 48px 100px; overflow: visible;
}
.h-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background-color: var(--bark);
  background-image: url('./assets/hero/hero.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.h-hero-bg::before {
  /* Slight warm wash on top of the GIF so it sits in the brand key. */
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 35%, transparent 0%, rgba(46,34,25,.35) 100%),
    linear-gradient(180deg, rgba(46,34,25,.18) 0%, transparent 30%);
  pointer-events: none;
}
.h-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(46,34,25,.25) 0%, transparent 30%, transparent 55%, rgba(46,34,25,.92) 100%);
}
/* The GIF carries its own motion; no need for the gradient drift anymore. */
.h-hero-content {
  position: relative; z-index: 1; max-width: 880px;
}
.h-hero-headline {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(32px, 4.2vw, 60px); line-height: 1.08; letter-spacing: -.012em;
  color: var(--cream); margin: 0 0 28px;
  max-width: 22ch;
  text-wrap: balance;
}
.h-hero-headline em { font-style: italic; color: var(--terracotta); display: inline; }
.h-hero-sub {
  margin: 24px 0 0; max-width: 500px;
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: rgba(243,238,227,.72);
}
.h-hero-scroll {
  position: absolute; bottom: 80px; right: 48px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 8px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sand); opacity: .55;
}
.h-hero-scroll::after {
  content: ''; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: h-scroll 1.8s ease-in-out infinite;
}
@keyframes h-scroll { 0%,100% { transform: scaleY(1); opacity: .55 } 50% { transform: scaleY(.4); opacity: 1 } }

/* ── PROJECTS GRID ─────────────────────────────────────── */
.h-projects { padding: 100px 48px; position: relative; }
.h-projects-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.h-card {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
  background: rgba(46,34,25,.6); text-decoration: none;
  cursor: none;
}
.h-card.wide { grid-column: span 2; aspect-ratio: 21/7; }
.h-card-image {
  position: absolute; inset: 0;
  transition: filter .6s var(--ease-out-soft);
  filter: brightness(.72) saturate(.8);
}
/* Grain texture overlay scoped to case-study imagery.
 * Sits above the image, below the gradient/copy overlay.
 * The blend mode lets the noise carry the image's warmth. */
.h-card-image::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .65 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 320px;
  opacity: .35;
  mix-blend-mode: overlay;
  transition: opacity .6s var(--ease-out-soft);
}
/* Image stays still on hover. Only the warmth deepens slightly. */
.h-card:hover .h-card-image { filter: brightness(.58) saturate(.85); }
.h-card:hover .h-card-image::after { opacity: .28; }
.h-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,34,25,.88) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 36px;
  transition: background .5s var(--ease-out-soft);
}
.h-card:hover .h-card-overlay {
  background: linear-gradient(to top, rgba(46,34,25,.96) 0%, rgba(46,34,25,.32) 100%);
}
.h-card-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
  font-family: var(--font-ui); font-size: 9px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta);
  transform: translateY(14px); opacity: .85;
  transition: transform .6s var(--ease-out-soft), opacity .4s;
}
.h-card:hover .h-card-meta { transform: none; opacity: 1; }
.h-card-meta span.dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .5; }
.h-card-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px); line-height: 1.15; color: var(--cream);
  transform: translateY(14px); transition: transform .65s var(--ease-out-soft);
  max-width: 580px;
}
.h-card:hover .h-card-title { transform: none; }
.h-card-sub {
  margin-top: 14px; max-width: 520px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.6;
  color: var(--sand); opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s, transform .65s var(--ease-out-soft);
  transition-delay: 0s;
}
.h-card:hover .h-card-sub { opacity: .85; transform: none; transition-delay: .08s; }

/* Arrow draws in: shaft scales from 0 → full, head slides in from the left. */
.h-card-arrow {
  position: absolute; top: 28px; right: 28px;
  display: flex; align-items: center; gap: 10px;
  color: var(--terracotta);
  font-family: var(--font-ui); font-size: 13px;
  opacity: 0; transition: opacity .35s var(--ease-out-soft);
}
.h-card-arrow-shaft {
  display: block; width: 38px; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .55s var(--ease-out-soft);
}
.h-card-arrow-head {
  display: block; line-height: 1;
  transform: translateX(-8px);
  transition: transform .55s var(--ease-out-soft);
}
.h-card:hover .h-card-arrow { opacity: 1; }
.h-card:hover .h-card-arrow-shaft { transform: scaleX(1); transition-delay: .05s; }
.h-card:hover .h-card-arrow-head  { transform: none;     transition-delay: .25s; }
.h-see-all {
  text-align: center; margin-top: 56px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
}
.h-see-all a {
  color: var(--terracotta); text-decoration: none;
  border-bottom: 1px solid rgba(206,135,101,.35); padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.h-see-all a:hover { color: var(--cream); border-color: var(--cream); }

/* ── LUDO SECTION ──────────────────────────────────────── */
.h-ludo {
  padding: 120px 48px;
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  border-top: 1px solid var(--sand-08);
}
.h-ludo-body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.7;
  color: var(--sand); max-width: 460px; margin: 0 0 32px;
}
.h-ludo-board {
  width: 100%; max-width: 480px; aspect-ratio: 1;
  margin-left: auto; padding: 14px; background: var(--cream);
  border-radius: 4px;
  box-shadow: 0 36px 80px rgba(0,0,0,.45);
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px;
  position: relative;
  transition: transform .6s var(--ease-out-soft);
  cursor: none;
}
.h-ludo-board:hover { transform: rotate(-1.5deg) scale(1.03); }
.h-ludo-q { border-radius: 2px; position: relative; overflow: hidden; }
.h-ludo-q::before {
  content: ''; position: absolute; inset: 14%;
  border-radius: 50%; background: var(--cream);
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.5);
}
.h-ludo-q.bark { background: var(--bark); }
.h-ludo-q.bark::before { background: rgba(243,238,227,.92); }
.h-ludo-q.tc   { background: var(--terracotta); }
.h-ludo-q.moss { background: var(--moss); }
.h-ludo-q.clay { background: var(--clay); }
.h-ludo-center {
  position: absolute; left: 50%; top: 50%;
  width: 24%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
}
.h-ludo-tri { clip-path: polygon(0 0, 100% 0, 50% 100%); }
.h-ludo-tri.t1 { background: var(--bark);       transform: rotate(180deg); }
.h-ludo-tri.t2 { background: var(--terracotta); transform: rotate(-90deg); }
.h-ludo-tri.t3 { background: var(--clay);       transform: rotate(90deg); }
.h-ludo-tri.t4 { background: var(--moss);       transform: rotate(0deg); }

/* ── ABOUT TEASER ──────────────────────────────────────── */
.h-about {
  padding: 120px 48px;
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  border-top: 1px solid var(--sand-08);
}
.h-about-portrait {
  width: 100%; aspect-ratio: 4/5; border-radius: 4px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #5a3a26, #2e2219);
}
.h-about-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  /* Pull the photo into the warm desert key the rest of the site uses. */
  filter: sepia(.18) saturate(.88) brightness(.96) contrast(1.02);
  transition: filter .6s var(--ease-out-soft), transform .8s var(--ease-out-soft);
}
.h-about:hover .h-about-portrait img {
  filter: sepia(.12) saturate(.95) brightness(1) contrast(1.02);
  transform: scale(1.015);
}
.h-about-body {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.5;
  color: var(--cream); margin: 0 0 32px;
}
.h-about-body em { font-style: italic; color: var(--terracotta); }

/* ── RECORD PLAYER ─────────────────────────────────────── */
.h-rp {
  padding: 120px 48px;
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  border-top: 1px solid var(--sand-08);
}
.h-rp-deck { display: flex; flex-direction: column; gap: 22px; }
.h-rp-plinth {
  width: 100%; max-width: 480px;
  aspect-ratio: 1.15/1;
  /* Painting behind the record, with a warm bark wash so the vinyl still reads. */
  background:
    linear-gradient(140deg, rgba(74,53,37,.45) 0%, rgba(46,34,25,.72) 70%),
    url('./assets/paintings/sunset.png') center/cover no-repeat;
  border-radius: 6px; padding: 32px;
  /* Vignette via inset box-shadow keeps the vinyl + tonearm fully on top. */
  box-shadow:
    0 28px 64px rgba(0,0,0,.55),
    inset 0 0 90px rgba(46,34,25,.55),
    inset 0 1px 0 rgba(243,238,227,.06);
  position: relative; overflow: hidden;
}
.h-vinyl {
  width: 78%; aspect-ratio: 1; position: relative;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1a110a 0%, #0a0604 100%);
  cursor: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  animation: h-vinyl-spin 4s linear infinite paused;
}
.h-rp-deck.playing .h-vinyl { animation-play-state: running; }
.h-vinyl::before {
  content: ''; position: absolute; inset: 6%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(243,238,227,.04) 0 1px, transparent 1px 4px),
    radial-gradient(circle, transparent 60%, rgba(243,238,227,.06) 60%, transparent 62%);
}
.h-vinyl-label {
  position: absolute; inset: 32%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4856a, var(--terracotta) 60%, var(--sienna) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.h-vinyl-title {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 13px; line-height: 1.05; color: var(--cream);
}
.h-vinyl-artist {
  font-family: var(--font-ui); font-size: 7px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(243,238,227,.72); margin-top: 6px;
}
.h-vinyl-spindle {
  position: absolute; left: 50%; top: 50%;
  width: 6%; aspect-ratio: 1; transform: translate(-50%, -50%);
  background: #1a110a; border-radius: 50%;
}
@keyframes h-vinyl-spin { from { transform: rotate(0) } to { transform: rotate(360deg) } }

.h-tonearm {
  position: absolute; top: 8%; right: 8%;
  width: 38%; height: 4%;
  transform-origin: 100% 50%;
  transform: rotate(-22deg);
  transition: transform .8s var(--ease-out-soft);
  pointer-events: none;
}
.h-rp-deck.playing .h-tonearm { transform: rotate(-8deg); }
.h-tonearm-pivot {
  position: absolute; right: -8px; top: 50%;
  width: 22px; height: 22px; transform: translateY(-50%);
  background: linear-gradient(135deg, #d9c9b2, #7a4f35);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.5), inset 0 1px 0 rgba(243,238,227,.3);
}
.h-tonearm-arm {
  position: absolute; left: 0; right: 16px; top: 50%;
  height: 4px; transform: translateY(-50%);
  background: linear-gradient(to right, #d9c9b2, #a89878);
  border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.h-tonearm-head {
  position: absolute; left: -4px; top: 50%;
  width: 24px; height: 14px; transform: translateY(-50%);
  background: var(--bark); border-radius: 2px;
}

.h-rp-controls { display: flex; align-items: center; gap: 18px; max-width: 480px; }
.h-rp-ctrl {
  font-family: var(--font-ui); font-size: 9px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sand); background: transparent;
  border: 1px solid var(--sand-20);
  padding: 10px 18px; border-radius: 50px; cursor: none;
  transition: color .2s, border-color .2s;
}
.h-rp-ctrl:hover { color: var(--terracotta); border-color: var(--terracotta-45); }
.h-rp-now {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.h-rp-side {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--terracotta);
}
.h-rp-state {
  font-family: var(--font-ui); font-size: 8px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(217,201,178,.5);
}

/* ── AI BUILDS ─────────────────────────────────────────── */
.h-ai {
  border-top: 1px solid var(--sand-08);
  padding-top: 100px;
}
.h-ai .lvb-h2 { max-width: 22ch; margin-bottom: 24px; }
.h-ai-intro {
  font-family: var(--font-body); font-size: 16px; line-height: 1.7;
  color: var(--sand); max-width: 540px;
  margin: 0 0 56px;
}

@media (max-width: 900px) {
  .h-cine-content { left: 24px; bottom: 72px; right: 24px; }
  .h-cine-frame { width: min(56vw, 240px); }
  .h-hero { padding: 0 24px 72px; }
  .h-hero-scroll { right: 24px; bottom: 56px; }
  .h-projects { padding: 64px 24px; }
  .h-ai { padding-top: 64px; }
  .h-ai-intro { margin-bottom: 40px; }
  .h-ludo, .h-about, .h-rp { padding: 80px 24px; grid-template-columns: 1fr; gap: 48px; }
  .h-projects-grid { grid-template-columns: 1fr; }
  .h-card.wide { grid-column: span 1; aspect-ratio: 16/9; }
  .h-rp-plinth { max-width: 100%; }
  .h-card-arrow { top: 20px; right: 20px; }
  .h-card-arrow-shaft { width: 24px; }
}
