/* ══════════════════════════════════════════════════════
   DPD GOLKAR TULUNGAGUNG — main.css
   Shared design system: tokens, reset, layout, components
══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --gold:       #E8B400;
  --gold-lt:    #F5C800;
  --gold-pale:  #FFFBEA;
  --green:      #1A5C2A;
  --green-mid:  #226B35;
  --green-dk:   #0E3B1A;
  --green-pale: #EDF5EF;
  --ink:        #111310;
  --ink-2:      #2C2E2B;
  --ink-3:      #6B6F68;
  --ink-4:      #9BA098;
  --line:       #E2E5DF;
  --line-2:     #EAEEF2;
  --bg:         #FAFAF7;
  --white:      #FFFFFF;
  --serif: 'Plus Jakarta Sans',system-ui,sans-serif;
  --sans:  'Sora', system-ui, sans-serif;
  --max:  1160px;
  --px:   clamp(18px, 4.5vw, 40px);
  --sec:  clamp(52px, 7vw, 88px);
  --r-sm: 4px; --r-md: 6px; --r-lg: 10px; --r-xl: 16px;
  --sh-sm: 0 1px 4px rgba(0,0,0,.06);
  --sh-md: 0 4px 18px rgba(0,0,0,.09);
  --sh-lg: 0 8px 32px rgba(0,0,0,.12);
  --sh-gold: 0 5px 18px rgba(232,180,0,.32);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--serif); background: var(--bg); color: var(--ink); overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── LAYOUT ─────────────────────────────────────── */
.shell { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--px); }
.sec        { padding-block: var(--sec); }
.sec-white  { background: var(--white); }
.sec-alt    { background: var(--bg); }
.sec-green  { background: var(--green-dk); }
.sec-gold   { background: var(--gold); }

/* ─── TYPOGRAPHY ──────────────────────────────────── */
.lbl {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 10px; margin-bottom: 9px;
}
.lbl::before { content: ''; width: 20px; height: 2px; background: var(--gold); flex-shrink: 0; }
.lbl-inv { color: rgba(255,255,255,.52); }
.lbl-inv::before { background: var(--gold); }

.ttl {
  font-family: var(--sans); font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 800; line-height: 1.12; color: var(--ink); letter-spacing: -.02em;
}
.ttl-inv { color: var(--white); }
.ttl em    { font-style: normal; color: var(--green); }
.ttl-inv em { color: var(--gold); }

.ttl-xl {
  font-family: var(--sans); font-size: clamp(1.7rem,4.5vw,3rem);
  font-weight: 800; line-height: 1.1; color: var(--white); letter-spacing: -.025em;
}
.ttl-xl em { font-style: normal; color: var(--gold); }

.cap {
  font-family: var(--serif); font-size: clamp(.95rem,1.6vw,1.08rem);
  color: var(--ink-3); line-height: 1.75; font-weight: 300;
  margin-top: 9px; max-width: 520px;
}
.cap-inv { color: rgba(255,255,255,.65); }

.body-text { font-family: var(--serif); font-size: clamp(1rem,1.6vw,1.1rem); color: var(--ink-2); line-height: 1.85; font-weight: 300; }
.body-text p { margin-bottom: 1em; }
.body-text p:last-child { margin-bottom: 0; }

.hdr-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(28px,4vw,42px); }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 12px 26px; border-radius: var(--r-sm); border: 2px solid transparent; transition: all .2s; cursor: pointer; white-space: nowrap; }
.btn-gold    { background: var(--gold);  color: var(--ink);   border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold-lt); transform: translateY(-1px); box-shadow: var(--sh-gold); }
.btn-grn     { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-grn:hover   { background: var(--green-dk); transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.38); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-dark    { background: var(--ink);   color: var(--gold);  border-color: var(--ink); }
.btn-dark:hover  { background: var(--green-dk); }
.btn-sm      { padding: 8px 16px; font-size: .74rem; }
.btn-block   { width: 100%; justify-content: center; }

/* ─── MORE LINK ───────────────────────────────────── */
.more-link { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green); white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; transition: color .18s; }
.more-link:hover { color: var(--gold); }
.more-link-inv { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.3); }
.more-link-inv:hover { color: var(--white); }

/* ─── CHIPS ───────────────────────────────────────── */
.chip { display: inline-flex; align-items: center; font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-sm); }
.chip-gold    { background: var(--gold);       color: var(--ink); }
.chip-green   { background: var(--green);      color: var(--white); }
.chip-outline { border: 1px solid var(--line); color: var(--ink-3); }
.chip-pale    { background: var(--green-pale); color: var(--green); }

/* ─── TOPBAR ──────────────────────────────────────── */
.topbar { background: var(--green-dk); border-bottom: 2px solid var(--gold); }
.topbar-in { display: flex; align-items: center; min-height: 36px; }
.tb-info { flex: 1; display: flex; align-items: center; gap: 14px; padding: 5px var(--px); flex-wrap: wrap; row-gap: 3px; }
.tb-info a, .tb-info span { font-family: var(--sans); font-size: .78rem; color: rgba(255,255,255,.65); white-space: nowrap; }
.tb-info a:hover { color: var(--gold); }
.tb-sep { color: rgba(255,255,255,.18); }
.tb-soc { display: flex; align-items: center; gap: 5px; padding: 5px var(--px); border-left: 1px solid rgba(255,255,255,.1); flex-shrink: 0; }
.tb-ico { width: 28px; height: 28px; background: rgba(255,255,255,.09); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; line-height: 1; color: rgba(255,255,255,.65); transition: background .18s, color .18s; }
.tb-ico:hover { background: var(--gold); color: var(--green-dk); }

/* ─── HEADER / NAV ────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 2.5px solid var(--gold); box-shadow: 0 2px 18px rgba(0,0,0,.07); }
.hdr { display: flex; align-items: center; height: clamp(58px,7.5vw,70px); gap: 18px; }
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark { width: clamp(38px,4.5vw,48px); height: clamp(38px,4.5vw,48px); background: var(--green); border-radius: 50%; border: 2.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: clamp(.85rem,1.8vw,1rem); font-weight: 800; color: var(--gold); flex-shrink: 0; transition: transform .2s; overflow: hidden; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.logo:hover .logo-mark { transform: scale(1.05); }
.logo-text { display: flex; flex-direction: column; justify-content: center; gap: 3px; min-width: 0; line-height: 1; }
.logo-name { font-family: var(--sans); font-size: clamp(.88rem,1.8vw,1.05rem); font-weight: 800; color: var(--green); letter-spacing: -.01em; line-height: 1.1; }
.logo-sub  { font-family: var(--sans); font-size: .58rem; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }

.nav-desk { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-desk > a { font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--ink-2); padding: 8px 14px; border-radius: var(--r-sm); position: relative; white-space: nowrap; transition: color .18s; }
.nav-desk > a::after { content: ''; position: absolute; bottom: 4px; left: 10px; right: 10px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s; }
.nav-desk > a:hover { color: var(--green); }
.nav-desk > a:hover::after, .nav-desk > a.active::after { transform: scaleX(1); }
.nav-desk > a.active { color: var(--green); font-weight: 600; }

.nav-drop { position: relative; }
.nav-drop > a { font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--ink-2); display: flex; align-items: center; gap: 4px; transition: color .18s; padding: 8px 14px; }
.nav-drop > a:hover { color: var(--green); }
.nav-drop > a.active { color: var(--green); font-weight: 600; }
.nav-drop > a::after { display: none; }
.nav-drop > a .arr { font-family: var(--sans); font-size: .5rem; color: var(--ink-3); transition: transform .2s; line-height: 1; }
.nav-drop:hover > a .arr { transform: rotate(180deg); }
.drop-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--line); border-top: 2px solid var(--gold); border-radius: 0 0 var(--r-md) var(--r-md); box-shadow: var(--sh-lg); min-width: 200px; z-index: 300; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s; pointer-events: none; }
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.drop-menu a { display: block; padding: 11px 18px; font-family: var(--sans); font-size: .78rem; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line); transition: background .14s, color .14s; }
.drop-menu a:last-child { border-bottom: none; }
.drop-menu a:hover  { background: var(--green-pale); color: var(--green); }
.drop-menu a.active { background: var(--green-pale); color: var(--green); font-weight: 600; }

.nav-cta { background: var(--green) !important; color: var(--white) !important; padding: 8px 15px !important; border-radius: var(--r-sm) !important; font-weight: 700 !important; margin-left: 6px !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--green-dk) !important; }

.ham { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; margin-left: auto; flex-shrink: 0; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer { display: none; position: fixed; inset: 0; z-index: 190; pointer-events: none; }
.drawer.open { display: block; pointer-events: all; }
.drawer-bg { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .28s; }
.drawer.open .drawer-bg { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; width: min(290px,85vw); height: 100%; background: var(--white); padding: 68px 0 28px; overflow-y: auto; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); box-shadow: -3px 0 28px rgba(0,0,0,.12); }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a { display: flex; align-items: center; justify-content: space-between; padding: 13px 24px; font-family: var(--sans); font-size: .87rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); transition: background .14s, color .14s; }
.drawer-panel a:hover, .drawer-panel a.active { background: var(--green-pale); color: var(--green); }
.drawer-group { padding: 8px 24px 3px; font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.drawer-sub { padding-left: 36px !important; font-size: .83rem !important; color: var(--ink-3) !important; }
.drawer-cta { padding: 18px 24px 0; }
.drawer-cta .btn { width: 100%; justify-content: center; }

/* ─── TICKER ──────────────────────────────────────── */
.ticker { background: var(--gold); height: 37px; overflow: hidden; position: relative; display: flex; align-items: center; }
.ticker-label { position: absolute; left: 0; top: 0; bottom: 0; z-index: 2; background: var(--green-dk); color: var(--gold-lt); font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 0 15px; display: flex; align-items: center; gap: 6px; border-right: 2px solid var(--gold); white-space: nowrap; }
.ticker-label::before { content: '●'; font-size: .42rem; color: #f44; animation: blink 1s step-end infinite; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 28s linear infinite; padding-left: 145px; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-family: var(--sans); font-size: .72rem; font-weight: 500; color: var(--ink); padding: 0 22px; }
.ticker-sep  { color: var(--green-dk); opacity: .3; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 50% { opacity: 0; } }
/* Skeleton loader — shimmer effect (dipakai di semua halaman) */
@keyframes _sk {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
/* Legacy pulse alias (kompatibilitas) */
@keyframes _sk_pulse { 0%,100%{opacity:.55} 50%{opacity:1} }

/* Base skeleton class — gunakan sebagai: class="sk" style="height:Xpx" */
.sk {
  background: linear-gradient(
    90deg,
    var(--line) 25%,
    rgba(255,255,255,.65) 50%,
    var(--line) 75%
  );
  background-size: 200% 100%;
  animation: _sk 1.5s ease-in-out infinite;
  border-radius: var(--r-sm);
}
[data-theme="dark"] .sk {
  background: linear-gradient(90deg, rgba(255,255,255,.07) 25%, rgba(255,255,255,.14) 50%, rgba(255,255,255,.07) 75%);
  background-size: 200% 100%;
}

/* ── Staggered fade-in untuk card grid ── */
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-reveal { animation: card-in 0.35s ease both; }
.card-reveal:nth-child(1) { animation-delay: .00s; }
.card-reveal:nth-child(2) { animation-delay: .06s; }
.card-reveal:nth-child(3) { animation-delay: .12s; }
.card-reveal:nth-child(4) { animation-delay: .18s; }
.card-reveal:nth-child(5) { animation-delay: .24s; }
.card-reveal:nth-child(6) { animation-delay: .30s; }
.card-reveal:nth-child(n+7) { animation-delay: .36s; }


/* ─── PAGE BANNER ─────────────────────────────────── */
.page-banner { background: var(--green-dk); position: relative; overflow: hidden; padding: clamp(40px,7vw,72px) 0; }
.pb-fill { position: absolute; inset: 0; background: linear-gradient(135deg,#081F0D 0%,#1A5C2A 55%,#0A2910 100%); }
.pb-tex  { position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(-55deg,transparent,transparent 8px,rgba(255,255,255,1) 8px,rgba(255,255,255,1) 9px); }
.pb-glow { position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(232,180,0,.12) 0%,transparent 70%); pointer-events: none; }
.pb-inner { position: relative; z-index: 2; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .65rem; font-weight: 500; color: rgba(255,255,255,.42); margin-bottom: 12px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.42); transition: color .18s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.22); }
.breadcrumb .cur { color: var(--gold); }

/* ─── SUB-NAV ─────────────────────────────────────── */
.sub-nav { background: var(--white); border-bottom: 2px solid var(--line); position: sticky; top: clamp(58px,7.5vw,70px); z-index: 100; }
.sub-nav-inner { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-inner a { font-family: var(--sans); font-size: .74rem; font-weight: 600; color: var(--ink-3); padding: 14px 18px; white-space: nowrap; border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: color .18s, border-color .18s; flex-shrink: 0; }
.sub-nav-inner a:hover { color: var(--green); }
.sub-nav-inner a.active { color: var(--green); border-bottom-color: var(--gold); }

/* ─── PULL QUOTE ──────────────────────────────────── */
.pull-quote { border-left: 3px solid var(--gold); background: var(--green-pale); padding: 15px 18px; border-radius: 0 var(--r-md) var(--r-md) 0; font-family: var(--serif); font-size: clamp(.85rem,1.5vw,.95rem); color: var(--green-dk); line-height: 1.72; font-style: italic; font-weight: 300; }
.pull-quote strong { font-style: normal; font-weight: 600; color: var(--green); }
.pull-quote.dark { background: var(--green-dk); color: var(--white); }
.pull-quote.dark strong { color: var(--gold-lt); }

/* ─── FILTER BAR ──────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-btn { font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 7px 15px; border-radius: 100px; border: 1.5px solid var(--line); color: var(--ink-3); cursor: pointer; transition: all .18s; background: var(--white); }
.filter-btn:hover  { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* ─── CTA STRIP ───────────────────────────────────── */
.cta-strip { background: var(--gold); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding-block: clamp(32px,5vw,48px); }
.cta-strip h3 { font-family: var(--sans); font-size: clamp(1.2rem,2.8vw,1.7rem); font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -.02em; }
.cta-strip p  { font-family: var(--serif); font-size: clamp(.9rem,1.5vw,.98rem); color: rgba(0,0,0,.65); margin-top: 4px; font-weight: 300; }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer { background: var(--ink-2, #2C2E2B); }
.footer-top  { padding-block: clamp(40px,5.5vw,60px); }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1.3fr; gap: clamp(22px,3.5vw,40px); }
.footer-brand .fl { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.footer-brand .fl-text { display: flex; flex-direction: column; justify-content: center; gap: 3px; min-width: 0; line-height: 1; }
.footer-brand .fm { width: 40px; height: 40px; background: var(--green); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: .95rem; font-weight: 800; color: var(--gold); flex-shrink: 0; overflow: hidden; }
.footer-brand .fm img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.footer-brand .fn { font-family: var(--sans); font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.footer-brand .fs { font-family: var(--sans); font-size: .63rem; color: rgba(255,255,255,.4); letter-spacing: .07em; text-transform: uppercase; }
.footer-brand p   { font-family: var(--serif); font-size: .79rem; color: rgba(255,255,255,.4); line-height: 1.72; max-width: 240px; margin-bottom: 16px; font-weight: 300; }
.footer-socials { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-socials a { width: 31px; height: 31px; background: rgba(255,255,255,.07); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.4); transition: all .18s; }
.footer-socials a:hover { background: var(--gold); color: var(--ink); }
.footer-col h4 { font-family: var(--sans); font-size: .71rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 13px; }
.footer-col li { margin-bottom: 7px; }
.footer-col li a { font-family: var(--sans); font-size: .82rem; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 5px; transition: color .18s; }
.footer-col li a::before { content: '›'; color: var(--gold); font-size: .88rem; line-height: 1; }
.footer-col li a:hover   { color: rgba(255,255,255,.8); }
.footer-col li a.active  { color: rgba(255,255,255,.7); font-weight: 600; }
.footer-contact-item { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 9px; }
.fci-icon { color: var(--gold); font-size: .82rem; margin-top: 2px; flex-shrink: 0; line-height: 1.5; }
.fci-text { font-family: var(--sans); font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.07); padding-block: 15px; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 9px; }
.footer-bar-inner p, .footer-bar-inner a { font-family: var(--sans); font-size: .74rem; color: rgba(255,255,255,.3); }
.footer-bar-inner a:hover { color: rgba(255,255,255,.6); }
.footer-bar-links { display: flex; gap: 13px; flex-wrap: wrap; }

/* ─── SCROLL REVEAL ───────────────────────────────── */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-desk { display: none; }
  .ham      { display: flex; }
  .drawer   { display: block; }
  .tb-info .hi { display: none; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .tb-info   { display: none; }
  .topbar-in { justify-content: flex-end; }
  .tb-soc    { border-left: none; }
}

/* ── Dark sections: white body text ── */
.sec-green .cap { color: rgba(255,255,255,.65); }
.sec-green .prog-desc { color: rgba(255,255,255,.7); }
.sec-contact .cap { color: rgba(255,255,255,.65); }
.sec-contact .k-txt { color: rgba(255,255,255,.7); }
.sec-contact .k-ttl { color: var(--white); }
