/* ═══════════ CONTACT ═══════════
   A quiet, scrollable page in the same bark/moss/linen language as the
   service documents. Reuses .topbar, .crumbs, .svc-btn and .svc-foot. */

html, body {
    overflow: auto;
    height: auto;
    min-height: 100%;
}

.contact {
    min-height: 100vh;
    background: var(--bark);
    color: var(--linen);
}

.contact-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: calc(var(--topbar-h) + clamp(20px, 4vh, 44px)) 8vw clamp(64px, 9vh, 110px);
}

.contact-head {
    margin-bottom: clamp(36px, 5vh, 56px);
}

.contact-head .eyebrow {
    display: block;
    margin-bottom: 20px;
    color: var(--moss);
}

.contact-head .display {
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 300;
}

.contact-head .lede {
    margin-top: 18px;
    color: var(--stone);
    font-weight: 300;
    font-size: clamp(17px, 2.1vw, 20px);
    max-width: 52ch;
}

/* form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cf-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(244, 241, 234, 0.72);
}

.cf-opt {
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 400;
    color: var(--slate);
}

.cf-field input,
.cf-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    color: var(--linen);
    background: rgba(244, 241, 234, 0.04);
    border: 1px solid rgba(229, 225, 215, 0.18);
    border-radius: 2px;
    transition: border-color .3s ease, background .3s ease;
}

.cf-field textarea {
    resize: vertical;
    line-height: 1.6;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: var(--slate);
}

.cf-field input:focus,
.cf-field textarea:focus {
    outline: none;
    border-color: var(--moss);
    background: rgba(244, 241, 234, 0.07);
}

/* honeypot — hidden from people */
.cf-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form .svc-btn {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin-top: 4px;
}

.contact-form .svc-btn:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

.cf-alt {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 300;
    color: var(--stone);
}

.cf-alt a {
    color: var(--moss);
    text-decoration: none;
}

.cf-alt a:hover { text-decoration: underline; }

/* status message */
.cf-status {
    padding: 14px 18px;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 300;
    border: 1px solid transparent;
}

.cf-status.is-ok {
    color: #dbe4bf;
    background: rgba(138, 154, 75, 0.14);
    border-color: rgba(138, 154, 75, 0.5);
}

.cf-status.is-err {
    color: #f0d5d0;
    background: rgba(150, 70, 55, 0.16);
    border-color: rgba(150, 70, 55, 0.55);
}

@media (max-width: 600px) {
    .cf-row { grid-template-columns: 1fr; }
    .contact-form .svc-btn { align-self: stretch; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    .svc-btn:hover { transform: none; }
}
