/* ================================
   Gallery — Coming Soon (Final)
   ================================ */

/* Page wrapper */
.gallery-soon {
    background: linear-gradient(180deg, #FAF8F4 0%, #F7F1EB 100%);
    border-top: 1px solid rgba(0,0,0,0.04);

    /* IMPORTANT: no viewport forcing */
    min-height: unset;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    /* Natural spacing below header & above footer */
    padding: 4.5rem 1.5rem 3.5rem;
}

/* Inner content */
.soon-inner {
    width: min(60rem, 94vw);
    text-align: center;
    margin-top: 2.25rem; /* gentle separation from nav */
}

/* Badge */
.soon-badge {
    display: inline-block;
    padding: 0.35em 0.85em;
    border-radius: 999px;

    background: rgba(183, 121, 112, 0.12);
    border: 1px solid rgba(183, 121, 112, 0.22);

    color: #7b504a;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Title */
.soon-title {
    margin: 0.75rem 0 0.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 4.5vw, 3.25rem);
    letter-spacing: 0.02em;
    color: var(--teal-text);
}

/* Lead text */
.soon-lead {
    max-width: 58ch;
    margin: 0 auto 1.4rem;

    color: #375a56;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.7;
}

/* CTA row */
.soon-actions {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

/* ================================
   Pill Buttons (Gallery specific)
   ================================ */

.lotus-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;

    padding: 0.75em 1.45em;
    border-radius: 999px;

    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;

    transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            transform 0.2s ease;
}

.lotus-pill:active {
    transform: translateY(0);
}

/* Outline / ghost */
.lotus-pill--ghost {
    background: transparent;
    border: 1.5px solid rgba(183, 121, 112, 0.55);
    color: var(--charcoal-text);
}

.lotus-pill--ghost:hover {
    background: rgba(183, 121, 112, 0.10);
    border-color: rgba(183, 121, 112, 0.85);
    transform: translateY(-1px);
}

/* Soft fill */
.lotus-pill--fill {
    background: rgba(183, 121, 112, 0.16);
    border: 1.5px solid rgba(183, 121, 112, 0.75);
    color: #2B2A28;
}

.lotus-pill--fill:hover {
    background: rgba(183, 121, 112, 0.22);
    border-color: rgba(183, 121, 112, 0.9);
    transform: translateY(-1px);
}

/* Make existing .btn-primary match */
.btn.btn-primary.lotus-pill {
    background: transparent;
    border: 1.5px solid rgba(183, 121, 112, 0.65);
    color: var(--charcoal-text);
}

.btn.btn-primary.lotus-pill:hover {
    background: rgba(183, 121, 112, 0.12);
    border-color: rgba(183, 121, 112, 0.88);
    transform: translateY(-1px);
}

/* ================================
   Info Card
   ================================ */

.soon-card {
    margin: 0 auto 1.25rem;
    width: min(42rem, 94vw);

    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 1rem;

    box-shadow: 0 0.5em 1.5em rgba(0,0,0,0.06);
    padding: 1.2rem 1.25rem;

    text-align: left;
}

.soon-card__title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
    color: var(--teal-text);
}

.soon-card__text {
    margin: 0;
    color: #375a56;
    line-height: 1.65;
}

/* ================================
   Notify Form
   ================================ */

.notify {
    width: min(42rem, 94vw);
    margin: 0 auto;
    text-align: left;
}

.notify-label {
    display: block;
    font-weight: 600;
    color: var(--charcoal-text);
    margin-bottom: 0.55rem;
}

.notify-row {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.notify input[type="email"] {
    flex: 1 1 18rem;
    padding: 0.85em 1em;
    border-radius: 999px;

    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.12);

    outline: none;
}

.notify input[type="email"]:focus {
    border-color: rgba(183, 121, 112, 0.65);
    box-shadow: 0 0 0 4px rgba(183, 121, 112, 0.12);
}

.notify-note {
    margin-top: 0.55rem;
    font-size: 0.92rem;
    color: rgba(55,90,86,0.85);
}

/* ================================
   Mobile tuning
   ================================ */

@media (max-width: 30em) {
    .gallery-soon {
        padding: 3.75rem 1.25rem 3rem;
    }

    .soon-inner {
        margin-top: 1.75rem;
    }

    .soon-card {
        padding: 1.05rem 1.1rem;
    }
}
