/* ============================================================
   Paris de Mulheres — paris.css v3
   Cultural foundation aesthetic — sober, powerful, institutional.
   Same typographic DNA as France Experience, completely different layout.
   ============================================================ */

/* ══════════════════════════════════════
   BODY — starts dark
   ═══════════════════════════════════════ */
body {
  background-color: var(--color-preto-editorial);
  transition: background-color 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

a, a:hover, a:focus, a:active {
  text-decoration: none !important;
  text-decoration-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ══════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════ */
html, body, *, a, button, input, select, textarea, [role="button"], ::before, ::after {
  cursor: none !important;
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background-color: var(--color-ameixa-escura);
  border: 1px solid transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition:
    width 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    height 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

.cursor-follower.is-hovering {
  width: 70px; height: 70px;
  background-color: rgba(90, 46, 99, 0.08);
  border: 1px solid rgba(90, 46, 99, 0.35);
  box-shadow: 0 8px 32px rgba(90, 46, 99, 0.15), inset 0 0 12px rgba(90, 46, 99, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(15px);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform, filter;
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.reveal-image {
  clip-path: inset(5% 5% 5% 5%);
  opacity: 0;
  transition:
    clip-path 1.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.reveal-image.is-visible { clip-path: inset(0 0 0 0); opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-roxo-fenix);
  display: block;
  margin-bottom: 2rem;
}

.eyebrow--light { color: rgba(243, 239, 234, 0.5); }

.editorial-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-preto-editorial);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.5rem;
  border: 1px solid rgba(27, 27, 27, 0.3);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.editorial-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--color-preto-editorial);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.editorial-btn:hover { color: var(--color-off-white); border-color: var(--color-preto-editorial); }
.editorial-btn:hover::before { transform: scaleY(1); transform-origin: top; }

.editorial-btn--light {
  color: var(--color-off-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.editorial-btn--light::before { background-color: var(--color-off-white); }
.editorial-btn--light:hover { color: var(--color-ameixa-escura); border-color: var(--color-off-white); }

.editorial-btn--outline-dark {
  color: var(--color-preto-editorial);
  border-color: rgba(27, 27, 27, 0.25);
  background: transparent;
}

/* ══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.pdm-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  transition:
    background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    backdrop-filter 0.5s ease,
    border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.pdm-nav__logo {
  height: 2.2rem;
  max-height: 40px;
  width: auto;
  display: block;
  transition: filter 0.4s ease;
  filter: brightness(0) invert(1);
}
.pdm-nav.is-scrolled .pdm-nav__logo { filter: none; }
.pdm-nav.is-scrolled.pdm-nav--on-dark .pdm-nav__logo { filter: brightness(0) invert(1); }

.pdm-nav__links {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

.pdm-nav__link {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(243, 239, 234, 0.75);
  text-decoration: none;
  position: relative;
  transition: color 0.4s ease, letter-spacing 0.3s ease;
}
.pdm-nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 100%; height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.pdm-nav__link:hover { color: var(--color-off-white); letter-spacing: 0.26em; }
.pdm-nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.pdm-nav__cta {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(243, 239, 234, 0.3);
  border-radius: 50px;
  color: var(--color-off-white);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap;
}
.pdm-nav__cta:hover {
  background-color: var(--color-off-white);
  color: var(--color-ameixa-escura);
  border-color: var(--color-off-white);
}

.pdm-nav.is-scrolled {
  background-color: rgba(245, 241, 235, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(27, 27, 27, 0.06);
}
.pdm-nav.is-scrolled .pdm-nav__link { color: rgba(27, 27, 27, 0.6); }
.pdm-nav.is-scrolled .pdm-nav__link:hover { color: var(--color-preto-editorial); }
.pdm-nav.is-scrolled .pdm-nav__cta { color: var(--color-preto-editorial); border-color: rgba(27,27,27,0.25); }
.pdm-nav.is-scrolled .pdm-nav__cta:hover {
  background-color: var(--color-ameixa-escura);
  color: var(--color-off-white);
  border-color: var(--color-ameixa-escura);
}
.pdm-nav.is-scrolled.pdm-nav--on-dark {
  background-color: rgba(20, 20, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.04);
}
.pdm-nav.is-scrolled.pdm-nav--on-dark .pdm-nav__link { color: rgba(243, 239, 234, 0.65); }
.pdm-nav.is-scrolled.pdm-nav--on-dark .pdm-nav__link:hover { color: var(--color-off-white); }
.pdm-nav.is-scrolled.pdm-nav--on-dark .pdm-nav__cta { color: var(--color-off-white); border-color: rgba(243,239,234,0.3); }

/* ── Light nav variant (tour detail page) ── */
.pdm-nav--light {
  background-color: rgba(245, 241, 235, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(27, 27, 27, 0.06);
}
.pdm-nav--light .pdm-nav__logo { filter: none; }
.pdm-nav--light .pdm-nav__link { color: rgba(27, 27, 27, 0.6); }
.pdm-nav--light .pdm-nav__link:hover { color: var(--color-preto-editorial); }
.pdm-nav--light .pdm-nav__cta { color: var(--color-preto-editorial); border-color: rgba(27, 27, 27, 0.25); }
.pdm-nav--light .pdm-nav__cta:hover { background-color: var(--color-ameixa-escura); color: var(--color-off-white); border-color: var(--color-ameixa-escura); }
.pdm-nav--light.is-scrolled .pdm-nav__logo { filter: none; }

/* ══════════════════════════════════════
   HERO — split, left-aligned headline
   Quote AS the heading, not logo centered
   ═══════════════════════════════════════ */
.pdm-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-preto-editorial);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(90, 46, 99, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(122, 30, 44, 0.12) 0%, transparent 45%);
}

.pdm-hero__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10rem 4rem 6rem;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 6rem;
  align-items: end;
}

.pdm-hero__left {
  display: flex;
  flex-direction: column;
}

/* The headline IS the manifesto quote — huge italic serif */
.pdm-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-off-white);
  margin: 0;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.pdm-hero__headline em {
  font-style: italic;
  color: var(--color-rosa-queimado);
}

.pdm-hero__right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.pdm-hero__logo-wrap {
  border-top: 1px solid rgba(243, 239, 234, 0.12);
  padding-top: 2rem;
}

.pdm-hero__logo-badge {
  height: 2.4rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.pdm-hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(243, 239, 234, 0.5);
  margin: 0;
}

.pdm-hero__actions {
  display: flex;
  gap: 1rem;
}

.pdm-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.pdm-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(243,239,234,0) 0%, rgba(243,239,234,0.35) 100%);
}
.pdm-hero__scroll-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 239, 234, 0.35);
  writing-mode: vertical-rl;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════
   STRIP — scrolling marquee of themes
   ═══════════════════════════════════════ */
.pdm-strip {
  background-color: var(--color-ameixa-escura);
  overflow: hidden;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pdm-strip__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.pdm-strip__track span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(243, 239, 234, 0.55);
  flex-shrink: 0;
}

.pdm-strip__dot {
  color: var(--color-rosa-queimado) !important;
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   ROTEIROS — stacked full-width list
   Completely different from FE's 2-col grid
   ═══════════════════════════════════════ */
.pdm-tours {
  padding: 8rem 4rem;
  background-color: var(--color-creme-claro);
}

.pdm-tours__header {
  max-width: 1300px;
  margin: 0 auto 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.pdm-tours__header .eyebrow { margin-bottom: 0; }

.pdm-tours__intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(27, 27, 27, 0.5);
  max-width: 380px;
  text-align: right;
}

.pdm-tours__list {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

/* Each tour = a full-width horizontal row */
.pdm-tours__row {
  display: grid;
  grid-template-columns: 4rem 1fr auto auto 3rem;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(27, 27, 27, 0.12);
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s ease;
}

.pdm-tours__row::before {
  content: '';
  position: absolute;
  left: -4rem; right: -4rem; top: 0; bottom: 0;
  background-color: var(--color-ameixa-escura);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.pdm-tours__row:hover::before { opacity: 1; }

.pdm-tours__row:hover .pdm-tours__num,
.pdm-tours__row:hover .pdm-tours__name,
.pdm-tours__row:hover .pdm-tours__arrow { color: var(--color-off-white); }

.pdm-tours__row:hover .pdm-tours__tag {
  border-color: rgba(243,239,234,0.3);
  color: rgba(243,239,234,0.7);
}

.pdm-tours__row:hover .pdm-tours__duration { color: rgba(243,239,234,0.5); }
.pdm-tours__row:hover .pdm-tours__price { color: var(--color-off-white); }

.pdm-tours__num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(27, 27, 27, 0.25);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.pdm-tours__tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ameixa-escura);
  border: 1px solid rgba(90, 46, 99, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.pdm-tours__name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-preto-editorial);
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.pdm-tours__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.pdm-tours__duration {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(27, 27, 27, 0.45);
  letter-spacing: 0.05em;
}

.pdm-tours__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-preto-editorial);
  letter-spacing: 0.02em;
}

.pdm-tours__arrow {
  color: rgba(27, 27, 27, 0.3);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}
.pdm-tours__row:hover .pdm-tours__arrow { transform: translateX(4px); }

.pdm-tours__empty {
  padding: 3rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(27, 27, 27, 0.5);
}
.pdm-tours__empty a { color: var(--color-ameixa-escura); }

/* ══════════════════════════════════════
   MANIFESTO — centred, dark, monumental
   Single column, no grid
   ═══════════════════════════════════════ */
.pdm-manifesto {
  padding: 10rem 4rem;
  background-color: var(--color-ameixa-escura);
  text-align: center;
}

.pdm-manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pdm-manifesto__quote {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-off-white);
  margin: 0 0 4rem;
}

.pdm-manifesto__quote strong {
  font-weight: 300;
  font-style: italic;
  color: var(--color-rosa-queimado);
}

.pdm-manifesto__body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(243, 239, 234, 0.58);
  text-align: left;
  column-count: 2;
  column-gap: 4rem;
}
.pdm-manifesto__body p { margin-bottom: 1.5rem; break-inside: avoid; }

/* ══════════════════════════════════════
   SOBRE — 1/3 sidebar + 2/3 body text
   Very different proportions from FE
   ═══════════════════════════════════════ */
.pdm-about {
  padding: 10rem 4rem;
  background-color: var(--color-off-white);
}

.pdm-about__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 8rem;
  align-items: start;
}

.pdm-about__sidebar {
  position: sticky;
  top: 8rem;
}

.pdm-about__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-preto-editorial);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0.5rem 0 0;
}

.pdm-about__bio {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}
.pdm-about__bio p { margin-bottom: 1.75rem; }
.pdm-about__bio p:last-child { margin-bottom: 0; }

/* "Falar com Glória" — art-link style, not a plain button */
.pdm-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-ameixa-escura);
  text-decoration: none;
  padding-bottom: 6px;
  position: relative;
  transition: letter-spacing 0.3s ease;
}
.pdm-about__cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background-image: linear-gradient(to right, var(--color-rosa-queimado) 50%, var(--color-ameixa-escura) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.pdm-about__cta:hover { letter-spacing: 0.26em; font-style: italic; }
.pdm-about__cta:hover::after { background-position: 0% 0; }
.pdm-about__cta svg { transition: transform 0.3s ease; }
.pdm-about__cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════
   CTA — stark, one line, monumental
   ═══════════════════════════════════════ */
.pdm-cta {
  padding: 10rem 4rem;
  background-color: var(--color-bordo-profundo);
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Faint background monogram */
.pdm-cta::before {
  content: 'PdM';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 40vw;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.pdm-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pdm-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--color-off-white);
  margin: 1.5rem 0 4rem;
}

.pdm-cta__heading em { font-style: italic; }

/* ══════════════════════════════════════
   FAQ — two column: title left, list right
   ═══════════════════════════════════════ */
.pdm-faq {
  padding: 10rem 4rem;
  background-color: var(--color-creme-claro);
}

.pdm-faq__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
}

.pdm-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--color-preto-editorial);
  position: sticky;
  top: 8rem;
  margin: 0;
}

.pdm-faq__right {
  border-top: 1px solid rgba(27,27,27,0.12);
}

.pdm-faq__item {
  border-bottom: 1px solid rgba(27,27,27,0.12);
  padding: 2rem 0;
  cursor: pointer;
}

.pdm-faq__question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-preto-editorial);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.pdm-faq__question::-webkit-details-marker { display: none; }
.pdm-faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-ameixa-escura);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.pdm-faq__item[open] .pdm-faq__question::after { transform: rotate(45deg); }

.pdm-faq__answer {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(27, 27, 27, 0.6);
  margin-top: 1.5rem;
  padding-right: 3rem;
}

/* ══════════════════════════════════════
   CALLOUT — FRANCE EXPERIENCE
   Horizontal layout: label | content | quote
   ═══════════════════════════════════════ */
.pdm-callout {
  padding: 8rem 4rem;
  background-color: var(--color-preto-editorial);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pdm-callout__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 6rem;
  align-items: start;
}

.pdm-callout__label { padding-top: 0.3rem; }

.pdm-callout__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pdm-callout__logo-link {
  display: inline-block;
  line-height: 0;
}

.pdm-callout__logo {
  height: 2.2rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.pdm-callout__logo-link:hover .pdm-callout__logo { opacity: 1; }

.pdm-callout__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(243, 239, 234, 0.5);
}

.pdm-callout__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(243, 239, 234, 0.65);
  margin: 0;
  padding-top: 0.3rem;
  border-left: 2px solid rgba(193, 79, 122, 0.4);
  padding-left: 2rem;
}

/* ══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.pdm-footer {
  padding: 6rem 4rem 4rem;
  background-color: var(--color-preto-editorial);
  border-top: 1px solid rgba(243, 239, 234, 0.06);
}

.pdm-footer__inner { max-width: 1300px; margin: 0 auto; }

.pdm-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(243, 239, 234, 0.08);
}

.pdm-footer__logo {
  height: 2rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.pdm-footer__tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 239, 234, 0.3);
  display: block;
}

.pdm-footer__col-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 239, 234, 0.3);
  display: block;
  margin-bottom: 1.5rem;
}

.pdm-footer__sublinks { display: flex; flex-direction: column; gap: 0.8rem; }

.pdm-footer__sublink {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(243, 239, 234, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}
.pdm-footer__sublink:hover { color: var(--color-off-white); }

.pdm-footer__contact-item {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(243, 239, 234, 0.55);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}
.pdm-footer__contact-item:hover { color: var(--color-off-white); }

.pdm-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.pdm-footer__copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(243, 239, 234, 0.25);
}

.pdm-footer__back {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(243, 239, 234, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}
.pdm-footer__back:hover { color: var(--color-off-white); }

/* ══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .cursor-follower { display: none !important; }
  html, body, *, a, button, input, select, textarea, [role="button"], ::before, ::after { cursor: auto !important; }
  * { -webkit-tap-highlight-color: transparent; }

  .pdm-nav { padding: 1.4rem 1.5rem; }
  .pdm-nav__links { gap: 1.5rem; }
  .pdm-nav__link { font-size: 0.58rem; letter-spacing: 0.14em; }
  .pdm-nav__cta { padding: 0.65rem 1.4rem; font-size: 0.58rem; }

  .pdm-hero__inner { grid-template-columns: 1fr; gap: 3rem; padding: 10rem 2rem 5rem; }
  .pdm-hero__right { padding-bottom: 0; }

  .pdm-tours { padding: 6rem 2rem; }
  .pdm-tours__header { flex-direction: column; gap: 1.5rem; }
  .pdm-tours__intro { text-align: left; max-width: 100%; }
  .pdm-tours__row { grid-template-columns: 3rem 1fr auto 2rem; gap: 1.5rem; }
  .pdm-tours__tag { display: none; }

  .pdm-manifesto { padding: 7rem 2rem; }
  .pdm-manifesto__body { column-count: 1; }

  .pdm-about { padding: 7rem 2rem; }
  .pdm-about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .pdm-about__sidebar { position: relative; top: auto; }

  .pdm-cta { padding: 8rem 2rem; }
  .pdm-cta__heading { font-size: clamp(3rem, 10vw, 6rem); }
  .pdm-cta::before { font-size: 50vw; }

  .pdm-faq { padding: 7rem 2rem; }
  .pdm-faq__inner { grid-template-columns: 1fr; gap: 3rem; }
  .pdm-faq__title { position: relative; top: auto; }

  .pdm-callout { padding: 7rem 2rem; }
  .pdm-callout__inner { grid-template-columns: 1fr; gap: 3rem; }
  .pdm-callout__quote { border-left: none; padding-left: 0; padding-top: 2rem; border-top: 1px solid rgba(243,239,234,0.15); }

  .pdm-footer { padding: 6rem 2rem 3rem; }
  .pdm-footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .editorial-btn:active { transform: scale(0.95); opacity: 0.85; }
}

/* ── Phones (≤768px) ── */
@media (max-width: 768px) {
  .pdm-nav { padding: 1.2rem 1.5rem; }
  .pdm-nav__links { gap: 1.2rem; }

  .pdm-hero__inner { padding: 9rem 1.5rem 4rem; }
  .pdm-hero__headline { font-size: clamp(2.6rem, 10vw, 4.5rem); }
  .pdm-hero__scroll { display: none; }

  .pdm-strip { padding: 0.8rem 0; }
  .pdm-strip__track span { font-size: 0.75rem; }

  .pdm-tours { padding: 5rem 1.5rem; }
  .pdm-tours__row { grid-template-columns: 2.5rem 1fr 2rem; padding: 1.8rem 0; gap: 1rem; }
  .pdm-tours__meta { display: none; }
  .pdm-tours__name { font-size: clamp(1.2rem, 5vw, 1.8rem); }

  .pdm-manifesto { padding: 6rem 1.5rem; }
  .pdm-manifesto__quote { font-size: clamp(1.8rem, 7vw, 3rem); }

  .pdm-about { padding: 6rem 1.5rem; }
  .pdm-about__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .pdm-cta { padding: 7rem 1.5rem; }
  .pdm-cta__heading { font-size: clamp(2.5rem, 11vw, 5rem); }

  .pdm-faq { padding: 6rem 1.5rem; }
  .pdm-faq__title { font-size: clamp(2rem, 7vw, 3rem); }

  .pdm-callout { padding: 6rem 1.5rem; }

  .pdm-footer { padding: 5rem 1.5rem 3rem; }
  .pdm-footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .pdm-footer__bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .pdm-nav__links .pdm-nav__link:not(:last-child) { display: none; }
  .pdm-nav__links { gap: 1rem; }

  .pdm-hero__inner { padding: 8rem 1.2rem 3.5rem; }
  .pdm-hero__headline { font-size: clamp(2.4rem, 11vw, 3.8rem); line-height: 0.95; }
  .pdm-hero__actions { flex-direction: column; align-items: stretch; }
  .pdm-hero__actions .editorial-btn { text-align: center; }

  .pdm-strip { display: none; }

  .pdm-tours { padding: 5rem 1.2rem; }
  .pdm-tours__row { grid-template-columns: 2rem 1fr 1.5rem; gap: 0.8rem; padding: 1.5rem 0; }
  .pdm-tours__num { font-size: 0.9rem; }

  .pdm-manifesto { padding: 5rem 1.2rem; }
  .pdm-about     { padding: 5rem 1.2rem; }
  .pdm-cta       { padding: 6rem 1.2rem; }
  .pdm-faq       { padding: 5rem 1.2rem; }
  .pdm-callout   { padding: 5rem 1.2rem; }
  .pdm-footer    { padding: 4rem 1.2rem 3rem; }

  .editorial-btn { padding: 1.1rem 2.5rem; font-size: 0.7rem; }
}
