/* ============================================================
   PAGE-CONTACT.CSS — contact.html only
   ============================================================ */

:root {
  --c-accent: var(--c-textile);
}

body {
  font-size: 13px;
  line-height: 1.75;
}

/* ─── NAV — page-specific extra ──────────────────────────────
   Nav runs in the page's theme color (AI Visual Art red) per the
   approved mockup, not the neutral --c-text. */
.comp-nav__logo,
.comp-nav__links a,
.comp-nav__lang {
  color: var(--c-ai-visual-art);
}
:root {
  --c-dot: var(--c-ai-visual-art);
}

/* ─── PAGE ───────────────────────────────────────────────── */
.page-contact { padding-top: var(--nav-h); }

/* ─── TOP BLOCK · 3 COLUMNS ──────────────────────────────── */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 40px;
  padding: 68px var(--px) 56px;
}

.contact-col { display: flex; flex-direction: column; }
.contact-col--center { align-items: flex-start; }
.contact-col--right  { align-items: flex-end; text-align: right; }

.contact-heading { margin-bottom: 10px; }

.contact-group { margin-bottom: 10px; }
.contact-group:last-child { margin-bottom: 0; }

.contact-col--right .body-text { margin-top: 14px; }

.label-mono {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.body-text {
  font-family: var(--f-body);
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c-text);
}

.plain-link { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.plain-link:hover { border-color: currentColor; }

/* ─── AVATAR BOX ─────────────────────────────────────────── */
.contact-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--c-border);
  border-radius: 3px;
  background: rgba(32,32,32,0.035);
  overflow: hidden;
}

.contact-avatar img,
.contact-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Exposure lift, not a blend mode — mix-blend-mode is for fusing with
   the page background (confirmed: screen/soft-light just wash this
   out to near-invisible against the cream --c-bg), not for correcting
   a video that reads dark. Starting value per initial ask; nudge
   toward brightness(1.3-1.45) if it still reads dark on a real
   screen, back toward 1 if this already looks blown out on one. */
.contact-video {
  filter: brightness(1.15) contrast(1.05);
}

.contact-video-mute {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(20,20,20,0.45);
  color: #F5F2EB;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.contact-video-mute:hover { background: rgba(20,20,20,0.65); }

/* ─── BACK LINK ──────────────────────────────────────────── */
.back-link {
  font-family: var(--f-mono);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-ai-visual-art);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  width: fit-content;
  transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.5; }

/* ─── OUTLINE TITLE ──────────────────────────────────────── */
.contact-outline {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  width: 150%;
  text-align: left;
  font-size: clamp(100px, 4vw, 120px);
  margin-bottom: 24px;
  -webkit-text-fill-color: var(--c-accent);
  color: var(--c-accent);
}
@supports (-webkit-text-stroke: 1px black) {
  .contact-outline { color: transparent; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────
   The 3-column grid (labels / video / back-link+clock) never had a
   mobile override — below 760px it just kept squeezing 3 columns
   into a narrow screen instead of stacking. */
@media (max-width: 760px) {
  .contact-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px var(--px) 40px;
  }

  .contact-col--right {
    align-items: flex-start;
    text-align: left;
  }
  .contact-col--right .body-text { margin-top: 8px; }

  /* width:150% + a 100-120px floor is a deliberate desktop "bleed"
     effect for the outline word — on a narrow viewport that same
     floor forces horizontal overflow no matter how it's clamped, so
     mobile switches to a viewport-relative size that always fits
     instead of a fixed floor. */
  .contact-outline {
    width: 100%;
    font-size: 22vw;
    margin-bottom: 16px;
  }
}
