/* Full-page background: image for all pages except landing */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #FAF8F6;
}

/* Home page: logo centered, no scroll, footer visible */
html:has(body.vp-home), body.vp-home {
    height: 100vh;
    overflow: hidden;
}
body.vp-home {
    display: flex;
    flex-direction: column;
}
body.vp-home header {
    z-index: 10;
}

header {
    position: relative;
    z-index: 1000;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: auto;
    color: #2B1730;
}

/* Ensure content is above the texture overlay */
body > * {
    position: relative;
    z-index: 1;
}

/* Landing page: full-screen image, centered logo links to home */
body.vp-landing-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
}
.vp-landing {
    position: relative;
    width: 100%;
    height: 100vh;
}
.vp-landing-link {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(280px, 40vw);
    height: min(280px, 40vw);
    min-width: 180px;
    min-height: 180px;
    display: block;
    cursor: pointer;
    z-index: 2;
}
.vp-landing-picture {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    display: block;
}
.vp-landing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Navigation menu */
header nav ul {
    gap: 0;
}

header nav a {
    color: #4A3F35;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 0;
    transition: color 0.2s ease;
}

header nav a:hover {
    color: #c4a882 !important;
}

header nav a.cursor-default {
    color: #4A3F35;
}

header nav a.vp-nav-current {
    color: #4A3F35;
    font-weight: 600;
}

header > a img {
    height: 52px !important;
    width: auto !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover > a {
    color: #5c5147;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    min-width: 180px;
    padding-top: 8px !important;
    z-index: 9999;
}

body.vp-home .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-menu ul {
    background: #FAF8F6;
    border: 1px solid rgba(74, 63, 53, 0.2);
    border-radius: var(--vp-radius);
    box-shadow: -4px 12px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    border: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #4A3F35 !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: transparent !important;
    color: #c4a882 !important; /* same as Send Inquiry button / nav hover */
}
.dropdown-menu a.vp-nav-current {
    background: transparent !important;
    color: #4A3F35 !important;
}

/* Hamburger toggle: hidden on desktop */
.vp-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #4A3F35;
    cursor: pointer;
    flex-shrink: 0;
}
.vp-nav-toggle svg {
    width: 24px;
    height: 24px;
}
.vp-nav-toggle .vp-icon-open {
    display: block;
}
.vp-nav-toggle .vp-icon-close {
    display: none;
}
body.vp-nav-open .vp-nav-toggle .vp-icon-open {
    display: none;
}
body.vp-nav-open .vp-nav-toggle .vp-icon-close {
    display: block;
}

.logo-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 1rem;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    max-width: 100%;
    max-height: 100%;
    margin-top: -2rem;
}

.logo-container {
    width: auto;
    height: auto;
    max-width: 340vw;
    max-height: 280vh;
    min-width: 1280px;
    display: block;
    object-fit: contain;
    filter: brightness(0.78) drop-shadow(-2px -2px 0 rgba(255, 255, 255, 0.35)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}

@media (min-width: 320px) {
    .logo-container {
        max-height: 70vh;
    }
}

@media (min-width: 480px) {
    .logo-container {
        max-height: 80vh;
    }
}

@media (min-width: 640px) {
    .logo-container {
        max-height: 96vh;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        max-width: 98vw;
        max-height: 94vh;
    }
}

@media (min-width: 1440px) {
    .logo-container {
        max-width: 99vw;
        max-height: 96vh;
    }
}

@media (min-width: 1920px) {
    .logo-container {
        max-width: 100vw;
        max-height: 97vh;
    }
}

/* Contact page container */
:root {
    --vp-plum: #2B1730;
    --vp-plum2: #442d46;
    --vp-plum-input: rgba(85, 53, 83, 0.8);
    --vp-gold: #CBB5A3;
    --vp-ivory: #ebd8c8;
    --vp-muted: #B9ACA3;
    --vp-line: rgba(231, 194, 119, 0.22);
    --vp-glass: rgba(35, 18, 40, 0.55);
    --vp-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    --vp-radius: 4px;
}

.vp-contact {
    padding: 1.5rem clamp(24px, 4vw, 48px) clamp(40px, 5vw, 80px);
    flex-grow: 1;
    position: relative;
    z-index: 0;
    min-height: 0;
}

/* Container with shadow around Get in touch + contact form (same theme as philosophy) */
.vp-contact-container {
    position: relative;
    z-index: 0;
    max-width: min(1120px, 90vw);
    margin: 0 auto;
    background: #FAF8F6;
    border: 1px solid rgba(74, 63, 53, 0.2);
    border-radius: var(--vp-radius);
    box-shadow: -12px 25px 80px rgba(0, 0, 0, 0.12), -6px 12px 40px rgba(0, 0, 0, 0.08), -2px 4px 16px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    --vp-container-px: clamp(24px, 4vw, 48px);
    padding: clamp(32px, 4vw, 48px) var(--vp-container-px);
}

.vp-contact-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.vp-contact-left,
.vp-contact-form-area {
    min-width: 0;
}

.vp-contact-form-area {
    width: 100%;
}

.vp-contact-kicker {
    letter-spacing: 0.22em;
    font-size: 12px;
    color: rgba(74, 63, 53, 0.7);
    margin: 0 0 14px;
    text-transform: uppercase;
}

.vp-contact-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    margin: 0 0 14px;
    color: #4A3F35;
}

.vp-contact-lead {
    color: var(--vp-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 46ch;
    margin: 0 0 28px;
}

.vp-contact-info {
    padding-top: 18px;
    margin-top: 18px;
    max-width: 56ch;
}

.vp-contact-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 10px 0;
}

.vp-contact-info .vp-contact-row:last-child {
    border-bottom: 1px solid rgba(74, 63, 53, 0.2);
}

.vp-contact-label {
    color: rgba(74, 63, 53, 0.7);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vp-contact-value {
    font-size: 14px;
    color: #4A3F35;
    opacity: 0.92;
}

.vp-contact-note {
    margin-top: 20px;
    color: rgba(74, 63, 53, 0.75);
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
}

/* Contact form card */
.vp-contact-form {
    background: #fff;
    border: 1px solid rgba(74, 63, 53, 0.2);
    border-radius: var(--vp-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: clamp(20px, 3vw, 32px);
}

.vp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
}

.vp-contact-field {
    display: grid;
    gap: 8px;
}

.vp-contact-field--full {
    grid-column: 1 / -1;
}

.vp-contact-form label {
    font-size: 12px;
    color: #4A3F35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vp-contact-form input,
.vp-contact-form textarea {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(74, 63, 53, 0.25);
    background: #FAF8F6;
    padding: 12px 14px;
    font-size: 14px;
    color: #4A3F35;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vp-contact-form input::placeholder,
.vp-contact-form textarea::placeholder {
    color: rgba(74, 63, 53, 0.5);
}

.vp-contact-form input:focus,
.vp-contact-form textarea:focus {
    border-color: rgba(74, 63, 53, 0.4);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(74, 63, 53, 0.08);
}

.vp-contact-form input[type="checkbox"] {
    width: auto;
    accent-color: #7e5b37;
}
.vp-contact-form .vp-checkbox-label {
    font-size: 14px;
    color: #4A3F35;
    text-transform: none;
    letter-spacing: 0;
}

.vp-contact-btn {
    margin-top: 18px;
    width: 100%;
    border: 1px solid rgba(74, 63, 53, 0.35);
    border-radius: 4px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #c4a882 0%, #8b7355 100%);
    color: #faf8f6;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: border-color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.vp-contact-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 2px 8px rgba(74, 63, 53, 0.2);
}

.vp-contact-arrow {
    font-size: 16px;
    opacity: 0.9;
}

.vp-contact-fineprint {
    margin: 12px 0 0;
    color: rgba(74, 63, 53, 0.7);
    font-size: 12px;
    line-height: 1.6;
}

/* Thank you page: centered card */
.vp-thankyou {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem clamp(24px, 4vw, 48px) clamp(40px, 5vw, 80px);
    position: relative;
    z-index: 0;
}
.vp-thankyou-card {
    position: relative;
    z-index: 0;
    max-width: 520px;
    width: 100%;
    text-align: center;
    background: #FAF8F6;
    border: 1px solid rgba(74, 63, 53, 0.2);
    border-radius: var(--vp-radius);
    box-shadow: -12px 25px 80px rgba(0, 0, 0, 0.12), -6px 12px 40px rgba(0, 0, 0, 0.08), -2px 4px 16px rgba(0, 0, 0, 0.04);
    padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px) clamp(40px, 5vw, 56px);
    padding-top: clamp(32px, 4vw, 44px);
}
.vp-thankyou-logo-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(74, 63, 53, 0.2);
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: visible;
}
.vp-thankyou-logo-wrap .vp-thankyou-logo {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    object-fit: contain;
    object-position: center center;
    transform: scale(1.5);
}
.vp-thankyou-card .vp-contact-kicker {
    margin-bottom: 10px;
    color: rgba(74, 63, 53, 0.7);
}
.vp-thankyou-card .vp-contact-title {
    margin-bottom: 20px;
    color: #4A3F35;
}
.vp-thankyou-body {
    color: rgba(74, 63, 53, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 28px;
}
.vp-thankyou-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.vp-thankyou-actions .vp-contact-btn {
    margin-top: 0;
    width: auto;
    text-decoration: none;
    flex-shrink: 0;
}
.vp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 4px;
    border: 1px solid rgba(231, 194, 119, 0.38);
    background: rgba(203, 181, 163, 0.35);
    color: var(--vp-plum);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.14s ease;
}
.vp-btn-secondary:hover {
    background: rgba(203, 181, 163, 0.5);
    border-color: rgba(231, 194, 119, 0.5);
    transform: translateY(-1px);
}
.vp-thankyou-link {
    color: #4A3F35;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.vp-thankyou-link:hover {
    color: #5c5147;
}

/* Philosophy page */
.vp-philosophy {
    flex-grow: 1;
    padding: 1.5rem clamp(24px, 4vw, 48px) clamp(40px, 5vw, 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 0;
}

/* Large screens: center main content vertically (philosophy, partners, contact) */
@media (min-width: 769px) {
    .vp-philosophy {
        align-items: center;
    }
    .vp-contact {
        display: flex;
        align-items: center;
    }
}

/* Large screens: scale content proportionally with viewport */
@media (min-width: 1200px) {
    .vp-philosophy {
        padding: clamp(2rem, 2.5vw, 3rem) clamp(48px, 5vw, 120px) clamp(56px, 6vw, 140px);
    }
    .vp-philosophy-container {
        max-width: 52vw;
        padding: clamp(56px, 6vw, 120px) clamp(40px, 4.5vw, 88px);
    }
    .vp-philosophy-title {
        font-size: clamp(48px, 4.2vw, 96px);
    }
    .vp-philosophy-subtitle {
        font-size: clamp(18px, 1.6vw, 32px);
    }
    .vp-philosophy-body {
        font-size: clamp(16px, 1.35vw, 24px);
        max-width: 55ch;
        margin-bottom: clamp(18px, 1.8vw, 28px);
    }
    .vp-philosophy-divider {
        margin: clamp(24px, 2.2vw, 36px) auto;
    }
    .vp-philosophy-container .vp-contact-kicker {
        font-size: clamp(12px, 1vw, 16px);
        margin-bottom: clamp(8px, 0.8vw, 14px);
    }
    .vp-philosophy-container .vp-philosophy-title {
        font-size: clamp(40px, 3.6vw, 88px);
    }
    .vp-philosophy-container .vp-philosophy-subtitle {
        font-size: clamp(18px, 1.6vw, 30px);
    }
    .vp-philosophy-container .vp-philosophy-form {
        max-width: min(680px, 48vw);
        margin-top: clamp(24px, 2.2vw, 36px);
    }
    .vp-philosophy-container .vp-philosophy-form input,
    .vp-philosophy-container .vp-philosophy-form textarea {
        font-size: clamp(15px, 1.1vw, 18px);
        padding: clamp(12px, 1vw, 16px) clamp(14px, 1.1vw, 18px);
    }
    .vp-contact {
        padding: clamp(2rem, 2.5vw, 3rem) clamp(48px, 5vw, 120px) clamp(56px, 6vw, 140px);
    }
    .vp-contact-container {
        max-width: 78vw;
        padding: clamp(40px, 4.5vw, 80px) var(--vp-container-px);
        --vp-container-px: clamp(32px, 3.5vw, 72px);
    }
    .vp-contact-wrap {
        gap: clamp(40px, 4vw, 80px);
    }
    .vp-contact-kicker {
        font-size: clamp(12px, 1vw, 16px);
        margin-bottom: clamp(12px, 1.2vw, 20px);
    }
    .vp-contact-title {
        font-size: clamp(42px, 3.5vw, 80px);
        margin-bottom: clamp(16px, 1.5vw, 24px);
    }
    .vp-contact-lead,
    .vp-contact-info {
        font-size: clamp(15px, 1.25vw, 20px);
        max-width: 52ch;
    }
    .vp-contact-info {
        padding-top: clamp(20px, 2vw, 28px);
        margin-top: clamp(20px, 2vw, 28px);
    }
    .vp-contact-label {
        font-size: clamp(12px, 1vw, 15px);
    }
    .vp-contact-value {
        font-size: clamp(14px, 1.15vw, 18px);
    }
    .vp-contact-note {
        font-size: clamp(13px, 1.1vw, 16px);
        margin-top: clamp(20px, 2vw, 28px);
    }
    .vp-contact-form {
        padding: clamp(24px, 2.8vw, 48px);
    }
    .vp-contact-form label {
        font-size: clamp(13px, 1.1vw, 16px);
    }
    .vp-contact-form input,
    .vp-contact-form textarea {
        font-size: clamp(15px, 1.15vw, 18px);
        padding: clamp(12px, 1vw, 18px) clamp(14px, 1.1vw, 20px);
    }
    .vp-contact-btn {
        font-size: clamp(14px, 1.15vw, 18px);
        padding: clamp(12px, 1.1vw, 18px) clamp(16px, 1.4vw, 24px);
        margin-top: clamp(20px, 2vw, 28px);
    }
}

.vp-philosophy-container {
    position: relative;
    z-index: 0;
    max-width: min(720px, 92vw);
    width: 100%;
    background: #FAF8F6;
    border-radius: var(--vp-radius);
    box-shadow: -12px 25px 80px rgba(0, 0, 0, 0.12), -6px 12px 40px rgba(0, 0, 0, 0.08), -2px 4px 16px rgba(0, 0, 0, 0.04);
    padding: clamp(48px, 6vw, 72px) clamp(32px, 4vw, 56px);
    overflow: hidden;
}

.vp-philosophy-watermark {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 800px);
    height: min(95%, 580px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.vp-philosophy-watermark-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    opacity: 0.12;
}

.vp-philosophy-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 0;
}

.vp-philosophy-title {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%) scaleY(0.9);
    transform-origin: center top;
    width: 100%;
    font-family: "Angsana New", Georgia, serif;
    font-weight: 300;
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1;
    color: #4A3F35;
    margin: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}
.vp-philosophy-subtitle {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    box-sizing: border-box;
    font-family: "Angsana New", Georgia, serif;
    font-weight: 300;
    font-size: clamp(16px, 1.9vw, 24px);
    line-height: 1.3;
    color: rgba(74, 63, 53, 0.85);
    text-align: center;
    padding-top: 2.2em;
}

.vp-philosophy-body {
    font-size: clamp(14px, 1.35vw, 20px);
    line-height: 1.8;
    color: #4A3F35;
    margin: 0 auto 16px;
    max-width: 52ch;
}

.vp-philosophy-content .vp-philosophy-body:first-of-type {
    margin-top: 0;
}

.vp-philosophy-body:last-child {
    margin-bottom: 0;
}

.vp-philosophy-divider {
    width: 240px;
    height: 1px;
    background: transparent;
    border-top: 1px solid rgba(74, 63, 53, 0.15);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    margin: 24px auto;
}

/* Philosophy theme for Consulting Clients / Partners: same container, kicker + form in light palette */
.vp-philosophy-container .vp-contact-kicker {
    color: rgba(74, 63, 53, 0.7);
    margin-bottom: 8px;
}
.vp-philosophy-container .vp-philosophy-title {
    position: static;
    transform: none;
    margin-bottom: 0;
}
.vp-philosophy-container .vp-philosophy-subtitle {
    position: static;
    transform: none;
    padding: 0;
    padding-top: 0.35em;
    margin-bottom: 0;
}
.vp-philosophy-container .vp-philosophy-form {
    margin-top: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border: 1px solid rgba(74, 63, 53, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.vp-philosophy-container .vp-philosophy-form label {
    color: #4A3F35;
}
.vp-philosophy-container .vp-philosophy-form input,
.vp-philosophy-container .vp-philosophy-form textarea {
    background: #FAF8F6;
    border-color: rgba(74, 63, 53, 0.25);
    color: #4A3F35;
}
.vp-philosophy-container .vp-philosophy-form input::placeholder,
.vp-philosophy-container .vp-philosophy-form textarea::placeholder {
    color: rgba(74, 63, 53, 0.5);
}
.vp-philosophy-container .vp-philosophy-form input:focus,
.vp-philosophy-container .vp-philosophy-form textarea:focus {
    background: #fff;
    border-color: rgba(74, 63, 53, 0.4);
    box-shadow: 0 0 0 2px rgba(74, 63, 53, 0.08);
}
.vp-philosophy-container .vp-philosophy-form .vp-checkbox-label {
    color: #4A3F35;
}
.vp-philosophy-content:has(.vp-philosophy-form) {
    padding-top: 24px;
}

/* Footer: quiet luxury */
.vp-footer {
    margin-top: auto;
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
    background: transparent;
    border-top: 1px solid rgba(231, 194, 119, 0.36);
    color: #8a7f76;
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.5;
}
.vp-footer p {
    margin: 0;
    opacity: 0.9;
}

/* Shared content pages (Partners, Consulting Clients): same container and form theme */
.vp-page .vp-contact-container {
    max-width: 560px;
}
.vp-page .vp-contact-title {
    margin-bottom: 24px;
}

@media (max-width: 920px) {
    .vp-contact-wrap {
        grid-template-columns: 1fr;
    }
    .vp-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile: hamburger menu */
@media (max-width: 768px) {
    .vp-nav-toggle {
        display: flex;
        position: absolute;
        left: 1rem;
        bottom: 0;
    }
    header {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 52px;
        padding-top: 2rem !important;
        padding-bottom: 1.5rem !important;
        margin-top: 1rem;
        box-sizing: border-box;
        z-index: 50;
    }
    header > a {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        margin: 0;
    }
    header .vp-main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        margin-top: 0.5rem;
        background: #FAF8F6;
        border: 1px solid rgba(74, 63, 53, 0.15);
        border-radius: var(--vp-radius);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        padding: 1rem 0 1.25rem;
        z-index: 9998;
    }
    body.vp-nav-open header .vp-main-nav {
        display: block;
    }
    header .vp-main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 1.5rem;
    }
    header .vp-main-nav ul > li {
        margin: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(74, 63, 53, 0.08);
    }
    header .vp-main-nav ul > li:last-child {
        border-bottom: none;
    }
    header .vp-main-nav .dropdown-menu {
        position: static;
        display: none;
        padding-top: 0;
        box-shadow: none;
        min-width: 0;
    }
    body.vp-nav-open header .vp-main-nav .dropdown.vp-dropdown-open .dropdown-menu {
        display: block;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    body.vp-nav-open header .vp-main-nav .dropdown-menu a {
        padding: 0.5rem 0;
        font-size: 13px;
    }
    header .vp-main-nav a {
        display: block;
        padding: 0.5rem 0;
    }
}
@media (min-width: 769px) {
    header .vp-main-nav {
        display: block !important;
    }
}

/* Mobile: contact page layout adjustments */
@media (max-width: 768px) {
    header nav ul {
        justify-content: flex-start;
    }
    .vp-contact {
        padding-top: 1.5rem;
        --vp-section-px: 1.5rem;
        padding-left: var(--vp-section-px);
        padding-right: var(--vp-section-px);
    }
    .vp-contact-container {
        --vp-container-px: 1.5rem;
        padding-left: var(--vp-container-px);
        padding-right: var(--vp-container-px);
    }
    .vp-contact-row {
        gap: 4px;
    }
}