/* LMS Primary — Contact Page */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.cp-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: var(--lms-dark);
    overflow: hidden;
}
.cp-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .45;
    animation: cp-zoom 14s ease-in-out infinite alternate;
}
.cp-hero__bg--gradient {
    background: linear-gradient(135deg, #28231c 0%, #fc800a33 60%, #28231c 100%);
    opacity: 1;
}
@keyframes cp-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
}
.cp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(28,23,18,.88) 0%, rgba(28,23,18,.55) 100%);
}
.cp-hero__content {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
}
.cp-hero__eyebrow {
    font-family: var(--lms-font-script);
    font-size: 2rem;
    color: var(--lms-gold, #FAB823);
    margin: 0 0 10px;
    line-height: 1;
}
.cp-hero__title {
    font-family: var(--lms-font-head);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.05;
    text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.cp-hero__sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,.78);
    max-width: 520px;
    line-height: 1.75;
    margin: 0;
}

/* ── Main section ─────────────────────────────────────────────────────────── */
.cp-main {
    padding: 80px 0 100px;
    background: var(--lms-offwhite);
}
.cp-main__inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: start;
}

/* ── Info column ──────────────────────────────────────────────────────────── */
.cp-info { display: flex; flex-direction: column; gap: 24px; }

.cp-info__cards { display: flex; flex-direction: column; gap: 12px; }

.cp-info__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--lms-white);
    border: 1px solid var(--lms-border);
    border-radius: var(--lms-radius);
    padding: 18px 20px;
    transition: box-shadow .2s, transform .2s;
}
.cp-info__card:hover {
    box-shadow: var(--lms-shadow-natural);
    transform: translateY(-2px);
}
.cp-info__card-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lms-cream);
    border-radius: 10px;
}
.cp-info__card-body { min-width: 0; }
.cp-info__card-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lms-text-muted);
    margin: 0 0 4px;
}
.cp-info__card-value {
    font-size: .97rem;
    font-weight: 500;
    color: var(--lms-dark);
    text-decoration: none;
    transition: color .2s;
    display: block;
}
a.cp-info__card-value:hover { color: var(--lms-orange); }

/* ── Map ──────────────────────────────────────────────────────────────────── */
.cp-map {
    width: 100%;
    height: 260px;
    border-radius: var(--lms-radius);
    overflow: hidden;
    border: 1px solid var(--lms-border);
    box-shadow: var(--lms-shadow-natural);
}
.cp-map--placeholder {
    background: var(--lms-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--lms-text-muted);
    font-size: .9rem;
    text-align: center;
    padding: 24px;
}
.cp-map__emoji { font-size: 2.5rem; }

/* ── Form card ────────────────────────────────────────────────────────────── */
.cp-form-card {
    background: var(--lms-white);
    border: 1px solid var(--lms-border);
    border-radius: var(--lms-radius);
    border-top: 4px solid var(--lms-orange);
    padding: 40px 36px;
    box-shadow: var(--lms-shadow-natural);
}
.cp-form-card__eyebrow {
    font-family: var(--lms-font-script);
    font-size: 1.5rem;
    color: var(--lms-orange);
    margin: 0 0 6px;
    line-height: 1;
}
.cp-form-card__title {
    font-family: var(--lms-font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--lms-black);
    margin: 0 0 28px;
}

/* ── Form fields ──────────────────────────────────────────────────────────── */
.cp-form { display: flex; flex-direction: column; gap: 20px; }
.cp-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cp-form__group { display: flex; flex-direction: column; gap: 6px; }
.cp-form__label {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--lms-dark);
}
.cp-form__label span { color: var(--lms-orange); margin-left: 2px; }
.cp-form__input,
.cp-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--lms-border);
    border-radius: 10px;
    font-family: var(--lms-font-body);
    font-size: .95rem;
    color: var(--lms-dark);
    background: var(--lms-offwhite);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: none;
}
.cp-form__input:focus,
.cp-form__textarea:focus {
    border-color: var(--lms-orange);
    box-shadow: 0 0 0 3px rgba(252,128,10,.12);
    background: var(--lms-white);
}
.cp-form__textarea { resize: vertical; min-height: 140px; }
.cp-form__submit {
    align-self: flex-start;
    padding: 14px 32px;
    background: var(--lms-orange);
    color: #fff;
    border: none;
    border-radius: var(--lms-radius-pill);
    font-family: var(--lms-font-head);
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(252,128,10,.35);
}
.cp-form__submit:hover {
    background: var(--lms-orange-burnt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252,128,10,.45);
}
.cp-form__submit:active { transform: translateY(0); }

/* ── Success state ────────────────────────────────────────────────────────── */
.cp-form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.cp-form-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lms-green);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp-form-success h3 {
    font-family: var(--lms-font-head);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--lms-black);
}
.cp-form-success p { color: var(--lms-text-muted); font-size: .97rem; }

/* ── Form error ───────────────────────────────────────────────────────────── */
.cp-form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .9rem;
    color: #b91c1c;
    margin-bottom: 4px;
}

/* ── Shared section helpers ───────────────────────────────────────────────── */
.cp-eyebrow {
    font-family: var(--lms-font-script);
    font-size: 1.7rem;
    color: var(--lms-orange);
    margin: 0 0 6px;
    line-height: 1;
}
.cp-heading {
    font-family: var(--lms-font-head);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--lms-black);
    margin: 0;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.cp-faq {
    background: var(--lms-cream);
    padding: 80px 0 90px;
}
.cp-faq__head {
    text-align: center;
    margin-bottom: 48px;
}
.cp-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.cp-faq__item {
    background: var(--lms-white);
    border: 1px solid var(--lms-border);
    border-radius: var(--lms-radius);
    border-left: 4px solid var(--lms-orange);
    padding: 28px 28px 24px;
    transition: box-shadow .2s, transform .2s;
}
.cp-faq__item:hover {
    box-shadow: var(--lms-shadow-natural);
    transform: translateY(-3px);
}
.cp-faq__q {
    font-family: var(--lms-font-head);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--lms-black);
    margin: 0 0 12px;
    line-height: 1.35;
}
.cp-faq__a {
    font-size: .93rem;
    color: var(--lms-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .cp-main__inner { grid-template-columns: 1fr; }
    .cp-faq__grid   { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
    .cp-form__row--2 { grid-template-columns: 1fr; }
    .cp-form-card    { padding: 28px 20px; }
}
