/* ============================================
   CONTACT PAGE — extends css/style.css
   ============================================ */

/* ============================================
   DECORATIVE SPLAT
   ============================================ */
.splat {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.splat-contact-tr {
    background-image: url('../images/splat-big.png');
    width: 540px;
    height: 540px;
    top: 60px;
    right: -140px;
    opacity: 0.5;
    transform: rotate(15deg);
}

/* ============================================
   BRUSHSTROKE UNDERLINE (matches other pages)
   ============================================ */
.script.underlined {
    position: relative;
    display: inline-block;
    padding-bottom: 0;
}
.script.underlined::after {
    content: '';
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -2px;
    height: 22px;
    background-image: url('../images/brush-underline.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

/* ============================================
   CONTACT HERO
   ============================================ */
.contact-hero {
    position: relative;
    background: var(--bg);
    padding: 130px 40px 60px;
    overflow: hidden;
    text-align: center;
}
.contact-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contact-hero .eyebrow {
    color: var(--pink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.contact-hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    margin-bottom: 22px;
}
.contact-hero h1 .script {
    display: inline-block;
    font-family: var(--script);
    color: var(--pink);
    font-size: 88px;
    font-weight: 700;
    line-height: 1;
    margin-left: 6px;
}
.contact-hero .lede {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================
   CONTACT SECTION (form + info)
   ============================================ */
.contact-section {
    position: relative;
    background: var(--bg);
    padding: 30px 40px 100px;
    overflow: hidden;
}
.contact-section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ============================================
   FORM
   ============================================ */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(236, 27, 141, 0.18);
    border-radius: 4px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.form-row-split > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    color: #fff;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-form .req { color: var(--pink); }
.contact-form .opt {
    color: var(--text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--body);
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 3px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
.contact-form textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.55;
    font-family: var(--body);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(236, 27, 141, 0.15);
    background: rgba(0, 0, 0, 0.5);
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(236, 27, 141, 0.4);
}

/* Custom select arrow */
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1l5 5 5-5' stroke='%23ec1b8d' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.contact-form select option {
    background: #0a0a0a;
    color: #fff;
}

.form-submit {
    margin-top: 6px;
    align-self: flex-start;
    cursor: pointer;
    border: none;
}
.form-submit:hover {
    transform: translateY(-1px);
}

.form-note {
    color: var(--text-muted);
    font-size: 13px;
    margin: 4px 0 0;
}
.form-note a {
    color: var(--pink);
    text-decoration: none;
    border-bottom: 1px solid rgba(236, 27, 141, 0.3);
    transition: border-color 0.2s ease;
}
.form-note a:hover {
    border-bottom-color: var(--pink);
}

/* ============================================
   INFO PANEL (right column)
   ============================================ */
.contact-info {
    padding: 12px 0;
}
.info-h {
    font-family: var(--display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 32px;
}
.info-h .script {
    font-family: var(--script);
    color: var(--pink);
    font-size: 56px;
    font-weight: 700;
    margin-left: 4px;
}

.info-block {
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.info-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.info-label {
    color: var(--pink);
    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.info-link {
    color: #fff;
    font-family: var(--body);
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    word-break: break-word;
}
.info-link:hover {
    color: var(--pink);
    border-bottom-color: var(--pink);
}
.info-text {
    color: var(--text-muted);
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.65;
}

.info-socials {
    display: flex;
    gap: 12px;
}
.info-socials a {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(236, 27, 141, 0.4);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}
.info-socials a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 0 14px rgba(236, 27, 141, 0.45);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .contact-hero {
        padding: 110px 20px 40px;
    }
    .contact-hero h1 { font-size: 38px; }
    .contact-hero h1 .script { font-size: 64px; }
    .contact-hero .lede { font-size: 15px; }

    .contact-section { padding: 20px 20px 70px; }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 28px 22px;
        gap: 18px;
    }
    .form-row-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .info-h { font-size: 28px; }
    .info-h .script { font-size: 44px; }

    .splat-contact-tr {
        width: 320px;
        height: 320px;
        top: 40px;
        right: -90px;
        opacity: 0.35;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 { font-size: 32px; }
    .contact-hero h1 .script { font-size: 54px; }
}
