/* Contact form footer — standalone styles for v2 portfolio pages */
.cf-section {
  background: #0d0d0d;
  padding: 5rem 10vw 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cf-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cf-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  font-family: "gotham", sans-serif;
  font-weight: 900;
}
.cf-title {
  font-family: "gotham", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.cf-sub {
  font-family: "gotham", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
#cf {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cf-group label {
  font-family: "gotham", sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.cf-group input,
.cf-group textarea {
  background: rgba(30,30,30,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 0.875rem 1.125rem;
  color: #fff;
  font-family: "gotham", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  transition: border-color 300ms ease;
  resize: none;
  width: 100%;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: rgba(255,255,255,0.22);
}
.cf-group input:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: #faa425;
}
.cf-btn {
  align-self: flex-start;
  background: #faa425;
  color: #000;
  border: none;
  border-radius: 40px;
  padding: 0.875rem 2.5rem;
  font-family: "gotham", sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 300ms ease, opacity 300ms ease;
}
.cf-btn:hover    { background: #ffb039; }
.cf-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cf-ok  { font-size: 0.9rem; color: #6fcf97; font-family: "gotham", sans-serif; }
.cf-err { font-size: 0.9rem; color: #f95353; font-family: "gotham", sans-serif; }

.cf-footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 10vw;
  background: #0d0d0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cf-footer-bar p,
.cf-footer-bar a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-family: "gotham", sans-serif;
  font-weight: 300;
  text-decoration: none;
}
.cf-footer-bar a:hover { color: #fff; }
.cf-footer-links { display: flex; gap: 1.5rem; }

/* override global h1/h2/h3/p from v2 page CSS */
.cf-section h1,
.cf-section h2,
.cf-section h3,
.cf-section p {
  color: #fff;
  letter-spacing: normal;
  font-size: revert;
  text-align: left;
  margin-top: 0;
  font-weight: normal;
}
.cf-title {
  font-family: "gotham", sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  color: #fff !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: normal !important;
}
.cf-sub {
  color: rgba(255,255,255,0.55) !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  margin-bottom: 2.5rem !important;
}
.cf-label {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
}

@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
  .cf-btn { width: 100%; text-align: center; }
}
