/* =========================================================
   CONTACT PAGE — info cards, form, map, cta
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- INFO CARDS ---------------- */
.ctc-info {
    padding: 70px 0 20px;
    background: var(--paper);
}

.ctc-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ctc-info-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ctc-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.ctc-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ctc-info-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--ink);
}

.ctc-info-card p,
.ctc-info-card a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.ctc-info-card a:hover {
    color: var(--gold);
}

/* ---------------- MAIN: FORM + MAP ---------------- */
.ctc-main {
    padding: 60px 0 90px;
    background: var(--paper);
}

.ctc-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.ctc-form-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px;
}

.ctc-form-card h2 {
    margin: 12px 0 24px;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.25;
}

.ctc-form {
    display: grid;
    gap: 18px;
}

.ctc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ctc-field {
    display: grid;
    gap: 6px;
}

.ctc-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.ctc-field input,
.ctc-field select,
.ctc-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 0.94rem;
    color: var(--ink);
    resize: vertical;
}

.ctc-field input:focus,
.ctc-field select:focus,
.ctc-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.ctc-submit {
    justify-self: start;
    border: none;
}

/* ---------------- SUCCESS STATE ---------------- */
.ctc-success {
    text-align: center;
    padding: 40px 10px;
}

.ctc-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--leaf);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ctc-success h3 {
    margin-bottom: 8px;
}

.ctc-success p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ---------------- SIDE: MAP + CTA ---------------- */
.ctc-side {
    display: grid;
    gap: 24px;
}

.ctc-map-card {
    height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.ctc-cta-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 32px;
}

.ctc-cta-card .eyebrow {
    color: var(--gold-light);
}

.ctc-cta-card .eyebrow::before {
    background: var(--gold-light);
}

.ctc-cta-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 12px 0 10px;
}

.ctc-cta-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.ctc-cta-card .btn-primary {
    background: var(--gold);
}

.ctc-cta-card .btn-primary:hover {
    background: var(--gold-light);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
    .ctc-info-grid {
        grid-template-columns: 1fr;
    }

    .ctc-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ctc-info {
        padding: 55px 18px 10px;
    }

    .ctc-main {
        padding: 40px 18px 60px;
    }

    .ctc-form-card {
        padding: 26px 22px;
    }

    .ctc-field-row {
        grid-template-columns: 1fr;
    }
}
