/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--gold-light);
}

.btn--primary::before {
    background: var(--grad-luxury);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(107, 45, 62, 0.35);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-a);
}

.btn--outline:hover {
    border-color: var(--rose);
    color: var(--burgundy);
    background: rgba(196, 146, 138, 0.06);
}

.btn--gold {
    background: var(--grad-gold);
    color: var(--charcoal);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.btn--white {
    background: white;
    color: var(--burgundy);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 0.875rem;
}

.btn--sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.btn__text {
    position: relative;
    z-index: 1;
}

.btn svg {
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
}

/* Magnetic effect placeholder */
.magnetic {
    transition: transform 0.3s var(--ease);
}

/* ═══ LEAD FORM & CONTACT ═══ */
.lead__form {
    background: var(--surface);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead__input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border-a);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: all 0.3s ease;
}

.lead__input:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(196, 146, 138, 0.1);
}

.contact__details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.contact__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-sec);
    margin-bottom: 0.25rem;
}

.contact__value {
    font-weight: 600;
    color: var(--text);
    font-size: 1.0625rem;
}