/* ===================================================================
   FIND US / CONTACT PAGE
   =================================================================== */

.ct-eyebrow { font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }

/* ---- HERO ---- */
.ct-hero { position: relative; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; background: var(--near-black); }
.ct-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ct-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(13,26,38,0.5) 0%, rgba(13,26,38,0) 42%), linear-gradient(to right, rgba(13,26,38,0.9) 0%, rgba(13,26,38,0.62) 36%, rgba(13,26,38,0.28) 66%, rgba(13,26,38,0.05) 100%); }
.ct-hero .ct-eyebrow, .ct-hero h1, .ct-hero p { text-shadow: 0 2px 16px rgba(13,26,38,0.75); }
.ct-hero-inner { position: relative; z-index: 2; width: 100%; padding: 92px 0 72px; }
.ct-hero h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 4.6vw, 4.4rem); font-weight: 700; line-height: 1.06; color: var(--cream); max-width: 720px; }
.ct-hero h1 span { color: var(--gold); }
.ct-hero p { font-size: 1.05rem; line-height: 1.8; color: rgba(243,239,230,0.88); max-width: 580px; margin-top: 18px; }
.ct-hero-ctas { display: flex; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.ct-hero-gold-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gold); z-index: 3; }

/* ---- MAIN (details + form) ---- */
.ct-main { background: var(--near-black); padding: 96px 0; }
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.ct-panel { background: var(--navy); border: 1px solid rgba(201,169,110,0.22); border-radius: 22px; padding: 38px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.ct-panel h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--cream); line-height: 1.12; }
.ct-panel h2 span { color: var(--gold); }
.ct-panel > p { color: rgba(243,239,230,0.78); line-height: 1.7; margin-top: 4px; font-size: 0.98rem; }

/* info rows */
.ct-info-list { list-style: none; margin-top: 22px; }
.ct-info-row { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(201,169,110,0.15); }
.ct-info-row:last-child { border-bottom: none; }
.ct-info-icon { color: var(--gold); font-size: 1.15rem; width: 24px; flex-shrink: 0; text-align: center; }
.ct-info-row strong { display: block; color: var(--cream); font-size: 0.95rem; margin-bottom: 2px; }
.ct-info-row span, .ct-info-row a { color: rgba(243,239,230,0.72); font-size: 0.92rem; }
.ct-info-row a { transition: color 0.2s; }
.ct-info-row a:hover { color: var(--gold); }
.ct-map { width: 100%; height: 300px; border: 2px solid var(--gold); border-radius: 12px; margin-top: 26px; display: block; }

/* form */
.ct-field { margin-bottom: 18px; }
.ct-field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ct-field input, .ct-field select, .ct-field textarea {
  width: 100%; background: rgba(13,26,38,0.6); border: 1px solid rgba(201,169,110,0.3);
  border-radius: 10px; padding: 13px 16px; color: var(--cream);
  font-family: var(--font-sans); font-size: 0.98rem;
}
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.18);
}
.ct-field textarea { resize: vertical; min-height: 130px; }
.ct-field-error { color: #ff9b9b; font-size: 0.82rem; margin-top: 6px; }
.ct-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ct-success { background: #1f6b3b; color: var(--cream); border-radius: 12px; padding: 16px 20px; margin: 6px 0 22px; font-weight: 600; }
.ct-form-btn { margin-top: 6px; border: none; cursor: pointer; }
/* Thank-you panel — replaces the whole form after a successful send */
.ct-thanks { min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 26px 10px; animation: ct-thanks-in 0.45s ease both; }
.ct-thanks[hidden] { display: none; }
.ct-thanks-icon { width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 50%; background: #1f6b3b; color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 2rem; line-height: 1; }
.ct-thanks h3 { font-family: var(--font-serif); font-size: clamp(1.7rem, 2.6vw, 2.2rem); font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.ct-thanks p { color: rgba(243,239,230,0.8); line-height: 1.7; max-width: 380px; margin: 0 auto 26px; }
@keyframes ct-thanks-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; }
}
