.site-footer{
        position:relative;
        margin-top:60px;
        background:
          radial-gradient(900px 300px at 85% -10%, rgba(224,185,115,.25), transparent 60%),
          radial-gradient(700px 400px at 0% -20%, rgba(111,78,55,.10), transparent 55%),
          linear-gradient(180deg, rgba(224,185,115,.18), rgba(111,78,55,.06)), var(--primary);
        border-top:1px solid var(--border);
        overflow:hidden;
      }
      .site-footer .wave{
        position:absolute; inset:auto 0 auto 0; top:-24px; height:24px;
        background: radial-gradient(50% 100% at 50% 0, rgba(255,255,255,.9), rgba(255,255,255,0));
        pointer-events:none;
      }
      .footer-news{
        margin:24px 0 12px;
        background: linear-gradient(180deg, #fff, #f9f5ee);
        border:1px solid var(--border);
        border-radius:20px;
        box-shadow: var(--shadow);
        padding:18px;
        display:grid; grid-template-columns: 1.2fr 1fr; gap:14px; align-items:center;
      }
      .footer-news h3{ margin:0 0 6px; font-size:20px; font-weight:800; }
      .footer-news p{ margin:0; color:var(--muted); }
      .input-row{ display:flex; gap:10px; }
      .input-row input{
        flex:1; height:44px; padding:10px 12px;
        border:1px solid var(--border); border-radius:12px; background:#fff; font:inherit;
        outline:none; transition:border-color .2s ease, box-shadow .2s ease;
      }
      .input-row input:focus{
        border-color: rgba(111,78,55,.35);
        box-shadow: 0 0 0 4px rgba(111,78,55,.08);
      }
      .input-row button{
        height:44px; padding:0 16px; border-radius:12px; border:1px solid transparent; cursor:pointer;
        background: linear-gradient(180deg, var(--accent-2), #d8a952);
        color:#2b2620; font-weight:800; box-shadow: var(--shadow);
      }
      .footer-grid{
        display:grid; gap:22px; grid-template-columns: 2fr 1fr 1fr 1fr;
        padding:18px 0 8px;
      }
      .footer-col{ display:grid; gap:14px; }
      .footer-card{
        background:#fff; border:1px solid var(--border); border-radius:16px; padding:16px; box-shadow: var(--shadow);
      }
      .footer-brand .brand-row{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
      .footer-brand .brand-row img{ width:110px; height:110px; object-fit:contain; }

      .footer-brand .social{ display:flex; gap:10px; margin-top:12px; }
      .footer-brand .social a{
        width:38px; height:38px; display:grid; place-items:center; border-radius:12px;
        background:#fff; border:1px solid var(--border); color:var(--text); text-decoration:none;
        transition: transform .15s ease, background .15s ease;
      }
      .footer-brand .social a:hover{ transform: translateY(-2px); background:#f9f5ee; }

      .footer-builder .title{
        display:flex; align-items:center; gap:8px; margin:0 0 8px; font-weight:900;
      }
      .builder-links{ display:grid; gap:8px; }
      .builder-links a{
        display:flex; align-items:center; gap:8px; text-decoration:none; color:var(--text);
        padding:8px 10px; border:1px solid var(--border); border-radius:12px; background:#fff;
        transition: background .15s ease, transform .15s ease;
      }
      .builder-links a i{ color:var(--accent); }
      .builder-links a:hover{ background:#f9f5ee; transform: translateY(-1px); }

      .footer-links b{ display:block; margin-bottom:8px; font-size:14px; letter-spacing:.3px; }
      .footer-links a{
        display:block; color:var(--text); text-decoration:none; padding:6px 0;
        opacity:.9; transition: opacity .15s ease;
      }
      .footer-links a:hover{ opacity:1; text-decoration:underline; }

      .footer-bottom{
        margin-top:8px; padding:14px 0 22px; border-top:1px dashed rgba(0,0,0,.12);
        display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
        color:var(--muted);
      }
      .footer-bottom .mini-nav{ display:flex; gap:14px; flex-wrap:wrap; }
      .footer-bottom .mini-nav a{ color:inherit; text-decoration:none; }
      .footer-bottom .mini-nav a:hover{ text-decoration:underline; }
      .footer-bottom .credit{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
      .footer-bottom .credit .dot{ width:6px; height:6px; border-radius:50%; background:rgba(0,0,0,.18); display:inline-block; }

      @media (max-width:1024px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
      @media (max-width:720px){
        .footer-news{ grid-template-columns: 1fr; }
        .footer-grid{ grid-template-columns: 1fr; }
        .footer-bottom{ flex-direction:column; align-items:flex-start; gap:8px; }
      }
      .visually-hidden{
        position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px);
        white-space:nowrap; border:0; padding:0; margin:-1px;
      }