.nv-footer {
    --nv-bg:      #191f17;
    --nv-surface: #1e261b;
    --nv-border:  rgba(255,255,255,.07);
    --nv-gold:    #c8973a;
    --nv-gold-lt: #e4b86a;
    --nv-text:    #afbdac;
    --nv-heading: #eef0ec;
    --nv-muted:   #6b7d68;
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--nv-bg);
    position: relative;
    overflow: hidden;
    color: var(--nv-text);
}
 
/* ── Ambient glow blobs ── */
.nv-footer::before,
.nv-footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.nv-footer::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,124,89,.1) 0%, transparent 70%);
    top: -180px; right: -120px;
}
.nv-footer::after {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(200,151,58,.07) 0%, transparent 70%);
    bottom: -80px; left: 40px;
}
 
/* ── Inner container ── */
.nv-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
 
/* ════════════════════════════════
   TOP STRIP
════════════════════════════════ */
.nv-strip {
    border-bottom: 1px solid var(--nv-border);
    padding: 16px 0;
}
.nv-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.nv-strip-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .95rem;
    color: var(--nv-gold);
    letter-spacing: .03em;
    flex-shrink: 0;
}
.nv-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.nv-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--nv-border);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: .69rem;
    color: var(--nv-text);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}
.nv-badge i { color: var(--nv-gold); font-size: .75rem; }
 
/* ════════════════════════════════
   MAIN GRID — Mobile-first
   default: 1 col → 2 col → 4 col
════════════════════════════════ */
.nv-main { padding: 48px 0 36px; }
 
.nv-grid {
    display: grid;
    grid-template-columns: 1fr;          /* mobile: 1 col */
    gap: 36px;
}
@media (min-width: 600px) {
    .nv-grid {
        grid-template-columns: 1fr 1fr;   /* tablet: 2 col */
        gap: 36px 32px;
    }
}
@media (min-width: 992px) {
    .nv-grid {
        grid-template-columns: 1.9fr 1.1fr 0.9fr 1.5fr; /* desktop: 4 col */
        gap: 48px;
    }
}
 
/* ── Brand column ── */
.nv-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--nv-heading);
    line-height: 1;
    margin-bottom: 5px;
}
.nv-brand-name em { color: var(--nv-gold); font-style: normal; }
.nv-brand-sub {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--nv-muted);
    font-weight: 500;
    margin-bottom: 18px;
}
.nv-brand-desc {
    font-size: .865rem;
    line-height: 1.78;
    color: var(--nv-text);
    margin-bottom: 22px;
}
.nv-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.nv-divider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--nv-gold);
    flex-shrink: 0;
}
.nv-divider-line {
    flex: 1;
    height: 1px;
    background: var(--nv-border);
    border: none;
}
 
/* Social */
.nv-social { display: flex; gap: 9px; flex-wrap: wrap; }
.nv-soc {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--nv-border);
    background: rgba(255,255,255,.03);
    display: flex; align-items: center; justify-content: center;
    color: var(--nv-muted);
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .22s, color .22s, background .22s, transform .22s;
    -webkit-tap-highlight-color: transparent;
}
.nv-soc:hover, .nv-soc:focus {
    border-color: var(--nv-gold);
    color: var(--nv-gold);
    background: rgba(200,151,58,.09);
    transform: translateY(-3px);
    outline: none;
}
 
/* ── Column heading ── */
.nv-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nv-heading);
    margin-bottom: 5px;
    letter-spacing: .01em;
}
.nv-col-rule {
    width: 26px; height: 2px;
    background: var(--nv-gold);
    border-radius: 2px;
    margin-bottom: 20px;
}
 
/* ── Links list ── */
.nv-links {
    list-style: none;
    padding: 0; margin: 0;
}
.nv-links li { margin-bottom: 12px; }
.nv-links a {
    color: var(--nv-text);
    text-decoration: none;
    font-size: .865rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .18s, gap .18s;
    -webkit-tap-highlight-color: transparent;
    padding: 2px 0; /* bigger tap area */
}
.nv-links a::before {
    content: '';
    width: 5px; height: 1px;
    background: var(--nv-gold);
    display: block;
    flex-shrink: 0;
    transition: width .18s;
}
.nv-links a:hover, .nv-links a:focus {
    color: var(--nv-gold-lt);
    gap: 12px;
    outline: none;
}
.nv-links a:hover::before { width: 9px; }
 
/* ── Products ── */
.nv-products { display: flex; flex-direction: column; gap: 9px; }
.nv-product {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--nv-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .82rem;
    color: var(--nv-text);
    background: rgba(255,255,255,.025);
    transition: border-color .2s, background .2s, color .2s;
    cursor: default;
}
.nv-product:hover {
    border-color: rgba(200,151,58,.28);
    background: rgba(200,151,58,.05);
    color: var(--nv-gold-lt);
}
.nv-product-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--nv-gold);
    opacity: .7;
    flex-shrink: 0;
}
 
/* ── Contact ── */
.nv-contact-list { display: flex; flex-direction: column; gap: 0; }
.nv-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--nv-border);
}
.nv-contact-item:last-child { border-bottom: none; }
.nv-contact-ico {
    width: 34px; height: 34px;
    border-radius: 7px;
    background: rgba(200,151,58,.09);
    border: 1px solid rgba(200,151,58,.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--nv-gold);
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.nv-contact-body { font-size: .82rem; color: var(--nv-text); line-height: 1.6; }
.nv-contact-label {
    display: block;
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--nv-muted);
    font-weight: 500;
    margin-bottom: 2px;
}
.nv-contact-body a {
    color: var(--nv-gold-lt);
    text-decoration: none;
    transition: color .18s;
}
.nv-contact-body a:hover { color: #fff; }
 
/* ════════════════════════════════
   BOTTOM BAR
════════════════════════════════ */
.nv-bottom {
    border-top: 1px solid var(--nv-border);
    padding: 18px 0;
    position: relative;
    z-index: 1;
}
.nv-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.nv-copy {
    font-size: .75rem;
    color: var(--nv-muted);
    line-height: 1.5;
}
.nv-copy a { color: var(--nv-gold); text-decoration: none; }
.nv-copy a:hover { color: var(--nv-gold-lt); }
.nv-foot-links {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0; margin: 0;
    flex-wrap: wrap;
}
.nv-foot-links a {
    font-size: .73rem;
    color: var(--nv-muted);
    text-decoration: none;
    transition: color .18s;
    padding: 4px 0; /* tap area */
}
.nv-foot-links a:hover { color: var(--nv-text); }
 
/* ════════════════════════════════
   MOBILE-SPECIFIC OVERRIDES ≤599px
════════════════════════════════ */
    @media (max-width: 599px) {
       
        .nv-wrap
         { 
            padding: 0 16px; 
        }
 
    /* Strip — stack tagline above badges */
    .nv-strip { padding: 14px 0; }
    .nv-strip-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .nv-strip-tagline { font-size: .88rem; }
    .nv-badge { font-size: .65rem; padding: 4px 10px; }
 
    /* Main */
    .nv-main { padding: 32px 0 24px; }
    .nv-brand-name { font-size: 1.6rem; }
    .nv-brand-desc { font-size: .84rem; }
 
    /* Social — bigger touch */
    .nv-soc { width: 44px; height: 44px; font-size: 1rem; }
 
    /* Products — wrap in row on mobile */
    .nv-products { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .nv-product { flex: 0 0 auto; padding: 8px 12px; font-size: .79rem; }
 
    /* Bottom */
    .nv-bottom { padding: 14px 0; }
    .nv-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .nv-foot-links { gap: 14px; }
 
    /* On mobile: Useful Links & Products sit side by side in 2-col, 
       brand and contact each take full width */
}
 
/* ════════════════════════════════
   VERY SMALL ≤380px
════════════════════════════════ */
@media (max-width: 380px) {
    .nv-wrap { padding: 0 12px; }
    .nv-brand-name { font-size: 1.4rem; }
    .nv-badge { font-size: .61rem; padding: 3px 8px; }
    .nv-product { font-size: .75rem; padding: 7px 10px; }
    .nv-links a { font-size: .82rem; }
}