@font-face {
  font-family: "pfc-sans";
  src: url("../fonts/Roboto-Light.ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pfc-sans";
  src: url("../fonts/Roboto-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pfc-sans";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pfc-sans";
  src: url("../fonts/Roboto-Black.ttf");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pari";
  src: url("../fonts/Parisienne-Regular.ttf");
  font-display: swap;
}

/* Legacy aliases used in markup */
@font-face {
  font-family: "roboto";
  src: url("../fonts/Roboto-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "robotothin";
  src: url("../fonts/Roboto-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "robotoblack";
  src: url("../fonts/Roboto-Black.ttf");
  font-display: swap;
}
@font-face {
  font-family: "robotomedium";
  src: url("../fonts/Roboto-Medium.ttf");
  font-display: swap;
}

:root {
  --pfc-orange: #f08a00;
  --pfc-orange-deep: #d97706;
  --pfc-red: #b91c1c;
  --pfc-gray: #525252;
  --pfc-green: #6b7c0f;
  --pfc-gold: #9a7b3c;
  --pfc-ink: #1f2937;
  --pfc-muted: #4b5563;
  --pfc-cream: #faf7f2;
  --pfc-white: #ffffff;
  --pfc-font: "pfc-sans", "Segoe UI", Tahoma, sans-serif;
  --pfc-text: 1.125rem;
  --pfc-leading: 1.75;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.pfc-body {
  color: var(--pfc-ink);
  font-family: var(--pfc-font) !important;
  font-weight: 500;
  font-size: var(--pfc-text);
  line-height: var(--pfc-leading);
  background: #111;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.pfc-body img {
  max-width: 100%;
  height: auto;
}

.pfc-body h1,
.pfc-body h2,
.pfc-body h3,
.pfc-body h4,
.pfc-body p,
.pfc-body li,
.pfc-body a,
.pfc-body span,
.pfc-body label,
.pfc-body button,
.pfc-body input,
.pfc-body select,
.pfc-body textarea {
  font-family: var(--pfc-font) !important;
}

/* Header / brand */
.pfc-header {
  background: transparent;
  position: relative;
  z-index: 1000 !important;
  overflow: visible;
}

.pfc-partner-bar {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-bottom: 1px solid #eceef3;
  padding: 10px 0;
  position: relative;
  z-index: 30;
}

.pfc-partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.pfc-partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  min-width: 0;
  transition: opacity 0.2s ease;
}

.pfc-partner:hover,
.pfc-partner:focus {
  opacity: 0.88;
  text-decoration: none !important;
}

.pfc-partner-logo {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(26, 42, 92, 0.1);
  border: 1px solid #f0f1f5;
  overflow: hidden;
}

.pfc-partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pfc-partner-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.pfc-partner-label {
  font-family: var(--pfc-font) !important;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.pfc-partner-name {
  font-family: var(--pfc-font) !important;
  font-weight: 800;
  font-size: clamp(0.92rem, 1.6vw, 1.1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pfc-partner-teal .pfc-partner-label,
.pfc-partner-teal .pfc-partner-name {
  color: #1f5c57 !important;
}

.pfc-partner-brown .pfc-partner-label,
.pfc-partner-brown .pfc-partner-name {
  color: #a65e3e !important;
  text-transform: none;
}

.pfc-partner-brown .pfc-partner-name {
  letter-spacing: 0.01em;
}

@media (max-width: 575px) {
  .pfc-partner-inner {
    justify-content: center;
  }

  .pfc-partner {
    width: 100%;
    justify-content: center;
  }

  .pfc-partner-logo {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .pfc-partner-name {
    font-size: 0.95rem;
  }
}

.pfc-header-bar {
  position: relative;
  z-index: 20;
  padding: 10px 0;
  background: rgba(18, 12, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.pfc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
  position: relative;
  z-index: 21;
}

.pfc-nav {
  overflow: visible;
  position: relative;
  z-index: 22;
}

.pfc-logo {
  width: 88px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s ease;
}

.pfc-brand:hover .pfc-logo {
  transform: scale(1.04);
}

.pfc-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  justify-content: flex-end;
  align-items: center;
}

.pfc-nav > ul > li > a {
  display: block;
  padding: 8px 11px;
  color: #fff !important;
  font-family: var(--pfc-font) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.pfc-nav > ul > li > a.pfc-nav-cta {
  margin-left: 6px;
  border: 1px solid rgba(255, 226, 122, 0.7);
  border-bottom-color: rgba(255, 226, 122, 0.7);
  padding: 8px 14px;
  color: #ffe27a !important;
}

.pfc-nav > ul > li > a.pfc-nav-cta:hover {
  background: rgba(255, 156, 0, 0.25);
  border-color: #ff9c00;
  color: #fff !important;
}

.pfc-nav > ul > li.active > a,
.pfc-nav > ul > li > a:hover,
.pfc-nav > ul > li > a:focus {
  color: #ffe27a !important;
  border-bottom-color: var(--pfc-orange);
  background: transparent;
}

/* Our Initiatives — clean vertical corporate list */
.pfc-has-dropdown {
  position: relative;
}

.pfc-dropdown-toggle .fa {
  margin-left: 4px;
  font-size: 0.75em;
}

.pfc-nav .pfc-dropdown {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  z-index: 10000 !important;
  list-style: none !important;
  margin: 4px 0 0 0 !important;
  padding: 8px !important;
  width: 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
  background: #ffffff !important;
  border: 1px solid #e8eaf0 !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28) !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  float: none !important;
}

.pfc-has-dropdown.is-open > .pfc-dropdown,
.pfc-has-dropdown:hover > .pfc-dropdown {
  display: flex !important;
}

.pfc-nav .pfc-dropdown > li {
  display: block !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: none !important;
}

.pfc-nav .pfc-dropdown > li > a {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 9px 10px !important;
  margin: 0 0 2px !important;
  color: #1e293b !important;
  font-family: var(--pfc-font) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.35 !important;
  text-align: left !important;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  background: transparent !important;
}

.pfc-nav .pfc-dropdown > li > a:hover,
.pfc-nav .pfc-dropdown > li > a:focus {
  background: #f1f5f9 !important;
  color: #9f1239 !important;
  border-bottom: 0 !important;
}

.pfc-nav .pfc-dropdown .pfc-dropdown-static {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 9px 10px !important;
  margin: 0 0 2px !important;
  color: #64748b !important;
  font-family: var(--pfc-font) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.35 !important;
  text-align: left !important;
  border-radius: 8px !important;
  cursor: default;
}

.pfc-nav .pfc-dropdown .init-logo {
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 7px !important;
  overflow: hidden !important;
}

.pfc-nav .pfc-dropdown .init-logo img {
  max-width: 26px !important;
  max-height: 26px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.pfc-nav .pfc-dropdown .init-logo-fallback {
  color: #9f1239 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border: 0 !important;
}

.pfc-nav .pfc-dropdown > li > a > span:last-child {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 991px) {
  .pfc-nav > ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .pfc-has-dropdown {
    width: 100%;
  }

  .pfc-nav .pfc-dropdown {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    display: none !important;
    margin-top: 4px !important;
  }

  .pfc-has-dropdown.is-open > .pfc-dropdown {
    display: flex !important;
    position: static !important;
  }

  .pfc-has-dropdown:hover > .pfc-dropdown {
    display: none !important;
  }

  .pfc-has-dropdown.is-open:hover > .pfc-dropdown {
    display: flex !important;
  }

  .pfc-nav .pfc-dropdown > li > a {
    color: #fff !important;
    font-size: 13px !important;
    white-space: normal !important;
  }

  .pfc-nav .pfc-dropdown > li > a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffe27a !important;
  }

  .pfc-nav .pfc-dropdown .init-logo {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
}

.pfc-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 10px 9px;
  cursor: pointer;
}

.pfc-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pfc-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pfc-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.pfc-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pfc-brand-banner {
  text-align: center;
  color: #fff;
  padding: 8px 12px 18px;
  position: relative;
  z-index: 1;
}

.pfc-wordmark {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

.pfc-wordmark .w-bold {
  font-family: var(--pfc-font) !important;
  font-weight: 900;
}

.pfc-wordmark .w-thin {
  font-family: var(--pfc-font) !important;
  font-weight: 300;
  margin: 0 0.12em;
}

.pfc-eyebrow {
  margin: 12px auto 0;
  max-width: 1100px;
  font-family: var(--pfc-font) !important;
  font-weight: 500;
  font-size: clamp(0.68rem, 1.05vw, 0.82rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
}

@media (max-width: 767px) {
  .pfc-eyebrow {
    white-space: normal;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    max-width: 92%;
  }
}

/* Hero */
.pfc-hero {
  background: #1a120c url("../img/bg.jpg") center top / cover no-repeat;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.pfc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 0, 0.35) 0%, rgba(20, 10, 0, 0.15) 40%, rgba(20, 10, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.pfc-hero > * {
  position: relative;
  z-index: 1;
}

/* Keep header (and its submenu) above banner / slider */
.pfc-hero > .pfc-header {
  z-index: 1000;
  overflow: visible;
}

.pfc-hero > .pfc-slider,
.pfc-hero > .pfc-tagline,
.pfc-hero > .pfc-hero-actions {
  z-index: 1;
}

.pfc-slider {
  position: relative;
  width: min(1100px, 92%);
  margin: 14px auto 0;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 226, 122, 0.45), rgba(255, 156, 0, 0.2)),
    #fff;
  border: 1px solid rgba(255, 226, 122, 0.85);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.18),
    0 0 0 8px rgba(255, 196, 70, 0.55),
    0 22px 55px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.pfc-slider::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(173, 143, 80, 0.65);
  pointer-events: none;
  z-index: 2;
}

.pfc-slide {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  animation: pfcFade 1s ease;
  border: 0;
}

.pfc-slide.is-active {
  display: block;
}

@keyframes pfcFade {
  from { opacity: 0.35; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

.pfc-tagline {
  text-align: center;
  color: #fff;
  font-family: var(--pfc-font) !important;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  letter-spacing: 0.04em;
  padding: 28px 16px 18px;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.pfc-tagline em {
  font-style: normal;
  font-weight: 900;
  color: #ffe27a;
}

.pfc-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 16px 40px;
}

.pfc-btn-ghost {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff !important;
}

.pfc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.pfc-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}

#note .pfc-kicker,
#vision .pfc-kicker,
#objectives .pfc-kicker,
#gallery .pfc-kicker {
  color: rgba(255, 255, 255, 0.9);
}

#vision .pfc-kicker {
  text-align: center;
}

#objectives .pfc-kicker,
#gallery .pfc-kicker {
  text-align: center;
}

.pfc-panel {
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 22px 22px 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pfc-panel .pfc-lead:last-of-type {
  margin-bottom: 0.5rem;
}

.pfc-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 24px;
}

.pfc-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease;
}

.pfc-photo-strip img:hover {
  transform: translateY(-4px);
}

@media (max-width: 767px) {
  .pfc-photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Sections */
.pfc-section {
  padding: 56px 0;
}

.pfc-section .container {
  position: relative;
}

/* Beat Bootstrap / theme h2 rules (Open Sans + #333) */
h1.pfc-title,
h2.pfc-title,
.pfc-title {
  margin: 0 0 24px;
  font-family: var(--pfc-font) !important;
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  color: inherit !important;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h2.pfc-title .bold,
.pfc-title .bold {
  font-family: var(--pfc-font) !important;
  font-weight: 900;
  color: inherit !important;
}

h2.pfc-title .light,
.pfc-title .light {
  font-family: var(--pfc-font) !important;
  font-weight: 300;
  color: inherit !important;
}

.pfc-lead {
  font-family: var(--pfc-font) !important;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.8;
  margin: 0 0 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: inherit;
}

.pfc-lead b,
.pfc-lead strong {
  font-family: var(--pfc-font) !important;
  font-weight: 700;
}

.pfc-frame {
  border: 4px solid #fff;
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: 5px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  display: block;
  width: 100%;
}

.pfc-quote {
  font-family: var(--pfc-font) !important;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  margin: 28px 0 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff !important;
  padding: 18px 20px;
  border-left: 4px solid #fff;
  background: rgba(0, 0, 0, 0.12);
}

#note {
  background: linear-gradient(160deg, #e67e00 0%, #d97706 55%, #c2410c 100%);
  color: #fff !important;
  margin-top: 0;
  padding: 64px 0;
}

#note h2.pfc-title,
#note .pfc-title {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: 28px;
  font-weight: 900;
}

#note .pfc-title .bold,
#note .pfc-title .light {
  font-family: var(--pfc-font) !important;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fff !important;
}

#note .pfc-lead {
  color: #fff !important;
  font-size: clamp(1.1rem, 1.5vw, 1.22rem);
  line-height: 1.85;
  font-weight: 500;
  max-width: 38em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

#note .pfc-lead strong {
  font-weight: 700;
  color: #fff !important;
}

#note .pfc-frame {
  border: 5px solid #fff;
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 6px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

#note .pfc-quote {
  color: #fff !important;
  margin-top: 32px;
}

#PFC {
  background: var(--pfc-cream);
  color: var(--pfc-ink);
}

#PFC .pfc-title {
  color: var(--pfc-ink) !important;
}

#PFC .pfc-lead {
  color: var(--pfc-muted);
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
}

#vision {
  background: linear-gradient(120deg, #9f1239 0%, #be123c 100%);
  color: #fff !important;
  text-align: center;
}

#vision .pfc-title,
#objectives .pfc-title,
#feature .pfc-title,
#updates .pfc-title,
#gallery .pfc-title,
#getintouch .pfc-title,
#message .pfc-title {
  color: inherit !important;
}

#vision .pfc-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.65;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto;
  color: #fff !important;
}

#objectives {
  background: linear-gradient(160deg, #57534e 0%, #44403c 100%);
  color: #fff !important;
}

.pfc-objectives {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pfc-objectives li {
  position: relative;
  padding: 14px 0 14px 32px;
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  line-height: 1.55;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
}

.pfc-objectives li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fbbf24;
}

#feature {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff !important;
}

#feature .pfc-lead {
  color: #fff !important;
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
}

.focus-section {
  background: #f3f4f6;
  color: var(--pfc-ink);
}

.pfc-focus-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px 14px;
  text-align: center;
}

.pfc-focus-item img {
  width: 72%;
  max-width: 110px;
  margin-bottom: 10px;
  transition: transform 0.35s ease;
}

.pfc-focus-item:hover img {
  transform: translateY(-6px) scale(1.05);
}

.pfc-focus-item b {
  display: block;
  font-family: var(--pfc-font) !important;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--pfc-ink);
}

#message {
  background: #fff;
  text-align: center;
  color: var(--pfc-ink);
}

#updates {
  background: linear-gradient(160deg, #44403c 0%, #292524 100%);
  color: #fff !important;
}

#updates .pfc-title,
#updates strong,
#updates .pfc-contact-note {
  color: #fff !important;
}

.pfc-events {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
}

.pfc-events li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.pfc-date {
  flex: 0 0 92px;
  text-align: center;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 12px 6px;
  font-family: var(--pfc-font) !important;
  font-weight: 700;
  line-height: 1.25;
}

.pfc-date.green { border-color: #4ade80; }
.pfc-date.red { border-color: #f87171; }
.pfc-date.blue { border-color: #60a5fa; }

.pfc-date .d {
  display: block;
  font-size: 1.25rem;
}
.pfc-date .m {
  display: block;
  font-size: 0.9rem;
  opacity: 0.92;
  font-weight: 500;
}

.pfc-contact-note {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 22px;
}

.pfc-contact-note a {
  color: #fde68a !important;
  text-decoration: underline;
  font-weight: 700;
}

#gallery {
  background: linear-gradient(135deg, #65a30d 0%, #4d7c0f 100%);
  color: #fff !important;
  text-align: center;
}

.pfc-gallery-link {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff !important;
  font-family: var(--pfc-font) !important;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pfc-gallery-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

#getintouch {
  background: linear-gradient(145deg, #a16207 0%, #854d0e 100%);
  color: #fff !important;
}

#getintouch .pfc-title {
  color: #fff !important;
}

.pfc-contact-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.pfc-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  line-height: 1.6;
  font-size: 1.08rem;
  font-weight: 500;
  color: #fff !important;
}

.pfc-contact-list i {
  font-size: 22px;
  width: 28px;
  margin-top: 2px;
}

.pfc-contact-list a {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 700;
}

.pfc-map {
  border: 0;
  width: 100%;
  min-height: 380px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pfc-inline-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff !important;
  border-radius: 50%;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pfc-inline-social a:hover {
  background: var(--pfc-orange);
  transform: translateY(-2px);
}

/* Footer */
.pfc-footer {
  background: #0f0c0a;
  color: #ddd;
  text-align: center;
  padding: 28px 12px 34px;
}

.pfc-footer-social {
  margin-bottom: 14px;
}

.pfc-footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  border-radius: 50%;
  color: #fff !important;
  background: #333;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pfc-footer-social a:hover {
  background: var(--pfc-orange);
  transform: translateY(-3px);
}

.pfc-copy {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.pfc-copy a {
  color: #ffe27a !important;
  text-decoration: none !important;
  font-weight: 700;
}

.pfc-copy a:hover {
  text-decoration: underline !important;
}

.pfc-footer-links {
  margin: 0 0 12px;
  font-size: 0.92rem;
}

.pfc-footer-links a {
  color: #ddd !important;
  text-decoration: none !important;
}

.pfc-footer-links a:hover {
  color: #ffe27a !important;
}

.pfc-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pfc-orange);
  color: #fff !important;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
  text-decoration: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 80;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.pfc-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Inner pages */
.pfc-page {
  background: #fff;
  color: var(--pfc-ink);
  padding: 40px 0 60px;
  min-height: 50vh;
}

.pfc-page-title {
  text-align: center;
  font-family: var(--pfc-font) !important;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
  margin: 0 0 28px;
  color: var(--pfc-ink) !important;
  letter-spacing: 0.01em;
}

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

.pfc-video-grid .vid {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.pfc-video-grid iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Talent form */
.pfc-form-wrap {
  background: #fff;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 22px 36px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.pfc-form-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 20px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #e6e0d8;
}

.pfc-form-row label {
  font-family: var(--pfc-font) !important;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  padding-top: 8px;
  color: var(--pfc-ink);
}

.pfc-form-row input,
.pfc-form-row select,
.pfc-form-row textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0;
  padding: 12px 14px;
  background: #fff;
  color: var(--pfc-ink);
  font-family: var(--pfc-font) !important;
  font-size: 1.05rem;
  font-weight: 500;
}

.pfc-form-row textarea {
  min-height: 96px;
  resize: vertical;
}

.pfc-form-row input:focus,
.pfc-form-row select:focus,
.pfc-form-row textarea:focus {
  outline: 2px solid var(--pfc-orange);
  border-color: var(--pfc-orange);
}

.pfc-btn {
  display: inline-block;
  background: var(--pfc-orange);
  color: #fff !important;
  border: 0;
  padding: 13px 28px;
  font-family: var(--pfc-font) !important;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pfc-btn:hover {
  background: var(--pfc-orange-deep);
  transform: translateY(-1px);
}

.pfc-alert {
  background: #d4edda;
  color: #155724;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--pfc-font) !important;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.pfc-notice {
  background: #fff8ef;
  border-left: 4px solid var(--pfc-orange);
  padding: 18px 20px;
  max-width: 720px;
  margin: 30px auto;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 500;
}

.pfc-offline {
  margin: 24px auto 0;
  max-width: 720px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.pfc-offline a {
  color: #1e57b8;
  font-family: var(--pfc-font) !important;
  font-weight: 700;
}

/* Reveal motion */
.pfc-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pfc-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .pfc-focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pfc-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pfc-nav-toggle {
    display: block;
  }

  .pfc-nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 78px;
    background: rgba(18, 12, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
    z-index: 100;
  }

  .pfc-nav.is-open {
    display: block;
    animation: pfcFade 0.3s ease;
  }

  .pfc-nav > ul {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .pfc-nav > ul > li > a {
    padding: 12px 14px;
  }

  .pfc-logo {
    width: 72px;
  }

  .pfc-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pfc-video-grid {
    grid-template-columns: 1fr;
  }

  .pfc-form-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pfc-events li {
    flex-direction: column;
  }

  .pfc-section {
    padding: 40px 0;
  }
}

/* Override broken legacy menu offsets */
.homeslider,
.pfc-hero {
  margin: 0;
  overflow: visible !important;
}

.topcontent {
  display: none;
}
