/* =============================================================
   COMPONENT.CSS — Citizens Reverse Mortgage
   Reusable UI: buttons, cards, badges, header, footer, placeholders.
   ============================================================= */

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover,
.btn--primary:focus {
  background: var(--navy-mid);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover,
.btn--gold:focus {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 20px 42px rgba(184, 148, 58, 0.42);
}

.btn--gold-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  border-color: rgba(212, 169, 79, 0.6);
}
.btn--gold-outline:hover,
.btn--gold-outline:focus {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover,
.btn--ghost-light:focus {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.01em;
}
.link-arrow::after {
  content: "\2192";
  transition: transform 0.25s var(--ease);
  font-size: 1.1em;
}
.link-arrow:hover {
  color: var(--navy);
}
.link-arrow:hover::after {
  transform: translateX(5px);
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(
    150deg,
    rgba(184, 148, 58, 0.16),
    rgba(184, 148, 58, 0.06)
  );
  border: 1px solid rgba(184, 148, 58, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--gold);
  margin-bottom: var(--space-md);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.card:hover .card__icon {
  background: var(--grad-gold);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.card__title {
  margin-bottom: 10px;
  font-size: 20px;
}
.card__text {
  font-size: 19px;
  color: var(--text-body);
  margin-bottom: var(--space-md);
}

/* The accent rule is now the animated ::before bar (above). */
.card--accent {
}

/* ── BADGES & TRUST SIGNALS ──────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge--gold {
  background: var(--grad-gold);
  color: #fff;
}
.badge--mono {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Pill chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(184, 148, 58, 0.12);
  border: 1px solid rgba(184, 148, 58, 0.3);
  color: var(--gold-light);
}

/* Star rating */
.stars {
  color: var(--gold);
  display: inline-flex;
  gap: 3px;
  font-size: 17px;
}

/* ── NUMBERED STEP ───────────────────────────────────────── */
.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  border: 2px solid rgba(184, 148, 58, 0.35);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

/* =============================================================
   WARNING / FLAG CARDS — shared (Senior Safeguards, Family Resources).
   Red icon tile + title + text; flex-wrap, centered.
   ============================================================= */
.flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
.flag-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.flag-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.flag-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  margin-bottom: var(--space-md);
}
.flag-card__title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.flag-card p {
  margin: 0;
  color: var(--text-body);
  font-size: 18px;
}

/* =============================================================
   ACCORDION — native <details>/<summary>, no JS. Shared by the
   Myths and FAQ pages. Closed by default; click to reveal.
   ============================================================= */
.accordion {
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* full-width column: item width stays fixed whether open or closed */
  gap: var(--space-sm);
  max-width: 880px;
  margin-inline: auto;
}
.acc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.acc-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--cool-gray);
}
.acc-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.35;
}
.acc-item > summary::-webkit-details-marker {
  display: none;
}
.acc-item > summary::after {
  content: "+";
  margin-left: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.acc-item[open] > summary::after {
  content: "\2212";
  background: var(--grad-gold);
  color: #fff;
}
.acc-item > summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
  border-radius: var(--radius);
}
.acc-item__body {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-body);
}
.acc-item__body > :last-child {
  margin-bottom: 0;
}

/* =============================================================
   SITE HEADER — trust bar, sticky glass nav, dropdowns, mobile.
   ============================================================= */
/* Only the nav pins; the trust bar (now above .site-header in the markup)
   scrolls away. .site-header is a direct child of <body>, so sticky persists. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}
/* Sit below the WordPress admin bar when logged in. */
body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Trust bar — gold scheme, matching wireframe.html */
.trust-bar {
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
}
.trust-bar a {
  color: #fff;
  font-weight: 700;
}
.trust-bar a:hover {
  color: var(--navy-deep);
}
.trust-bar__sep {
  opacity: 0.5;
}

/* Main nav row — gets a glass treatment once the page is scrolled. */
.nav-main {
  background: var(--grad-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.nav-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 16px;
  transition: padding 0.3s var(--ease);
}
.site-header.is-stuck .nav-main {
  background: rgba(16, 30, 66, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.site-header.is-stuck .nav-main__inner {
  padding-block: 11px;
}

/* White transparent logo (filter renders the alpha logo pure white).
   flex-shrink:0 keeps it from collapsing when the nav gets tight. */
.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.site-logo__img {
  display: block;
  width: auto;
  height: 56px; /* S-09: increased header logo size */
  max-width: 100%;
  filter: brightness(0) invert(1);
  transition: height 0.3s var(--ease);
}
.site-header.is-stuck .site-logo__img {
  height: 48px; /* S-09: increased (was 38px) */
}

.primary-nav__list,
.nav-secondary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.primary-nav__list {
  flex-wrap: nowrap;
  gap: 18px;
}
.nav-secondary__list {
  flex-wrap: wrap;
  gap: var(--space-md);
}

.primary-nav__list > li {
  position: relative;
}
.primary-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d5dcec;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  padding-block: 6px;
  position: relative;
}
/* Animated underline on top-level items */
.primary-nav__list > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.primary-nav__list > li:hover > a::before,
.primary-nav__list .current-menu-item > a::before,
.primary-nav__list .current-menu-parent > a::before {
  transform: scaleX(1);
}
.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current-menu-parent > a {
  color: #fff;
}

/* Caret on dropdown parents */
.primary-nav__list .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.primary-nav__list .menu-item-has-children:hover > a::after,
.primary-nav__list .menu-item-has-children:focus-within > a::after {
  transform: translateY(1px) rotate(45deg);
}

/* Dropdown submenu */
.primary-nav__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 248px;
  background: rgba(16, 30, 66, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    visibility 0.2s var(--ease);
  z-index: 1000;
}
.primary-nav__list .sub-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px; /* hover bridge */
}
.primary-nav__list > li:hover > .sub-menu,
.primary-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav__list .sub-menu li {
  width: 100%;
}
.primary-nav__list .sub-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  color: #cbd5e1;
  border-radius: 8px;
  white-space: nowrap;
}
.primary-nav__list .sub-menu a::before {
  display: none;
}
.primary-nav__list .sub-menu a:hover {
  background: rgba(184, 148, 58, 0.18);
  color: #fff;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-ctas .btn {
  padding: 11px 20px;
  font-size: 14px;
}
.nav-ctas__call {
  white-space: nowrap;
}

/* Secondary nav row */
.nav-secondary {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 9px;
}
.nav-secondary__list a {
  color: #94a3b8;
  font-size: 13px;
}
.nav-secondary__list a:hover {
  color: var(--gold-light);
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  background: var(--navy-deep);
}
.mobile-menu__list,
.mobile-menu__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__list {
  padding: 8px 0;
}
.mobile-menu__list a {
  display: block;
  padding: 14px var(--space-md);
  color: #fff;
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Parent rows lay the link + (+) toggle on one line; submenu wraps below. */
.mobile-menu__list .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.mobile-menu__list .menu-item-has-children > a {
  flex: 1 1 auto;
}

/* The + / − toggle button (injected by navigation.js). */
.submenu-toggle {
  flex: 0 0 58px;
  width: 58px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.submenu-toggle:hover,
.submenu-toggle:focus {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.submenu-toggle::before {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
.menu-item-has-children.is-open > .submenu-toggle::before {
  content: "\2212"; /* minus */
}

/* Submenus collapsed by default; revealed when the parent is open. */
.mobile-menu__list .sub-menu {
  flex-basis: 100%;
  width: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.18);
}
.mobile-menu__list .menu-item-has-children.is-open > .sub-menu {
  display: block;
}
.mobile-menu__list .sub-menu a {
  padding-left: calc(var(--space-md) + 18px);
  font-size: 15px;
  color: #cbd5e1;
}

/* Sticky mobile call/consult bar */
.mobile-cta-bar {
  display: none;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}
.mobile-cta {
  flex: 1;
  padding: 14px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.mobile-cta--gold {
  background: var(--grad-gold);
}
.mobile-cta--navy {
  background: var(--navy-mid);
}

@media (max-width: 1280px) {
  .primary-nav,
  .nav-secondary,
  .nav-ctas {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu.is-open {
    display: block;
  }
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
  }
  body {
    padding-bottom: 54px;
  }
}

/* Mobile (phones): hide the top trust bar and reduce the header logo. */
@media (max-width: 768px) {
  .trust-bar {
    display: none;
  }
  .site-logo__img {
    height: 40px;
  }
  .site-header.is-stuck .site-logo__img {
    height: 36px;
  }
}

/* =============================================================
   SITE FOOTER
   ============================================================= */
.site-footer {
  position: relative;
  background: var(--navy-ink);
  color: var(--text-mid);
  padding: var(--space-xl) 0 20px 0;
  font-size: 14px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.footer-col__title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}
.footer-address {
  font-style: normal;
  line-height: 1.9;
  color: #cbd5e1;
}
.footer-address a {
  color: #cbd5e1;
}
.footer-address a:hover {
  color: var(--gold-light);
}
.footer-cta {
  margin: var(--space-md) 0;
}
.footer-badges {
  margin-top: var(--space-xs);
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li {
  margin-bottom: 10px;
}
.footer-menu a {
  color: #cbd5e1;
  font-size: 14px;
}
.footer-menu a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-menu a {
  transition:
    padding-left 0.2s var(--ease),
    color 0.2s var(--ease);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  text-align: center;
}
.footer-bottom .footer-legal { color: var(--white); }
.footer-bottom .footer-disclaimer {
  font-size: 14px;
  color: var(--text-mid);
  opacity: 0.9;
  max-width: 100%;
}

@media (max-width: 1024px) {
    .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}



/* ── PLACEHOLDER (content) ───────────────────────────────────
   Subtle inline marker — distinguishable via the bracketed,
   bold "Placeholder:" label, no loud box. Used only where the
   approved DOCX requests placeholder content.
   ──────────────────────────────────────────────────────────── */
.placeholder {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 0 var(--space-sm);
}
.placeholder strong {
  color: var(--text-dark);
  font-weight: 700;
}
/* Light variant for placeholders shown on dark sections. */
.placeholder--on-dark {
  color: #c9d3ea;
}
.placeholder--on-dark strong {
  color: #fff;
}

/* Page-level placeholder banner — flags a whole unspecced page. */
.page-ph-banner {
  background: repeating-linear-gradient(
    45deg,
    #fef3c7,
    #fef3c7 14px,
    #fde9a8 14px,
    #fde9a8 28px
  );
  border-bottom: 2px dashed #d97706;
  color: #92400e;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 24px;
}
.page-ph-banner strong {
  color: #b45309;
}

/* Image frame — clean rounded media container. */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
/* Portrait crop — keeps a subject's face in frame (headshots, etc.). */
.media-frame--portrait img {
  object-position: center top;
}

/* =============================================================
   VIDEO FACADE — lazy click-to-play YouTube embed (shared).
   Used on Meet Jeff and Testimonials. JS handler lives in
   navigation.js (.video-facade[data-yt]).
   ============================================================= */
.video-facade {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-deep);
  cursor: pointer;
}
.video-facade--solo {
  max-width: 900px;
} /* single, centered (Meet Jeff) */
.video-facade__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.55;
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 30, 66, 0.25),
    rgba(16, 30, 66, 0.78)
  );
}
.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  padding-left: 6px;
  box-shadow: var(--shadow-gold);
  z-index: 1;
  transition: transform 0.25s var(--ease);
}
.video-facade:hover .video-facade__play,
.video-facade:focus-visible .video-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-facade__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px var(--space-lg);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}
/* Injected embed fills the frame; facade chrome hides once playing. */
.video-facade__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}
.video-facade.is-playing .video-facade__poster,
.video-facade.is-playing .video-facade__play,
.video-facade.is-playing .video-facade__label {
  display: none;
}
.video-facade.is-playing::after {
  content: none;
}
