/* ============================================
   CONTACT PAGE — AESOP AESTHETIC
   ============================================ */

/* --- Shared --- */
.contact-label {
    display: block;
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #252525;
    margin-bottom: 0.75rem;
}

.contact-heading {
    font-family: 'Zapf Humanist 601', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #252525;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.contact-subheading {
    font-family: 'Zapf Humanist 601', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #252525;
    margin: 0 0 0.25rem;
}

.contact-text {
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    max-width: 600px;
}

.contact-text--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-meta {
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1.5rem;
}

/* --- Intro (Visit + Support) --- */
.contact-intro {
    background: #FBF9ED;
    padding: 5rem 1.5rem;
}

.contact-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-intro-left {
    flex: 1;
}

.contact-intro-right {
    flex: 1;
}

.contact-rabbits {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.contact-rabbit-img {
    width: 130px;
    height: auto;
    object-fit: contain;
}

.contact-rabbit-img--sm {
    width: 110px;
}

.contact-rabbit-img--lg {
    width: 150px;
}

/* Support links */
.contact-support-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-support-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: #fff;
    border: 1px solid #e8e6df;
    color: #252525;
    text-decoration: none;
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-support-btn:hover {
    border-color: #252525;
    background: #FFFEF5;
    color: #252525;
    text-decoration: none;
}

.contact-support-btn i {
    font-size: 1rem;
    width: 1rem;
    text-align: center;
    color: #252525;
}

/* --- Store Locations --- */
.contact-stores {
    background: #FFFEF5;
    padding: 5rem 1.5rem;
    text-align: center;
}

.contact-stores-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-stores .contact-heading {
    margin-bottom: 2.5rem;
}

.contact-stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.contact-store-card {
    background: #fff;
    border: 1px solid #e8e6df;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-store-img {
    height: 240px;
    overflow: hidden;
}

.contact-store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.contact-store-card:hover .contact-store-img img {
    transform: scale(1.04);
}

.contact-store-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-store-name {
    font-family: 'Zapf Humanist 601', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #252525;
    margin: 0 0 0.25rem;
}

.contact-store-hours {
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1rem;
}

.contact-store-address {
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-store-address strong {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #252525;
}

.contact-store-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.contact-store-link {
    display: block;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e8e6df;
    color: #252525;
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.8rem;
    text-decoration: none;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-store-link:hover {
    border-color: #252525;
    background: #FBF9ED;
    color: #252525;
    text-decoration: none;
}

.contact-store-link i {
    margin-right: 0.4rem;
}

/* --- Map --- */
.contact-map {
    background: #FFFEF5;
    padding: 5rem 1.5rem;
    text-align: center;
}

.contact-map-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-map-frame {
    margin-top: 1.5rem;
    border: 1px solid #e8e6df;
    overflow: hidden;
    line-height: 0;
}

.contact-map-frame iframe {
    width: 100%;
    display: block;
}

/* --- Contact Form --- */
.contact-form-section {
    background: #FBF9ED;
    padding: 5rem 1.5rem;
    text-align: center;
}

.contact-form-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid #e8e6df;
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: left;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-page-form .floating-label-group {
    margin-bottom: 1rem;
}

.contact-char-counter {
    text-align: right;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.contact-char-counter small {
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.8rem;
    color: #666;
}

.contact-form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-submit-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: #252525;
    color: #fff;
    border: 1px solid #252525;
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-submit-btn:hover {
    background: transparent;
    color: #252525;
}

/* --- FAQ --- */
.contact-faq {
    background: #FFFEF5;
    padding: 5rem 1.5rem;
}

.contact-faq-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-faq-group {
    text-align: left;
    margin-bottom: 2.5rem;
}

.contact-faq-group-title {
    font-family: 'Zapf Humanist 601', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #252525;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #252525;
    margin-bottom: 1rem;
}

.contact-faq-item {
    border-bottom: 1px solid #e8e6df;
}

.contact-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #252525;
    text-align: left;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.contact-faq-trigger::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact-faq-item.is-open .contact-faq-trigger::after {
    content: '\2013';
}

.contact-faq-trigger:hover {
    color: #666;
}

.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-family: 'Suisse Int\'l', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.contact-faq-item.is-open .contact-faq-answer {
    max-height: 300px;
    padding-bottom: 1rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-intro-inner {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .contact-intro,
    .contact-stores,
    .contact-map,
    .contact-form-section,
    .contact-faq {
        padding: 3.5rem 1.25rem;
    }

    .contact-stores-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.75rem;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .contact-rabbits {
        justify-content: center;
    }

    .contact-rabbit-img {
        width: 100px;
    }

    .contact-rabbit-img--sm {
        width: 85px;
    }

    .contact-rabbit-img--lg {
        width: 115px;
    }
}

@media (max-width: 480px) {
    .contact-intro,
    .contact-stores,
    .contact-map,
    .contact-form-section,
    .contact-faq {
        padding: 2.5rem 1rem;
    }

    .contact-heading {
        font-size: 1.35rem;
    }

    .contact-form-wrap {
        padding: 1.25rem;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-rabbit-img {
        width: 80px;
    }

    .contact-rabbit-img--sm {
        width: 65px;
    }

    .contact-rabbit-img--lg {
        width: 95px;
    }
}
