
/* ============================================================
 * v2.7 — Contact section restructured (left: intro+relationship,
 * right: premium form with Turnstile)
 * ============================================================ */

/* Layout */
.hsn-contact-v2{padding:5rem 0}
.hsn-contact-v2__grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:3rem;
  align-items:start;
}
@media(max-width:880px){.hsn-contact-v2__grid{grid-template-columns:1fr;gap:2rem}}

/* Left intro side */
.hsn-contact-v2__intro{padding:.25rem 0}
.hsn-contact-v2__intro .hsn-section-label{
  color:var(--hsn-gold);font-weight:700;letter-spacing:2.5px;
  font-size:.72rem;margin-bottom:1rem;display:block;text-transform:uppercase;
}
.hsn-contact-v2__intro .hsn-section-title{
  font-family:var(--hsn-serif,'Playfair Display',serif);
  font-size:clamp(1.85rem,3.5vw,2.6rem);
  line-height:1.15;letter-spacing:-.015em;
  color:var(--hsn-text);margin-bottom:1.25rem;font-weight:700;
}
.hsn-contact-v2__intro .hsn-section-copy{
  color:var(--hsn-text-soft);font-size:1.02rem;line-height:1.65;margin-bottom:1.5rem;
}
.hsn-contact-v2__relationship{
  background:linear-gradient(135deg,rgba(201,169,97,.07),rgba(201,169,97,.02));
  border-left:3px solid var(--hsn-gold);
  padding:1.25rem 1.5rem;
  color:var(--hsn-text);
  font-size:.97rem;
  line-height:1.7;
  border-radius:0 12px 12px 0;
  font-style:italic;
  margin-bottom:1.75rem;
}
[data-theme="dark"] .hsn-contact-v2__relationship{
  background:linear-gradient(135deg,rgba(201,169,97,.10),rgba(201,169,97,.03));
  color:var(--hsn-text);
}
.hsn-contact-v2__actions{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;margin-top:1rem}
.hsn-btn-link{color:var(--hsn-gold) !important;font-weight:700;background:transparent !important;padding:.6rem .2rem;text-decoration:none;letter-spacing:.4px;font-size:.85rem}
.hsn-btn-link:hover{color:var(--hsn-gold-soft) !important}

/* Right card (form) */
.hsn-contact-v2__card{
  background:linear-gradient(180deg,var(--hsn-surface) 0%,var(--hsn-surface-soft,#fbf7ee) 100%);
  border:1px solid var(--hsn-border);
  border-radius:20px;
  padding:2rem;
  box-shadow:0 30px 80px -30px rgba(11,27,58,.18),0 0 0 1px rgba(201,169,97,.08);
  position:relative;
  overflow:hidden;
}
.hsn-contact-v2__card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--hsn-gold),transparent);
}
[data-theme="dark"] .hsn-contact-v2__card{
  background:linear-gradient(180deg,#0f1830 0%,#0a1024 100%);
  border-color:#1f2a4a;
  box-shadow:0 30px 80px -30px rgba(0,0,0,.6),0 0 0 1px rgba(201,169,97,.12);
}

/* Form */
.hsn-cform__head{margin-bottom:1.5rem}
.hsn-cform__head h3{
  font-family:var(--hsn-serif,'Playfair Display',serif);
  font-size:1.45rem;
  color:var(--hsn-text);
  margin:0 0 .35rem;
  font-weight:700;letter-spacing:-.01em;
}
.hsn-cform__head p{
  color:var(--hsn-muted);
  font-size:.85rem;
  margin:0;line-height:1.5;
}
.hsn-cform__field{display:flex;flex-direction:column;gap:.4rem;margin-bottom:.95rem}
.hsn-cform__row{display:grid;grid-template-columns:1fr 1fr;gap:.85rem;margin-bottom:.95rem}
.hsn-cform__row .hsn-cform__field{margin-bottom:0}
@media(max-width:600px){.hsn-cform__row{grid-template-columns:1fr}}
.hsn-cform__field label{
  font-size:.7rem;font-weight:700;letter-spacing:1.5px;
  text-transform:uppercase;color:var(--hsn-muted);
}
.hsn-cform__field input,
.hsn-cform__field textarea{
  background:rgba(255,255,255,.7);
  border:1.5px solid var(--hsn-border);
  border-radius:10px;
  padding:.75rem .9rem;
  font-family:inherit;
  font-size:.92rem;
  color:var(--hsn-text);
  transition:border-color .2s,background .2s,box-shadow .2s;
  width:100%;
  box-sizing:border-box;
}
[data-theme="dark"] .hsn-cform__field input,
[data-theme="dark"] .hsn-cform__field textarea{
  background:rgba(255,255,255,.04);
  border-color:#1f2a4a;
  color:var(--hsn-text);
}
.hsn-cform__field input::placeholder,
.hsn-cform__field textarea::placeholder{color:var(--hsn-muted);opacity:.7}
.hsn-cform__field input:focus,
.hsn-cform__field textarea:focus{
  outline:none;
  border-color:var(--hsn-gold);
  background:#fff;
  box-shadow:0 0 0 4px rgba(201,169,97,.12);
}
[data-theme="dark"] .hsn-cform__field input:focus,
[data-theme="dark"] .hsn-cform__field textarea:focus{
  background:rgba(255,255,255,.06);
}
.hsn-cform__field textarea{min-height:110px;resize:vertical;line-height:1.5}

/* Honeypot */
.hsn-cform input[name="website"]{position:absolute;left:-9999px;width:1px;height:1px;opacity:0}

/* Turnstile container */
.hsn-cform__turnstile{margin:1rem 0 1.25rem;min-height:65px;display:flex;justify-content:center}
.hsn-cform__turnstile .cf-turnstile{width:100%}

/* Footer (submit + msg) */
.hsn-cform__footer{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  padding-top:1rem;border-top:1px solid var(--hsn-border);
}
.hsn-cform__submit{
  display:inline-flex;align-items:center;gap:.55rem;
  background:linear-gradient(135deg,var(--hsn-gold) 0%,#b8985a 100%);
  color:#0B1B3A !important;
  border:none;
  padding:.85rem 1.6rem;
  font-size:.78rem;font-weight:700;
  letter-spacing:1.3px;text-transform:uppercase;
  border-radius:10px;cursor:pointer;
  transition:transform .2s,box-shadow .2s,filter .2s;
  box-shadow:0 12px 28px -10px rgba(201,169,97,.5),0 1px 0 rgba(255,255,255,.4) inset;
  font-family:inherit;
}
.hsn-cform__submit:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
  box-shadow:0 18px 36px -10px rgba(201,169,97,.6),0 1px 0 rgba(255,255,255,.5) inset;
}
.hsn-cform__submit:active{transform:translateY(0)}
.hsn-cform__submit:disabled{opacity:.6;cursor:wait;transform:none;filter:grayscale(.3)}
.hsn-cform__submit svg{flex-shrink:0;transition:transform .2s}
.hsn-cform__submit:hover svg{transform:translateX(3px)}
.hsn-cform__msg{font-size:.8rem;font-weight:500;color:var(--hsn-muted);flex:1;text-align:right;min-width:0}
.hsn-cform__msg--ok{color:#10b981;font-weight:600}
.hsn-cform__msg--err{color:#ef4444;font-weight:600}

/* Hide old hsn-contact structure where this v2 block is in use */
.hsn-contact-v2 ~ .hsn-contact,
.hsn-contact-v2 .hsn-contact{display:none}
