/* ================================================
   ZEPHH SELECT PAGE — Maison Noir
   Premium · Editorial · Refined
   ================================================ */

/* ============ COMMON ============ */
.zs-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 18px;
    padding-left: 45px;
    position: relative;
}
.zs-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--accent);
}
.zs-eyebrow.center {
    padding-left: 0;
    margin-bottom: 14px;
}
.zs-eyebrow.center::before { display: none; }

.zs-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.zs-section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.zs-section-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ============ 1. ABOUT SECTION ============ */
.zs-about {
    padding: 140px 0 100px;
    background: var(--bg);
    position: relative;
}

.zs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 60px;
    font-weight: 500;
}
.zs-breadcrumb a {
    color: var(--muted);
    transition: color 0.3s var(--ease);
    text-decoration: none;
}
.zs-breadcrumb a:hover { color: var(--accent); }
.zs-breadcrumb .bc-sep { color: var(--line); }
.zs-breadcrumb .bc-current { color: var(--ink); }

.zs-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.zs-about-text { max-width: 560px; }

.zs-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.015em;
}

.zs-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 32px;
}

.zs-para {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink-soft, #4a4239);
    margin-bottom: 22px;
}
.zs-para:last-child { margin-bottom: 0; }

.zs-about-image {
    position: relative;
}

.zs-img-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-alt);
    box-shadow: 0 30px 60px rgba(26,22,18,0.12);
}
.zs-img-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid var(--accent);
    z-index: -1;
    transform: translate(14px, 14px);
    transition: transform 0.5s var(--ease);
}
.zs-about-image:hover .zs-img-frame::before {
    transform: translate(20px, 20px);
}
.zs-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}
.zs-about-image:hover .zs-img-frame img {
    transform: scale(1.04);
}

.zs-img-tag {
    position: absolute;
    top: 24px;
    left: -34px;
    background: var(--ink);
    color: var(--accent);
    padding: 10px 22px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}


/* ============ 2. OUR COLLECTION ============ */
.zs-collection {
    padding: 110px 0;
    background: linear-gradient(180deg, #fbf8f3 0%, #f5efe6 100%);
    position: relative;
}

.zs-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 36px;
}

.zs-coll-card {
    text-align: center;
}

.zs-coll-img {
    display: block;
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 22px;
    text-decoration: none;
}

/* Primary image */
.zs-coll-img .img-primary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s var(--ease), transform 1s var(--ease);
    opacity: 1;
    z-index: 1;
}

/* Secondary image - shown on hover */
.zs-coll-img .img-secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s var(--ease), transform 1s var(--ease);
    opacity: 0;
    z-index: 2;
    transform: scale(1.05);
}

.zs-coll-img:hover .img-primary {
    opacity: 0;
    transform: scale(1.05);
}
.zs-coll-img:hover .img-secondary {
    opacity: 1;
    transform: scale(1);
}

/* CTA badge — slides in on hover */
.zs-coll-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 22px;
    background: var(--ink);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.45s var(--ease);
    z-index: 3;
}
.zs-coll-img:hover .zs-coll-cta {
    transform: translateY(0);
}

.zs-coll-info { padding: 0 8px; }

.zs-coll-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 6px;
}

.zs-coll-artist {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--muted);
}


/* ============ 3. WHY ZEPHH ============ */
.zs-why {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

.zs-why-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,22,18,0.5) 0%, rgba(26,22,18,0.3) 100%);
    z-index: 1;
}

.zs-why .container {
    position: relative;
    z-index: 2;
}

.zs-why-card {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 70px;
    background: rgba(251,248,243,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(26,22,18,0.25);
}

.zs-why-mark {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 26px;
}

.zs-why-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.zs-why-desc {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft, #4a4239);
    max-width: 560px;
    margin: 0 auto;
}


/* ============ 4. RECENT COLLABORATIONS ============ */
.zs-collab {
    padding: 110px 0;
    background: var(--bg);
}

.zs-collab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.zs-collab-card {
    text-align: center;
}

.zs-collab-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 30px;
    position: relative;
}
.zs-collab-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.4s var(--ease);
    pointer-events: none;
}
.zs-collab-card:hover .zs-collab-img::after {
    border-color: var(--accent);
}

.zs-collab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}
.zs-collab-card:hover .zs-collab-img img {
    transform: scale(1.06);
}

.zs-collab-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.zs-collab-role {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.zs-collab-bio {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--ink-soft, #4a4239);
    max-width: 460px;
    margin: 0 auto;
}


/* ============ 5. CONTACT FORM ============ */
.zs-contact {
    padding: 110px 0 130px;
    background:
        linear-gradient(180deg, #f5efe6 0%, #ebe2d0 100%);
    position: relative;
    overflow: hidden;
}
.zs-contact::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,147,90,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.zs-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zs-contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
}

.zs-contact-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft, #4a4239);
    margin-bottom: 32px;
    max-width: 440px;
}

.zs-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.zs-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(184,147,90,0.2);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.zs-contact-list li:last-child { border-bottom: none; }
.zs-contact-list i {
    color: var(--accent);
    font-size: 14px;
    width: 22px;
}

/* Form */
.zs-contact-form {
    background: var(--white);
    padding: 50px 45px;
    box-shadow: 0 30px 60px rgba(26,22,18,0.08);
    border: 1px solid rgba(184,147,90,0.15);
}

.zs-form-row { margin-bottom: 22px; }
.zs-form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.zs-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 10px;
}

.zs-field input,
.zs-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    transition: border-color 0.3s var(--ease);
    resize: vertical;
}
.zs-field input:focus,
.zs-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.zs-field input::placeholder,
.zs-field textarea::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.zs-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    background: var(--ink);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-top: 10px;
}
.zs-submit-btn:hover {
    background: var(--accent);
    color: var(--white);
    gap: 18px;
}


/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1100px) {
    .zs-about-grid { gap: 60px; }
    .zs-collection-grid { gap: 40px 28px; }
    .zs-collab-grid { gap: 50px; }
    .zs-contact-grid { gap: 50px; }
}

@media (max-width: 900px) {
    .zs-about { padding: 120px 0 80px; }
    .zs-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .zs-about-text { max-width: 100%; }
    .zs-img-tag { left: -20px; }

    .zs-collection { padding: 80px 0; }
    .zs-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zs-why { background-attachment: scroll; min-height: 500px; padding: 100px 0; }
    .zs-why-card { padding: 45px 35px; }

    .zs-collab { padding: 80px 0; }
    .zs-collab-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .zs-collab-img { max-width: 380px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }

    .zs-contact { padding: 80px 0 100px; }
    .zs-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .zs-about { padding: 110px 0 70px; }
    .zs-breadcrumb { margin-bottom: 35px; }
    .zs-divider { margin-bottom: 26px; }
    .zs-para { font-size: 14px; }

    .zs-section-head { margin-bottom: 40px; }
    .zs-section-sub { font-size: 14px; }

    .zs-collection-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .zs-coll-name { font-size: 17px; }

    .zs-why-card { padding: 35px 25px; }
    .zs-why-desc { font-size: 15px; }

    .zs-collab-name { font-size: 23px; }
    .zs-collab-bio { font-size: 13.5px; }

    .zs-contact-form { padding: 35px 25px; }
    .zs-form-row.two-col {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 480px) {
    .zs-img-tag { left: -10px; font-size: 9px; padding: 8px 16px; }
    .zs-img-frame::before { inset: -8px; transform: translate(8px, 8px); }
    .zs-about-image:hover .zs-img-frame::before { transform: translate(12px, 12px); }

    .zs-why-card { padding: 30px 20px; }
    .zs-why-desc { font-size: 14px; }

    .zs-submit-btn { padding: 16px 28px; font-size: 10px; }
}