/* =====================================================
   CONTACT FANORATE — v2 (minimal, conversion-focused)
   Sits on top of tokens.css + article.css.
   All new classes are prefixed .cv2- to avoid leaking
   into other pages.
   ===================================================== */

/* ---------- HERO: oversized headline, form is the focal point ---------- */
.cv2-hero {
  padding: 48px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(440px, 6fr);
  gap: 64px;
  align-items: start;
}

.cv2-hero__pitch {
  position: sticky;
  top: 96px;
  padding-top: 4px;
}

.cv2-hero__title {
  font: 400 clamp(44px, 6vw, 76px)/1.02 var(--font-serif);
  color: var(--fan-blue);
  letter-spacing: -0.015em;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.cv2-hero__title em {
  font-style: italic;
  color: var(--fan-red);
}

.cv2-hero__deck {
  font: 400 19px/1.5 var(--font-sans);
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 38ch;
  text-wrap: pretty;
}

/* Single trust strip — replaces the old 3 bullet rows + 3 stat tiles */
.cv2-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  padding: 0;
  font: 500 13px/1.4 var(--font-sans);
  color: var(--fg-2);
}
/* When trust strip follows the inline office block, drop its top border
   so we don't double up with the office's own bottom bookend. */
.cv2-office--inline + .cv2-trust {
  border-top: 0;
  padding-top: 0;
}
.cv2-trust__item {
  display: inline-flex; align-items: center; gap: 8px;
}
.cv2-trust__item svg {
  width: 14px; height: 14px; color: var(--fan-red);
  flex: none;
}
.cv2-trust__item strong {
  color: var(--fan-blue);
  font-weight: 700;
}

/* ---------- FORM (refined, lighter) ---------- */
.cv2-form {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.cv2-form__head {
  background: var(--fan-blue);
  color: white;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  border-bottom: 3px solid var(--fan-red);
}
.cv2-form__head h2 {
  font: 700 16px/1.2 var(--font-sans);
  color: white;
  margin: 0;
  letter-spacing: 0;
  display: inline-flex; align-items: center; gap: 10px;
}
.cv2-form__head h2 svg { color: var(--fan-red); }
.cv2-form__head .cv2-tag {
  font: 700 10px/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.cv2-form__body {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.cv2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cv2-field { display: flex; flex-direction: column; gap: 7px; }
.cv2-field--full { grid-column: 1 / -1; }
.cv2-field label {
  font: 600 12px/1 var(--font-sans);
  color: var(--fan-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cv2-field input,
.cv2-field select,
.cv2-field textarea {
  font: 400 15px/1.4 var(--font-sans);
  color: var(--fg-1);
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-2);
  padding: 13px 14px;
  width: 100%;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.cv2-field input::placeholder,
.cv2-field textarea::placeholder { color: var(--neutral-400); }
.cv2-field input:focus,
.cv2-field select:focus,
.cv2-field textarea:focus {
  border-color: var(--fan-blue);
  box-shadow: 0 0 0 3px rgba(10,34,64,0.10);
}
.cv2-field textarea { min-height: 140px; resize: vertical; }
.cv2-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2240' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}

.cv2-submit {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}
.cv2-submit button {
  background: var(--fan-red);
  color: white;
  border: 0;
  font: 700 13px/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius-2);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.cv2-submit button:hover { background: var(--fan-red-deep); }
.cv2-submit button:active { transform: scale(0.985); }
.cv2-submit p {
  font: 400 12px/1.5 var(--font-sans);
  color: var(--fg-3);
  margin: 0;
  max-width: 280px;
}
.cv2-submit p a { color: var(--fan-blue); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- QUICK CONTACT (2 minimal tiles) ---------- */
.cv2-routes {
  padding: 64px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cv2-route {
  display: block;
  padding: 28px 28px;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-3);
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.cv2-route:hover {
  border-color: var(--fan-blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.cv2-route__tag {
  font: 700 11px/1 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fan-red);
  margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.cv2-route__tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--fan-red);
}
.cv2-route__title {
  font: 700 18px/1.3 var(--font-sans);
  color: var(--fan-blue);
  margin: 0 0 6px;
}
.cv2-route__email {
  font: 600 15px/1.4 var(--font-sans);
  color: var(--fan-blue);
  margin: 0 0 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-2);
  display: inline-block;
}
.cv2-route:hover .cv2-route__email { text-decoration-color: var(--fan-red); color: var(--fan-red); }
.cv2-route__meta {
  font: 500 12px/1 var(--font-sans);
  color: var(--fg-3);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 6px;
}
.cv2-route__meta strong { color: var(--fan-blue); font-weight: 700; }
.cv2-route__meta::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--semantic-success);
}

/* ---------- OFFICE + SOCIAL STRIP — one quiet row ---------- */
.cv2-office {
  margin-top: 8px;
  padding: 22px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-3);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Inline variant — sits inside the hero pitch column, under the deck.
   Quieter: no card chrome, just bookend rules. */
.cv2-office.cv2-office--inline {
  margin: 0 0 22px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  border-radius: 0;
  gap: 16px;
}
.cv2-office--inline .cv2-office__addr {
  font-size: 13.5px;
  flex: 1 1 280px;
}
.cv2-office--inline .cv2-office__addr svg { width: 16px; height: 16px; }
.cv2-office--inline .cv2-office__addr small { font-size: 11.5px; margin-top: 3px; }
.cv2-office--inline .cv2-social { gap: 6px; }
.cv2-office--inline .cv2-social a {
  width: 32px; height: 32px;
  background: transparent;
  border-color: var(--border-1);
}
.cv2-office--inline .cv2-social a:hover {
  background: white;
}
.cv2-office--inline .cv2-social a svg { width: 14px; height: 14px; }
.cv2-office__addr {
  display: flex; align-items: center; gap: 12px;
  font: 500 14px/1.4 var(--font-sans);
  color: var(--fg-1);
}
.cv2-office__addr svg {
  width: 18px; height: 18px; color: var(--fan-red); flex: none;
}
.cv2-office__addr small {
  display: block;
  font: 400 12px/1.3 var(--font-sans);
  color: var(--fg-3);
  margin-top: 2px;
}
.cv2-social {
  display: flex; gap: 8px; align-items: center;
}
.cv2-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fan-blue);
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-2);
  transition: all var(--dur-fast) var(--ease-out);
}
.cv2-social a:hover { color: var(--fan-red); border-color: var(--fan-red); }
.cv2-social a svg { width: 16px; height: 16px; }

/* ---------- FAQ (replaces deny-list) ---------- */
.cv2-faq {
  padding: 64px 0 24px;
}
.cv2-faq__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.cv2-faq__head h2 {
  font: 700 clamp(24px, 2.6vw, 32px)/1.15 var(--font-sans);
  color: var(--fan-blue);
  letter-spacing: -0.01em;
  margin: 6px 0 0;
}
.cv2-faq__head p {
  font: 400 14px/1.5 var(--font-sans);
  color: var(--fg-2);
  margin: 0;
  max-width: 38ch;
}
.cv2-faq__list {
  border-top: 1px solid var(--border-1);
}
.cv2-faq__item {
  border-bottom: 1px solid var(--border-1);
}
.cv2-faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font: 600 17px/1.35 var(--font-sans);
  color: var(--fan-blue);
  transition: color var(--dur-fast) var(--ease-out);
}
.cv2-faq__item > summary:hover { color: var(--fan-red); }
.cv2-faq__item > summary::-webkit-details-marker { display: none; }
.cv2-faq__item > summary::after {
  content: "";
  width: 22px; height: 22px; flex: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2240' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.cv2-faq__item[open] > summary::after { transform: rotate(45deg); }
.cv2-faq__answer {
  padding: 0 4px 24px;
  font: 400 15px/1.6 var(--font-sans);
  color: var(--fg-2);
  max-width: 60ch;
}
.cv2-faq__answer a { color: var(--fan-blue); text-decoration: underline; text-underline-offset: 2px; }
.cv2-faq__answer a:hover { color: var(--fan-red); }

/* ---------- Section spacing helpers ---------- */
.cv2-section { padding-top: 80px; }
.cv2-section:first-of-type { padding-top: 24px; }

/* ---------- Eyebrow used in hero ---------- */
.cv2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 12px/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fan-red);
}
.cv2-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--fan-red);
  box-shadow: 0 0 0 4px rgba(229,37,61,0.18);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .cv2-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 48px;
  }
  .cv2-hero__pitch { position: static; }
  .cv2-routes { grid-template-columns: 1fr; padding-top: 48px; }
  .cv2-office { padding: 18px 20px; }
}

@media (max-width: 600px) {
  .cv2-row { grid-template-columns: 1fr; }
  .cv2-form__body { padding: 22px; }
  .cv2-form__head { padding: 16px 22px; }
  .cv2-submit { flex-direction: column; align-items: stretch; }
  .cv2-submit button { width: 100%; justify-content: center; }
  .cv2-submit p { max-width: none; text-align: center; }
  .cv2-route { padding: 22px; }
  .cv2-office {
    flex-direction: column; align-items: flex-start; gap: 14px;
  }
  .cv2-hero__title { font-size: 40px; }
  .cv2-faq__item > summary { font-size: 16px; padding: 18px 4px; }
}
