:root {
    --vf-blush:   #1a1613;
    --vf-rose:    #d4af52;
    --vf-primary: #c9a227;
    --vf-accent:  #a9850f;
    --vf-deep:    #121110;
    --vf-muted:   #a39a90;
    --vf-ivory:   #1a1613;
    --vf-border:  rgba(255,255,255,.09);
    --vf-ff-serif: 'Cormorant Garamond', Georgia, serif;
    --vf-ff-sans:  'DM Sans', system-ui, sans-serif;
}

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    z-index: 950;
    transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37,211,102,.5);
}
.whatsapp-float img {
    width: 28px;
    height: 28px;
    display: block;
}

/* ══════════════════════════════════════
   FOOTER SHELL
══════════════════════════════════════ */
.vf-footer {
    font-family: var(--vf-ff-sans);
    background: var(--vf-deep);
    color: rgba(255,255,255,.7);
}

/* ══════════════════════════════════════
   TOP STRIP — tagline / trust bar
══════════════════════════════════════ */
.vf-top-strip {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 28px 0;
}
.vf-top-strip-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}
.vf-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.vf-strip-item:first-child { padding-left: 0; }
.vf-strip-item:last-child  { border-right: none; }
.vf-strip-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    stroke: var(--vf-rose);
    fill: none;
    stroke-width: 1.4;
}
.vf-strip-title {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}
.vf-strip-desc {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    line-height: 1.4;
}

/* ══════════════════════════════════════
   MAIN FOOTER COLUMNS
══════════════════════════════════════ */
.vf-main {
    max-width: 1360px;
    margin: 0 auto;
    padding: 52px 20px 40px;
    display: grid;
    grid-template-columns: 1.5fr .9fr .9fr .9fr 1.2fr;
    gap: 36px;
}

/* ── Brand column ── */
.vf-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-decoration: none;
}
.vf-brand-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--vf-primary);
    background: var(--vf-deep);
    flex-shrink: 0;
    overflow: hidden;
}
.vf-brand-badge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vf-brand-badge span {
    font-family: var(--vf-ff-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--vf-primary);
}
.vf-brand-wordmark {
    font-family: var(--vf-ff-serif);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    letter-spacing: .03em;
}
.vf-brand-wordmark em {
    font-style: normal;
    font-weight: 600;
    color: var(--vf-primary);
    margin-left: 4px;
}
.vf-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 24px;
    font-weight: 300;
}
.vf-socials {
    display: flex;
    gap: 10px;
}
.vf-social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    text-decoration: none;
    transition: all .2s;
}
.vf-social-btn:hover {
    background: var(--vf-primary);
    border-color: var(--vf-primary);
    color: #fff;
    transform: translateY(-2px);
}
.vf-social-btn svg {
    width: 15px; height: 15px;
    stroke: currentColor; fill: none; stroke-width: 1.8;
}

/* ── Column headings ── */
.vf-col-title {
    font-family: var(--vf-ff-serif);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.vf-col-title em { font-style: italic; color: var(--vf-rose); }

/* ── Link lists ── */
.vf-link-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vf-link-list a {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}
.vf-link-list a:hover { color: #fff; padding-left: 4px; }

/* ── Newsletter column ── */
.vf-newsletter-desc {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin-bottom: 16px;
    font-weight: 300;
}
.vf-newsletter-form {
    display: flex;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    margin-bottom: 14px;
}
.vf-newsletter-input {
    flex: 1;
    padding: 11px 14px;
    border: none; outline: none;
    font-size: 13px;
    font-family: var(--vf-ff-sans);
    color: #fff;
    background: transparent;
    min-width: 0;
}
.vf-newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.vf-newsletter-btn {
    padding: 0 16px;
    background: var(--vf-primary);
    color: #fff;
    border: none;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--vf-ff-sans);
    white-space: nowrap;
    transition: background .2s;
}
.vf-newsletter-btn:hover { background: var(--vf-accent); }
.vf-newsletter-note {
    font-size: 11px;
    color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════
   FOOTER BOTTOM BAR
══════════════════════════════════════ */
.vf-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}
.vf-bottom-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.vf-copyright {
    font-size: 12px;
    color: rgba(255,255,255,.35);
}
.vf-copyright a {
    color: var(--vf-rose);
    text-decoration: none;
    transition: color .2s;
}
.vf-copyright a:hover { color: #fff; }

.vf-bottom-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,.3);
}
.vf-bottom-legal a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .2s;
}
.vf-bottom-legal a:hover { color: var(--vf-rose); }

.vf-payment img {
    height: 24px;
    width: auto;
    display: block;
    opacity: .6;
    filter: brightness(0) invert(1);
    transition: opacity .2s;
}
.vf-payment img:hover { opacity: 1; }

/* ── Payment badges row ── */
.vf-payment-row {
    border-top: 1px solid rgba(255,255,255,.08);
}
.vf-payment-row-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.vf-payment-label {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.vf-payment-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.vf-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.04);
    transition: color .2s, border-color .2s;
}
.vf-payment-badge:hover {
    color: var(--vf-primary);
    border-color: var(--vf-primary);
}

/* ══════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════ */
#scroll__top {
    position: fixed;
    bottom: 84px; /* above whatsapp */
    right: 24px;
    width: 40px; height: 40px;
    background: var(--vf-deep);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 949;
    transition: background .2s, transform .2s;
    box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
#scroll__top.show { display: flex; }
#scroll__top:hover { background: var(--vf-primary); border-color: var(--vf-primary); transform: translateY(-2px); }
#scroll__top svg {
    width: 16px; height: 16px;
    stroke: #fff; fill: none; stroke-width: 2;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .vf-top-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 16px 0; }
    .vf-strip-item:nth-child(3) { border-right: none; }
    .vf-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .vf-top-strip-inner { grid-template-columns: 1fr; gap: 20px; }
    .vf-strip-item { border-right: none; padding: 0; }
    .vf-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 16px 28px; }
    .vf-payment-row-inner { flex-direction: column; gap: 10px; }

    /* The mobile bottom nav (.vh-bottom-nav, shown at <=768px) already has a
       centered "Enquire" WhatsApp CTA, so the floating corner icon is
       redundant here — hide it instead of just repositioning it. */
    .whatsapp-float { display: none; }
    #scroll__top { bottom: 76px; right: 16px; }
}
@media (max-width: 560px) {
    .vf-top-strip { padding: 20px 0; }
    .vf-top-strip-inner { padding: 0 16px; }
    .vf-main { grid-template-columns: 1fr; gap: 28px; }
    .vf-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    #scroll__top { bottom: 76px; right: 16px; }
}
