/* Contact — page-scoped styles (ct- prefix) */

.ct-hero {
  padding: 96px 24px 48px;
}
.ct-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ct-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #f5f1ea;
}
.ct-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #c9c2b6;
  max-width: 620px;
  margin: 0 auto;
}

.ct-form-section {
  padding: 16px 24px 96px;
}
.ct-form-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-error-list {
  list-style: none;
  margin: 0;
  padding: 16px 20px;
  border: 1px solid #6b3b3b;
  background: rgba(107, 59, 59, 0.18);
  color: #f1d0d0;
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-error::before {
  content: '— ';
  color: #d99898;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9286;
}

.ct-input,
.ct-textarea {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #f5f1ea;
  background: #1c1a1a;
  border: 1px solid #2f2c28;
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}
.ct-input:focus,
.ct-textarea:focus {
  outline: none;
  border-color: #c9c2b6;
  background: #221f1d;
}
.ct-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.ct-field-hint {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: #8a8478;
  margin: 4px 0 0;
  line-height: 1.5;
}

.ct-submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* Thanks page */
.ct-thanks {
  padding: 120px 24px 96px;
}
.ct-thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ct-thanks-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #c9c2b6;
  max-width: 560px;
  margin: 0 auto 32px;
}
.ct-thanks-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ct-thanks-primary {
  background: var(--amber, #FF7A3D);
  color: #1c1a1a;
  padding: 22px 36px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  min-width: 280px;
  justify-content: center;
}
.ct-thanks-primary:hover {
  background: #ff8e58;
  transform: translateY(-1px);
}
.ct-thanks-secondary {
  background: transparent;
  border: 1px solid #c9c2b6;
  color: #f5f1ea;
  padding: 14px 22px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.ct-thanks-secondary:hover {
  background: #c9c2b6;
  color: #1c1a1a;
}
.ct-thanks-meta {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  color: #8a8478;
  margin: 28px auto 0;
  max-width: 520px;
  text-align: center;
  line-height: 1.5;
}
.ct-thanks-meta strong {
  color: #c9c2b6;
  font-weight: 500;
}

/* Lead-tracker inquiry row — amber accent to signal the funnel entry point. */
.lt-row--inquiry {
  border-left-color: var(--amber, #FF7A3D);
  border-left-width: 3px;
}
.lt-row--inquiry td {
  background: rgba(255, 122, 61, 0.04);
}

@media (max-width: 600px) {
  .ct-hero { padding-top: 64px; }
  .ct-thanks-links { flex-direction: column; align-items: stretch; }
  .ct-thanks-primary { min-width: 0; width: 100%; }
}
