
/* =========================================================
   EVELORA HOUSE INFORMATION PAGES
   ========================================================= */

.info-page {
    background: #f8f6f2;
    color: #171717;
}

.info-main {
    min-height: 60vh;
    padding: 70px 40px 100px;
}

.info-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.info-eyebrow {
    margin: 0 0 14px;
    color: #b69255;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.info-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    font-weight: 500;
}

.info-intro {
    max-width: 760px;
    margin: 24px 0 0;
    color: #666;
    font-size: 17px;
    line-height: 1.75;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 55px;
}

.info-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e0d8;
}

.info-card h2,
.info-card h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.info-card h2 {
    font-size: 28px;
}

.info-card h3 {
    font-size: 22px;
}

.info-card p,
.info-card li {
    color: #5e5e5e;
    font-size: 14px;
    line-height: 1.8;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card ul,
.info-card ol {
    margin: 12px 0 0;
    padding-left: 20px;
}

.info-section {
    margin-top: 55px;
    padding-top: 35px;
    border-top: 1px solid #ded8cf;
}

.info-section h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.info-section p,
.info-section li {
    max-width: 850px;
    color: #5e5e5e;
    font-size: 15px;
    line-height: 1.85;
}

.info-section ul {
    padding-left: 22px;
}

.info-contact-link {
    display: inline-block;
    margin-top: 12px;
    color: #171717;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.faq-list {
    margin-top: 35px;
    border-top: 1px solid #ded8cf;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #ded8cf;
}

.faq-item h2 {
    margin: 0 0 9px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.75;
}

.contact-form {
    display: grid;
    gap: 16px;
    max-width: 720px;
    margin-top: 35px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px;
    border: 1px solid #d8d1c8;
    background: #fff;
    color: #171717;
    font: inherit;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    padding: 14px 28px;
    border: 0;
    background: #171717;
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
}

.info-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 3px solid #b69255;
    background: #eeeae3;
    color: #555;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .info-main {
        padding: 50px 22px 70px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-title {
        font-size: 48px;
    }
}
