/* ==========================================================================
   contact-2027.css — page-specific rules for /contact
   --------------------------------------------------------------------------
   Loads AFTER css/site-2027.css. Everything structural (container, hero,
   hairline rows, chips, form controls, cards, buttons) comes from the shared
   file; this file only carries what the shared vocabulary cannot express:
   the intake two-column split, the contact-method row shape, and the three
   design-file type sizes that differ from the shared scale.

   Where a rule below re-declares a shared value it does so at EQUAL
   specificity and wins on source order — never with a priority override,
   and never with a bare element selector.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Intake hero — copy + contact methods left, form panel right
   -------------------------------------------------------------------------- */

.cy27-intake__grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 100px;
}

/* Contact's H1 sits a step below the home hero so it doesn't crowd the
   form panel beside it. */
.cy27-intake h1 {
    margin-bottom: 26px;
    font-size: clamp(2.3rem, 4.4vw, 3.8rem);
}

.cy27-intake__lead {
    max-width: 520px;
    margin-bottom: 40px;
}

.cy27-intake__methods {
    max-width: 520px;
}

/* --------------------------------------------------------------------------
   Contact methods — rule-separated rows, not three identical cards.
   Built on .cy27-row for the hairline; only the column shape changes.
   -------------------------------------------------------------------------- */

.cy27-method {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
}

.cy27-method__title {
    display: block;
    margin-bottom: 4px;
    color: var(--cy27-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.cy27-method__desc {
    display: block;
    color: var(--cy27-body);
    font-size: .95rem;
    line-height: 1.6;
}

.cy27-method__value {
    font-family: var(--cy27-mono);
    font-size: .9rem;
    color: var(--cy27-accent);
    white-space: nowrap;
    transition: color .25s ease;
}

/* Chat has no destination link — its hours read as a caption, not an action. */
.cy27-method__value--muted {
    color: var(--cy27-subtle);
}

a.cy27-method:hover .cy27-method__title,
a.cy27-method:hover .cy27-method__value {
    color: #fff;
}

/* --------------------------------------------------------------------------
   Intake panel
   -------------------------------------------------------------------------- */

.cy27-intake__panel {
    padding: 36px 34px;
}

.cy27-intake__kicker {
    display: block;
    margin-bottom: 12px;
}

.cy27-intake__panel h2 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.cy27-intake__intro {
    margin-bottom: 26px;
    color: var(--cy27-body);
    font-size: .98rem;
    line-height: 1.6;
}

/* Name + email share a line; each .cy27-field keeps its own 20px rhythm. */
.cy27-intake__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cy27-intake__panel .cy27-textarea {
    min-height: 120px;
}

/* Netlify honeypot. Hidden from everyone; the `hidden` attribute alone would
   do it, this is belt and braces against a stray display rule. */
.cy27-honeypot {
    display: none;
}

/* Live summary of the two chip choices. */
.cy27-intake__status {
    margin-top: 14px;
    color: var(--cy27-subtle);
    font-size: .72rem;
    letter-spacing: .06em;
    line-height: 1.5;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Why businesses choose Cybrid
   -------------------------------------------------------------------------- */

.cy27-why {
    border-top: 1px solid var(--cy27-line);
    padding-top: 40px;
}

.cy27-why__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cy27-why__head .cy27-eyebrow {
    display: block;
    margin-bottom: 14px;
}

.cy27-why__head h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.cy27-why__note {
    max-width: 360px;
    color: var(--cy27-body);
    font-size: 1rem;
    line-height: 1.7;
}

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

.cy27-why__card {
    padding: 26px;
}

.cy27-why__card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.cy27-why__card p {
    color: var(--cy27-body);
    font-size: .95rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Budget / timeline signpost
   -------------------------------------------------------------------------- */

.cy27-endcta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 44px 40px;
    border-radius: 18px;
}

.cy27-endcta__copy {
    max-width: 620px;
}

.cy27-endcta h2 {
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.cy27-endcta p {
    color: var(--cy27-body);
    font-size: 1.05rem;
    line-height: 1.7;
}

.cy27-endcta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
    .cy27-intake__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .cy27-intake__lead,
    .cy27-intake__methods {
        max-width: none;
    }

    .cy27-why__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .cy27-intake__grid {
        padding-bottom: 72px;
    }

    .cy27-intake__pair {
        grid-template-columns: 1fr;
    }

    .cy27-intake__panel {
        padding: 26px 22px;
    }

    .cy27-endcta {
        padding: 32px 24px;
    }
}

/* Below this the mono value can no longer share a line with the description. */
@media (max-width: 560px) {
    .cy27-method {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cy27-method__value {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cy27-method__value {
        transition: none;
    }
}
