/* ===================================
   Contact Page — Gold-First Elegant
   =================================== */

/* ── HERO ── */
.contact-hero {
    position: relative;
    padding: 140px 0 100px;
    background: #111110;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* subtle gold grain texture */
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,169,110,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.28;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17,17,16,0.6) 0%, rgba(17,17,16,0.82) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    padding: 0 24px;
}

.contact-hero-content::before {
    content: '✦';
    display: block;
    font-size: 13px;
    color: #C9A96E;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    opacity: 0.8;
}

.contact-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.contact-hero-title span {
    color: #C9A96E;
    font-style: italic;
}

.contact-hero-subtitle {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    font-weight: 300;
    margin: 0;
}

/* gold line below hero */
.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A96E, transparent);
}

/* ── MAIN SECTION ── */
.contact-main-section {
    padding: 100px 0 120px;
    background: #fff;
}

/* ── LEFT — Contact Info ── */
.contact-info-wrapper {
    padding-right: 60px;
}

.contact-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 400;
    color: #111110;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.contact-section-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #9a9590;
    margin-bottom: 44px;
    font-weight: 300;
}

/* Contact Info Card — clean, no gray */
.contact-info-single-card {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(201,169,110,0.2);
    border-radius: 0;
    padding: 0 0 0 28px;
    margin-bottom: 44px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(201,169,110,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #C9A96E;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-details { flex: 1; }

.contact-info-label {
    font-size: 9px;
    color: #C9A96E;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.contact-info-value {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-weight: 300;
}

.contact-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.contact-link:hover { color: #C9A96E; }

.contact-info-divider {
    height: 1px;
    background: rgba(201,169,110,0.12);
    margin: 0;
}

/* Map */
.contact-map-preview {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.18);
    height: 180px;
}

.contact-map-small {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.contact-map-small:hover { filter: grayscale(0%); }

/* ── RIGHT — Form ── */
.contact-form-wrapper {
    background: #FAFAF7;
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 20px;
    padding: 48px 44px;
}

.contact-form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: #111110;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-form-desc {
    font-size: 13px;
    color: #9a9590;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
}

/* Form Groups */
.contact-form-group { margin-bottom: 22px; }

.contact-form-label {
    display: block;
    font-size: 9px;
    color: #C9A96E;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 300;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #C9A96E;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #bbb;
    font-weight: 300;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* Marketing consent checkbox */
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 4px 0 8px;
}
.consent-check input[type="checkbox"] { display: none; }
.consent-box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border: 1.5px solid #D4C5A9;
    border-radius: 4px;
    background: #fff;
    transition: background .18s, border-color .18s;
    position: relative;
}
.consent-box::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 9px;
    height: 5px;
    border-left: 1.8px solid #fff;
    border-bottom: 1.8px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
    transition: opacity .15s;
}
.consent-check input:checked + .consent-box {
    background: linear-gradient(135deg, #C9A96E, #A8863E);
    border-color: #C9A96E;
}
.consent-check input:checked + .consent-box::after { opacity: 1; }
.consent-text {
    font-size: 12px;
    color: #5A5450;
    line-height: 1.55;
}

/* Submit Button */
.contact-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: linear-gradient(135deg, #C9A96E 0%, #A8863E 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 8px 28px rgba(201,169,110,0.3);
}

.contact-form-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201,169,110,0.38);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 56px;
    }
    .contact-hero-title { font-size: 52px; }
    .contact-form-wrapper { padding: 36px 28px; }
}

@media (max-width: 767px) {
    .contact-hero { padding: 110px 0 80px; }
    .contact-hero-title { font-size: 40px; }
    .contact-hero-subtitle { font-size: 13px; }
    .contact-main-section { padding: 60px 0 80px; }
    .contact-form-wrapper { padding: 28px 20px; }
    .contact-info-single-card { padding-left: 18px; }
}
