/* ══════════════════════════════════════════════════════════
   MAGIC BASKET — partenaires.css
   Styles dédiés à la page Sponsors & Partenaires
   Mobile-first · Breakpoints: 480 · 768 · 1024 · 1280
══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────────────── */
.pt-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.pt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/Home-page.png');
  background-size: cover;
  background-position: center 40%;
  animation: heroZoom 16s ease-out forwards;
}

.pt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(0, 20, 18, 0.5)  0%,
    rgba(0, 50, 46, 0.75) 40%,
    rgba(0, 14, 12, 0.95) 85%,
    rgba(0, 14, 12, 1)    100%
  );
}

.pt-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .pt-hero-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 7rem;
  }
}

@media (min-width: 1024px) {
  .pt-hero { min-height: 58vh; }
  .pt-hero-content { padding-top: 8rem; }
}

/* Eyebrow réutilisable */
.pt-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.pt-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.pt-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s ease forwards;
}

.pt-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.pt-hero-desc {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 34rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

.pt-hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s 0.75s ease forwards;
  flex-shrink: 0;
}

/* Stats strip */
.pt-hero-strip {
  position: relative;
  z-index: 2;
  background: rgba(0, 46, 44, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pt-hero-strip-inner {
  display: flex;
  align-items: center;
  padding-block: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.pt-hero-strip-inner::-webkit-scrollbar { display: none; }

.pt-strip-item {
  flex: 1;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  padding-inline: 0.5rem;
}

.pt-strip-value {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pt-strip-value small { color: var(--gold); font-size: 0.7em; }

.pt-strip-label {
  font-family: var(--font-cond);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.pt-strip-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   SECTIONS
────────────────────────────────────────────────────────── */
.pt-section {
  padding-block: 5rem;
  background: var(--green-deep);
}

.pt-section--alt {
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pt-section--form {
  background: var(--green-deep);
  padding-block: 6rem;
}

.pt-section-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pt-section-header .section-title em {
  font-style: italic;
  color: var(--gold);
}

@media (min-width: 768px) {
  .pt-section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* ──────────────────────────────────────────────────────────
   LOGO PLACEHOLDER
────────────────────────────────────────────────────────── */
.pt-logo-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pt-logo-zone--major {
  width: 100%;
  height: 160px;
}

.pt-logo-zone--equipe {
  width: 100%;
  height: 140px;
}

.pt-logo-zone--media {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
}

.pt-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
}

.pt-logo-initial {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.35);
  line-height: 1;
  letter-spacing: 0.04em;
}

.pt-logo-placeholder--fem  .pt-logo-initial { color: rgba(255, 100, 150, 0.35); }
.pt-logo-placeholder--masc .pt-logo-initial { color: rgba(100, 180, 255, 0.35); }
.pt-logo-placeholder--media .pt-logo-initial { color: rgba(255, 255, 255, 0.2); font-size: 1rem; }
.pt-logo-placeholder--empty { color: rgba(255, 255, 255, 0.15); gap: 0.375rem; }

.pt-logo-name {
  font-family: var(--font-cond);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* ──────────────────────────────────────────────────────────
   BADGES
────────────────────────────────────────────────────────── */
.pt-sponsor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-cond);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.pt-sponsor-badge--gold {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.pt-sponsor-badge--media {
  background: rgba(100, 180, 255, 0.1);
  color: rgba(150, 210, 255, 0.85);
  border: 1px solid rgba(100, 180, 255, 0.2);
}

.pt-sponsor-badge--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Tags */
.pt-sponsor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1rem;
}

.pt-tag {
  font-family: var(--font-cond);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
}

.pt-tag--fem  { background: rgba(255, 100, 150, 0.12); color: rgba(255, 150, 180, 0.8); }
.pt-tag--masc { background: rgba(100, 180, 255, 0.12); color: rgba(150, 210, 255, 0.8); }

/* ──────────────────────────────────────────────────────────
   SPONSORS MAJEURS
────────────────────────────────────────────────────────── */
.pt-majeurs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pt-majeurs-grid { grid-template-columns: 1fr 1fr; }
}

.pt-sponsor-card--major {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.pt-sponsor-card--major:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

/* Trait doré en haut des cards majeures */
.pt-sponsor-card--major::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  flex-shrink: 0;
}

.pt-sponsor-info {
  padding: 1.75rem;
  flex: 1;
}

.pt-sponsor-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.pt-sponsor-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   SPONSORS ÉQUIPES
────────────────────────────────────────────────────────── */
.pt-equipes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pt-equipes-grid { grid-template-columns: 1fr 1fr; }
}

.pt-equipe-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.pt-equipe-card:hover { transform: translateY(-4px); }

.pt-equipe-card--fem {
  border-top: 3px solid rgba(255, 100, 150, 0.4);
}

.pt-equipe-card--fem:hover {
  border-color: rgba(255, 100, 150, 0.4);
  border-top-color: rgba(255, 100, 150, 0.6);
}

.pt-equipe-card--masc {
  border-top: 3px solid rgba(100, 180, 255, 0.4);
}

.pt-equipe-card--masc:hover {
  border-color: rgba(100, 180, 255, 0.4);
  border-top-color: rgba(100, 180, 255, 0.6);
}

.pt-equipe-card-header {
  padding: 1.5rem 1.75rem 0;
}

.pt-equipe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-cond);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.pt-equipe-badge--fem {
  background: rgba(255, 100, 150, 0.12);
  color: rgba(255, 150, 180, 0.9);
  border: 1px solid rgba(255, 100, 150, 0.2);
}

.pt-equipe-badge--masc {
  background: rgba(100, 180, 255, 0.12);
  color: rgba(150, 210, 255, 0.9);
  border: 1px solid rgba(100, 180, 255, 0.2);
}

.pt-equipe-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.pt-equipe-title em {
  font-style: italic;
  color: var(--gold);
}

.pt-equipe-card-body {
  padding: 1.25rem 1.75rem 1.75rem;
  flex: 1;
}

.pt-equipe-sponsor-name {
  font-family: var(--font-cond);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pt-equipe-sponsor-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   PARTENAIRES MÉDIAS
────────────────────────────────────────────────────────── */
.pt-medias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pt-medias-grid { grid-template-columns: 1fr 1fr; }
}

.pt-media-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.pt-media-card:hover {
  border-color: rgba(100, 180, 255, 0.3);
  transform: translateY(-3px);
}

.pt-media-card--placeholder {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
}

.pt-media-card--placeholder:hover {
  border-color: rgba(201, 168, 76, 0.3);
  border-style: dashed;
}

@media (min-width: 640px) {
  .pt-media-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.pt-media-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pt-media-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.pt-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap var(--transition);
}

.pt-link-arrow:hover { gap: 0.625rem; }

/* ──────────────────────────────────────────────────────────
   PARTENAIRES INSTITUTIONNELS
────────────────────────────────────────────────────────── */
.pt-instit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .pt-instit-grid { grid-template-columns: repeat(4, 1fr); }
}

.pt-instit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.pt-instit-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-3px);
}

.pt-instit-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pt-instit-initials {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.6);
  line-height: 1.1;
  text-align: center;
}

.pt-instit-name {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.pt-instit-desc {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────
   FORMULAIRE DEVENIR SPONSOR
────────────────────────────────────────────────────────── */
.pt-form-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .pt-form-container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
  }
}

/* Intro */
.pt-form-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.pt-form-title em {
  font-style: italic;
  color: var(--gold);
}

.pt-form-pitch {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Bénéfices */
.pt-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pt-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pt-benefit-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pt-benefit div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pt-benefit strong {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.pt-benefit span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Wrapper du formulaire */
.pt-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

@media (min-width: 768px) {
  .pt-form-wrapper { padding: 2.5rem; }
}

/* Champs */
.pt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pt-form-row--2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .pt-form-row--2 { grid-template-columns: 1fr 1fr; }
}

.pt-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pt-label {
  font-family: var(--font-cond);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.pt-label span { color: var(--gold); margin-left: 0.125rem; }

.pt-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.pt-input::placeholder { color: rgba(255, 255, 255, 0.25); }

.pt-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.pt-input.is-invalid {
  border-color: rgba(255, 80, 80, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.08);
}

/* Select */
.pt-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.pt-select option {
  background: var(--green-dark);
  color: var(--white);
}

/* Textarea */
.pt-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Erreurs */
.pt-field-error {
  font-size: 0.6875rem;
  color: rgba(255, 100, 100, 0.85);
  min-height: 1rem;
  display: block;
}

/* Footer formulaire */
.pt-form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pt-form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pt-form-legal {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  flex: 1;
}

.pt-form-legal svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: rgba(255, 255, 255, 0.2);
}

.pt-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}

.pt-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pt-submit-icon {
  transition: transform var(--transition);
}

.pt-submit-btn:not(:disabled):hover .pt-submit-icon {
  transform: translateX(2px) translateY(-2px);
}

/* Confirmation */
.pt-form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 200, 100, 0.08);
  border: 1px solid rgba(0, 200, 100, 0.2);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  color: rgba(120, 255, 180, 0.9);
}

.pt-form-success[hidden] { display: none; }

.pt-form-success svg { flex-shrink: 0; margin-top: 0.125rem; }

.pt-form-success div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pt-form-success strong {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pt-form-success span {
  font-size: 0.8125rem;
  opacity: 0.75;
}

/* ──────────────────────────────────────────────────────────
   BANDEAU FINAL
────────────────────────────────────────────────────────── */
.pt-band {
  padding-block: 4.5rem;
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pt-band-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .pt-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pt-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
}

.pt-band-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────────────────────────── */
.pt-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.pt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}