:root {
  --fpe-bg: #ffffff;
  --fpe-surface: #f7f7f7;
  --fpe-surface-strong: #eeeeee;
  --fpe-text: #171717;
  --fpe-muted: #6f6f6f;
  --fpe-border: #e4e4e4;
  --fpe-accent: #e61d25;
  --fpe-footer: #313131;
  --fpe-footer-text: #eeeeee;
  --fpe-max: 1140px;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

body.fpe-page {
  margin: 0;
  background: var(--fpe-bg);
  color: var(--fpe-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.fpe-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fpe-container {
  width: min(var(--fpe-max), calc(100% - 32px));
  margin: 0 auto;
}

.fpe-header {
  border-bottom: 1px solid var(--fpe-border);
  background: #ffffff;
}

.fpe-header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fpe-menu-toggle {
  display: none;
}

.fpe-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fpe-border);
  border-radius: 4px;
  background: #ffffff;
  color: var(--fpe-text);
  cursor: pointer;
}

.fpe-menu-button span,
.fpe-menu-button span::before,
.fpe-menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.fpe-menu-button span {
  position: relative;
}

.fpe-menu-button span::before,
.fpe-menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.fpe-menu-button span::before {
  top: -6px;
}

.fpe-menu-button span::after {
  top: 6px;
}

.fpe-logo {
  display: inline-flex;
  align-items: center;
}

.fpe-logo img {
  display: block;
  width: 169px;
  height: auto;
}

.fpe-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 600;
}

.fpe-nav a,
.fpe-footer a {
  color: inherit;
  text-decoration: none;
}

.fpe-nav a:hover,
.fpe-footer a:hover {
  color: var(--fpe-accent);
}

.fpe-nav a[aria-current="page"] {
  color: var(--fpe-accent);
}

.fpe-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 0;
  border-radius: 4px;
  background: var(--fpe-accent);
  color: #ffffff !important;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.fpe-button:hover {
  background: #c9161d;
  text-decoration: none;
}

.fpe-button--small {
  min-height: 40px;
  padding: 11px 20px;
  font-size: 15px;
}

.fpe-main {
  flex: 1;
}

.fpe-hero {
  padding: 72px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-bottom: 1px solid var(--fpe-border);
}

.fpe-hero-center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.fpe-hero-center .fpe-title,
.fpe-hero-center .fpe-lede {
  margin-left: auto;
  margin-right: auto;
}

.fpe-hero-center .fpe-hero-actions {
  justify-content: center;
}

.fpe-kicker {
  margin: 0 0 10px;
  color: var(--fpe-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.fpe-title {
  max-width: 760px;
  margin: 0;
  color: var(--fpe-text);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
  text-transform: capitalize;
}

.fpe-lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--fpe-muted);
  font-size: 17px;
}

.fpe-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fpe-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--fpe-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fpe-muted);
  font-size: 14px;
  line-height: 1.3;
}

.fpe-legal {
  padding: 56px 0 76px;
}

.fpe-legal__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.fpe-toc {
  position: sticky;
  top: 24px;
  padding: 20px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: var(--fpe-surface);
}

.fpe-toc__title {
  margin: 0 0 12px;
  color: var(--fpe-text);
  font-size: 14px;
  font-weight: 700;
}

.fpe-toc a {
  display: block;
  padding: 6px 0;
  color: var(--fpe-muted);
  font-size: 14px;
  text-decoration: none;
}

.fpe-toc a:hover {
  color: var(--fpe-accent);
}

.fpe-content {
  max-width: 780px;
}

.fpe-section {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--fpe-border);
}

.fpe-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fpe-section h2 {
  margin: 0 0 12px;
  color: var(--fpe-text);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.32;
}

.fpe-section h3 {
  margin: 22px 0 8px;
  color: var(--fpe-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.fpe-section p,
.fpe-section li {
  color: var(--fpe-muted);
}

.fpe-section p {
  margin: 0 0 14px;
}

.fpe-section ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.fpe-notice {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--fpe-accent);
  background: var(--fpe-surface);
  color: var(--fpe-muted);
}

.fpe-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.fpe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fpe-button--secondary {
  border: 1px solid var(--fpe-border);
  background: #ffffff;
  color: var(--fpe-text) !important;
}

.fpe-button--secondary:hover {
  border-color: var(--fpe-accent);
  background: #ffffff;
  color: var(--fpe-accent) !important;
}

.fpe-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--fpe-surface-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.fpe-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fpe-image-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--fpe-surface-strong);
}

.fpe-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.fpe-band {
  padding: 64px 0;
}

.fpe-band--muted {
  background: var(--fpe-surface);
}

.fpe-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.fpe-section-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
}

.fpe-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--fpe-muted);
}

.fpe-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fpe-feature {
  padding: 22px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-feature-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
}

.fpe-feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.fpe-feature p {
  margin: 0;
  color: var(--fpe-muted);
}

.fpe-service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fpe-service-choice {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-service-choice__media {
  overflow: hidden;
  background: var(--fpe-surface-strong);
}

.fpe-service-choice__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fpe-service-choice__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.fpe-service-choice__body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.fpe-service-choice__body p {
  margin: 0;
  color: var(--fpe-muted);
}

.fpe-service-choice__body .fpe-kicker {
  margin: 0;
}

.fpe-inline-action {
  margin-top: 22px;
}

.fpe-stacked {
  display: grid;
  gap: 56px;
}

.fpe-story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
}

.fpe-story-row:nth-child(even) {
  grid-template-columns: 390px minmax(0, 1fr);
}

.fpe-story-row:nth-child(even) .fpe-story-copy {
  order: 2;
}

.fpe-story-copy h2,
.fpe-panel h2,
.fpe-cta h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.32;
  text-transform: capitalize;
}

.fpe-story-copy p,
.fpe-panel p,
.fpe-cta p {
  margin: 0;
  color: var(--fpe-muted);
}

.fpe-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fpe-service {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-contact-icon {
  width: 42px;
  height: 42px;
  color: var(--fpe-accent);
}

.fpe-service-icon {
  display: block;
  width: 42px;
  height: 42px;
  color: var(--fpe-accent);
  fill: currentColor;
}

.fpe-service h3,
.fpe-step h3,
.fpe-person h3,
.fpe-contact-item h3,
.fpe-testimonial strong,
.fpe-faq summary {
  margin: 0;
  color: var(--fpe-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.fpe-service a {
  color: inherit;
  text-decoration: none;
}

.fpe-service a:hover {
  color: var(--fpe-accent);
}

.fpe-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fpe-testimonial {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-testimonial p {
  margin: 0;
  color: var(--fpe-muted);
}

.fpe-testimonial span {
  color: var(--fpe-muted);
  font-size: 14px;
}

.fpe-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fpe-step {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-step__number {
  display: inline-flex;
  color: var(--fpe-accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.fpe-step p {
  margin: 0;
  color: var(--fpe-muted);
}

.fpe-faq-list {
  display: grid;
  gap: 12px;
}

.fpe-faq {
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-faq summary {
  cursor: pointer;
  padding: 18px 20px;
}

.fpe-faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--fpe-muted);
}

.fpe-panel {
  padding: 28px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fpe-person {
  padding: 20px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
}

.fpe-person p {
  margin: 6px 0 0;
  color: var(--fpe-muted);
  font-size: 14px;
}

.fpe-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.fpe-contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.fpe-contact-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.fpe-contact-item p {
  margin: 5px 0 0;
  color: var(--fpe-muted);
}

.fpe-contact-form-card {
  padding: 28px;
  border: 1px solid var(--fpe-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.fpe-contact-form {
  display: grid;
  gap: 16px;
}

.fpe-contact-form h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
}

.fpe-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--fpe-text);
  font-size: 14px;
  font-weight: 700;
}

.fpe-contact-form input,
.fpe-contact-form select,
.fpe-contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--fpe-border);
  border-radius: 4px;
  background: #ffffff;
  color: var(--fpe-text);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
}

.fpe-contact-form textarea {
  resize: vertical;
}

.fpe-contact-form input:focus,
.fpe-contact-form select:focus,
.fpe-contact-form textarea:focus {
  border-color: var(--fpe-accent);
  outline: 2px solid rgba(230, 29, 37, 0.16);
}

.fpe-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fpe-honeypot {
  position: absolute;
  left: -9999px;
}

.fpe-form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--fpe-muted);
  font-size: 14px;
}

.fpe-contact-form .fpe-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.fpe-contact-form .fpe-button {
  justify-self: stretch;
  width: 100%;
}

.fpe-contact-art {
  overflow: hidden;
  border-radius: 8px;
  background: var(--fpe-surface);
}

.fpe-contact-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fpe-cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  color: var(--fpe-text);
}

.fpe-cta h2,
.fpe-cta p {
  color: inherit;
}

.fpe-cta p {
  color: var(--fpe-muted);
}

.fpe-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.fpe-filter-button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--fpe-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fpe-text);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.fpe-filter-button:hover,
.fpe-filter-button.is-active {
  border-color: var(--fpe-accent);
  background: var(--fpe-accent);
  color: #ffffff;
}

.fpe-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fpe-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.fpe-video-card[hidden] {
  display: none;
}

.fpe-video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.fpe-video-card:hover img {
  transform: scale(1.035);
}

.fpe-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
}

.fpe-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(230, 29, 37, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.fpe-play::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #ffffff;
}

.fpe-video-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.fpe-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
}

.fpe-modal.is-open {
  display: flex;
}

.fpe-modal__panel {
  position: relative;
  width: min(1080px, 100%);
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 8px;
  overflow: hidden;
}

.fpe-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.fpe-modal__close {
  position: absolute;
  right: 0;
  top: -46px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.fpe-footer {
  background: var(--fpe-footer);
  color: var(--fpe-footer-text);
}

.fpe-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 60px 0;
}

.fpe-footer__brand img {
  width: 169px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.fpe-footer p {
  margin: 0;
  color: var(--fpe-footer-text);
  font-size: 14px;
  line-height: 1.7;
}

.fpe-footer__title {
  margin: 0 0 14px;
  color: var(--fpe-footer-text);
  font-size: 14px;
  font-weight: 700;
}

.fpe-footer__links {
  display: grid;
  gap: 10px;
}

.fpe-footer__links a,
.fpe-footer__links span {
  color: var(--fpe-footer-text);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .fpe-services-grid,
  .fpe-steps,
  .fpe-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .fpe-header__inner {
    height: auto;
    padding: 16px 0;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .fpe-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .fpe-nav {
    width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--fpe-border);
    font-size: 15px;
  }

  .fpe-nav a {
    padding: 10px 0;
  }

  .fpe-menu-toggle:checked ~ .fpe-menu-button span {
    transform: rotate(45deg);
  }

  .fpe-menu-toggle:checked ~ .fpe-menu-button span::before {
    transform: translateY(6px) rotate(90deg);
  }

  .fpe-menu-toggle:checked ~ .fpe-menu-button span::after {
    opacity: 0;
  }

  .fpe-menu-toggle:checked ~ .fpe-nav {
    display: flex;
  }

  .fpe-button {
    width: 100%;
  }

  .fpe-hero {
    padding: 48px 0 34px;
  }

  .fpe-title {
    font-size: 30px;
  }

  .fpe-legal__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fpe-toc {
    position: static;
  }

  .fpe-split,
  .fpe-service-choice-grid,
  .fpe-form-grid,
  .fpe-feature-grid,
  .fpe-video-grid,
  .fpe-story-row,
  .fpe-story-row:nth-child(even),
  .fpe-services-grid,
  .fpe-testimonials,
  .fpe-steps,
  .fpe-team-grid,
  .fpe-contact-grid {
    grid-template-columns: 1fr;
  }

  .fpe-story-row:nth-child(even) .fpe-story-copy {
    order: 0;
  }

  .fpe-section-head {
    align-items: start;
    flex-direction: column;
  }

  .fpe-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .fpe-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
