/* ════════════════════════════════════════════════════════════
   /CONTACT-US/ — self-contained styles (no Tailwind JIT needed)
   ════════════════════════════════════════════════════════════ */
.ec-page {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 100px;
    background: #faf6f1;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2a2a2a;
}
.ec-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
}
.ec-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: ecFloat 18s ease-in-out infinite;
}
.ec-blob-1 {
    width: 480px; height: 480px;
    top: -100px; right: -100px;
    background: radial-gradient(circle, #fdc8e0 0%, transparent 70%);
}
.ec-blob-2 {
    width: 520px; height: 520px;
    bottom: -180px; left: -120px;
    background: radial-gradient(circle, #ffd9b8 0%, transparent 70%);
    animation-delay: -6s;
}
.ec-blob-3 {
    width: 360px; height: 360px;
    top: 38%; left: 42%;
    background: radial-gradient(circle, #e8c5a0 0%, transparent 70%);
    opacity: 0.32;
    animation-delay: -12s;
}
@keyframes ecFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.05); }
    66%      { transform: translate(-30px, 40px) scale(0.96); }
}
.ec-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(205, 160, 127, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(205, 160, 127, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 60% 50% at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at center, #000 30%, transparent 80%);
}

.ec-vline { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(205,160,127,0.5); z-index: 1; }
.ec-vline-l { left: 16px; }
.ec-vline-r { right: 16px; }

.ec-shell {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px)  { .ec-shell { padding: 0 48px; } }
@media (min-width: 1024px) { .ec-shell { padding: 0 64px; } }

.ec-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 1024px) {
    .ec-grid-2 { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* ─── Pitch (left) ─── */
.ec-pitch { display: flex; flex-direction: column; gap: 28px; }
.ec-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(232, 52, 122, 0.1);
    border: 1px solid rgba(232, 52, 122, 0.28);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b91c5c;
    width: fit-content;
}
.ec-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #e8347a;
    box-shadow: 0 0 0 0 rgba(232,52,122,0.7);
    animation: ecPing 1.8s ease-out infinite;
}
@keyframes ecPing {
    0%   { box-shadow: 0 0 0 0 rgba(232,52,122,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(232,52,122,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,52,122,0); }
}
.ec-h1 {
    font-size: clamp(34px, 5.4vw, 60px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin: 0;
}
.ec-h1 em {
    font-style: italic;
    font-weight: 400;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    background: linear-gradient(135deg, #e8347a 0%, #cda07f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ec-lede {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(42,42,42,0.72);
    max-width: 540px;
    font-weight: 300;
    margin: 0;
}

/* social proof cluster */
.ec-social {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(205,160,127,0.3);
    border-radius: 16px;
    box-shadow: 0 18px 40px -28px rgba(42,42,42,0.18);
    width: fit-content;
}
.ec-avatars { display: flex; align-items: center; }
.ec-avatars img {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -10px;
    background: #f0e5d6;
}
.ec-avatars img:first-child { margin-left: 0; }
.ec-avatars-more {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #fff;
    margin-left: -10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.04em;
}
.ec-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1;
}
.ec-social-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(42,42,42,0.7);
}
.ec-social-text strong { color: #1a1a1a; font-weight: 600; }

/* perks */
.ec-perks-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(42,42,42,0.45);
    margin: 8px 0 16px;
}
.ec-perks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 540px) { .ec-perks-grid { grid-template-columns: 1fr 1fr; } }
.ec-perk {
    background: #fff;
    border: 1px solid rgba(205,160,127,0.25);
    border-radius: 16px;
    padding: 18px 20px;
    transition: all 0.22s ease;
}
.ec-perk:hover {
    border-color: rgba(232,52,122,0.5);
    transform: translateY(-2px);
    box-shadow: 0 22px 50px -28px rgba(232,52,122,0.35);
}
.ec-perk-ico {
    display: inline-flex;
    width: 36px; height: 36px;
    border-radius: 11px;
    background: rgba(232,52,122,0.1);
    border: 1px solid rgba(232,52,122,0.25);
    align-items: center; justify-content: center;
    color: #e8347a;
    margin-bottom: 10px;
}
.ec-perk-ico svg { width: 16px; height: 16px; }
.ec-perk h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}
.ec-perk p {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(42,42,42,0.65);
    margin: 0;
}

/* ─── Form card (right) ─── */
.ec-form-wrap { position: relative; }
@media (min-width: 1024px) { .ec-form-wrap { position: sticky; top: 100px; } }
.ec-form-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(205,160,127,0.22);
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 40px 90px -30px rgba(42,42,42,0.28),
        0 0 0 1px rgba(255,255,255,0.6) inset;
}
.ec-corner {
    position: absolute;
    width: 16px; height: 16px;
    border: 1.5px solid #e8347a;
    pointer-events: none;
    z-index: 5;
}
.ec-corner-tl { top: -1px; left: -1px;     border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.ec-corner-tr { top: -1px; right: -1px;    border-left: 0;  border-bottom: 0; border-top-right-radius: 8px; }
.ec-corner-bl { bottom: -1px; left: -1px;  border-right: 0; border-top: 0;    border-bottom-left-radius: 8px; }
.ec-corner-br { bottom: -1px; right: -1px; border-left: 0;  border-top: 0;    border-bottom-right-radius: 8px; }

.ec-form-head {
    position: relative;
    padding: 28px 32px 26px;
    background:
        linear-gradient(135deg, #fdf2f8 0%, #fff 50%, #fef6e9 100%);
    border-bottom: 1px solid rgba(205,160,127,0.18);
}
.ec-form-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(232,52,122,0.1);
    border: 1px solid rgba(232,52,122,0.25);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b91c5c;
    margin-bottom: 12px;
}
.ec-form-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #e8347a;
    box-shadow: 0 0 0 0 rgba(232,52,122,0.7);
    animation: ecPing 1.8s ease-out infinite;
}
.ec-form-head h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.ec-form-head p {
    font-size: 13.5px;
    color: rgba(42,42,42,0.65);
    margin: 0;
}

.ec-form { padding: 24px 32px 28px; display: flex; flex-direction: column; gap: 18px; }
.ec-row { display: grid; gap: 14px; }
.ec-row-2 { grid-template-columns: 1fr; }
@media (min-width: 540px) { .ec-row-2 { grid-template-columns: 1fr 1fr; } }
.ec-field { display: flex; flex-direction: column; gap: 6px; }
.ec-field label {
    font-size: 12px;
    font-weight: 600;
    color: #2a2a2a;
    letter-spacing: 0.01em;
}
.ec-req { color: #e8347a; margin-left: 2px; }
.ec-form input[type="text"],
.ec-form input[type="email"],
.ec-form input[type="tel"],
.ec-form input[type="url"],
.ec-form select,
.ec-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(42,42,42,0.12);
    border-radius: 12px;
    background: #faf8f5;
    font-size: 14.5px;
    color: #1a1a1a;
    font-family: inherit;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
.ec-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.ec-form input::placeholder,
.ec-form textarea::placeholder { color: #b8b8b8; }
.ec-form input:focus,
.ec-form select:focus,
.ec-form textarea:focus {
    outline: none;
    border-color: #e8347a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232,52,122,0.12);
}
.ec-form textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.ec-help { font-size: 11.5px; color: #999; margin-top: 2px; }

.ec-submit {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 22px;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.22s ease;
    margin-top: 4px;
    font-family: inherit;
}
.ec-submit svg { width: 16px; height: 16px; transition: transform 0.22s; }
.ec-submit:hover {
    background: linear-gradient(135deg, #e8347a 0%, #f472b6 100%);
    border-color: #e8347a;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px -14px rgba(232,52,122,0.6);
}
.ec-submit:hover svg { transform: translateX(4px); }

.ec-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ec-fineprint {
    font-size: 11.5px;
    color: #999;
    margin: 4px 0 0;
    line-height: 1.5;
}
.ec-fineprint strong { color: #555; font-weight: 600; }

/* alerts */
.ec-alert {
    display: flex; align-items: flex-start; gap: 10px;
    margin: 18px 32px 0;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.45;
}
.ec-alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.ec-alert-ok  { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.ec-alert-err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

@media (max-width: 539px) {
    .ec-page { padding: 110px 0 80px; }
    .ec-form { padding: 20px 22px 24px; }
    .ec-form-head { padding: 22px 22px 20px; }
}
