/* ═══ HERO BANNER ═══ */
.page-hero {
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 72px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #050505 0%, #0D0D0D 40%, #141008 70%, #0A0A05 100%);
}

[data-theme="light"] .page-hero-bg {
    background: linear-gradient(135deg, #1A1410 0%, #2A2010 40%, #1E180A 70%, #151005 100%);
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

.hero-ghost-text {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 168, 76, 0.07);
    white-space: nowrap;
    pointer-events: none;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s ease both;
    margin-bottom: 2.5rem;
}

.page-hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(201, 168, 76, 0.5);
}

.page-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.page-hero-title em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 1.1em;
}

.page-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
    position: absolute;
    bottom: 1.5rem;
    left: 3rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* ═══ CONTACT MAIN ═══ */
.contact-main {
    padding: 6rem 0;
    background: var(--bg);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

/* Left: Form */
.contact-form-wrap {
    background: var(--card-bg, rgba(20, 20, 20, 0.4));
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form-sub {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black, #000);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--gold-light, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

/* Right: Info */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--black);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black, #000);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(80%);
}

[data-theme="light"] .map-section iframe {
    filter: grayscale(100%) contrast(90%);
}

@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrap {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        display: none;
    }
}
