/* ==========================================================================
   Contact page — scoped to body.contact-temp (loaded only on the template).
   Matches the supplied desktop + mobile designs.
   ========================================================================== */

.contact-temp .contact-page {
  background: var(--bg-dark, #0a0a0a);
  color: #fff;
}

/* ---------------- HERO ---------------- */
.contact-temp .contact-hero {
    padding: 197px 0 40px;
}
.contact-temp .contact-eyebrow {
  color: var(--text-grey, #AFAFAF);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}
.contact-temp .contact-title {
  font-family: var(--font-display), sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 auto 1.5rem;
}
.contact-temp .contact-title .muted {
  color: #7d7d7d;
  display: inline;
}
.contact-temp .contact-desc {
  color: var(--text-grey, #AFAFAF);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ---------------- BODY ---------------- */
.contact-temp .contact-body {
  padding: 40px 0 100px;
}

/* Left column ------------------------------------------------ */
.contact-temp .contact-ideas {
  font-family: var(--font-display), sans-serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 2.4rem;
}
.contact-temp .contact-ideas em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(180deg, #FFFFFF 0%, #6f6f6f 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-temp .contact-info {
  margin-bottom: 2.2rem;
}
.contact-temp .info-block {
  margin-bottom: 1.6rem;
}
.contact-temp .info-label {
  font-family: var(--font-display), sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}
.contact-temp .info-value,
.contact-temp .info-value a {
  color: var(--text-grey, #AFAFAF);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
}
.contact-temp .info-value a:hover {
  color: var(--yellow, #FEC300);
}

/* Photo + meeting card */
.contact-temp .contact-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 150px;
}
.contact-temp .contact-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-temp .contact-card {
  background: linear-gradient(180deg, #4a3b06 0%, #2c2402 100%);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-temp .contact-card-logo {
  display: inline-block;
  max-width: 110px;
  margin-bottom: 1rem;
}
.contact-temp .contact-card-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
.contact-temp .contact-card-heading {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.contact-temp .contact-card-text {
  color: #d8cfa6;
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 1.2rem;
}
.contact-temp .contact-card-btn {
  display: block;
  text-align: center;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-temp .contact-card-btn:hover {
  background: var(--yellow, #FEC300);
}

/* Social */
.contact-temp .contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.contact-temp .contact-social-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1c1c1c;
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-temp .contact-social-btn:hover {
  background: var(--yellow, #FEC300);
  color: #111;
}

/* Right column: form ---------------------------------------- */
.contact-temp .contact-form-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 34px;
}

/* Contact Form 7 fields, themed to match the design */
.contact-temp .wpcf7-form p {
  margin: 0 0 18px;
}
.contact-temp .wpcf7-form-control-wrap {
  display: block;
}
.contact-temp .wpcf7 input[type="text"],
.contact-temp .wpcf7 input[type="email"],
.contact-temp .wpcf7 input[type="tel"],
.contact-temp .wpcf7 input[type="url"],
.contact-temp .wpcf7 input[type="number"],
.contact-temp .wpcf7 textarea,
.contact-temp .wpcf7 select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-temp .wpcf7 input::placeholder,
.contact-temp .wpcf7 textarea::placeholder {
  color: #8a8a8a;
}
.contact-temp .wpcf7 input:focus,
.contact-temp .wpcf7 textarea:focus,
.contact-temp .wpcf7 select:focus {
  border-color: var(--yellow, #FEC300);
}
.contact-temp .wpcf7 textarea {
    max-height: 110px !important;
    resize: vertical;
}

/* Submit */
.contact-temp .wpcf7 input[type="submit"],
.contact-temp .wpcf7 .wpcf7-submit {
  width: 100%;
  background: var(--yellow, #FEC300);
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.contact-temp .wpcf7 input[type="submit"]:hover,
.contact-temp .wpcf7 .wpcf7-submit:hover {
  filter: brightness(1.05);
}

/* CF7 messages / spinner */
.contact-temp .wpcf7 .wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}
.contact-temp .wpcf7-response-output {
  border-radius: 10px;
  margin: 14px 0 0;
  padding: 12px 16px !important;
  font-size: 0.9rem;
}
.contact-temp .wpcf7-not-valid-tip {
  color: #ff8f8f;
  font-size: 0.8rem;
  margin-top: 6px;
}
.contact-temp .wpcf7 .wpcf7-not-valid {
  border-color: #ff6b6b !important;
}

.contact-temp .contact-form-empty {
  color: var(--text-grey, #AFAFAF);
  text-align: center;
  margin: 0;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991.98px) {
  .contact-temp .contact-hero { padding: 120px 0 20px; }
  .contact-temp .contact-title { max-width: 100%; }
  .contact-temp .contact-body { padding: 20px 0 70px; }
  .contact-temp .contact-form-col { order: 2; }
}

@media (max-width: 767.98px) {
  .contact-temp .contact-hero { text-align: center; padding: 100px 0 10px; }
  .contact-temp .contact-ideas { margin-bottom: 1.8rem; }
  .contact-temp .info-block { margin-bottom: 1.3rem; }
  .contact-temp .contact-form-card { padding: 22px; }
  .contact-temp .contact-photo { min-height: 200px; }
}