/* =========================================================================
   Site footer v2 — richer, branded footer used by _Layout.cshtml.
   Palette: deep green (#0b3d2e) + gold (#D4AF37 / #F6D97A).
   ========================================================================= */

.site-footer-v2 {
    position: relative;
    background: linear-gradient(180deg, #071f18 0%, #050d0a 100%);
    color: #E8EAE8;
    padding: 0 0 1.25rem;
    margin-top: 3rem;
    overflow: hidden;
}

.site-footer-v2 .footer-accent {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 30%, #F6D97A 50%, #D4AF37 70%, transparent 100%);
    opacity: .85;
}

.site-footer-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(212,175,55,.10), transparent 45%),
        radial-gradient(circle at 88% 0%, rgba(11,61,46,.6), transparent 55%);
    pointer-events: none;
}

.site-footer-v2 .footer-top {
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

/* --- Brand block --- */
.site-footer-v2 .footer-brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1rem;
}
.site-footer-v2 .footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 14px;
    padding: 6px;
}
.site-footer-v2 .footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    color: #F6D97A;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .04em;
    line-height: 1.2;
}
.site-footer-v2 .footer-brand-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    margin-top: .15rem;
}

.site-footer-v2 .footer-meta {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.site-footer-v2 .footer-meta li {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255,255,255,.78);
    font-size: .88rem;
    padding: .35rem 0;
}
.site-footer-v2 .footer-meta i { color: #D4AF37; font-size: 1.05rem; }

/* --- Section headings --- */
.site-footer-v2 .footer-heading {
    color: #F6D97A;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    position: relative;
}
.site-footer-v2 .footer-heading::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

/* --- Link columns --- */
.site-footer-v2 .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer-v2 .footer-links li { margin-bottom: .5rem; }
.site-footer-v2 .footer-links a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .9rem;
    transition: color .18s ease, transform .18s ease, gap .18s ease;
}
.site-footer-v2 .footer-links a i {
    color: rgba(212,175,55,.6);
    font-size: .8rem;
    transition: transform .18s ease, color .18s ease;
}
.site-footer-v2 .footer-links a:hover {
    color: #F6D97A;
    gap: .6rem;
}
.site-footer-v2 .footer-links a:hover i {
    color: #D4AF37;
    transform: translateX(2px);
}

/* --- Contact + socials --- */
.site-footer-v2 .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.site-footer-v2 .footer-contact li {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .4rem 0;
    font-size: .9rem;
}
.site-footer-v2 .footer-contact a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .18s ease;
    word-break: break-word;
}
.site-footer-v2 .footer-contact a:hover { color: #F6D97A; }
.site-footer-v2 .fc-ico {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(212,175,55,.14);
    border: 1px solid rgba(212,175,55,.35);
    color: #D4AF37;
    border-radius: 10px;
    flex-shrink: 0;
}

.site-footer-v2 .footer-social {
    display: flex;
    gap: .5rem;
    margin-top: .5rem;
}
.site-footer-v2 .footer-social a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.75);
    border-radius: 999px;
    text-decoration: none;
    transition: all .2s ease;
    font-size: 1.05rem;
}
.site-footer-v2 .footer-social a:hover {
    background: linear-gradient(135deg, rgba(212,175,55,.28), rgba(212,175,55,.12));
    border-color: rgba(212,175,55,.6);
    color: #F6D97A;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

/* --- Bottom bar --- */
.site-footer-v2 .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0 0;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    position: relative;
    z-index: 1;
}
.site-footer-v2 .fb-copy {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.site-footer-v2 .footer-top-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(212,175,55,.35);
    color: #F6D97A;
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .04em;
    transition: all .2s ease;
}
.site-footer-v2 .footer-top-link:hover {
    background: rgba(212,175,55,.18);
    border-color: rgba(212,175,55,.7);
    transform: translateY(-1px);
}
.site-footer-v2 .site-credit {
    color: rgba(255,255,255,.6);
}
.site-footer-v2 .site-credit strong { color: #F6D97A; }
.site-footer-v2 .site-credit a { color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer-v2 .site-credit a:hover { color: #F6D97A; }
.site-footer-v2 .site-heart { color: #e63946; }
.site-footer-v2 .credit-sep { color: rgba(212,175,55,.55); margin: 0 .35rem; }

/* --- Responsive tweaks --- */
@media (max-width: 767.98px) {
    .site-footer-v2 .footer-top { padding: 2.25rem 0 1.5rem; }
    .site-footer-v2 .footer-brand { flex-direction: row; }
    .site-footer-v2 .footer-bottom { justify-content: center; text-align: center; }
    .site-footer-v2 .footer-bottom > * { flex: 1 1 100%; justify-content: center; }
}
