/* ===========================
   V2 OVERRIDES
   Loaded after styles.css. Only contains v2-specific tweaks.
   =========================== */

/* Schools / districts list — open by default in v2 (override speaking.html details toggle) */
.v2-districts-open .v2-states-grid {
  margin-top: var(--s-5);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
}

.v2-districts-open .v2-state h4 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
  font-family: var(--font-sans);
  font-weight: 600;
}

.v2-districts-open .v2-state ul { list-style: none; padding: 0; margin: 0; }

.v2-districts-open .v2-state li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: 1px dotted var(--linen);
}

/* Topic palette grid — used on speaking page */
.v2-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-6);
}

.v2-topic {
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--linen);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.v2-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,47,95,0.08);
}

.v2-topic h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 var(--s-2);
  color: var(--navy);
  line-height: 1.2;
}

.v2-topic p {
  margin: 0;
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.55;
}

/* Compact contact form — v2 */
.v2-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 560px;
}

.v2-contact-form .field { margin: 0; }

.v2-contact-form label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 6px;
  font-weight: 500;
}

.v2-contact-form input,
.v2-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 4px;
  transition: border-color 0.18s ease;
}

.v2-contact-form input:focus,
.v2-contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.v2-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Process grid override — consulting has 3 steps, not 4 */
.process { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
}
