/* Consultation landing — fight-poster / Thai gym board system
   Aligns with homepage gym sections: sharp edges, red strike, no SaaS glass. */

.moytay-consultation-template,
.moytay-consultation-template .site-content,
.moytay-consultation-template .ast-container {
  background: #0a0a0b;
  max-width: none;
  padding: 0;
}

.moytay-consultation-template .site-main {
  margin: 0;
  padding: 0;
}

.moytay-consultation-template #moytay-float-call {
  display: none;
}

/* Beat Astra heading color (--ast-global-color-2) on dark landing */
.moytay-consultation-template .clp h1,
.moytay-consultation-template .clp h2,
.moytay-consultation-template .clp h3,
.moytay-consultation-template .clp-title,
.moytay-consultation-template .clp-hero__title,
.moytay-consultation-template .clp-hero__brand,
.moytay-consultation-template .clp-card__title,
.moytay-consultation-template .clp-class__name,
.moytay-consultation-template .clp-timeline__title,
.moytay-consultation-template .clp-final__title,
.moytay-consultation-template .clp-contact__value,
.moytay-consultation-template .clp-acc__item summary {
  color: #fff;
}

.moytay-consultation-template .clp-title span {
  color: var(--clp-red, #d32f2f);
}

.clp {
  --clp-bg: #0a0a0b;
  --clp-panel: #121214;
  --clp-panel-2: #18181b;
  --clp-red: #d32f2f;
  --clp-red-deep: #9b1c1c;
  --clp-gold: #c9a227;
  --clp-text: #f2f2f2;
  --clp-muted: #8b8b93;
  --clp-line: rgba(255, 255, 255, 0.1);
  --clp-radius: 3px;
  --clp-wrap: min(1140px, calc(100% - 2.25rem));
  --font-display: var(--font-titr, "TitrZebr", Tahoma, sans-serif);
  --font-body: var(--font-iran, "IRANFamilyTypeface", Tahoma, sans-serif);

  color: var(--clp-text);
  background: var(--clp-bg);
  font-family: var(--font-body);
  overflow-x: clip;
}

.clp * {
  box-sizing: border-box;
}

.clp-wrap {
  width: var(--clp-wrap);
  margin-inline: auto;
}

/* Floor grain + section rhythm */
.clp-section {
  position: relative;
  padding: clamp(3.75rem, 9vw, 7rem) 0;
}

.clp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
}

.clp-section > .clp-wrap {
  position: relative;
  z-index: 1;
}

.clp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.9rem;
  color: var(--clp-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clp-eyebrow::before,
.clp-eyebrow::after {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: currentColor;
}

.clp-eyebrow--light {
  color: #f0f0f0;
}

.clp-eyebrow--light::before,
.clp-eyebrow--light::after {
  background: var(--clp-red);
}

.clp-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.clp-title span {
  color: var(--clp-red);
}

.clp-lead {
  margin: 0.9rem 0 0;
  color: var(--clp-muted);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 34rem;
}

.clp-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 40rem;
}

/* Solid fight-card buttons — no pills, no glow */
.clp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--clp-radius);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.clp-btn--primary {
  background: var(--clp-red);
  color: #fff;
  border-color: var(--clp-red);
}

.clp-btn--primary:hover {
  background: #e53935;
  border-color: #e53935;
  color: #fff;
}

.clp-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.clp-btn--ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.clp-btn--gold {
  background: transparent;
  border-color: var(--clp-gold);
  color: var(--clp-gold);
}

.clp-btn--gold:hover {
  background: var(--clp-gold);
  color: #111;
}

.clp-btn--block {
  width: 100%;
}

.clp-btn--xl {
  min-height: 3.35rem;
  padding-inline: 1.75rem;
  font-size: 1rem;
}

/* Solid panel — replaces glass */
.clp-glass {
  background: var(--clp-panel);
  border: 1px solid var(--clp-line);
  border-radius: var(--clp-radius);
  box-shadow: none;
  backdrop-filter: none;
}

.clp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.clp-reveal[data-reveal="left"] {
  transform: translateX(-16px);
}

.clp-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ========== HERO — full-bleed fight poster ========== */
.clp-hero {
  position: relative;
  min-height: min(100svh, 880px);
  display: grid;
  align-items: end;
  padding: 6.5rem 0 3.75rem;
  overflow: hidden;
}

.clp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.clp-hero__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.25) contrast(1.08);
  transform: scale(1.04);
  will-change: transform;
}

.clp-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.92) 0%, rgba(10, 10, 11, 0.55) 48%, rgba(10, 10, 11, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.2) 0%, rgba(10, 10, 11, 0.55) 55%, #0a0a0b 100%);
}

.clp-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--clp-wrap);
  margin-inline: auto;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--clp-red);
}

.clp-hero__brand {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.2;
  color: #fff;
}

.clp-hero__brand em {
  font-style: normal;
  color: var(--clp-red);
}

.clp-hero__title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 8vw, 5rem);
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.clp-hero__lead {
  margin: 1.15rem 0 0;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.85;
}

.clp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
  margin-bottom: 1.35rem;
}

.clp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  color: var(--clp-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.clp-hero__meta li {
  position: relative;
  padding-right: 0.85rem;
}

.clp-hero__meta li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.35em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--clp-red);
}

.clp-wa {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: var(--clp-radius);
  background: #1f8f4a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}

.clp-wa:hover {
  background: #24a355;
  color: #fff;
}

@media (max-width: 768px) {
  .clp-wa {
    bottom: 5rem;
  }

  .clp-hero__veil {
    background:
      linear-gradient(180deg, rgba(10, 10, 11, 0.25) 0%, rgba(10, 10, 11, 0.72) 45%, #0a0a0b 100%);
  }
}

/* ========== GALLERY — tight photo grid ========== */
.clp-gallery {
  background: #0e0e10;
}

.clp-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.clp-masonry__item {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  background: #111;
  overflow: hidden;
}

.clp-masonry__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.35s ease, transform 0.45s ease;
}

.clp-masonry__item:hover img {
  filter: grayscale(0) contrast(1.08);
  transform: scale(1.04);
}

@media (min-width: 720px) {
  .clp-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .clp-masonry {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ========== ABOUT ========== */
.clp-about__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.clp-about__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--clp-line);
  min-height: 280px;
}

.clp-about__media::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--clp-red);
}

.clp-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
  filter: grayscale(0.15);
}

.clp-feature-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--clp-line);
  background: var(--clp-line);
}

.clp-card {
  padding: 1.25rem 1.15rem 1.35rem;
  background: var(--clp-panel);
  border: 0;
  border-radius: 0;
  transition: background 0.2s ease;
}

.clp-card:hover {
  background: var(--clp-panel-2);
  transform: none;
}

.clp-card--glass {
  background: var(--clp-panel);
  backdrop-filter: none;
}

.clp-card__index {
  display: none;
}

.clp-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
}

.clp-card__text {
  margin: 0.5rem 0 0;
  color: var(--clp-muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .clp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .clp-about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .clp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== CLASSES — fight cards ========== */
.clp-classes {
  background: #0e0e10;
}

.clp-class-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--clp-line);
  background: var(--clp-line);
}

.clp-class {
  display: grid;
  background: var(--clp-panel);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: background 0.2s ease;
}

.clp-class:hover {
  background: #161618;
  transform: none;
  border-color: transparent;
}

.clp-class__media {
  position: relative;
  min-height: 190px;
  background: #111;
}

.clp-class__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--clp-red);
}

.clp-class__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.25);
  transition: filter 0.3s ease;
}

.clp-class:hover .clp-class__media img {
  filter: grayscale(0);
}

.clp-class__body {
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.clp-class__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.clp-class__meta {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.75rem;
  border-block: 1px solid var(--clp-line);
}

.clp-class__meta li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.9rem;
}

.clp-class__meta span {
  color: var(--clp-muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clp-class__desc {
  margin: 0;
  color: var(--clp-muted);
  line-height: 1.7;
  flex: 1;
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .clp-class-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .clp-class-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clp-class {
    grid-template-rows: 200px 1fr;
  }
}

/* ========== COACH ========== */
.clp-coach {
  background: #0a0a0b;
}

.clp-coach__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.clp-coach__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--clp-line);
}

.clp-coach__media::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clp-red), var(--clp-gold));
  z-index: 1;
}

.clp-coach__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}

.clp-coach__en {
  margin: 0.35rem 0 0;
  color: var(--clp-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clp-quote {
  margin: 1.2rem 0 0;
  padding: 0.95rem 1rem;
  border: 0;
  border-right: 3px solid var(--clp-red);
  background: var(--clp-panel);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  font-size: 0.98rem;
}

.clp-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border: 1px solid var(--clp-line);
}

.clp-list li {
  position: relative;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  color: var(--clp-muted);
  border-bottom: 1px solid var(--clp-line);
  background: var(--clp-panel);
}

.clp-list li:last-child {
  border-bottom: 0;
}

.clp-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--clp-red);
}

@media (min-width: 900px) {
  .clp-coach__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.25rem;
  }
}

/* ========== WHY ========== */
.clp-why .clp-feature-grid {
  background: var(--clp-line);
}

/* ========== STEPS — vertical fight path ========== */
.clp-steps {
  background: #0e0e10;
}

.clp-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--clp-line);
  background: var(--clp-line);
}

.clp-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.1rem;
  background: var(--clp-panel);
  border: 0;
  position: relative;
}

.clp-timeline__num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--clp-red);
  color: var(--clp-red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
}

.clp-timeline__title {
  margin: 0.1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}

.clp-timeline__text {
  margin: 0.35rem 0 0;
  color: var(--clp-muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  .clp-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
  }

  .clp-timeline__item {
    grid-template-columns: 1fr;
    min-height: 100%;
  }
}

/* ========== FORM ========== */
.clp-form {
  padding: clamp(1.25rem, 3vw, 1.85rem);
}

.clp-form__grid {
  display: grid;
  gap: 0.85rem;
}

.clp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.86rem;
}

.clp-field span {
  color: var(--clp-muted);
  letter-spacing: 0.04em;
}

.clp-field input,
.clp-field select,
.clp-field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--clp-radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0a0b;
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.clp-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.clp-field input:focus,
.clp-field select:focus,
.clp-field textarea:focus {
  border-color: var(--clp-red);
  box-shadow: none;
}

.clp-field--full {
  grid-column: 1 / -1;
}

.clp-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 1.15rem;
  color: var(--clp-muted);
  font-size: 0.9rem;
  cursor: pointer;
}

.clp-check input {
  margin-top: 0.2rem;
  accent-color: var(--clp-red);
}

.clp-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--clp-radius);
  font-size: 0.92rem;
}

.clp-alert--ok {
  background: rgba(31, 143, 74, 0.12);
  border: 1px solid rgba(31, 143, 74, 0.45);
}

.clp-alert--err {
  background: rgba(211, 47, 47, 0.12);
  border: 1px solid rgba(211, 47, 47, 0.45);
}

@media (min-width: 720px) {
  .clp-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== CONTACT ========== */
.clp-contact__grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--clp-line);
  background: var(--clp-line);
}

.clp-contact__card {
  padding: 1.35rem 1.2rem;
  border: 0;
  border-radius: 0;
  background: var(--clp-panel);
  box-shadow: none;
}

.clp-contact__row + .clp-contact__row {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--clp-line);
}

.clp-contact__label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--clp-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clp-contact__value {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
}

.clp-contact__value:hover {
  color: var(--clp-red);
}

.clp-contact__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.clp-contact__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--clp-muted);
  font-size: 0.92rem;
}

.clp-contact__hours strong {
  color: #fff;
  font-weight: 700;
}

.clp-contact__social {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.clp-contact__social a {
  min-width: 3.1rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--clp-radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.clp-contact__social a:hover {
  border-color: var(--clp-red);
  color: var(--clp-red);
}

.clp-contact__map {
  min-height: 280px;
  background: var(--clp-panel);
}

.clp-map {
  min-height: 280px;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: #151515;
}

.clp-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.clp-map--placeholder {
  display: grid;
  place-items: center;
  color: var(--clp-muted);
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(211, 47, 47, 0.1), transparent 45%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 6px,
      transparent 6px,
      transparent 12px
    );
}

@media (min-width: 900px) {
  .clp-contact__grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

/* ========== FAQ ========== */
.clp-acc {
  display: grid;
  gap: 0;
  border: 1px solid var(--clp-line);
  background: var(--clp-line);
}

.clp-acc__item {
  border-radius: 0;
  border: 0;
  background: var(--clp-panel);
  overflow: hidden;
}

.clp-acc__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.1rem;
  font-weight: 800;
  position: relative;
  padding-left: 2.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
}

.clp-acc__item summary::-webkit-details-marker {
  display: none;
}

.clp-acc__item summary::after {
  content: "+";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clp-red);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--font-body);
}

.clp-acc__item[open] summary::after {
  content: "−";
}

.clp-acc__item[open] summary {
  border-bottom: 1px solid var(--clp-line);
}

.clp-acc__body {
  padding: 0.9rem 1.1rem 1.1rem;
}

.clp-acc__body p {
  margin: 0;
  color: var(--clp-muted);
  line-height: 1.85;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .clp-faq__layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2.25rem;
    align-items: start;
  }
}

/* ========== FINAL CTA ========== */
.clp-final {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem 1rem;
  overflow: hidden;
}

.clp-final__media {
  position: absolute;
  inset: 0;
}

.clp-final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.1);
}

.clp-final__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.92)),
    linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.18), transparent);
}

.clp-final__inner {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--clp-red);
}

.clp-final__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6.5vw, 3.8rem);
  line-height: 1.1;
  color: #fff;
}

.clp-final__lead {
  margin: 0.9rem auto 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 0.98rem;
}

/* ========== STICKY MOBILE ========== */
.clp-sticky {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 11, 0.96);
  border-top: 2px solid var(--clp-red);
}

.clp-sticky.is-visible {
  display: flex;
}

.clp-sticky__btn {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 2.75rem;
  border-radius: var(--clp-radius);
  background: var(--clp-red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.clp-sticky__call {
  display: grid;
  place-items: center;
  min-width: 4.25rem;
  min-height: 2.75rem;
  padding-inline: 0.75rem;
  border-radius: var(--clp-radius);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}

@media (min-width: 769px) {
  .clp-sticky {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clp-reveal,
  .clp-btn,
  .clp-masonry__item img,
  .clp-class {
    transition: none !important;
  }

  .clp-reveal {
    opacity: 1;
    transform: none;
  }
}
