/* =========================================================
   LEARN — Contact page styles
   Loads AFTER home.css — inherits all tokens, nav, footer,
   buttons, eyebrow, section head, typography.
   ========================================================= */

/* ---------- HERO ---------- */
.lc-contact-hero {
    position: relative;
    padding: 160px var(--gutter) 80px;
    overflow: hidden;
    background-color: var(--paper);
    text-align: center;
}
.lc-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(40,121,185,0.10) 0%, transparent 45%),
        radial-gradient(circle at 82% 30%, rgba(40,121,185,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.lc-contact-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
}
.lc-contact-hero__title {
    font-family: var(--font-display);
    font-size: var(--hero-title-size) !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin: 24px 0 22px;
    color: var(--ink);
}
.lc-contact-hero__title .lc-accent { color: var(--brand); }
.lc-contact-hero__lead {
    max-width: 680px;
    margin: 0 auto;
    font-size: clamp(14.4px, 1.2vw, 17.1px);
    color: var(--ink-soft);
    line-height: 1.75;
}

/* ---------- INFO + MAP ---------- */
.lc-contact-info {
    padding: 64px 0;
    background: var(--paper);
}
.lc-contact-info__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .lc-contact-info__inner { grid-template-columns: 1fr; gap: 32px; }
}

.lc-contact-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
@media (max-width: 600px) {
    .lc-contact-card { padding: 22px 20px; }
}

.lc-contact-card__company {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.6vw, 21.6px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
    margin: 0;
}

.lc-contact-row {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
}
.lc-contact-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(40, 121, 185, 0.10);
    color: var(--brand);
    flex-shrink: 0;
}
.lc-contact-row__icon svg { width: 19px; height: 19px; }
.lc-contact-row__label {
    font-family: var(--font-display);
    font-size: 10.8px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--brand);
    margin: 0 0 4px;
}
.lc-contact-row__value {
    font-size: 14.4px;
    line-height: 1.7;
    color: var(--ink);
    margin: 0;
}
.lc-contact-row__value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}
.lc-contact-row__value a:hover { color: var(--brand); }

/* Social row */
.lc-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lc-contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--paper-2);
    color: var(--ink);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.lc-contact-social a:hover {
    transform: translateY(-2px);
    background: var(--brand);
    color: #fff;
}
.lc-contact-social svg { width: 20px; height: 20px; }

/* Whistleblowing CTA inline */
.lc-contact-card__notice {
    margin: 0;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    background: var(--paper-2);
    font-size: 12.6px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.lc-contact-card__notice a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}
.lc-contact-card__notice a:hover { text-decoration: underline; }

/* Map */
.lc-contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--paper-2);
    min-height: 380px;
}
.lc-contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 900px) {
    .lc-contact-map { min-height: 380px; }
}

/* ---------- FORM ---------- */
.lc-contact-form-section {
    padding: 72px 0 88px;
    background: var(--paper-2);
}
.lc-contact-form-section__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.lc-contact-form-section .lc-section__head { margin-bottom: 28px; }
/* Match the Proof section title scale on Home */
.lc-contact-form-section .lc-section__title { font-size: clamp(27px, 3.6vw, 44px); }

.lc-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
    .lc-contact-form { grid-template-columns: 1fr; padding: 24px 20px; }
}

.lc-contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.lc-contact-form__field--full { grid-column: 1 / -1; }

.lc-contact-form__label {
    font-family: var(--font-display);
    font-size: 11.7px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
}
.lc-contact-form__label .lc-required {
    color: var(--brand);
    margin-left: 2px;
}
.lc-contact-form__input,
.lc-contact-form__select,
.lc-contact-form__textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 13.5px;
    line-height: 1.5;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.lc-contact-form__input:focus,
.lc-contact-form__select:focus,
.lc-contact-form__textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(40, 121, 185, 0.15);
}
.lc-contact-form__textarea {
    min-height: 110px;
    resize: vertical;
}
.lc-contact-form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M1 1l6 6 6-6' stroke='%232879b9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}
.lc-contact-form__submit {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
}
@media (max-width: 720px) {
    .lc-contact-form__submit { justify-self: stretch; }
}
