/* ════════════════════════════════════════════════════════════
   Elpis — Contact page styles (extends styles.css)
   Bold + minimal. Clean and expensive.
   ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   HERO — compact video, editorial headline
   ════════════════════════════════════════════════════════════ */
.contact-hero {
    position: relative;
    min-height: clamp(300px, 42vh, 460px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(44px, 5vw, 68px);
}
.contact-hero__video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.6) contrast(1.05) brightness(0.45);
}
.contact-hero__scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.88) 100%);
}
.contact-hero__inner {
    position: relative; z-index: 2;
    width: 100%; max-width: var(--max);
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-hero__title {
    font-size: clamp(34px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--paper);
    max-width: 14ch;
    margin: 0;
}
.contact-hero__title-accent {
    color: rgba(255, 255, 255, 0.4);
}

/* Entrance */
.contact-hero [data-anim] { opacity: 0; transform: translateY(24px); }
.contact-hero.is-ready [data-anim] {
    opacity: 1; transform: none;
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.contact-hero.is-ready [data-anim="1"] { transition-delay: 0.2s; }
.contact-hero.is-ready [data-anim="2"] { transition-delay: 0.8s; }

/* ════════════════════════════════════════════════════════════
   CHANNELS — minimal list
   ════════════════════════════════════════════════════════════ */
.contact-channels {
    background: var(--paper);
    padding: clamp(100px, 15vw, 180px) var(--gutter);
}
.contact-channels__inner {
    max-width: var(--max);
    margin: 0 auto;
}
.contact-channels__title {
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: clamp(48px, 7vw, 80px);
}
.contact-channels__list {
    list-style: none;
    border-top: 1px solid var(--ink);
}
.contact-channels__item {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: baseline;
    padding: clamp(28px, 4vw, 48px) 0;
    border-bottom: 1px solid var(--line);
}
.contact-channels__label {
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted);
    font-family: var(--display); font-synthesis: none;
}
.contact-channels__links {
    display: flex; flex-direction: column; gap: 6px;
}
.contact-channels__links a {
    font-size: clamp(18px, 2.2vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.contact-channels__links a:hover {
    color: var(--muted);
    padding-left: 12px;
}
.contact-channels__static {
    font-size: clamp(15px, 1.6vw, 20px);
    color: var(--muted);
    line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   SLA — 3 massive numbers on dark
   ════════════════════════════════════════════════════════════ */
.contact-sla {
    background: var(--dark);
    color: var(--paper);
    padding: clamp(100px, 15vw, 200px) var(--gutter);
}
.contact-sla__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 6vw, 80px);
}
.contact-sla__cell {
    display: flex; flex-direction: column; gap: 16px;
}
.contact-sla__value {
    font-size: clamp(48px, 8vw, 120px);
    line-height: 0.9;
    color: var(--paper);
    letter-spacing: -0.04em;
}
.contact-sla__label {
    font-size: 13px; letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 28ch;
}

/* ════════════════════════════════════════════════════════════
   FORM — clean centered minimal
   ════════════════════════════════════════════════════════════ */
.contact-form {
    background: var(--bone);
    border-top: 1px solid var(--line);
    padding: clamp(100px, 15vw, 180px) var(--gutter);
}
.contact-form__inner {
    max-width: 640px;
    margin: 0 auto;
}
.contact-form__title {
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
}
.contact-form__sub {
    font-size: 14px; color: var(--muted);
    margin-bottom: clamp(40px, 6vw, 64px);
}

/* Light theme form — overrides dark form defaults from styles.css */
.form--light {
    background: transparent;
    border: 0;
    padding: 0;
    gap: 20px;
}
.form--light .field__label {
    color: var(--muted);
}
.form--light .field input,
.form--light .field select,
.form--light .field textarea {
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink);
}
.form--light .field input::placeholder,
.form--light .field textarea::placeholder {
    color: var(--muted);
}
.form--light .field input:focus,
.form--light .field select:focus,
.form--light .field textarea:focus {
    border-color: var(--ink);
    background: var(--paper);
}
.form--light .field select option {
    background: var(--paper);
    color: var(--ink);
}
.form--light .form__status {
    color: var(--ink-soft);
}
.form--light .form__status.is-ok { color: #2a8c4f; }
.form--light .form__status.is-err { color: #c0392b; }

/* ════════════════════════════════════════════════════════════
   FAQs — minimal
   ════════════════════════════════════════════════════════════ */
.contact-faqs {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: clamp(100px, 15vw, 180px) var(--gutter);
}
.contact-faqs__inner {
    max-width: var(--max);
    margin: 0 auto;
}
.contact-faqs__title {
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: clamp(48px, 7vw, 80px);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .contact-sla__inner { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
    .contact-channels__item { grid-template-columns: 180px 1fr; gap: clamp(20px, 3vw, 32px); }
}
@media (max-width: 768px) {
    .contact-hero__title { max-width: 100%; }
    .contact-channels__item { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Map embed ─────────────────────────────────────────────── */
.contact-map {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--bone, #f7f6f3);
}
.contact-map__title {
    font-family: var(--font-display, 'OCR A', monospace);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-align: center;
    margin: 0 0 32px;
}
.contact-map__embed {
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 0 24px;
}
.contact-map__embed iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 1px solid var(--line, #eaeaea);
    background: var(--paper, #fff);
}
.contact-map__addr {
    text-align: center;
    font-size: 14px;
    color: var(--ink-soft, #787774);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}
.contact-map__addr i { margin-right: 6px; color: var(--ink, #111); }
.contact-map__addr a { color: var(--ink, #111); border-bottom: 1px solid var(--ink, #111); }
@media (max-width: 640px) {
    .contact-map__embed iframe { height: 300px; }
}
