/* /public_html/v2/css/base.css  (FIJF v2 - stabilized) */

/* ✅ GLOBAL RESET (fixes the white edge stripes) */
/* Fix white side stripes behind the centered content */
body { background:#0b0b0c; }          /* outside area becomes black */
.page-wrap { background:#ffffff; }     /* content area stays white */
.hero { background:#0b0b0c; }          /* prevents any white bleed while video loads */



html, body{
  margin:0;
  padding:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
*, *::before, *::after{ box-sizing:border-box; }
img, video{ max-width:100%; height:auto; display:block; }

/* =========================
   TOKENS
   ========================= */

:root{
  --navy:#081A33;
  --navy2:#0b1f3a;
  --gold:#c8a95d;

  --sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", Times, serif;

  --bg:#ffffff;
  --text:#0b1220;
  --muted:#4b5566;
  --line:rgba(8,26,51,.12);

  --card:#ffffff;
  --shadow: 0 18px 46px rgba(8,26,51,.10);
  --shadow2: 0 26px 78px rgba(8,26,51,.14);
  --radius:18px;
}

/* =========================
   FIJF HEADER (RESTORED – STABLE)
   ========================= */

.fijf-header, .fijf-header * { box-sizing: border-box; }

.fijf-header{
  position: sticky;
  top: 0;
  z-index: 100000;
  background: #0b0b0c;
  border-bottom: 1px solid rgba(255,255,255,.14);

  /* IMPORTANT: no 100vw tricks (prevents mobile overflow) */
  width: 100%;
}

.fijf-header__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fijf-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.fijf-brand__logo{
  height: 54px;        /* ✅ not huge */
  width: auto;
  display: block;
}

.fijf-brand__name{
  color: #fff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 750;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .92;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 62vw;
}

/* Desktop nav */
.fijf-nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.fijf-nav a{
  color: #fff;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  opacity: .9;
}

.fijf-nav a:hover,
.fijf-nav a:focus-visible{
  opacity: 1;
  border-bottom-color: #fff;
  outline: none;
}

/* JS-free burger */
.fijf-nav-toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

/* ✅ Burger button */
.fijf-burger{
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;

  /* ✅ make spans align horizontally inside */
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ✅ Vertical bars (|||) instead of horizontal lines */
.fijf-burger span{
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #fff;
  border-radius: 2px;
  margin: 0;
}

/* Mobile menu panel */
.fijf-mobile{
  display: none;
  background: #0b0b0c;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 8px 18px 14px;
}

.fijf-mobile a{
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  opacity: .92;
}
.fijf-mobile a:last-child{ border-bottom: none; }

/* Mobile behavior */
@media (max-width: 900px){
  .fijf-nav{ display: none; }
  .fijf-burger{ display: inline-flex; }
  .fijf-brand__name{ white-space: normal; max-width: 68vw; }
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-family:var(--sans);
  font-weight:950;
  border-radius:14px;
  padding:12px 16px;
  border:1px solid transparent;
  line-height:1;
}
.btn-gold{
  background:var(--gold);
  color:var(--navy);
  border-color:rgba(200,169,93,.85);
}
.btn-gold:hover{ filter:brightness(1.05); }
.btn-outline{
  background:transparent;
  border-color:rgba(8,26,51,.18);
  color:var(--navy);
}
.btn-outline:hover{ background:rgba(8,26,51,.04); }

/* =========================
   HERO (video)
   ========================= */
.hero{
  position:relative;
  min-height:66vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-bottom:1px solid var(--line);

  /* ✅ explicit full width */
  width:100%;
}
.hero video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(108%) contrast(104%);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg,
      rgba(8,26,51,.10) 0%,
      rgba(8,26,51,.45) 45%,
      rgba(8,26,51,.92) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  width:min(1180px,92vw);
  margin:0 auto;
  padding:64px 18px 52px;
  color:#fff;
}
.hero-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.88);
  border:1px solid rgba(200,169,93,.38);
  background:rgba(8,26,51,.18);
  padding:8px 12px;
  border-radius:999px;
}
.hero-kicker b{ color:var(--gold); }
.hero h1{
  margin:16px 0 12px;
  font-family:var(--sans);
  font-size:clamp(36px,4.8vw,64px);
  line-height:1.03;
  font-weight:950;
  letter-spacing:-.7px;
  text-shadow:0 18px 44px rgba(0,0,0,.38);
}
.hero p{
  margin:0 0 18px;
  max-width:76ch;
  color:rgba(255,255,255,.88);
  font-size:clamp(14px,1.6vw,18px);
  font-weight:650;
  font-family:var(--serif);
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* =========================
   GRID CARDS
   ========================= */
.grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column:span 4;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover{ transform:translateY(-2px); box-shadow:var(--shadow2); }
.card a{ display:block; text-decoration:none; }
.card .img{
  aspect-ratio:16/9;
  background:#eef2f7;
  overflow:hidden;
}
.card .img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.card .pad{ padding:14px 14px 16px; }
.card .cat{
  font-family:var(--sans);
  font-size:12px;
  font-weight:950;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:rgba(8,26,51,.62);
}
.card .title{
  margin:8px 0 8px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.18;
  font-weight:950;
  letter-spacing:-.25px;
}
.card .excerpt{
  margin:0;
  font-family:var(--serif);
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  font-weight:600;
}
.card .meta{
  margin-top:10px;
  font-family:var(--sans);
  font-size:12px;
  color:rgba(8,26,51,.62);
  font-weight:750;
}
@media (max-width:980px){ .card{grid-column:span 6} }
@media (max-width:620px){ .card{grid-column:span 12} }

/* =========================
   ARTICLE TYPOGRAPHY
   ========================= */
.article-wrap{
  width:min(880px,92vw);
  margin:0 auto;
  padding:44px 18px 62px;
}
.breadcrumb{
  font-family:var(--sans);
  font-size:12px;
  color:rgba(8,26,51,.55);
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.article-title{
  margin:12px 0 10px;
  font-family:var(--sans);
  font-size:clamp(34px,4vw,54px);
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.6px;
  color:#070d18;
}
.article-dek{
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:20px;
  line-height:1.55;
  color:rgba(11,18,32,.78);
  max-width:78ch;
}
.prose{
  margin-top:22px;
  font-family:var(--serif);
  font-size:18px;
  line-height:1.9;
  color:#0b1220;
}
.prose p{ margin:0 0 16px; }
.prose h2{
  margin:36px 0 12px;
  font-family:var(--sans);
  font-size:22px;
  font-weight:950;
  letter-spacing:-.2px;
  line-height:1.25;
}

/* =========================
   FOOTER (simple stable)
   ========================= */
.site-footer{
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  width:min(1180px,92vw);
  margin:0 auto;
  padding:28px 18px;
  display:flex;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}
.foot-title{
  font-family:var(--sans);
  font-weight:950;
  letter-spacing:3px;
  color:var(--navy);
}
.foot-desc{
  margin-top:6px;
  color:var(--muted);
  max-width:60ch;
  font-weight:600;
}
.foot-mini{
  margin-top:10px;
  color:rgba(8,26,51,.62);
  font-family:var(--sans);
  font-size:12px;
  font-weight:700;
  max-width:52ch;
}
.footer-bottom{
  width:min(1180px,92vw);
  margin:0 auto;
  padding:0 18px 18px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  color:rgba(8,26,51,.58);
  font-family:var(--sans);
  font-weight:700;
  font-size:12px;
}
.footer-bottom a{ color:rgba(8,26,51,.70); text-decoration:none; }
.footer-bottom a:hover{ text-decoration:underline; text-underline-offset:2px; }
.footer-bottom .sep{ opacity:.55; }

/* ✅ Toggle open */
#fijfNavToggle:checked ~ .fijf-mobile { display:block; }
