/* ══════════════════════════════════════
   CONTACT PAGE — Luxe Glanz Aura
   Reuses the shared --vh-* tokens from header.css (dark black/gold theme)
══════════════════════════════════════ */

:root {
    --vc-card:        #181512;
    --vc-card-border: rgba(201,162,39,.15);
}

/* ── Hero ── */
.vc-hero {
    background: var(--vh-black);
    padding: 64px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201,162,39,.18) 0%, transparent 70%);
    pointer-events: none;
}
.vc-hero-inner { position: relative; }
.vc-eyebrow {
    display: inline-block;
    font-family: var(--vh-ff-sans);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--vh-rose);
    margin-bottom: 14px;
}
.vc-hero-title {
    font-family: var(--vh-ff-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
}
.vc-hero-title em { color: var(--vh-primary); font-style: italic; }
.vc-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--vh-ff-sans);
    font-size: 12px;
    color: rgba(255,255,255,.5);
}
.vc-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.vc-breadcrumb a:hover { color: var(--vh-primary); }

/* ── Section shell ── */
.vc-section { padding: 72px 24px 80px; background: var(--vh-ivory); }
.vc-container { max-width: 1180px; margin: 0 auto; }

/* ── Flash alerts ── */
.vc-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: var(--vh-ff-sans);
    font-size: 14px;
    margin-bottom: 32px;
}
.vc-alert svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.vc-alert--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.vc-alert--error   { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }

/* ── Two-column layout ── */
.vc-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 40px;
    align-items: start;
}

/* ── Info card ── */
.vc-info-card {
    background: var(--vc-card);
    border: 1px solid var(--vc-card-border);
    border-radius: 16px;
    padding: 40px 36px;
    color: #fff;
}
.vc-info-title {
    font-family: var(--vh-ff-serif);
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 8px;
}
.vc-info-sub {
    font-family: var(--vh-ff-sans);
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin: 0 0 32px;
    line-height: 1.6;
}
.vc-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 28px; }
.vc-info-item { display: flex; align-items: flex-start; gap: 18px; }
.vc-info-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201,162,39,.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vc-info-icon svg {
    width: 20px; height: 20px;
    stroke: var(--vh-primary);
    fill: none; stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
}
.vc-info-text { display: flex; flex-direction: column; gap: 4px; }
.vc-info-label {
    font-family: var(--vh-ff-sans);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--vh-rose);
}
.vc-info-value {
    font-family: var(--vh-ff-sans);
    font-size: 13.5px;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}
.vc-info-link { text-decoration: none; transition: color .2s; }
.vc-info-link:hover { color: var(--vh-primary); }

/* ── Map ── */
.vc-map-wrap {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
    border: 1px solid var(--vc-card-border);
}
.vc-map-wrap iframe { display: block; width: 100%; height: 100%; filter: grayscale(.15) invert(.92) contrast(.9); }

/* ── Form card ── */
.vc-form-card {
    background: var(--vc-card);
    border: 1px solid var(--vc-card-border);
    border-radius: 16px;
    padding: 48px 44px;
    box-shadow: 0 4px 32px rgba(0,0,0,.35);
}
.vc-form-title {
    font-family: var(--vh-ff-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--vh-deep);
    margin: 0 0 8px;
}
.vc-form-sub {
    font-family: var(--vh-ff-sans);
    font-size: 13px;
    color: var(--vh-muted);
    margin: 0 0 32px;
    line-height: 1.6;
}

/* ── Form elements ── */
.vc-form { display: flex; flex-direction: column; gap: 20px; }
.vc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vc-field { display: flex; flex-direction: column; gap: 6px; }
.vc-label {
    font-family: var(--vh-ff-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--vh-deep);
    text-transform: uppercase;
}
.vc-label span { color: var(--vh-primary); margin-left: 2px; }
.vc-input {
    font-family: var(--vh-ff-sans);
    font-size: 14px;
    color: var(--vh-deep);
    background: var(--vh-black);
    border: 1.5px solid var(--vh-border);
    border-radius: 8px;
    padding: 13px 16px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    box-sizing: border-box;
    resize: none;
}
.vc-input::placeholder { color: rgba(255,255,255,.3); }
.vc-input:focus {
    border-color: var(--vh-primary);
    box-shadow: 0 0 0 3px rgba(201,162,39,.15);
    background: var(--vh-black);
}
.vc-input--error { border-color: #e0685a; }
.vc-textarea { min-height: 140px; line-height: 1.6; }
.vc-field-error {
    font-family: var(--vh-ff-sans);
    font-size: 11.5px;
    color: #e0685a;
}

/* ── Submit button ── */
.vc-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--vh-primary);
    color: var(--vh-ivory);
    font-family: var(--vh-ff-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 16px 36px;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    align-self: flex-start;
    margin-top: 4px;
}
.vc-submit svg {
    width: 16px; height: 16px;
    stroke: var(--vh-ivory); fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    transition: transform .2s;
}
.vc-submit:hover {
    background: var(--vh-accent);
    box-shadow: 0 6px 20px rgba(201,162,39,.35);
    transform: translateY(-1px);
}
.vc-submit:hover svg { transform: translateX(3px); }
.vc-submit:active { transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .vc-grid { grid-template-columns: 1fr; }
    .vc-form-card { padding: 36px 28px; }
    .vc-map-wrap { height: 200px; }
}
@media (max-width: 560px) {
    .vc-form-row { grid-template-columns: 1fr; }
    .vc-info-card { padding: 28px 22px; }
    .vc-form-card { padding: 28px 20px; }
    .vc-section { padding: 48px 16px 60px; }
}
