/* ════════════════════════════════════════════════════════════════════
   222 Productions — shared global styles
   Tokens, reset, typography, utilities, buttons, header, footer, lite-yt
════════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #010414;
  --bg-2:      #0C0E19;
  --bg-3:      #0D1023;
  --bg-card:   #03071C;
  --gold:      #FBBB21;
  --gold-2:    #F8B022;
  --gold-dark: #E5A50D;
  --border:    #0B0B5E;
  --border-2:  #181F4F;
  --text:      #FEFEFE;
  --muted:     rgba(255,255,255,0.58);
  --font-head: 'Bricolage Grotesque', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Bricolage Grotesque', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font:      'Bricolage Grotesque', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img, picture { display: block; max-width: 100%; height: auto; }
picture img { display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: transparent; color: inherit; }

/* ── Utility ─────────────────────────────────────────────────────── */
.grad {
  background: linear-gradient(90deg, #FBBB21, #F8B022);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section { width: 100%; padding: 80px 24px; }
.container { max-width: 1140px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: opacity .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #FDD44B 0%, #FBBB21 50%, #E5A50D 100%);
  color: #0d0d0d;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(251,187,33,0.35), 0 0 24px rgba(251,187,33,0.12);
}
.btn-primary:hover { box-shadow: 0 4px 20px rgba(251,187,33,0.5), 0 0 36px rgba(251,187,33,0.22); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,.45); }

/* ── Scroll reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Scribble underline ─────────────────────────────────────────── */
.u {
  position: relative;
  display: inline;
  white-space: nowrap;
  -webkit-text-fill-color: inherit;
}
.u::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -2px;
  right: -2px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='10' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M2,7 C20,2 40,9 60,5 C80,1 100,8 120,4 C140,1 160,8 180,5 C190,3 196,6 198,5' stroke='%23FBBB21' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") repeat-x left center / 200px 10px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.u.u-active::after { opacity: 1; transform: scaleX(1); }
.u-wave::after {
  height: 12px;
  bottom: -8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='12' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2,9 C15,3 30,10 50,6 C70,2 90,10 110,5 C130,1 150,9 170,5 C182,3 192,7 198,6' stroke='%23FBBB21' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") repeat-x left center / 200px 12px;
}

/* ── Typography helpers ─────────────────────────────────────────── */
.t-display {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.t-subhead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}
.t-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════════════
   HEADER — fixed pill nav (light theme)
════════════════════════════════════════════════════════════════════ */
.pfhdr-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 14px 16px;
  font-family: inherit;
  box-sizing: border-box;
  pointer-events: none;
  transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pfhdr-wrap.pfhdr-scrolled { padding: 10px 16px; }
@media (min-width: 769px) {
  .pfhdr-wrap { padding: 18px 32px; }
  .pfhdr-wrap.pfhdr-scrolled { padding: 12px 32px; }
}

.pfhdr-inner {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
  border-radius: 100px;
  padding: 8px 12px;
  position: relative;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition:
    max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pfhdr-wrap.pfhdr-scrolled .pfhdr-inner {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.07);
}
@media (min-width: 769px) {
  .pfhdr-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 9px 14px 9px 18px;
    gap: 0;
  }
  .pfhdr-wrap.pfhdr-scrolled .pfhdr-inner { max-width: 920px; }
}

.pfhdr-spacer { width: 8px; display: inline-block; flex-shrink: 0; }

.pfhdr-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-height: 40px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
}
.pfhdr-logo:hover { transform: scale(1.06); opacity: 0.9; }
.pfhdr-logo-img,
.pfhdr-logo picture img {
  height: 34px !important;
  width: auto !important;
  max-height: 34px !important;
  max-width: 120px !important;
  display: block !important;
  object-fit: contain !important;
  image-rendering: -webkit-optimize-contrast;
}
@media (min-width: 769px) {
  .pfhdr-logo-img,
  .pfhdr-logo picture img { height: 40px !important; max-height: 40px !important; }
}

.pfhdr-inner-center { display: none; }
@media (min-width: 769px) {
  .pfhdr-inner-center {
    display: flex;
    flex: 1;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
}
.pfhdr-desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pfhdr-desktop-nav-item { margin: 0; padding: 0; list-style: none; }
.pfhdr-desktop-nav-link {
  color: rgba(10, 10, 30, 0.72);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.pfhdr-desktop-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #FBBB21, transparent);
  transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}
.pfhdr-desktop-nav-link:hover { color: #C48800; }
.pfhdr-desktop-nav-link:hover::after { width: 100%; }

.pfhdr-wa-btn { display: none; }
@media (min-width: 769px) {
  .pfhdr-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0d4d2a;
    border: 1px solid #0a3d21;
    color: #ffffff;
    flex-shrink: 0;
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 2px 8px rgba(13, 77, 42, 0.25);
  }
  .pfhdr-wa-btn:hover {
    background: #0a3d21;
    border-color: #072e18;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(13, 77, 42, 0.4);
  }
  .pfhdr-wa-btn svg { width: 18px; height: 18px; }
}

.pfhdr-desktop-cta { display: none; position: relative; z-index: 1; flex-shrink: 0; }
@media (min-width: 769px) {
  .pfhdr-desktop-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    background: linear-gradient(90deg, #FBBB21 0%, #F8A820 100%);
    color: #020618;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 100px;
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(251, 187, 33, 0.30), inset 0 1px 0 rgba(255,255,255,0.3);
  }
  .pfhdr-desktop-cta:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 6px 22px rgba(251, 187, 33, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  }
  .pfhdr-desktop-cta:active { transform: scale(0.97); }
}

.pfhdr-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  cursor: pointer;
  gap: 4px;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.pfhdr-burger:hover { background: rgba(251,187,33,0.12); border-color: rgba(251,187,33,0.5); transform: scale(1.05); }
.pfhdr-burger:active { transform: scale(0.95); }
.pfhdr-burger-line {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #1a1a2e;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease, width 0.3s ease, background 0.3s ease;
}
.pfhdr-burger:hover .pfhdr-burger-line { background: #C48800; }
.pfhdr-burger.pfhdr-burger-open .pfhdr-burger-line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.pfhdr-burger.pfhdr-burger-open .pfhdr-burger-line:nth-child(2) { opacity: 0; width: 0; }
.pfhdr-burger.pfhdr-burger-open .pfhdr-burger-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (min-width: 769px) { .pfhdr-burger { display: none; } }

.pfhdr-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  will-change: transform;
}
.pfhdr-mobile-menu.pfhdr-menu-open { transform: translateX(0); visibility: visible; }
@media (min-width: 769px) { .pfhdr-mobile-menu { display: none !important; } }

.pfhdr-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.pfhdr-mobile-menu.pfhdr-menu-open .pfhdr-mobile-top { opacity: 1; }
.pfhdr-mobile-logo-img,
.pfhdr-mobile-top picture img {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
  max-width: 120px !important;
  display: block !important;
  object-fit: contain !important;
}
.pfhdr-mobile-close {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background 0.3s ease;
}
.pfhdr-mobile-close:hover {
  border-color: #FBBB21;
  color: #C48800;
  transform: rotate(90deg) scale(1.1);
  background: rgba(251, 187, 33, 0.1);
}

.pfhdr-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pfhdr-mobile-nav-item { opacity: 0; transition: opacity 0.3s ease; }
.pfhdr-mobile-menu.pfhdr-menu-open .pfhdr-mobile-nav-item:nth-child(1) { opacity: 1; transition-delay: 0.14s; }
.pfhdr-mobile-menu.pfhdr-menu-open .pfhdr-mobile-nav-item:nth-child(2) { opacity: 1; transition-delay: 0.20s; }
.pfhdr-mobile-menu.pfhdr-menu-open .pfhdr-mobile-nav-item:nth-child(3) { opacity: 1; transition-delay: 0.26s; }
.pfhdr-mobile-menu.pfhdr-menu-open .pfhdr-mobile-nav-item:nth-child(4) { opacity: 1; transition-delay: 0.32s; }
.pfhdr-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  color: rgba(10, 10, 30, 0.78);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, padding-left 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.pfhdr-mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #FBBB21, #F8A820);
  transform: scaleY(0);
  transform-origin: bottom;
  border-radius: 0 2px 2px 0;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.pfhdr-mobile-nav-link:hover { color: #C48800; background: rgba(251,187,33,0.05); padding-left: 32px; }
.pfhdr-mobile-nav-link:hover::before { transform: scaleY(1); transform-origin: top; }
.pfhdr-mobile-nav-arrow {
  font-size: 0.8rem;
  opacity: 0.25;
  flex-shrink: 0;
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.pfhdr-mobile-nav-link:hover .pfhdr-mobile-nav-arrow { opacity: 1; color: #C48800; transform: translateX(5px); }

.pfhdr-mobile-footer {
  padding: 20px;
  flex-shrink: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pfhdr-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(90deg, #FBBB21 0%, #F8A820 100%);
  color: #020618;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(251,187,33,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}
.pfhdr-mobile-menu.pfhdr-menu-open .pfhdr-mobile-cta { opacity: 1; }
.pfhdr-mobile-cta:active { opacity: 0.82; }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════ */
.pf-ftr-wrap *,
.pf-ftr-wrap *::before,
.pf-ftr-wrap *::after {
  box-sizing: border-box;
}

.pf-ftr-wrap {
  background: #000;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  color: #fff;
  font-family: inherit;
  padding: 80px 80px 40px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pf-ftr-wrap::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,187,33,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pf-ftr-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.pf-ftr-left { display: flex; flex-direction: column; gap: 48px; }
.pf-ftr-logo,
.pf-ftr-left picture img.pf-ftr-logo,
.pf-ftr-left > picture > img {
  display: block;
  width: 72px;
  height: auto;
  object-fit: contain;
}

.pf-ftr-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pf-ftr-nav-heading {
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pf-ftr-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pf-ftr-nav-link {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s ease, padding-left 0.25s cubic-bezier(0.4,0,0.2,1);
  display: inline-block;
  position: relative;
}
.pf-ftr-nav-link::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FBBB21;
  transition: transform 0.2s ease;
  transform-origin: left;
}
.pf-ftr-nav-link:hover { color: #fff; padding-left: 14px; }
.pf-ftr-nav-link:hover::before { transform: translateY(-50%) scaleX(1); }

.pf-ftr-right { display: flex; flex-direction: column; }
.pf-ftr-jobs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.pf-ftr-eyebrow {
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FBBB21;
  opacity: 0.8;
}
.pf-ftr-heading-big {
  font-family: inherit;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pf-ftr-heading-big em { font-style: normal; color: #FBBB21; }

.pf-ftr-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: linear-gradient(90deg, #FBBB21, #F8A820);
  color: #000;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 2px 16px rgba(251,187,33,0.25);
}
.pf-ftr-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(251,187,33,0.4); }

.pf-ftr-scale {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.pf-ftr-btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pf-ftr-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.pf-ftr-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.pf-ftr-social {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.pf-ftr-social-label {
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-right: 4px;
}
.pf-ftr-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.pf-ftr-social-link:hover { border-color: #FBBB21; background: rgba(251,187,33,0.1); color: #FBBB21; transform: translateY(-2px); }
.pf-ftr-social-link svg { width: 16px; height: 16px; fill: currentColor; }

.pf-ftr-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.pf-ftr-policy-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}
.pf-ftr-policy-link {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pf-ftr-policy-link:hover { color: #FBBB21; }
.pf-ftr-policy-bold { font-weight: 700; color: rgba(255,255,255,0.6); }
.pf-ftr-copyright {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
}
.pf-ftr-credit {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.pf-ftr-credit:hover { color: #FBBB21; }

@media (max-width: 1024px) {
  .pf-ftr-wrap { padding: 60px 40px 32px; }
  .pf-ftr-main { gap: 48px; }
}
@media (max-width: 768px) {
  .pf-ftr-wrap { padding: 48px 24px 28px; }
  .pf-ftr-main { grid-template-columns: 1fr; gap: 40px; }
  .pf-ftr-nav-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pf-ftr-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .pf-ftr-wrap { padding: 40px 16px 24px; }
  .pf-ftr-btn-row { flex-direction: row; width: 100%; }
  .pf-ftr-btn-gold,
  .pf-ftr-btn-outline { flex: 1; text-align: center; }
  .pf-ftr-policy-list { gap: 6px 16px; }
}

/* ════════════════════════════════════════════════════════════════════
   LITE-YT FACADE (click-to-load YouTube)
════════════════════════════════════════════════════════════════════ */
.lite-yt {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.lite-yt picture,
.lite-yt picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lite-yt__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .15s;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.lite-yt:hover .lite-yt__play svg path:first-child { fill: #cc0000; fill-opacity: 1; }
.lite-yt__play svg { width: 68px; height: 48px; }
.lite-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
