/* =================================================================
   PENTECOST DMV — Custom Page Styles
   Design system: DM Sans + Cormorant Garamond, near-black bg, crimson accent
   ================================================================= */

/* ---------------------------------------------------------------
   VARIABLES
--------------------------------------------------------------- */
:root {
  --pdmv-bg:          #0a0a0a;
  --pdmv-bg-alt:      #111111;
  --pdmv-bg-card:     rgba(255,255,255,0.03);
  --pdmv-primary:     #c0392b;
  --pdmv-primary-dim: rgba(192,57,43,0.12);
  --pdmv-primary-mid: rgba(192,57,43,0.25);
  --pdmv-white:       #f5f5f5;
  --pdmv-muted:       rgba(255,255,255,0.40);
  --pdmv-muted-2:     rgba(255,255,255,0.25);
  --pdmv-border:      rgba(255,255,255,0.07);
  --pdmv-border-hover:rgba(192,57,43,0.55);
  --pdmv-font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;
  --pdmv-font-serif:  'Cormorant Garamond', 'Georgia', serif;
  --pdmv-transition:  0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------
   RESET / BASE
--------------------------------------------------------------- */
.pdmv-body,
.pdmv-body * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.pdmv-body {
  font-family: var(--pdmv-font-sans);
  background-color: var(--pdmv-bg);
  color: var(--pdmv-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.pdmv-body a { color: inherit; text-decoration: none; }
.pdmv-body img, .pdmv-body svg { display: block; }
.pdmv-body button { font-family: inherit; cursor: pointer; }

/* ---------------------------------------------------------------
   LAYOUT
--------------------------------------------------------------- */
.pdmv-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pdmv-max-3xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.pdmv-text-center { text-align: center; }

/* ---------------------------------------------------------------
   UTILITY
--------------------------------------------------------------- */
.pdmv-red           { color: var(--pdmv-primary); }
.pdmv-white         { color: var(--pdmv-white); }
.pdmv-muted         { color: var(--pdmv-muted); font-size: 0.9rem; line-height: 1.7; }
.pdmv-weight-bold   { font-weight: 700; }
.pdmv-weight-medium { font-weight: 500; }
.pdmv-icon-sm { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--pdmv-primary); }
.pdmv-icon-xs { width: 0.75rem; height: 0.75rem; flex-shrink: 0; }

/* ---------------------------------------------------------------
   BUTTONS
--------------------------------------------------------------- */
.pdmv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  font-family: var(--pdmv-font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: var(--pdmv-transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none !important;
}
.pdmv-btn-primary {
  background: var(--pdmv-primary);
  border-color: var(--pdmv-primary);
  color: #fff;
}
.pdmv-btn-primary:hover { background: #a93226; border-color: #a93226; color: #fff; }
.pdmv-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--pdmv-white);
}
.pdmv-btn-outline:hover { border-color: var(--pdmv-primary); color: var(--pdmv-primary); }
.pdmv-btn-ghost-sm {
  background: transparent;
  border-color: var(--pdmv-border);
  color: var(--pdmv-muted);
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
}
.pdmv-btn-ghost-sm:hover { border-color: var(--pdmv-primary); color: var(--pdmv-primary); }
.pdmv-btn-lg  { padding: 0.85rem 2rem; font-size: 0.8rem; }
.pdmv-btn-sm  { padding: 0.45rem 1rem; font-size: 0.72rem; }
.pdmv-btn-full { width: 100%; }
.pdmv-card-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdmv-muted);
  transition: color var(--pdmv-transition);
  text-decoration: none !important;
  margin-top: 0.75rem;
}
.pdmv-card-link:hover { color: var(--pdmv-primary); }
.pdmv-muted-link { color: var(--pdmv-muted); }
.pdmv-muted-link:hover { color: var(--pdmv-primary); }

/* ---------------------------------------------------------------
   NAVBAR
--------------------------------------------------------------- */
.pdmv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--pdmv-transition), border-color var(--pdmv-transition);
  border-bottom: 1px solid transparent;
}
.pdmv-nav.pdmv-nav-scrolled,
.pdmv-nav-scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--pdmv-border);
}
.pdmv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}
.pdmv-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.pdmv-nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pdmv-primary);
  flex-shrink: 0;
}
.pdmv-nav-light { font-weight: 300; }
.pdmv-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.pdmv-nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pdmv-muted);
  transition: color var(--pdmv-transition);
}
.pdmv-nav-links a:hover { color: var(--pdmv-primary); }
.pdmv-nav-cta { flex-shrink: 0; }
.pdmv-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}
.pdmv-nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--pdmv-white);
  transition: var(--pdmv-transition);
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.pdmv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdmv-hero-bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1544427920-c49ccfb85579?w=1600&q=80') center/cover no-repeat,
    var(--pdmv-bg);
}
.pdmv-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.72);
}
.pdmv-hero-gradient-top {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, transparent 40%, rgba(10,10,10,0.5) 100%);
}
.pdmv-hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10rem;
  background: linear-gradient(to top, var(--pdmv-bg), transparent);
}
.pdmv-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.pdmv-hero-rule {
  width: 3rem; height: 1px;
  background: rgba(192,57,43,0.5);
  margin: 1.25rem auto 2rem;
}
.pdmv-hero-title {
  font-size: clamp(3.5rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.pdmv-hero-tagline {
  font-family: var(--pdmv-font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--pdmv-primary);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.pdmv-hero-body {
  color: rgba(255,255,255,0.38);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}
.pdmv-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pdmv-hero-host {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.pdmv-eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--pdmv-primary);
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------------
   INFO BAR
--------------------------------------------------------------- */
.pdmv-infobar {
  border-top: 1px solid var(--pdmv-border);
  border-bottom: 1px solid var(--pdmv-border);
  padding: 2rem 0;
  background: rgba(255,255,255,0.02);
}
.pdmv-infobar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}
.pdmv-infobar-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pdmv-primary);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.pdmv-infobar-value { font-size: 0.9rem; font-weight: 500; }
.pdmv-infobar-address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.75rem;
  color: var(--pdmv-muted);
  padding-top: 1.25rem;
  border-top: 1px solid var(--pdmv-border);
}

/* ---------------------------------------------------------------
   SECTIONS
--------------------------------------------------------------- */
.pdmv-section { padding: 6rem 0; }
.pdmv-section-alt { background: rgba(255,255,255,0.018); }
.pdmv-section-heading {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.pdmv-section-heading-xl {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pdmv-heading-rule {
  width: 2.5rem; height: 2px;
  background: var(--pdmv-primary);
  margin: 0 auto 3.5rem;
}
.pdmv-prose p {
  color: var(--pdmv-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.pdmv-prose p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------
   VISION
--------------------------------------------------------------- */
.pdmv-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.pdmv-vision-left  { display: flex; flex-direction: column; gap: 2.5rem; }
.pdmv-vision-right { padding-top: 0.5rem; }
.pdmv-scripture {
  font-family: var(--pdmv-font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.pdmv-scripture-ref {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.28);
  margin-top: 0.6rem;
}

/* ---------------------------------------------------------------
   EXPECT
--------------------------------------------------------------- */
.pdmv-expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.pdmv-expect-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
.pdmv-expect-item {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.48);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pdmv-expect-item:last-child { border-bottom: none; }

/* ---------------------------------------------------------------
   BREAKTHROUGH
--------------------------------------------------------------- */
.pdmv-breakthrough { position: relative; }
.pdmv-breakthrough-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 12rem;
  background: linear-gradient(to top, rgba(192,57,43,0.05), transparent);
  pointer-events: none;
}
.pdmv-barrier-list { margin-bottom: 3.5rem; }
.pdmv-barrier {
  font-size: clamp(1rem, 3vw, 1.8rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  padding: 0.5rem 0;
  text-decoration: line-through;
  text-decoration-color: var(--pdmv-primary);
  text-decoration-thickness: 1.5px;
}
.pdmv-pull-quote {
  font-family: var(--pdmv-font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ---------------------------------------------------------------
   BLOCKQUOTE
--------------------------------------------------------------- */
.pdmv-blockquote {
  font-family: var(--pdmv-font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,0.65);
  border-left: 2px solid var(--pdmv-primary);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
  line-height: 1.6;
}
.pdmv-blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--pdmv-font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pdmv-muted);
  margin-top: 0.75rem;
}

/* ---------------------------------------------------------------
   LOCATION
--------------------------------------------------------------- */
.pdmv-location { position: relative; }
.pdmv-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12vw;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.pdmv-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.pdmv-address-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--pdmv-border);
  border-bottom: 1px solid var(--pdmv-border);
  margin: 1.25rem 0;
}
.pdmv-address-block p { color: var(--pdmv-muted); font-size: 0.9rem; line-height: 1.8; }
.pdmv-address-block p:first-child { color: var(--pdmv-white); font-weight: 700; }
.pdmv-location-map-frame {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--pdmv-border);
  overflow: hidden;
  background: var(--pdmv-bg-card);
  position: relative;
}
.pdmv-location-map-frame iframe {
  width: 100%; height: 100%;
  filter: grayscale(90%) contrast(1.1) brightness(0.65);
  transition: filter 0.3s;
}
.pdmv-location-map-frame:hover iframe { filter: grayscale(60%) contrast(1.05) brightness(0.8); }
.pdmv-map-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--pdmv-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------------
   SCHEDULE ACCORDION
--------------------------------------------------------------- */
.pdmv-accordion { display: flex; flex-direction: column; gap: 0.6rem; }
.pdmv-acc-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--pdmv-border);
  overflow: hidden;
  position: relative;
  transition: background var(--pdmv-transition), border-color var(--pdmv-transition);
}
.pdmv-acc-item:hover { background: rgba(255,255,255,0.04); }
.pdmv-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  position: relative;
}
.pdmv-acc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pdmv-white);
  letter-spacing: -0.01em;
}
.pdmv-acc-date {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pdmv-primary);
  margin-top: 0.3rem;
}
.pdmv-acc-chevron {
  display: block;
  width: 0.75rem; height: 0.75rem;
  flex-shrink: 0;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  border-right: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  transition: transform var(--pdmv-transition), border-color var(--pdmv-transition);
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}
.pdmv-acc-trigger[aria-expanded="true"] .pdmv-acc-chevron {
  transform: rotate(225deg);
  border-color: var(--pdmv-primary);
  margin-bottom: -0.25rem;
}
.pdmv-acc-bg-num {
  position: absolute;
  right: 3.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.pdmv-acc-body {
  padding: 0 1.5rem 1.5rem;
  animation: pdmvSlideDown 0.3s ease forwards;
}
.pdmv-acc-body[hidden] { display: none; }
@keyframes pdmvSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pdmv-schedule-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.38);
}
.pdmv-schedule-row:last-child { border-bottom: none; }
.pdmv-schedule-row::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.pdmv-schedule-highlight { color: var(--pdmv-primary); font-weight: 500; }
.pdmv-schedule-highlight::before { background: var(--pdmv-primary); }
.pdmv-acc-faq {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pdmv-white);
}
.pdmv-acc-faq-answer {
  font-size: 0.875rem;
  color: var(--pdmv-muted);
  line-height: 1.75;
  padding: 0 0 0.5rem;
}
.pdmv-acc-faq-answer a { color: var(--pdmv-primary); }

/* ---------------------------------------------------------------
   GET INVOLVED
--------------------------------------------------------------- */
.pdmv-involved-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
.pdmv-involved-card {
  background: var(--pdmv-bg-card);
  border: 1px solid var(--pdmv-border);
  padding: 1.75rem;
  transition: border-color var(--pdmv-transition);
}
.pdmv-involved-card:hover { border-color: var(--pdmv-primary); }
.pdmv-involved-icon {
  width: 2.5rem; height: 2.5rem;
  color: var(--pdmv-primary);
  opacity: 0.7;
  margin-bottom: 1rem;
  transition: opacity var(--pdmv-transition);
}
.pdmv-involved-card:hover .pdmv-involved-icon { opacity: 1; }
.pdmv-involved-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color var(--pdmv-transition);
}
.pdmv-involved-card:hover h3 { color: var(--pdmv-primary); }
.pdmv-involved-card p { font-size: 0.85rem; color: var(--pdmv-muted); line-height: 1.65; }

/* ---------------------------------------------------------------
   QR SECTION
--------------------------------------------------------------- */
.pdmv-qr-section {
  position: relative;
  background: var(--pdmv-primary);
  padding: 5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.pdmv-qr-noise {
  position: absolute; inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.pdmv-qr-heading {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pdmv-qr-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}
.pdmv-qr-code {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.pdmv-qr-code img {
  width: 11rem; height: 11rem;
  background: #fff;
  padding: 0.6rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-radius: 0.5rem;
}
.pdmv-qr-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

/* ---------------------------------------------------------------
   PARTNERS PAGE HERO
--------------------------------------------------------------- */
.pdmv-partners-hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
.pdmv-partners-hero-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--pdmv-primary-dim), transparent 70%);
  pointer-events: none;
}
.pdmv-partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pdmv-partner-card {
  background: var(--pdmv-bg-card);
  border: 1px solid var(--pdmv-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--pdmv-transition);
}
.pdmv-partner-card:hover { border-color: var(--pdmv-border-hover); }
.pdmv-partner-type {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pdmv-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pdmv-partner-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pdmv-white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
  transition: color var(--pdmv-transition);
}
.pdmv-partner-card:hover .pdmv-partner-name { color: var(--pdmv-primary); }
.pdmv-partner-desc {
  font-size: 0.85rem;
  color: var(--pdmv-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.pdmv-partner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--pdmv-border);
}
.pdmv-partner-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--pdmv-muted);
}
.pdmv-partner-location svg { color: rgba(192,57,43,0.65); }
.pdmv-partner-ext-link { color: var(--pdmv-muted); transition: color var(--pdmv-transition); }
.pdmv-partner-ext-link svg { width: 0.85rem; height: 0.85rem; }
.pdmv-partner-ext-link:hover { color: var(--pdmv-primary); }

/* ---------------------------------------------------------------
   FINAL CTA
--------------------------------------------------------------- */
.pdmv-final-cta { position: relative; }
.pdmv-final-cta-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--pdmv-bg), rgba(192,57,43,0.09), var(--pdmv-bg));
  pointer-events: none;
}
.pdmv-final-heading {
  position: relative;
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  margin-bottom: 1.5rem;
}
.pdmv-final-sub {
  position: relative;
  color: var(--pdmv-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 0.9rem;
}
.pdmv-final-ctas {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.pdmv-footer {
  border-top: 1px solid var(--pdmv-border);
  padding: 3rem 0;
  background: rgba(255,255,255,0.01);
}
.pdmv-footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pdmv-footer-brand { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }
.pdmv-footer-sub { font-size: 0.72rem; color: var(--pdmv-muted); margin-top: 0.25rem; }
.pdmv-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.pdmv-footer-nav a {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pdmv-muted);
  transition: color var(--pdmv-transition);
}
.pdmv-footer-nav a:hover { color: var(--pdmv-primary); }
.pdmv-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pdmv-border);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

/* ---------------------------------------------------------------
   REGISTRATION MODAL
--------------------------------------------------------------- */
.pdmv-modal-overlay {
  position: fixed; inset: 0;
  z-index: 500;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.pdmv-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.pdmv-modal-box {
  position: relative;
  width: 100%;
  max-width: 56rem;
  max-height: 92vh;
  overflow-y: auto;
  background: #111;
  border: 1px solid var(--pdmv-border);
  padding: 2.5rem 2rem;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdmv-modal-overlay.is-open .pdmv-modal-box {
  transform: translateY(0) scale(1);
}
.pdmv-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--pdmv-muted);
  font-size: 1.4rem;
  line-height: 1;
  transition: color var(--pdmv-transition);
  z-index: 10;
  padding: 0.25rem;
}
.pdmv-modal-close:hover { color: var(--pdmv-white); }

/* ---------------------------------------------------------------
   REGISTRATION FORM
--------------------------------------------------------------- */
.pdmv-form-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pdmv-primary);
  margin-bottom: 0.5rem;
}
.pdmv-form-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.pdmv-form-sub {
  font-size: 0.78rem;
  color: var(--pdmv-muted);
  margin-bottom: 1.75rem;
}
.pdmv-form-error {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.4);
  color: #f5a09a;
  font-size: 0.82rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.pdmv-form-error a { color: var(--pdmv-primary); text-decoration: underline; }
.pdmv-reg-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.pdmv-form-row { display: flex; flex-direction: column; gap: 1rem; }
.pdmv-field { display: flex; flex-direction: column; gap: 0.35rem; }
.pdmv-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}
.pdmv-required { color: var(--pdmv-primary); }
.pdmv-optional { color: var(--pdmv-muted-2); font-weight: 400; text-transform: none; letter-spacing: 0; }
.pdmv-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--pdmv-border);
  color: var(--pdmv-white);
  font-family: var(--pdmv-font-sans);
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  transition: border-color var(--pdmv-transition), background var(--pdmv-transition);
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.pdmv-input:focus {
  border-color: var(--pdmv-primary);
  background: rgba(255,255,255,0.07);
}
.pdmv-input::placeholder { color: rgba(255,255,255,0.22); }
.pdmv-select { cursor: pointer; }
.pdmv-select option { background: #1a1a1a; color: var(--pdmv-white); }
.pdmv-textarea { resize: vertical; min-height: 5rem; }
.pdmv-radio-group { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }
.pdmv-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}
.pdmv-radio-label input[type="radio"] {
  accent-color: var(--pdmv-primary);
  width: 1rem; height: 1rem;
  cursor: pointer;
}
.pdmv-form-fine {
  font-size: 0.72rem;
  color: var(--pdmv-muted-2);
  text-align: center;
  margin-top: 0.25rem;
}

/* Form questions */
.pdmv-form-question {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--pdmv-border);
}
.pdmv-form-question:last-of-type { border-bottom: none; }
.pdmv-form-question-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pdmv-white);
  line-height: 1.4;
}
.pdmv-form-hint {
  font-size: 0.78rem;
  color: var(--pdmv-muted);
  line-height: 1.6;
  margin-top: 0;
}
.pdmv-form-hint-warning {
  color: rgba(255, 200, 100, 0.75);
  font-style: italic;
}
.pdmv-form-divider {
  height: 1px;
  background: var(--pdmv-border);
  margin: 0.5rem 0;
}
.pdmv-label-sub {
  text-transform: none;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.pdmv-input-narrow {
  max-width: 8rem;
}

/* Stacked radio group */
.pdmv-radio-group-stacked {
  flex-direction: column;
  gap: 0.5rem;
}
.pdmv-radio-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: border-color var(--pdmv-transition), color var(--pdmv-transition), background var(--pdmv-transition);
}
.pdmv-radio-label:has(input:checked) .pdmv-radio-letter,
.pdmv-check-label:has(input:checked) .pdmv-radio-letter {
  border-color: var(--pdmv-primary);
  color: var(--pdmv-primary);
  background: rgba(192,57,43,0.1);
}
.pdmv-radio-label:has(input:checked) {
  color: var(--pdmv-white);
}

/* Checkboxes */
.pdmv-check-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pdmv-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color var(--pdmv-transition);
}
.pdmv-check-label:hover { color: var(--pdmv-white); }
.pdmv-check-label input[type="checkbox"] {
  accent-color: var(--pdmv-primary);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* Standalone register page */
.pdmv-register-page { }
.pdmv-register-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
}
.pdmv-register-wrap {
  width: 100%;
  max-width: 32rem;
}
.pdmv-register-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 0.9;
}
.pdmv-register-sub {
  font-size: 0.82rem;
  color: var(--pdmv-muted);
  margin-bottom: 2rem;
}

/* ---------------------------------------------------------------
   SUCCESS OVERLAY
--------------------------------------------------------------- */
.pdmv-success-overlay {
  position: fixed; inset: 0;
  z-index: 600;
  background: rgba(10,10,10,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: pdmvFadeIn 0.4s ease forwards;
}
@keyframes pdmvFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pdmv-success-box {
  text-align: center;
  max-width: 26rem;
  padding: 3rem 2rem;
  border: 1px solid var(--pdmv-border);
  background: #111;
}
.pdmv-success-flame { font-size: 3rem; margin-bottom: 1rem; }
.pdmv-success-box h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.pdmv-success-box p {
  font-size: 0.9rem;
  color: var(--pdmv-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.pdmv-success-sub { color: var(--pdmv-primary) !important; font-style: italic; }
.pdmv-success-box .pdmv-btn { margin-top: 1.5rem; }

/* ---------------------------------------------------------------
   FLYER PAGE
--------------------------------------------------------------- */
.pdmv-flyer-page { background: #1a1a1a; }
.pdmv-flyer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.5rem 1rem 3rem;
  gap: 1.5rem;
}
.pdmv-flyer {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 960px;
  background: #0a0a0a;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.pdmv-flyer-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(192,57,43,0.18) 0%, transparent 65%),
    linear-gradient(to bottom, #0a0a0a 0%, #120808 50%, #0a0a0a 100%);
}
.pdmv-flyer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 960px;
  padding: 3.5rem 3rem 2.5rem;
  gap: 2.5rem;
}
.pdmv-flyer-hero-block { text-align: center; }
.pdmv-flyer-eyebrow {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.pdmv-flyer-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  line-height: 0.85;
  margin-bottom: 1.25rem;
}
.pdmv-flyer-title-white {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--pdmv-white);
  letter-spacing: -0.02em;
}
.pdmv-flyer-title-red {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--pdmv-primary);
  letter-spacing: 0.02em;
}
.pdmv-flyer-tagline {
  font-family: var(--pdmv-font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.pdmv-flyer-details {
  border-top: 1px solid var(--pdmv-border);
  border-bottom: 1px solid var(--pdmv-border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pdmv-flyer-detail-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.pdmv-flyer-detail-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pdmv-primary);
  font-weight: 700;
  width: 3.5rem;
  flex-shrink: 0;
}
.pdmv-flyer-detail-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.pdmv-flyer-detail-divider {
  height: 1px;
  background: var(--pdmv-border);
}
.pdmv-flyer-expect { }
.pdmv-flyer-expect-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}
.pdmv-flyer-expect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}
.pdmv-flyer-expect-grid span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0.6rem;
}
.pdmv-flyer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pdmv-border);
}
.pdmv-flyer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.pdmv-flyer-ig-icon { width: 1rem; height: 1rem; }
.pdmv-flyer-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.pdmv-flyer-qr-img {
  width: 7rem; height: 7rem;
  background: #fff;
  padding: 0.4rem;
}
.pdmv-flyer-qr-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.pdmv-flyer-tip {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  max-width: 480px;
}

/* ---------------------------------------------------------------
   ANIMATIONS / REVEAL
--------------------------------------------------------------- */
.pdmv-fade-in {
  animation: pdmvFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.pdmv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.pdmv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes pdmvFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.15s; transition-delay: 0.12s; }
.delay-2 { animation-delay: 0.30s; transition-delay: 0.22s; }
.delay-3 { animation-delay: 0.45s; transition-delay: 0.32s; }
.delay-4 { animation-delay: 0.60s; transition-delay: 0.42s; }
.delay-5 { animation-delay: 0.75s; transition-delay: 0.52s; }
.delay-6 { animation-delay: 0.90s; transition-delay: 0.62s; }
.delay-7 { animation-delay: 1.05s; transition-delay: 0.72s; }

/* ---------------------------------------------------------------
   PRINT
--------------------------------------------------------------- */
@media print {
  .pdmv-no-print { display: none !important; }
  .pdmv-body { background: #fff; }
  .pdmv-flyer { box-shadow: none; max-width: 100%; }
  .pdmv-flyer-bg-layer { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* ---------------------------------------------------------------
   RESPONSIVE — TABLET (≥ 640px)
--------------------------------------------------------------- */
@media (min-width: 640px) {
  .pdmv-infobar-grid { grid-template-columns: repeat(4, 1fr); }
  .pdmv-form-row-half { flex-direction: row; }
  .pdmv-involved-grid { grid-template-columns: repeat(2, 1fr); }
  .pdmv-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .pdmv-radio-group { flex-direction: row; gap: 1.5rem; }
}

/* ---------------------------------------------------------------
   RESPONSIVE — DESKTOP (≥ 768px)
--------------------------------------------------------------- */
@media (min-width: 768px) {
  .pdmv-nav-hamburger { display: none; }
  .pdmv-nav-links { display: flex !important; }
  .pdmv-section { padding: 8rem 0; }
  .pdmv-vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .pdmv-vision-right {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 3rem;
  }
  .pdmv-expect-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .pdmv-location-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .pdmv-involved-grid { grid-template-columns: repeat(4, 1fr); }
  .pdmv-partners-grid { grid-template-columns: repeat(3, 1fr); }
  .pdmv-footer-row { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------------------------------------------------------
   RESPONSIVE — MOBILE NAV
--------------------------------------------------------------- */
@media (max-width: 767px) {
  .pdmv-nav-hamburger { display: flex; }
  .pdmv-nav-links {
    display: none;
    position: absolute;
    top: 4rem; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid var(--pdmv-border);
    padding: 0.75rem 0;
  }
  .pdmv-nav-links.open { display: flex; }
  .pdmv-nav-links a {
    padding: 0.75rem 1.5rem;
    width: 100%;
  }
  .pdmv-nav-cta { display: none; }
}

/* ---------------------------------------------------------------
   FORM V2 — additional elements
--------------------------------------------------------------- */

/* Field hints */
.pdmv-field-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.pdmv-field-hint-warning {
  color: rgba(255,200,100,0.6);
  font-style: italic;
}
.pdmv-field-hint strong { font-weight: 700; color: rgba(255,200,100,0.75); }

/* Narrow number input (vehicles) */
.pdmv-input-narrow {
  max-width: 6rem;
}
.pdmv-input-narrow::-webkit-inner-spin-button,
.pdmv-input-narrow::-webkit-outer-spin-button {
  opacity: 1;
  filter: invert(80%);
}

/* Custom checkboxes */
.pdmv-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.pdmv-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  line-height: 1.4;
}
.pdmv-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pdmv-checkbox-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--pdmv-transition), background var(--pdmv-transition);
}
.pdmv-checkbox-label input[type="checkbox"]:checked + .pdmv-checkbox-box {
  background: var(--pdmv-primary);
  border-color: var(--pdmv-primary);
}
.pdmv-checkbox-label input[type="checkbox"]:checked + .pdmv-checkbox-box::after {
  content: '';
  display: block;
  width: 0.35rem;
  height: 0.6rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-1px);
}
.pdmv-checkbox-label:hover .pdmv-checkbox-box {
  border-color: var(--pdmv-primary);
}
.pdmv-checkbox-label input[type="checkbox"]:focus + .pdmv-checkbox-box {
  outline: 2px solid var(--pdmv-primary);
  outline-offset: 2px;
}

/* Submit area */
.pdmv-form-submit-wrap {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
