/* --- CONTACT US: THE ATELIER INQUIRY --- */
@import url('base.css');

:root {
    --contact-bg: #FDFBFA;
    --contact-accent: var(--about-clay);
    --contact-dark: var(--about-ink);
}

body {
    background: var(--contact-bg);
    color: var(--contact-dark);
}

/* 🟢 HERO: THE STARTING POINT */
.contact-hero {
    height: 70vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 500px;
    color: #ffffff;
    opacity: 1;
}


/* 🟢 SECTION: THE INQUIRY GRID */
.inquiry-section {
    padding-block: clamp(6rem, 12vw, 15rem);
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(4rem, 8vw, 10rem);
    align-items: start;
}

/* Left: Studio Details */
.studio-details h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: var(--about-ink);
}

.detail-item {
    padding-block: 3rem;
    border-top: 1px solid rgba(60, 42, 30, 0.1);
}

.detail-item:last-child {
    border-bottom: 1px solid rgba(60, 42, 30, 0.1);
}

.detail-item .label {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--about-clay);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.detail-item .value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--about-ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item .value:hover {
    color: var(--about-clay);
}

/* Right: The Process (Gallery Flow) */
.process-display {
    background: white;
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(60, 42, 30, 0.08);
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--about-clay);
    font-weight: 800;
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--about-clay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    margin: 0 0 0.8rem 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--about-ink);
}

.step-content p {
    font-size: 1rem;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* 🟢 LOCATION MODAL-STYLE */
.location-section {
    padding-bottom: 10rem;
}

.location-box {
    background: var(--about-ink);
    color: white;
    border-radius: 50px;
    padding: clamp(3rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-map {
    height: 400px;
    background: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.location-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.location-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .inquiry-grid, .location-box {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    
    .process-display {
        padding: 3rem 2rem;
    }
}