/* ==========================================================================
   LUXE CONCIERGE & CONTACT EDITORIAL SYSTEM ARCHITECTURE
   ========================================================================== */

/* Clears framework dynamic mobile nav offset safely */
.contact-page-main.mt-nav {
    margin-top: 91px;
    background-color: #ffffff;
}

/* --- SECTION 1: HERO DISPLAY OVERRIDES --- */
.contact-hero-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.contact-eyebrow-label {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #444844;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.contact-display-title {
    font-family: var(--font-display), 'Playfair Display', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
    color: #1A1C1C;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.contact-description-prose {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #444844;
    margin: 0;
}

.contact-hero-image-frame {
    width: 100%;
    overflow: hidden;
    height: 620px;
}

.contact-hero-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- SECTION 2: INTERACTIVE DIRECT COMMS & FORM SPECIFICS --- */
.contact-interactive-grid-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.comms-node-eyebrow {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #444844;
    display: block;
    margin-bottom: 16px;
}

.comms-primary-link {
    font-family: var(--font-display), 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #1A1C1C;
    text-decoration: none;
    display: block;
    transition: opacity 0.2s ease;
}

.comms-primary-link:hover {
    opacity: 0.6;
    color: #1A1C1C;
}

.comms-node-description {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #444844 ;
}

.studio-locations-list li {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #1A1C1C;
}

/* Structural Action Button Elements */
.btn-luxe-dark-solid {
    background-color: #111111;
    color: #ffffff;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-luxe-dark-solid:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Minimal Line Engine Form Controls Formatting */
.form-input-node-group {
    border-bottom: 1px solid #111111;
    padding-bottom: 6px;
    display: flex;
    flex-direction: column;
}

.form-node-label {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #444844;
    margin-bottom: 6px;
}

.form-node-control {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1A1C1C;
    padding: 4px 0;
}

.form-node-control:focus {
    outline: none;
}

.text-area-resize-none {
    resize: none;
}

.btn-luxe-outline-dark-action {
    background-color: transparent;
    color: #111111;
    border: 1px solid #111111;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 12px 30px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-luxe-outline-dark-action:hover {
    background-color: #111111;
    color: #ffffff;
}

/* --- SECTION 3: TEXTURE MANIFESTO BANNER SPECIFICS --- */
.contact-manifesto-interlude-section {
    width: 100%;
    background-color: #E2DBD3;
    position:relative;
    overflow: hidden;
}

.contact-manifesto-interlude-section .section_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.contact-manifesto-interlude-section .section_bg img{ 
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-manifesto-interlude-section > .container-fluid {
    position: relative;
    z-index: 2;
}

.manifesto-parallax-texture-box {
    width: 100%;
    /* Soft high-contrast linear smooth brown cream color gradient emulating rich fabric waves */
    padding-top: 550px;
    padding-bottom: 50px;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.03);position: relative;z-index: 1;
}

.manifesto-parallax-texture-box::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.6) 100%);
    pointer-events: none;
}

.manifesto-quote-prose-text {
    font-family: var(--font-display), 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

/* ==========================================================================
   MEDIA CONTROLS RESPONSE OVERRIDES
   ========================================================================== */
@media (max-width: 992px) {
    .contact-display-title { font-size: 40px; }
    .contact-hero-section { padding-top: 60px; padding-bottom: 40px; }
    .contact-interactive-grid-section { padding-top: 40px; padding-bottom: 80px; }
    .direct-comms-sidebar-wrapper { margin-bottom: 40px; }
    .enquiry-form-wrapper { padding-left: 0 !important; }
    .manifesto-parallax-texture-box { min-height: 360px; }
    .manifesto-quote-prose-text { font-size: 26px; }
}

@media (max-width: 576px) {
    .contact-display-title { font-size: 32px; }
    .comms-primary-link { font-size: 20px; }
    .btn-luxe-dark-solid, .btn-luxe-outline-dark-action { width: 100%; text-align: center; }
    .manifesto-quote-prose-text { font-size: 22px; }
}