/* ============================================================
   LeadOps Advisory — Cinematic layer (v3 landing + testimonials)
   Loaded AFTER style.css. Only additive: nothing here restyles
   the shared header/footer/buttons/cards system.
   Design notes: full-viewport video chapters stacked with
   position:sticky — each chapter pins, the next slides over it.
   Content-first: all copy is visible without JS; cinema.js adds
   the hidden/reveal classes only when it is allowed to animate.
   ============================================================ */

/* ---------- Chapter stack ---------- */
.chapters {
  position: relative;
  background: var(--green-950);
}

.chapter {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 34rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #eef0e9;
  isolation: isolate;
}

/* scroll room while the previous chapter stays pinned */
.chapter-gap { height: 58vh; height: 58svh; }
.chapter-gap--tail { height: 34vh; height: 34svh; }

.chapter-media { position: absolute; inset: 0; z-index: -2; background: var(--green-950); }
.chapter-media video,
.chapter-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.chapter-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(11, 31, 30, 0.50) 0%,
      rgba(11, 31, 30, 0.18) 34%,
      rgba(11, 31, 30, 0.30) 58%,
      rgba(11, 31, 30, 0.82) 86%,
      rgba(11, 31, 30, 0.94) 100%),
    radial-gradient(120% 70% at 18% 88%, rgba(11, 31, 30, 0.55) 0%, rgba(11, 31, 30, 0) 60%);
}

.chapter-inner {
  position: relative;
  width: 100%;
  padding-bottom: clamp(2.8rem, 7vh, 5.5rem);
}

.chapter-count {
  position: absolute;
  top: calc(var(--header-h) + 1.4rem);
  right: var(--gutter);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.22em;
  color: rgba(230, 215, 174, 0.72);
  font-variant-numeric: lining-nums;
}

.chapter-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-caps);
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 1.1rem;
}
.chapter-kicker::before { content: ""; width: 2.2rem; height: 2px; background: var(--gold-500); flex: none; }

.chapter h2 {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.125rem);
  color: #f6f3e8;
  max-width: 17ch;
  margin-bottom: 0.45em;
  text-shadow: 0 2px 24px rgba(11, 31, 30, 0.45);
}

.chapter-lead {
  font-size: clamp(1.0625rem, 1.01rem + 0.3vw, 1.25rem);
  line-height: 1.62;
  color: #dbe2d7;
  max-width: 56ch;
  margin: 0 0 1.6rem;
  text-shadow: 0 1px 14px rgba(11, 31, 30, 0.5);
}

.chapter-proof {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  max-width: 46rem;
  background: rgba(11, 31, 30, 0.55);
  border: 1px solid rgba(216, 192, 138, 0.28);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 0.95rem 1.25rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.9688rem;
  line-height: 1.55;
  color: #e7ead9;
}
.chapter-proof svg { width: 1.15rem; height: 1.15rem; flex: none; color: var(--gold-400); margin-top: 0.15rem; }
.chapter-proof p { margin: 0; max-width: none; }
.chapter-proof strong { color: var(--gold-200); font-weight: 650; }

/* ---------- Hero chapter ---------- */
/* Top-anchored so the copy sits high and leaves the walking figure in the
   video visible below it (was center-aligned, which sat over the figure). */
.chapter--hero { align-items: flex-start; }
.chapter--hero .chapter-inner { padding-bottom: 0; }
/* Hero copy is centred into the thinnest part of the shared scrim; give the hero
   its own left-anchored + vertical scrim so text keeps a hard legibility floor
   over the brightest video frames (WCAG: left column >=6:1, full width >=4.5:1). */
.chapter--hero .chapter-scrim {
  background:
    linear-gradient(90deg, rgba(11, 31, 30, 0.86) 0%, rgba(11, 31, 30, 0.72) 40%, rgba(11, 31, 30, 0.44) 74%, rgba(11, 31, 30, 0.34) 100%),
    linear-gradient(180deg, rgba(11, 31, 30, 0.50) 0%, rgba(11, 31, 30, 0.34) 42%, rgba(11, 31, 30, 0.52) 100%);
}

.hero-v3 { max-width: 54rem; padding-block: clamp(6.5rem, 13vh, 9rem) clamp(2rem, 5vh, 3.5rem); }
.hero-v3 .eyebrow { color: var(--gold-300); text-shadow: 0 1px 12px rgba(11, 31, 30, 0.7); }
.hero-v3 h1 { color: #f6f3e8; margin-bottom: 0.45em; text-shadow: 0 2px 30px rgba(11, 31, 30, 0.55); }
.hero-v3 h1 em { font-style: italic; color: var(--gold-300); }
.hero-v3 .lead { color: #dde3d8; max-width: 46ch; margin-bottom: 2.1rem; text-shadow: 0 1px 16px rgba(11, 31, 30, 0.55); }
.hero-v3 .hero-ctas { margin-bottom: 0; }

/* sector strip pinned to hero bottom */
.hero-sectors {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(216, 192, 138, 0.2);
  background: linear-gradient(180deg, rgba(11, 31, 30, 0.25), rgba(11, 31, 30, 0.65));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-sectors-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 2rem;
  padding-block: 1.05rem;
}
.hero-sectors .trust-label { color: var(--gold-300); }
.hero-sectors ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.9rem; margin: 0; padding: 0; list-style: none; }
.hero-sectors li {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #d3dccb;
  white-space: nowrap;
}
.hero-sectors li::marker { content: ""; }

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4.7rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 215, 174, 0.85);
  text-decoration: none;
  transition: opacity 0.4s var(--ease);
}
.scroll-cue:hover { color: var(--gold-200); }
.scroll-cue-line {
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(180deg, var(--gold-400), rgba(203, 178, 106, 0));
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--gold-200);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop { 0% { top: -40%; opacity: 0; } 25% { opacity: 1; } 100% { top: 110%; opacity: 0; } }
body.hero-passed .scroll-cue { opacity: 0; pointer-events: none; }

/* Hero lead has a full (desktop) and a short (phone) variant — the long copy
   filled the phone hero and pushed the buttons over the walking figure. */
.lead--m { display: none; }
@media (max-width: 720px) {
  .scroll-cue { display: none; }
  .hero-v3 { padding-block: clamp(1.25rem, 3.5vh, 2.25rem) clamp(2.5rem, 7vh, 4rem); }
  .hero-v3 h1 { margin-bottom: 0.3em; }
  .hero-v3 .lead--full { display: none; }
  .hero-v3 .lead--m { display: block; font-size: 1.0625rem; line-height: 1.5; margin-bottom: 1.4rem; }
  .hero-v3 .hero-ctas { gap: 0.6rem; }
  /* Short phones: let the hero grow instead of clipping content */
  .chapter--hero { height: auto; min-height: 100vh; min-height: 100svh; }
}

/* ---------- Chapter copy reveal (JS-gated) ---------- */
.cr { opacity: 1; transform: none; }
.cr--pending { opacity: 0; transform: translateY(26px); }
.cr--anim { transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.chapter.in .cr--anim, .cr--anim.in { opacity: 1; transform: none; }
.cr--anim.cr-d1 { transition-delay: 0.1s; }
.cr--anim.cr-d2 { transition-delay: 0.2s; }
.cr--anim.cr-d3 { transition-delay: 0.3s; }

/* subtle slow zoom on pinned video for extra depth (only while animating allowed) */
@media (prefers-reduced-motion: no-preference) {
  .chapter-media video { transform: scale(1.02); }
}

/* ---------- Altitude rail (levels of operations) ---------- */
.alt-rail {
  display: grid;
  gap: 1.6rem;
  margin-top: var(--space-block);
  padding: 0;
  list-style: none;
  position: relative;
}
@media (min-width: 860px) {
  .alt-rail { grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
  .alt-rail::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 2%;
    right: 2%;
    height: 2px;
    background: linear-gradient(90deg, rgba(191, 163, 95, 0.25), var(--gold-500), rgba(191, 163, 95, 0.25));
  }
}
.alt-rail li { margin: 0; position: relative; padding-top: 1.6rem; }
.alt-rail li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--gold-500);
}
@media (max-width: 859px) {
  .alt-rail { padding-left: 0.45rem; }
  .alt-rail::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.6rem;
    bottom: 0.6rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(191, 163, 95, 0.25), var(--gold-500), rgba(191, 163, 95, 0.25));
  }
  .alt-rail li { padding: 0 0 0 2rem; }
  .alt-rail li::before { top: 0.15rem; }
}
.alt-rail b { display: block; font-family: var(--font-body); font-weight: 650; font-size: 1.0313rem; color: var(--ink); margin-bottom: 0.2rem; }
.alt-rail span { display: block; font-size: 0.875rem; color: var(--ink-3); line-height: 1.5; max-width: 24ch; }

/* ---------- Stats: 6-up variant ---------- */
@media (min-width: 900px) { .stats--6 { grid-template-columns: repeat(3, 1fr); row-gap: 2.6rem; } }

/* ---------- Testimonial band (landing) ---------- */
.t-band-feature {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.15rem + 1.2vw, 1.875rem);
  font-weight: 460;
  line-height: 1.42;
  color: #f1eede;
  max-width: 30ch;
  margin: 0 0 1.4rem;
}
.t-band-feature::before {
  content: "\201C";
  display: block;
  font-size: 2.6em;
  line-height: 0.55;
  color: var(--gold-500);
  margin-bottom: 0.35em;
}
.t-band-who { font-size: 0.9375rem; color: #b9c5b8; margin-bottom: 2.6rem; }
.t-band-who b { color: #f1eede; font-weight: 650; }

/* ============================================================
   Testimonials — compact wall: perspective groups + area filter
   Real referee photos, verbatim quotes, no oversized panels.
   ============================================================ */

.tw-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 1.8rem 0 0; }
.tw-filters-label { font-size: var(--fs-caps); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); font-weight: 650; margin-right: 0.5rem; }
.tw-filter {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.42rem 1.05rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tw-filter:hover { border-color: var(--gold-500); color: var(--ink); }
.tw-filter[aria-pressed="true"] { background: var(--green-700); border-color: var(--green-700); color: #f4f1e6; }

.tw-group { margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.tw-group.is-hidden { display: none; }

.tw-grid { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
@media (min-width: 720px) { .tw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tw-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.tw-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-1);
}
.tw-card.is-hidden { display: none; }

.tw-head { display: flex; gap: 0.85rem; align-items: center; }
.tw-photo {
  width: 3.4rem;
  height: 3.4rem;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  background: var(--paper-2);
}
.tw-head b { display: block; font-size: 0.9875rem; font-weight: 650; color: var(--ink); line-height: 1.25; }
.tw-role { display: block; font-size: 0.8125rem; color: var(--ink-3); line-height: 1.35; }
.tw-src { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: var(--ink-3); margin-top: 0.2rem; }
.tw-src svg { width: 0.8rem; height: 0.8rem; color: var(--gold-700); }

.tw-card blockquote { margin: 0; font-size: 0.9688rem; line-height: 1.58; color: var(--ink); }
.tw-card blockquote p { margin: 0; }
.tw-card blockquote p::before { content: "\201C"; color: var(--gold-700); }
.tw-card blockquote p::after { content: "\201D"; color: var(--gold-700); }

.tw-clamp blockquote p { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.tw-clamp.is-open blockquote p { display: block; -webkit-line-clamp: none; }
.tw-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.84375rem;
  font-weight: 650;
  color: var(--accent-deep);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tw-more summary {
  font-size: 0.84375rem;
  font-weight: 650;
  color: var(--accent-deep);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.tw-more summary::-webkit-details-marker { display: none; }
.tw-more summary::after { content: ""; width: 0.45rem; height: 0.45rem; border-right: 2px solid var(--gold-700); border-bottom: 2px solid var(--gold-700); transform: rotate(45deg); transition: transform 0.2s var(--ease); margin-top: -0.2rem; }
.tw-more[open] summary::after { transform: rotate(225deg); margin-top: 0.15rem; }
.tw-more blockquote { margin: 0.75rem 0 0; font-size: 0.9375rem; color: var(--ink-2); border-left: 2px solid var(--gold-500); padding-left: 0.85rem; }
.tw-more blockquote + blockquote { margin-top: 0.9rem; }

.tw-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: auto 0 0; }
.tw-chips li { margin: 0; font-size: 0.75rem; letter-spacing: 0.03em; border: 1px solid var(--line); border-radius: 999px; padding: 0.18rem 0.62rem; color: var(--ink-3); white-space: nowrap; }

/* ---------- Experience invitation (landing → the journey) ---------- */
.xp {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #eef0e9;
  background: var(--green-950);
}
.xp-bg { position: absolute; inset: 0; z-index: -2; }
.xp-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.xp-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,31,30,0.82) 0%, rgba(11,31,30,0.55) 50%, rgba(11,31,30,0.88) 100%); }
.xp-inner { position: relative; padding-block: clamp(4rem, 9vw, 7rem); }
.xp h2 { color: #f6f3e8; }
.xp .lead { color: #ccd5cc; }
.xp-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.xp-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.8rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.xp-links li { margin: 0; }
.xp-links a { color: var(--gold-300); font-size: 0.9375rem; font-weight: 500; }
.xp-links a:hover { color: var(--gold-200); }

/* ---------- Industries strip (light) ---------- */
.ind-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
@media (min-width: 900px) { .ind-grid { grid-template-columns: repeat(4, 1fr); } }
.ind-grid figure { margin: 0; }
.ind-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.ind-grid figcaption { font-size: 0.84375rem; color: var(--ink-3); margin-top: 0.55rem; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-line::after { animation: none; }
  .cr--pending { opacity: 1; transform: none; }
  .cr--anim { transition: none; }
  .chapter-media video { transform: none; }
}

/* ---------- Small screens: keep chapters readable ---------- */
@media (max-width: 640px) {
  .chapter h2 { font-size: clamp(1.75rem, 6.6vw, 2.2rem); }
  .chapter-proof { font-size: 0.9063rem; }
  .chapter-count { top: calc(var(--header-h) + 0.9rem); }
  .chapter-gap { height: 46svh; }
}

/* ---------- Print: chapters flatten ---------- */
@media print {
  .chapters { background: #fff; }
  .chapter { position: static; height: auto; min-height: 0; color: #000; }
  .chapter-media, .chapter-scrim, .chapter-gap, .scroll-cue { display: none; }
  .chapter h2, .hero-v3 h1 { color: #000; text-shadow: none; }
  .chapter-lead, .hero-v3 .lead { color: #333; text-shadow: none; }
}

/* ---------- Directions row: operations move in every direction (coda to #altitude) ---------- */
.dir-lead {
  margin-top: var(--space-block);
  font-size: var(--fs-body);
  color: var(--ink-2);
  font-weight: 560;
}
.alt-note {
  margin-top: 0.85rem;
  max-width: 62ch;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-2);
}
.dir-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.4rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) { .dir-row { grid-template-columns: repeat(4, 1fr); gap: 1.4rem 2rem; } }
.dir-row li { margin: 0; border-top: 2px solid var(--gold-500); padding-top: 0.9rem; }
.dir-row b {
  display: block;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.4375rem;
  line-height: 1.15;
  color: var(--green-900);
}
.dir-row span {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--ink-3);
}

/* ---------- Sector band: single full-width banner strip ("Brought in for") ---------- */
.sector-band {
  background: var(--paper);
  border-top: 2px solid var(--gold-500);
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}
.sector-band-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.sector-band .trust-label {
  margin: 0;
  flex: none;
  white-space: nowrap;
  font-size: 0.78125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-800);
  font-weight: 650;
}
.sector-items {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 0.86rem + 0.3vw, 1.125rem);
  font-weight: 540;
  line-height: 1.5;
  color: var(--green-900);
}
.sector-items i {
  font-style: normal;
  color: var(--gold-500);
  padding: 0 0.5em;
  font-weight: 700;
}
@media (max-width: 640px) {
  .sector-band-inner { flex-direction: column; gap: 0.4rem; }
}


/* ---------- The experience invitation: light section, dark door-card ---------- */
.xp--light {
  background: var(--paper-2);
  padding: var(--space-section) 0;
}
.xp--light .xp-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .xp--light .xp-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(2.4rem, 5vw, 4.5rem); }
}
.xp--light .eyebrow { color: var(--gold-800); }
.xp--light h2 { color: var(--green-900); }
.xp--light .lead { color: var(--ink-2); }
.xp-micro {
  margin-top: 1.1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.xp-door {
  position: relative;
  display: block;
  border-radius: var(--radius, 14px);
  overflow: hidden;
  border: 1px solid var(--gold-400);
  box-shadow: 0 22px 54px -28px rgba(18, 43, 42, 0.55);
  transition: transform 0.25s var(--ease, ease), box-shadow 0.25s var(--ease, ease);
  aspect-ratio: 16 / 10;
  background: var(--green-950);
}
.xp-door:hover { transform: translateY(-4px); box-shadow: 0 30px 64px -26px rgba(18, 43, 42, 0.65); }
.xp-door img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.25s var(--ease, ease), transform 0.6s var(--ease, ease);
}
.xp-door:hover img { opacity: 1; transform: scale(1.025); }
.xp-door-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 31, 30, 0.55);
  border: 1.5px solid var(--gold-300);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.25s var(--ease, ease), background 0.25s var(--ease, ease);
}
.xp-door:hover .xp-door-badge { transform: translate(-50%, -50%) scale(1.07); background: rgba(11, 31, 30, 0.7); }
.xp-door-badge svg { width: 1.5rem; height: 1.5rem; fill: var(--gold-200); margin-left: 3px; }
.xp-door-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.6rem 1.3rem 1.05rem;
  background: linear-gradient(180deg, transparent, rgba(11, 31, 30, 0.85));
  color: #f4f1e6;
  font-weight: 650;
  font-size: 1.0313rem;
  letter-spacing: 0.02em;
}
