/* ============================================================
   components.css — Sons Of Favor
   Nav, footer, buttons, cards, bento, pricing, portfolio, FAQ
   ============================================================ */

/* ── NAV ─────────────────────────────────────────────────── */
.tnav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav);
  display: flex; align-items: center;
  background: rgba(9,9,9,.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(212,175,55,.08);
  z-index: 1000;
  transition: background .4s, border-color .4s;
}
.tnav.scrolled {
  background: rgba(9,9,9,.94);
  border-bottom-color: var(--border);
  backdrop-filter: blur(40px) saturate(200%);
}
.tnav-i {
  width: 100%; max-width: var(--max);
  margin-inline: auto; padding-inline: var(--g);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nlogo {
  display: flex; align-items: center; gap: .75rem;
  cursor: pointer; flex-shrink: 0;
}
.nbrand { display: flex; flex-direction: column; line-height: 1; }
.nbrand .s { font-size: .55rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nbrand .m { font-size: .95rem; font-weight: 500; letter-spacing: .08em; color: var(--cream); }
.nbrand .t { font-size: .52rem; letter-spacing: .08em; color: var(--gold); opacity: .8; }

.nav-links { display: none; gap: 2rem; align-items: center; }
@media (min-width: 640px) { .nav-links { display: flex; } }

.nav-link {
  font-size: .8rem; font-weight: 400;
  letter-spacing: .04em; color: var(--muted);
  transition: color .25s;
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover,
.nav-link.active,
.nav-link[aria-current="page"] { color: var(--cream); }
.nav-link:hover::after,
.nav-link.active::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  font-size: .75rem; font-weight: 500;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--black);
  letter-spacing: .04em;
  transition: opacity .25s, box-shadow .25s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .9; box-shadow: 0 4px 20px rgba(212,175,55,.3); }

/* ── BOTTOM NAV (mobile) ──────────────────────────────────── */
.bnav {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: calc(68px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(9,9,9,.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(212,175,55,.10);
  z-index: 999;
  align-items: stretch;
}
@media (min-width: 640px) { .bnav { display: none; } }

.bnav-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .25rem;
  min-height: 44px;
  color: var(--muted);
  transition: color .25s;
  font-size: .58rem; font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none; padding: 0;
}
.bnav-item.active { color: var(--gold); }
.bnav-item svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  letter-spacing: .04em;
  transition: opacity .25s, box-shadow .25s, transform .15s;
  cursor: pointer; border: none; white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,175,55,.2);
}
.btn-gold:hover { opacity: .9; box-shadow: 0 6px 28px rgba(212,175,55,.35); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(245,240,232,.2);
  color: var(--cream);
}
.btn-ghost:hover { border-color: rgba(245,240,232,.4); transform: translateY(-1px); }

.btn-ghost--dark {
  border-color: rgba(9,9,9,.2);
  color: var(--black);
}
.btn-ghost--dark:hover { border-color: rgba(9,9,9,.4); }

.btn--sm { min-height: 44px; padding: .55rem 1.2rem; font-size: .75rem; }

.btn-row { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 480px) { .btn-row { flex-direction: row; align-items: center; } }
@media (max-width: 479px) { .btn-row .btn { width: 100%; } }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(9,9,9,.6) 0%,
    rgba(9,9,9,.72) 60%,
    rgba(9,9,9,.96) 100%);
  z-index: 1;
}
.hero-c {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max);
  margin-inline: auto; padding-inline: var(--g);
  padding-block: clamp(4rem, 10vw, 8rem);
}
.hero-kicker-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  padding: .35rem .9rem;
  border: 1px solid var(--border-md);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(212,175,55,.06);
}
.hero-kicker-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: kicPulse 2s ease-in-out infinite;
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: min(46ch, 100%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── MARQUEE STRIP ───────────────────────────────────────── */
.marquee-strip {
  background: var(--lift);
  border-block: 1px solid var(--border);
  padding-block: .875rem;
  overflow: hidden;
  display: flex;
}
.marquee-inner { display: flex; overflow: hidden; }
.marquee-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  padding-inline: 1.5rem;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6; flex-shrink: 0;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.card--featured  { border-color: rgba(212,175,55,.35); }
.card--gold      { background: linear-gradient(135deg, var(--surface), var(--lift)); border-color: var(--border-md); }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lift); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.card-kicker   { font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.card-title    { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--cream); margin-bottom: .75rem; line-height: 1.3; }
.card-body     { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.card-cta      { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 500; color: var(--gold); margin-top: 1.25rem; transition: gap .25s; }
.card-cta:hover{ gap: .7rem; }

/* ── BENTO CELL ──────────────────────────────────────────── */
.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden; position: relative;
  transition: border-color .3s;
  cursor: default;
  min-height: clamp(160px, 25vw, 220px);
}
.bento-cell:hover { border-color: var(--border-md); }
/* Cursor glow */
.bento-cell::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none; opacity: 0;
  transition: opacity .3s;
  transform: translate(-50%, -50%);
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  z-index: 0;
}
.bento-cell:hover::before { opacity: 1; }
.bento-cell > * { position: relative; z-index: 1; }

.bento-cell .cell-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--gold); opacity: .15; line-height: 1;
  position: absolute; bottom: 1rem; right: 1.5rem;
}
.bento-cell h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--cream); margin-bottom: .75rem; }
.bento-cell p  { font-size: .875rem; color: var(--muted); line-height: 1.65; max-width: 38ch; }

/* ── PRICING CARDS ───────────────────────────────────────── */
.price-cards { display: grid; gap: var(--g); }
@media (min-width: 1024px) { .price-cards { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}
.price-card--featured {
  border-color: rgba(212,175,55,.35);
  box-shadow: 0 0 0 1px rgba(212,175,55,.08), 0 24px 48px rgba(0,0,0,.4);
  animation: pulseBorder 2.5s ease-in-out infinite;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-md); }

.price-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--black);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 0 0 8px 8px;
}
.price-tier   { font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.price-name   { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--cream); margin-bottom: .5rem; }
.price-amount {
  font-size: 2.5rem; font-weight: 300;
  font-family: var(--serif); color: var(--cream);
  line-height: 1; margin-bottom: .5rem;
}
.price-amount sup  { font-size: 1.1rem; vertical-align: super; font-family: var(--serif); }
.price-cycle { font-size: .8rem; color: var(--muted); margin-left: .25rem; }
.price-desc  { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-block: 1rem; }
.price-list  { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.price-list li {
  font-size: .85rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: .6rem;
}
.price-list li::before { content: '✦'; color: var(--gold); font-size: .7rem; margin-top: .2rem; flex-shrink: 0; }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.portfolio-grid { display: grid; gap: var(--g); }
@media (min-width: 540px) { .portfolio-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }

.portfolio-card {
  border-radius: 16px; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}
.portfolio-card:hover { border-color: var(--border-md); transform: translateY(-4px); }
.portfolio-card--featured { border-color: var(--border-md); }

.portfolio-thumb {
  aspect-ratio: 16/9;
  background: var(--lift);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portfolio-thumb-label {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--gold); opacity: .4; text-align: center;
  padding: 1rem;
}
.portfolio-body  { padding: 1.25rem 1.5rem 1.5rem; }
.portfolio-name  { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: .35rem; }
.portfolio-domain{ font-size: .78rem; color: var(--gold); margin-bottom: .5rem; letter-spacing: .04em; }
.portfolio-tag   { font-size: .75rem; color: var(--muted); line-height: 1.5; }
.portfolio-desc  { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-top: .75rem; }

.portfolio-card--placeholder .portfolio-thumb {
  border: 2px dashed var(--border);
  background: transparent;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list  { display: flex; flex-direction: column; }
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .5rem;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding-block: 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--cream); transition: color .25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1;
  color: var(--gold);
  transition: transform .3s var(--ease), border-color .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }

.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding-bottom: 1.25rem; font-size: .9rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 500px; }

/* ── OBJECTION BLOCKS ────────────────────────────────────── */
.objections { display: flex; flex-direction: column; gap: 0; }
.objection  { padding-block: 1.5rem; border-bottom: 1px solid var(--border); }
.objection:first-child { padding-top: 0; }
.objection-q { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: .75rem; }
.objection-a { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── OUTCOME LIST ────────────────────────────────────────── */
.outcome-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
.outcome-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1.25rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px;
}
.outcome-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(212,175,55,.1);
  border: 1px solid var(--border-md);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .7rem; margin-top: .1rem;
}
.outcome-text { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── PAIN LIST ───────────────────────────────────────────── */
.pain-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.pain-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem; color: var(--muted); line-height: 1.6;
  padding: 1rem 1.25rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px;
}
.pain-list li::before {
  content: '→';
  color: var(--gold); flex-shrink: 0; font-size: .9rem; margin-top: .1rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: 3rem 2rem;
}
.footer-i {
  max-width: var(--max);
  margin-inline: auto; padding-inline: var(--g);
  display: grid; gap: 2rem;
}
@media (min-width: 640px)  { .footer-i { grid-template-columns: 1fr 1fr; align-items: start; } }
@media (min-width: 1024px) { .footer-i { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer-brand   { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.footer-tagline { font-size: .85rem; color: var(--muted); line-height: 1.6; max-width: 28ch; }
.footer-col-title {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-link  { font-size: .85rem; color: var(--muted); transition: color .25s; }
.footer-link:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max);
  margin-inline: auto; padding-inline: var(--g);
  padding-top: 2rem; margin-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .5rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; }
}
.footer-copy { font-size: .78rem; color: var(--muted-lo); }

/* ── NAV SCROLL SHARPENING ───────────────────────────────── */
nav.tnav {
  border-bottom: 1px solid rgba(212,175,55,.1);
}
nav.tnav.scrolled {
  background: rgba(9,9,9,.96);
  border-bottom-color: rgba(212,175,55,.16);
}

/* ── MARQUEE CONTRAST ────────────────────────────────────── */
.marquee-strip {
  background: #141416;
  border-block-color: rgba(212,175,55,.14);
}
.marquee-item { color: rgba(245,240,232,.38); }
.marquee-dot  { opacity: .8; }

/* ── FOOTER SHARPENING ───────────────────────────────────── */
.site-footer {
  border-top-color: rgba(212,175,55,.18);
  background: #111113;
}

/* ── BUTTON SHARPENING ───────────────────────────────────── */
.btn-ghost {
  border-color: rgba(245,240,232,.28);
}
.btn-ghost:hover {
  border-color: rgba(245,240,232,.6);
}
.btn-gold {
  box-shadow:
    0 2px 8px rgba(0,0,0,.5),
    0 4px 24px rgba(212,175,55,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-gold:hover {
  box-shadow:
    0 4px 16px rgba(0,0,0,.5),
    0 8px 40px rgba(212,175,55,.42),
    inset 0 1px 0 rgba(255,255,255,.22);
}
@media (max-width: 479px) {
  .btn {
    padding: .85rem 1.5rem;
    font-size: .78rem;
    letter-spacing: .06em;
  }
}

/* ── CARD BORDER SHARPENING ──────────────────────────────── */
.card,
.price-card,
.portfolio-card,
.pcc,
.outcome-item {
  border-color: rgba(255,255,255,.1);
}
.card:hover,
.portfolio-card:hover,
.pcc:hover {
  border-color: rgba(212,175,55,.22);
}

/* ── BENTO CELL NUMBER ───────────────────────────────────── */
.bento-cell .cell-num { opacity: .18; }

/* ── FOCUS-VISIBLE ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
  border-radius: 100px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── TYPE SCALE — MOBILE TIGHTENING ─────────────────────── */
@media (max-width: 639px) {
  h1 { letter-spacing: -.03em; line-height: .95; }
  h2 { letter-spacing: -.025em; line-height: 1.05; }
  h3 { letter-spacing: -.015em; }
  p  { font-weight: 300; line-height: 1.82; }
}

/* ── NEW PORTFOLIO CARD STYLES (.pcc) ────────────────────── */
.pcc {
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}
.pcc:hover { border-color: var(--border-md); transform: translateY(-4px); }

.pth {
  aspect-ratio: 16/9;
  background: var(--lift);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pthi {
  width: 85%; padding: 1rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.pbar { height: 8px; border-radius: 4px; }
.prow { display: flex; gap: .5rem; }
.pblk { flex: 1; height: 40px; border-radius: 6px; }
.plbl {
  position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 1rem;
  color: var(--gold); opacity: .45;
  white-space: nowrap;
}
.pinfo { padding: 1.25rem 1.5rem 1.5rem; }
.pinfo h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: .35rem; }
.pinfo p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.ptags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.ptag  {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-lo);
  padding: .2rem .55rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--lift);
}

/* ── PORT SITE LINK ──────────────────────────────────────── */
.port-site-link {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,.3);
  transition: border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.port-site-link:hover {
  color: var(--gold-lt);
  border-color: var(--gold);
}

/* ── PORT ENGAGEMENT LABEL ───────────────────────────────── */
.port-engagement {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65;
  margin-top: .85rem;
}
