/* ============================================
   index.css — TIMBUKTU LLC
   ============================================ */
 
/* ── FONT ────────────────────────────────────────────────── */
@font-face {
    font-family: 'Cinzel';
    src: url('/assets/fonts/Cinzel-VariableFont_wght.ttf') format('truetype');
}
 
/* ── TOKENS ──────────────────────────────────────────────── */
:root {
    --gold:     #FFD700;
    --gold-d:   #B8860B;
    --gold-l:   #FFC200;
    --purple:   #7B35C2;
    --purple-l: #A56DD4;
    --black:    #000;
    --ink:      #0a0814;
    --dark:     #0d0d0d;
    --silver:   #C0C0C0;
    --white:    #fff;
    --header-h: 84px;
    --fade-dur: 1.25s;
    --radius:   12px;
}
 
/* ── RESET ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
::-webkit-scrollbar { display: none; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cinzel', serif; }
body { overflow-x: hidden; background: var(--black); color: var(--white); }
 
/* ── PAGE LOAD ───────────────────────────────────────────── */
.header-container { animation: slideDown 1.25s ease .1s both; }
main              { animation: fadeUp   1.5s  ease .8s both; }
 
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:none; } }
@keyframes fadeUp    { from { opacity:0; transform:translateY(12px);  } to { opacity:1; transform:none; } }
 
/* ── SCROLL FADE ─────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--fade-dur) ease, transform var(--fade-dur) ease;
}
.fade-in.visible { opacity: 1; transform: none; }
 
 
/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
header { position: fixed; top:0; left:0; right:0; z-index:1000; }
 
.header-container {
    position: relative;                        /* anchor for centered logo */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,215,0,.22);
    padding: 10px 28px;
    gap: 16px;
    height: var(--header-h);
}
 
/* Logo cycling */
.logo-images { position:relative; width:60px; height:60px; flex:0 0 60px; }
.logo-images img { position:absolute; opacity:0; animation: switchImg 9s steps(1) infinite; }
.logo-rock { width:60px; height:60px; }
.logo-coin { width:34px; height:34px; top:50%; left:50%; transform:translate(-50%,-50%); }
.logo-bar  { width:60px; height:60px; }
.logo-images img:nth-child(1) { animation-delay:0s; }
.logo-images img:nth-child(2) { animation-delay:3s; }
.logo-images img:nth-child(3) { animation-delay:6s; }
 
@keyframes switchImg { 0%{opacity:1;} 33.5%{opacity:0;} 100%{opacity:0;} }
 
/* Brand name — truly centered */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px;
    white-space: nowrap;
    text-shadow: 0 0 18px rgba(255,215,0,.4);
    pointer-events: none;
    z-index: 1;
}
 
/* Mobile toggle */
.nav-toggle-input { display:none; }
.hamburger {
    display:none; flex-direction:column; gap:5px;
    cursor:pointer; padding:8px; flex:0 0 auto;
    border:1px solid rgba(255,215,0,.3); border-radius:8px;
    transition:border-color .2s;
}
.hamburger:hover { border-color:var(--gold); }
.hamburger .bar { display:block; width:22px; height:2px; background:var(--gold); border-radius:2px; }
 
/* Nav */
.header-links { display:flex; align-items:center; flex:0 0 auto; }
.nav-list { display:flex; list-style:none; align-items:center; gap:4px; }
 
.nav-item a {
    display:block; position:relative;
    color:rgba(255,255,255,.75); text-decoration:none;
    padding:8px 13px; font-size:13px; white-space:nowrap;
    letter-spacing:1px; border-radius:6px;
    transition:color .2s, background .2s;
}
.nav-item a::after {
    content:''; position:absolute; bottom:3px; left:50%;
    width:0; height:2px; background:var(--gold);
    border-radius:2px; transform:translateX(-50%);
    transition:width .25s ease;
}
.nav-item a:hover        { color:var(--gold); background:rgba(255,215,0,.07); }
.nav-item a:hover::after { width:calc(100% - 26px); }
.nav-item a:active       { color:var(--gold-d); }
 
@media (max-width:900px) {
    .header-container { flex-wrap:wrap; padding:10px 16px; height:auto; }
    .hamburger   { display:flex; order:3; }
    .logo-images { order:1; }
    .header-logo {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
        order: 2;
        pointer-events: auto;
    }
    .header-links {
        order:4; width:100%; overflow:hidden;
        max-height:0; flex:1 0 100%;
        border-top:0 solid transparent;
        transition:max-height .4s ease, border-top .4s;
    }
    .nav-toggle-input:checked ~ .header-links {
        max-height:500px;
        border-top:1px solid rgba(255,215,0,.15);
    }
    .nav-list { flex-direction:column; gap:4px; padding:10px 0; width:100%; align-items:stretch; }
    .nav-item { width:100%; text-align:center; }
    .nav-item a { display:block; width:100%; padding:12px 0; font-size:15px; color:rgba(255,255,255,.85); }
    .nav-item a::after { display:none; }
    .nav-item a:hover  { color:var(--gold); background:rgba(255,215,0,.08); }
}
 
 
/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--ink);
    padding-top: var(--header-h);
    overflow: hidden;
}
 
/* Dot-grid overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,215,0,.055) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}
 
.hero-shapes { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
 
.orb { position:absolute; border-radius:50%; filter:blur(80px); }
.orb-1 {
    width:clamp(260px,45vw,560px); height:clamp(260px,45vw,560px);
    top:-15%; left:-10%;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    animation: pulseOrb 11s ease-in-out infinite;
}
.orb-2 {
    width:clamp(180px,32vw,420px); height:clamp(180px,32vw,420px);
    bottom:-12%; right:-8%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    animation: pulseOrb 14s ease-in-out infinite; animation-delay:-5s;
}
.orb-3 {
    width:clamp(120px,22vw,300px); height:clamp(120px,22vw,300px);
    top:38%; left:44%;
    background: radial-gradient(circle, var(--purple-l) 0%, transparent 70%);
    animation: pulseOrb 9s ease-in-out infinite; animation-delay:-8s;
}
@keyframes pulseOrb {
    0%,100% { opacity:.07; transform:scale(1); }
    50%      { opacity:.14; transform:scale(1.18); }
}
 
.shape { position:absolute; border:1.5px solid; animation:floatShape linear infinite; }
.s1 { width:90px;  height:90px;  top:15%; left:8%;  border-color:var(--gold);    clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); opacity:.18; animation-duration:22s; animation-delay:0s;   filter:drop-shadow(0 0 8px  var(--gold)); }
.s2 { width:60px;  height:60px;  top:60%; left:15%; border-color:var(--gold-d);  clip-path:polygon(50% 0%,0% 100%,100% 100%);                           opacity:.13; animation-duration:18s; animation-delay:-5s;  filter:drop-shadow(0 0 6px  var(--gold-d)); }
.s3 { width:110px; height:110px; top:30%; left:80%; border-color:var(--gold-l);  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); opacity:.15; animation-duration:26s; animation-delay:-9s;  filter:drop-shadow(0 0 10px var(--gold-l)); }
.s4 { width:50px;  height:50px;  top:75%; left:70%; border-color:var(--gold-d);  clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);                   opacity:.11; animation-duration:15s; animation-delay:-3s;  filter:drop-shadow(0 0 6px  var(--gold-d)); }
.s5 { width:80px;  height:80px;  top:20%; left:50%; border-color:var(--gold);    clip-path:polygon(50% 0%,0% 100%,100% 100%);                           opacity:.09; animation-duration:20s; animation-delay:-12s; filter:drop-shadow(0 0 8px  var(--gold)); }
.s6 { width:70px;  height:70px;  top:80%; left:40%; border-color:#FFA500;        clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); opacity:.14; animation-duration:24s; animation-delay:-7s;  filter:drop-shadow(0 0 7px  #FFA500); }
.s7 { width:75px;  height:75px;  top:45%; left:25%; border-color:var(--purple-l);clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);                   opacity:.13; animation-duration:19s; animation-delay:-4s;  filter:drop-shadow(0 0 8px  var(--purple-l)); }
.s8 { width:55px;  height:55px;  top:10%; left:65%; border-color:var(--purple);  clip-path:polygon(50% 0%,0% 100%,100% 100%);                           opacity:.12; animation-duration:17s; animation-delay:-10s; filter:drop-shadow(0 0 6px  var(--purple)); }
 
@keyframes floatShape {
    0%   { transform:translateY(0) rotate(0deg); }
    50%  { transform:translateY(-40px) rotate(180deg); }
    100% { transform:translateY(0) rotate(360deg); }
}
 
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(32px,4vw,64px);
    padding: clamp(48px,7vh,80px) clamp(20px,5vw,80px);
    width: 100%;
    max-width: 1200px;
}
 
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 300px;
    max-width: 580px;
}
 
.hero-right {
    flex: 1 1 280px;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}
 
.hero-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(255,215,0,.3);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
}
 
.hero-rule {
    width: 52px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--purple-l));
    box-shadow: 0 0 12px rgba(255,215,0,.45);
    border-radius: 2px;
    margin-bottom: -4px;
}
 
.hero-headline {
    font-size: clamp(28px,4vw,48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
 
.hero-sub { font-size:15px; color:var(--silver); line-height:1.85; }
 
.hero-ctas { display:flex; flex-wrap:wrap; gap:14px; }
 
.hero-img {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    border: 2px solid rgba(255,215,0,.28);
    box-shadow: 0 0 40px rgba(255,215,0,.07), 0 24px 48px rgba(0,0,0,.5);
    transition: border-color .3s, box-shadow .3s;
    display: block;
}
.hero-img:hover {
    border-color: rgba(255,215,0,.6);
    box-shadow: 0 0 60px rgba(255,215,0,.14), 0 24px 48px rgba(0,0,0,.5);
}
 
 
/* ══════════════════════════════════════════════════════════
   PORTFOLIO SECTION  (replaces trust-bar + section-org + section-markets)
══════════════════════════════════════════════════════════ */
.section-portfolio {
    background: var(--black);
    padding: 110px 60px;
    border-top: 1px solid rgba(255,215,0,.1);
    position: relative;
    overflow: hidden;
}
 
.section-portfolio::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(255,215,0,.03) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 90% 80%, rgba(255,215,0,.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
 
.portfolio-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 1;
}
 
/* Header */
.portfolio-header { max-width: 680px; }
 
.portfolio-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
 
.eyebrow-line {
    display: block;
    flex: 0 0 32px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-d));
}
.eyebrow-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold-d));
}
 
.portfolio-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -.5px;
    margin-bottom: 20px;
}
 
.portfolio-sub {
    font-size: 15px;
    color: #6a7a8e;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom:-25px;
}
 
/* Division grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,215,0,.07);
    border: 1px solid rgba(255,215,0,.07);
    border-radius: 18px;
    overflow: hidden;
}
 
/* Division card */
.div-card {
    background: #080808;
    padding: 36px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
    border-top: 2px solid rgba(var(--ac), .65);
}
 
.div-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 110%, rgba(var(--ac), .07) 0%, transparent 65%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
 
.div-card:hover                { background: #0c0c0c; }
.div-card:hover .div-card-glow { opacity: 1; }
 
.div-card-watermark {
    position: absolute;
    top: -10px; right: 16px;
    font-family: 'Cinzel', serif;
    font-size: 100px;
    font-weight: 700;
    color: rgba(var(--ac), .04);
    line-height: 1;
    letter-spacing: -2px;
    user-select: none;
    pointer-events: none;
    transition: color .3s ease;
}
.div-card:hover .div-card-watermark { color: rgba(var(--ac), .07); }
 
.div-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
 
.div-roman {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(var(--ac), .55);
    transition: color .2s;
}
.div-card:hover .div-roman { color: rgba(var(--ac), .9); }
 
.div-category {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2e3a4a;
    text-align: right;
    line-height: 1.4;
    transition: color .2s;
}
.div-card:hover .div-category { color: #3e4e62; }
 
.div-card-name {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: #d4d8de;
    letter-spacing: .3px;
    line-height: 1.2;
    transition: color .25s ease;
}
.div-card:hover .div-card-name { color: rgba(var(--ac), 1); }
 
.div-card-desc {
    font-size: 13px;
    color: #505a66;
    line-height: 1.9;
    flex: 1;
    transition: color .2s;
}
.div-card:hover .div-card-desc { color: #6a7a8e; }
 
.div-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
}
 
.div-tags { display:flex; flex-wrap:wrap; gap:5px; }
 
.div-tags span {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(var(--ac), .4);
    border: 1px solid rgba(var(--ac), .15);
    padding: 3px 9px;
    border-radius: 20px;
    transition: color .2s, border-color .2s, background .2s;
}
.div-card:hover .div-tags span {
    color: rgba(var(--ac), .85);
    border-color: rgba(var(--ac), .35);
    background: rgba(var(--ac), .04);
}
 
.div-arrow {
    width: 18px; height: 18px;
    flex-shrink: 0;
    color: rgba(var(--ac), .7);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .22s ease, transform .22s ease;
}
.div-arrow svg { width:18px; height:18px; fill:currentColor; }
.div-card:hover .div-arrow { opacity:1; transform:translateX(0); }
 
/* Stats strip */
.portfolio-stats {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255,215,0,.08);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,.012);
}
 
.pstat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 30px 20px;
    transition: background .2s;
}
.pstat:hover { background: rgba(255,215,0,.025); }
 
.pstat-num {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
}
 
.pstat-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #384654;
}
 
.pstat-rule {
    width: 1px;
    background: rgba(255,215,0,.08);
    flex-shrink: 0;
    margin: 16px 0;
}
 
/* Responsive — portfolio */
@media (max-width: 960px) {
    .section-portfolio { padding: 80px 36px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .div-card-watermark { font-size: 80px; }
}
@media (max-width: 640px) {
    .section-portfolio { padding: 64px 20px; }
    .portfolio-grid { grid-template-columns: 1fr; border-radius: 14px; }
    .div-card { padding: 28px 22px 24px; }
    .div-card-watermark { font-size: 70px; }
    .portfolio-stats { flex-direction: column; border-radius: 12px; }
    .pstat { padding: 22px 20px; border-bottom: 1px solid rgba(255,215,0,.06); }
    .pstat:last-child { border-bottom: none; }
    .pstat-rule { display: none; }
}
 
 
/* ══════════════════════════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════════════════════════ */
.section-contact {
    background: var(--ink);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}
 
.section-contact::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 640px; height: 320px;
    background: radial-gradient(ellipse, rgba(123,53,194,.1) 0%, transparent 70%);
    pointer-events: none;
}
 
.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
 
.contact-accent {
    width: 56px; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--purple-l));
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(255,215,0,.35);
}
 
.contact-label { 
    font-size:10px; 
    letter-spacing:4px; 
    text-transform:uppercase; 
    color:var(--gold-d); 
    padding-top: 30px;
}
.contact-title { font-size:clamp(24px,3vw,34px); color:var(--white); line-height:1.25; font-weight:700; }
.contact-body  { font-size:14px; color:var(--silver); line-height:1.9; max-width:520px; }
 
 
/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 30px;
    background: var(--gold);
    color: var(--ink);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(255,215,0,.28);
    transition: background .2s, transform .18s, box-shadow .18s, border-color .2s;
}
.btn-primary:hover  { background:var(--gold-l); border-color:var(--gold-l); transform:translateY(-3px); box-shadow:0 8px 28px rgba(255,215,0,.48); }
.btn-primary:active { transform:none; }
 
.btn-ghost {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    padding: 13px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.25);
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    transition: border-color .2s, color .2s, transform .18s;
}
.btn-ghost:hover  { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.btn-ghost:active { transform:none; }
 
 
/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
    background: #070810;
    border-top: 1px solid rgba(255,215,0,.18);
    font-family: 'Cinzel', serif;
}
 
.sf-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding: 56px 60px 40px;
    max-width: 1300px;
    margin: 0 auto;
}
 
.sf-brand { display:flex; flex-direction:column; gap:14px; }
 
.sf-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--gold);
    text-shadow: 0 0 16px rgba(255,215,0,.28);
}
 
.sf-tagline { font-size:12px; color:var(--silver); line-height:1.9; }
 
.sf-col { display:flex; flex-direction:column; gap:14px; }
 
.sf-col-label {
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,215,0,.14);
}
 
.sf-links { list-style:none; display:flex; flex-direction:column; gap:10px; padding:0; margin:0; }
.sf-links a { font-size:12px; color:rgba(192,192,192,.65); text-decoration:none; letter-spacing:.5px; transition:color .2s; }
.sf-links a:hover { color:var(--gold); }
 
.sf-social { display:flex; flex-wrap:wrap; gap:8px; margin-top:2px; }
 
.sf-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: border-color .2s, color .2s, transform .18s, background .2s;
}
.sf-social-link:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); background:rgba(255,215,0,.06); }
.sf-social-link svg  { width:14px; height:14px; fill:currentColor; }
 
.sf-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 60px;
    border-top: 1px solid rgba(255,255,255,.05);
    background: rgba(0,0,0,.3);
}
 
.sf-bottom > span { font-size:11px; color:rgba(255,255,255,.22); letter-spacing:.4px; }
 
.sf-legal { display:flex; align-items:center; gap:12px; }
.sf-legal a    { font-size:11px; color:rgba(255,255,255,.22); text-decoration:none; transition:color .2s; }
.sf-legal a:hover { color:var(--gold); }
.sf-legal span { font-size:11px; color:rgba(255,255,255,.1); }
 
@media (max-width:1100px) { .sf-top { grid-template-columns:1fr 1fr; gap:32px; } }
@media (max-width:900px)  { .sf-top { grid-template-columns:1fr 1fr; padding:40px 24px 28px; gap:24px; } .sf-bottom { padding:14px 24px; } }
@media (max-width:560px)  { .sf-top { grid-template-columns:1fr; padding:32px 16px 20px; } .sf-bottom { padding:12px 16px; flex-direction:column; align-items:flex-start; } }