/* ── CONTACT LAYOUT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; min-height: 70vh; }
.contact-left { background: var(--ink); padding: 72px 56px; display: flex; flex-direction: column; }
.contact-left h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.contact-left > p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 48px; max-width: 360px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; background: rgba(242,190,0,.15); border: 1px solid rgba(242,190,0,.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-body h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.contact-detail-body p, .contact-detail-body a { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; text-decoration: none; transition: color .2s; }
.contact-detail-body a:hover { color: var(--yellow); }
.contact-socials { margin-top: auto; padding-top: 48px; display: flex; gap: 10px; }
.cs { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: rgba(255,255,255,.4); cursor: pointer; transition: all .2s; }
.cs:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── CONTACT FORM ── */
.contact-right { background: var(--white); padding: 72px 56px; }
.contact-right h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.contact-right > p { font-size: 13px; color: var(--slate); margin-bottom: 36px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.cf-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--slate); }
.cf-in { width: 100%; border: 1.5px solid var(--rule); border-radius: 8px; padding: 12px 14px; font-size: 13px; color: var(--ink); transition: border-color .2s; background: transparent; }
.cf-in::placeholder { color: #ccc; }
.cf-in:focus { border-color: var(--yellow); outline: none; }
.cf-sel { appearance: none; cursor: pointer; }
.cf-ta { resize: vertical; min-height: 120px; }
.cf-submit { width: 100%; background: var(--yellow); color: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 15px; border-radius: 8px; border: none; cursor: pointer; transition: background .2s; margin-top: 8px; }
.cf-submit:hover { background: var(--gold-l); }
.cf-note { font-size: 11px; color: var(--slate); text-align: center; margin-top: 12px; }

/* ── FAQ ── */
.faq { background: var(--bg); padding: 80px 40px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq h2 { font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.faq > .faq-inner > p { font-size: 14px; color: var(--slate); margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; font-weight: 600; color: var(--ink); transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-q-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; transition: background .2s, transform .3s; }
.faq-item.open .faq-q-icon { background: var(--yellow); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 14px; color: var(--ink-mid); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── MAP PLACEHOLDER ── */
.map-band { height: 320px; background: #e8eaec; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.map-band iframe { width: 100%; height: 100%; border: 0; }
.map-overlay { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: #fff; border-radius: 12px; padding: 14px 24px; display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 24px rgba(0,0,0,.15); white-space: nowrap; }
.map-pin { font-size: 22px; }
.map-addr { font-size: 13px; font-weight: 600; color: var(--ink); }
.map-addr span { font-weight: 400; color: var(--slate); }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 48px 24px; }
  .cf-row { grid-template-columns: 1fr; }
  .faq { padding: 52px 20px; }
  .map-overlay { white-space: normal; text-align: center; flex-direction: column; gap: 6px; padding: 12px 16px; }
}
@media (max-width: 580px) {
  .contact-left, .contact-right { padding: 36px 20px; }
  .contact-socials { padding-top: 32px; }
  .map-band { height: 260px; }
  .map-overlay { bottom: 12px; left: 12px; right: 12px; transform: none; max-width: 100%; }
  .faq-q { font-size: 14px; padding: 16px 0; }
  .faq { padding: 40px 16px; }
}
@media (max-width: 420px) {
  .contact-left, .contact-right { padding: 28px 16px; }
  .contact-left h2, .contact-right h3 { font-size: 22px; }
}
