﻿.cp-status-success {
    display: block;
    background: #fff8f6;
    border-left: 4px solid #e8c9c1;
    border-radius: 4px;
    padding: 12px 16px;
    color: #5a4040;
    font-size: 14px;
    margin-bottom: 16px;
}

.cp-status-error {
    display: block;
    background: #fff3f3;
    border-left: 4px solid #e8a0a0;
    border-radius: 4px;
    padding: 12px 16px;
    color: #7a2020;
    font-size: 14px;
    margin-bottom: 16px;
}

.cp-contact-section {
    background: #faf8f6;
    padding: 56px 0 80px;
}

/* ── Shared card ── */
.cp-card {
    background: #fff;
    border: 1px solid rgba(232, 201, 193, .28);
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .05);
    overflow: hidden;
}

/* eyebrow pill */
.cp-eyebrow {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #c4917f;
    background: rgba(232, 201, 193, .16);
    border: 1px solid rgba(232, 201, 193, .4);
    padding: 4px 13px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* rose divider */
.cp-divider {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #e8c9c1, #d4a89a);
    border-radius: 2px;
    margin-bottom: 22px;
}

/* ================================================
           HERO INFO STRIP  (full-width top band)
        ================================================ */
.cp-hero-strip {
    background: #fff;
    border: 1px solid rgba(232, 201, 193, .28);
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .05);
    padding: 36px 36px 36px 40px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

    /* ambient glow */
    .cp-hero-strip::before {
        content: "";
        position: absolute;
        top: -60px;
        left: -60px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(232, 201, 193, .2) 0%, transparent 65%);
        filter: blur(40px);
        pointer-events: none;
    }

.cp-hero-left {
    flex: 0 0 300px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.cp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -.02em;
    line-height: 1.25;
    margin-bottom: 8px;
}

.cp-hero-sub {
    font-size: 13px;
    color: #999;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* ── RIGHT COLUMN ── */
.cp-hero-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* ── TILES ── */
.cp-tile {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #faf7f5;
    border: 1px solid rgba(232, 201, 193, .3);
    border-radius: 12px;
    padding: 16px 16px 14px;
    transition: background .22s, box-shadow .22s, transform .22s;
}

    .cp-tile:hover {
        background: #fff8f6;
        box-shadow: 0 6px 18px rgba(232, 201, 193, .25);
        transform: translateY(-2px);
    }

/* icon */
.cp-tile-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8c9c1, #d4a89a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(212, 168, 154, .3);
    margin-top: 1px;
}

    .cp-tile-icon svg {
        width: 15px;
        height: 15px;
        fill: #fff;
    }

.cp-tile-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 4px;
}

.cp-tile-value {
    font-size: 14px;
    color: #222;
    line-height: 1.55;
}

.cp-tile-link {
    color: #222;
    text-decoration: none;
    transition: color .2s;
}

    .cp-tile-link:hover {
        color: #c4917f;
        text-decoration: none;
    }

/* hours tile spans full width on right col */
.cp-tile--hours {
    grid-column: 1 / -1;
}

/* hours table */
.cp-hours-table {
    width: 100%;
    border-collapse: collapse;
}

    .cp-hours-table tr + tr td {
        padding-top: 3px;
    }

.cp-hours-day {
    font-size: 12px;
    color: #555;
    font-weight: 500;
    padding-right: 12px;
    white-space: nowrap;
}

.cp-hours-time {
    font-size: 12px;
    color: #222;
    white-space: nowrap;
}

.cp-hours-closed td {
    color: #c4917f !important;
    font-weight: 600;
}

/* vertical separator between left and right */
.cp-hero-left::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(232,201,193,.4) 30%, rgba(232,201,193,.4) 70%, transparent);
}

/* ================================================
   RESPONSIVE
================================================ */

/* tablet: left stacks above right */
@media (max-width: 991px) {
    .cp-hero-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 28px 24px;
    }

    .cp-hero-left {
        flex: none;
        width: 100%;
    }

        .cp-hero-left::after {
            display: none;
        }

    .cp-hero-right {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-hero-title {
        font-size: 1.5rem;
    }
}

/* mobile: single column tiles */
@media (max-width: 575px) {
    .cp-hero-right {
        grid-template-columns: 1fr;
    }

    .cp-tile--hours {
        grid-column: auto;
    }
}

/* direction button */
.cp-btn-direction {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 26px;
    background: #111;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all .26s ease;
}

    .cp-btn-direction svg {
        width: 13px;
        height: 13px;
        fill: #fff;
        transition: fill .26s;
    }

    .cp-btn-direction:hover {
        background: linear-gradient(135deg, #e8c9c1, #d4a89a);
        color: #111 !important;
        box-shadow: 0 8px 22px rgba(232, 201, 193, .4);
        transform: translateY(-2px);
    }

        .cp-btn-direction:hover svg {
            fill: #111;
        }

/* ================================================
           MAP CARD
        ================================================ */
.cp-map-card {
    padding: 0;
    height: 100%;
    min-height: 480px;
}

    .cp-map-card iframe {
        width: 100%;
        height: 100%;
        min-height: 480px;
        border: 0;
        display: block;
        border-radius: 18px;
    }

/* ================================================
           FORM CARD
        ================================================ */
.cp-form-card {
    padding: 38px 36px;
    height: 100%;
}

.cp-form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

.cp-form-sub {
    font-size: 13.5px;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* field label */
.cp-field-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 5px;
    display: block;
}

/* input */
.cp-input {
    height: 44px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px;
    font-size: 13.5px;
    color: #222;
    padding: 0 13px;
    background: #fdfcfb;
    transition: all .22s ease;
}

    .cp-input:focus {
        outline: none;
        border-color: #e8c9c1;
        box-shadow: 0 0 0 3px rgba(232, 201, 193, .2);
        background: #fff;
    }

    .cp-input::placeholder {
        color: #ccc;
        font-size: 13px;
    }

textarea.cp-input {
    height: auto;
    padding: 11px 13px;
    resize: vertical;
}

/* submit */
.cp-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #e8c9c1, #d4a89a);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all .26s ease;
    box-shadow: 0 5px 18px rgba(212, 168, 154, .28);
}

    .cp-btn-submit svg {
        width: 13px;
        height: 13px;
        fill: #111;
    }

    .cp-btn-submit:hover {
        background: #111;
        color: #e8c9c1;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
        transform: translateY(-2px);
    }

        .cp-btn-submit:hover svg {
            fill: #e8c9c1;
        }

    .cp-btn-submit:active {
        transform: translateY(0);
    }

/* notice */
.cp-form-notice {
    font-size: 12.5px;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 14px;
    display: none;
}

    .cp-form-notice.success {
        background: rgba(200, 232, 201, .22);
        border: 1px solid rgba(100, 180, 100, .28);
        color: #2e7d32;
    }

/* ================================================
           RESPONSIVE
        ================================================ */

/* 4 tiles → 2×2 on tablet */
@media (max-width: 991px) {
    .cp-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-map-card,
    .cp-map-card iframe {
        min-height: 340px;
    }
}

/* full stack on mobile */
@media (max-width: 767px) {
    .cp-contact-section {
        padding: 36px 0 60px;
    }

    .cp-hero-strip {
        padding: 28px 18px 24px;
    }

    .cp-tiles {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cp-form-card {
        padding: 26px 18px;
    }

    .cp-map-card,
    .cp-map-card iframe {
        min-height: 260px;
    }
}