/* ═══════════════════════════════════════════════════
   CONTACT PAGE — v8
   Layout:
   · Hero: 2-col grid (left: title+meme, facts | right: form)
   · Title + meme: side-by-side in left col
   · 3 brief bars: full-width horizontal above marquee
   ═══════════════════════════════════════════════════ */

/* ── HERO GRID ── */
.ct-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: calc(var(--navh) + 80px) var(--pad) 80px;
  background: transparent;
  align-items: start;
  transition: background 0.45s;
}

/* Left column */
.cth-left { display: flex; flex-direction: column; gap: 0; }

/* ── TITLE — big, full width ── */
.ct-title {
  font-family: var(--fh);
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0;
  transform: translateY(36px);
  animation: ctUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
  transition: color 0.45s;
  margin-bottom: 48px;
}

/* ── FACTS ── */
.ct-facts { margin-bottom: 0; }
.ctf-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.45s;
}
.ctf-row:last-child { border-bottom: none; }
.ctf-l {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg3); min-width: 120px; padding-top: 3px;
  transition: color 0.45s;
}
.ctf-v {
  font-size: 14px; font-weight: 500;
  line-height: 1.5; color: var(--fg);
  transition: color 0.45s;
}
.ctf-v a { border-bottom: 1px solid var(--line); transition: border-color 0.2s, color 0.2s; }
.ctf-v a:hover { color: var(--blue); border-color: var(--blue); }

/* ── FORM — right column ── */
.ct-form { display: flex; flex-direction: column; gap: 28px; padding-top: 0; }
.cf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg3); transition: color 0.45s;
}
.cf-field input, .cf-field textarea {
  font-family: var(--fb); font-size: 15px; font-weight: 400; color: var(--fg);
  background: transparent; border: none; border-bottom: 1.5px solid var(--line);
  padding: 10px 0; outline: none;
  transition: border-color 0.25s, color 0.45s;
  resize: none; -webkit-appearance: none;
}
.cf-field input:focus, .cf-field textarea:focus { border-bottom-color: var(--blue); }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--line2); font-weight: 300; }

/* Chips */
.cf-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { cursor: none; }
.chip input { display: none; }
.chip span {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  color: var(--fg3);
  transition: all 0.2s;
  cursor: none; line-height: 1;
}
.chip input:checked + span, .chip:hover span {
  background: var(--fg); color: var(--bg); border-color: var(--fg);
}

/* Radio buttons — proper circles */
.cf-radios { display: flex; flex-direction: column; gap: 6px; }
.cr { display: flex; align-items: center; gap: 12px; cursor: none; padding: 4px 0; }
.cr input[type="radio"] {
  width: 20px; height: 20px;
  border: 2px solid var(--line);
  border-radius: 50%;
  appearance: none; -webkit-appearance: none;
  flex-shrink: 0; position: relative;
  transition: border-color 0.2s; cursor: none;
  background: transparent;
}
.cr input[type="radio"]:checked { border-color: var(--pink); }
.cr input[type="radio"]:checked::after {
  content: ''; position: absolute;
  width: 10px; height: 10px;
  background: var(--pink); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cr span { font-size: 14px; font-weight: 400; color: var(--fg); transition: color 0.45s; }

/* Submit */
.cf-submit {
  font-family: var(--fb); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--fg); color: var(--bg);
  border: 2px solid var(--fg); padding: 16px 32px; border-radius: 2px;
  align-self: flex-start; position: relative;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-b);
  text-align: center; cursor: none;
}
.cf-submit:hover { background: transparent; color: var(--fg); transform: translateY(-2px); }
.cf-note { font-size: 12px; color: var(--fg3); transition: color 0.45s; }

/* ═══════════════════════════════════════════════════
   3 BRIEF BARS — full width, horizontal, above marquee
   ═══════════════════════════════════════════════════ */
.ct-brief-bars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* Stretch edge to edge — no padding */
  width: 100%;
}

.ct-brief-bar {
  background: var(--bb-bg, #2a2420);
  color: var(--bb-fg, #f0eeea);
  padding: 40px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: opacity 0.25s;
}
.ct-brief-bar:last-child { border-right: none; }
.ct-brief-bar:hover { opacity: 0.9; }

.cbb-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 10px;
}
.cbb-body {
  font-family: var(--fh);
  font-size: clamp(22px, 2.8vw, 40px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
}
.cbb-foot {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.6;
}

/* Unused old classes — kept for backwards compat */
.ct-meme-group, .ct-meme, .ct-brief-cards, .ct-brief-card,
.ct-meme-section { display: none; }

/* ── ANIMATIONS ── */
@keyframes ctUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .ct-hero { grid-template-columns: 1fr; }
  .ct-title-row { grid-template-columns: 1fr 1fr; }
  .cf-row2 { grid-template-columns: 1fr; }
  .ct-brief-bars { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ct-title-row { grid-template-columns: 1fr; }
}
