/* ═══════════════════════════════════════════════════════════
   contact.css — Contact page styles for Little Turtlery
   Requires: public-layout.css (tokens, reset, nav, footer)
   ═══════════════════════════════════════════════════════════ */

/* ─── Page Hero ──────────────────────────────────────────── */
.lt-contact-hero {
    background: var(--lt-cream);
    padding-top: calc(var(--nav-h) + var(--sp-3xl));
    padding-bottom: var(--sp-2xl);
    text-align: center;
}

.lt-contact-hero__title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: var(--fw-semibold);
    color: var(--lt-ink);
    line-height: 1.15;
    text-wrap: balance;
    max-width: 18ch;
    margin-inline: auto;
    margin-bottom: var(--sp-md);
}

.lt-contact-hero__intro {
    font-size: 15px;
    color: var(--lt-text-soft);
    font-weight: var(--fw-light);
    line-height: 1.85;
    max-width: 480px;
    margin-inline: auto;
}

/* ─── Channels section ───────────────────────────────────── */
.lt-contact-channels {
    background: var(--lt-white);
}

.lt-contact-channels__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    max-width: 880px;
    margin-inline: auto;
}

/* ─── Channel card ───────────────────────────────────────── */
.lt-channel {
    background: var(--lt-cream);
    border: 1px solid var(--lt-border);
    border-radius: var(--r-xl);
    padding: 28px;               /* tighter than sp-xl (40px) */
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);           /* tighter gap: sp-md (16px) vs sp-lg (24px) */
    transition: box-shadow var(--ease), transform var(--ease);
}

.lt-channel:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.lt-channel__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--lt-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lt-channel--line .lt-channel__icon-wrap {
    background: #dcf8e6;
}

.lt-channel__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.lt-channel__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

.lt-channel__label {
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lt-text-muted);
}

.lt-channel__handle {
    font-size: 17px;
    font-weight: var(--fw-semibold);
    color: var(--lt-ink);
    letter-spacing: -.01em;
}

.lt-channel__desc {
    font-size: 14px;
    color: var(--lt-text-soft);
    line-height: 1.85;
    font-weight: var(--fw-light);
}

.lt-channel__btn {
    margin-top: auto;
    padding-top: var(--sp-md);
}

/* Instagram button tint */
.lt-channel--instagram .lt-btn--primary {
    background: #c2507b;
}
.lt-channel--instagram .lt-btn--primary:hover {
    background: #a33d64;
}

/* LINE button tint */
.lt-channel--line .lt-btn--primary {
    background: #06c755;
}
.lt-channel--line .lt-btn--primary:hover {
    background: #059d43;
}

/* ─── Closing text ───────────────────────────────────────── */
.lt-contact-closing {
    background: var(--lt-stone-xlight);
    text-align: center;
    padding-block: var(--sp-2xl);
}

.lt-contact-closing__text {
    font-size: 16px;
    color: var(--lt-text-soft);
    font-weight: var(--fw-light);
    line-height: 1.95;
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: var(--sp-xl);
}

.lt-contact-closing__explore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .lt-contact-channels__grid {
        grid-template-columns: 1fr;
    }

    .lt-contact-hero {
        padding-top: calc(var(--nav-h) + var(--sp-2xl));
    }
}
