/* MMPAV Cohesive Design System extracted from React homepage */

/* Typography */
.text-display-hero {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white, #ffffff);
}

@media (min-width: 1280px) {
  .text-display-hero {
    font-size: clamp(4.5rem, 8vw, 8rem);
  }
}

.text-display-section {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white, #ffffff);
}

.text-gradient-fade {
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-eyebrow {
  font-family: var(--font-tech, 'Space Mono', monospace);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Location / section pill (work.html reference) */
.eyebrow--pill,
.text-eyebrow.eyebrow--pill {
  display: inline-block;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.text-body-tech {
  font-family: var(--font-tech, 'Space Mono', monospace);
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
}

/* Media Treatment */
.media-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.media-frame-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

@import url("accordion-circle-toggle.css");

/* Controls */
.icon-toggle, .faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  cursor: pointer;
  color: #ffffff !important;
}

.icon-toggle.active, .faq-item--open .faq-toggle {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
}

.icon-toggle svg, .faq-toggle svg {
  width: 24px;
  height: 24px;
  transition: color 0.3s, transform 0.3s !important;
}

.icon-arrow {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Card Cleanup */
.card-clean, .svc-card, .process-step {
  border: none !important;
  box-shadow: none !important;
}

/* Photo-only card hover - container stays fixed, image zooms */
.svc-card:hover,
.process-step:hover,
.event-card:hover,
.work-card:hover {
  transform: none !important;
}

.svc-card__bg,
.svc-card__img-wrap img,
.process-step__img img,
.event-card__image img,
.work-card__img,
.f108-panel__image img,
.hero--split .hero__media img,
.about-split__img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-card__bg,
.svc-card:hover .svc-card__img-wrap img,
.process-step:hover .process-step__img img,
.event-card:hover .event-card__image img,
.work-card:hover .work-card__img,
.f108-panel:hover .f108-panel__image img,
.hero--split .hero__media:hover img,
.about-split__img:hover img {
  transform: scale(1.04);
}

/* ── Canonical centered page hero (reference: /work.html) ──
   Copy markup from public/_partials/page-hero-centered.html on new pages.
   Do not duplicate these rules in page-specific CSS. */
.hero.hero--centered {
  min-height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 0 4.5rem;
  background: #000;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero.hero--centered::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(at left top, rgba(61, 224, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero.hero--centered .hero__content,
.hero.hero--centered .hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero.hero--centered .hero__inner.container {
  max-width: 720px;
}

.hero.hero--centered .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
}

.hero.hero--centered .text-display-hero {
  margin: 0 0 1.25rem;
}

.hero.hero--centered .text-body-tech,
.hero.hero--centered .hero__sub {
  max-width: 40rem;
  text-align: center;
  margin: 0 auto;
}

.hero.hero--centered .hero__ctas {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .hero.hero--centered {
    padding: 5.5rem 0 3.5rem;
  }
}
