/* =========================================================
   FULL PAGE BACKGROUND (flows across entire page)
========================================================= */

body{
  background:
    radial-gradient(1000px 560px at 10% 18%, rgba(16,24,40,.08), transparent 60%),
    radial-gradient(1000px 560px at 92% 12%, rgba(255,80,100,.12), transparent 60%),
    linear-gradient(#ffffff, #ffffff);
}


/* =========================================================
   HERO
========================================================= */

.contact-hero{
  padding: 60px 0 28px;
  background: transparent;
}

.contact-hero__title{
  margin: 0 0 10px;
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -1px;
  color: var(--ink);
}

.contact-hero__lead{
  margin: 0;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-hero__checks{
  display:flex;
  gap:22px;
  margin-top:20px;
  flex-wrap:wrap;
  font-weight:800;
  color:var(--ink-2);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact{
  padding: 30px 0 70px;
  background: transparent;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
}


/* =========================================================
   CARDS
========================================================= */

.contact-card{
  background: rgba(245,247,251,.92);
  border:1px solid rgba(231,235,243,.95);
  border-radius:20px;
  padding:28px;
  box-shadow:0 18px 40px rgba(11,18,32,.06);
  backdrop-filter: blur(6px);
}

.contact-card__title{
  font-size:14px;
  font-weight:950;
  letter-spacing:.6px;
  margin-bottom:18px;
  color:var(--ink-2);
}


/* =========================================================
   FORM FIELDS
========================================================= */

.field{
  display:block;
  margin-bottom:18px;
}

.field__label{
  display:block;
  font-weight:900;
  margin-bottom:6px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.4px;
  color:var(--ink-2);
}

.field__input{
  width:100%;
  background:#ffffff;
  border:1px solid rgba(215,221,235,.95);
  border-radius:14px;
  padding:12px 14px;
  font-weight:700;
  font-size:15px;
  outline:none;
  transition: border .15s ease, box-shadow .15s ease;
}

.field__input:focus{
  border-color:rgba(11,42,91,.35);
  box-shadow:0 0 0 4px rgba(11,42,91,.08);
}

.field__textarea{
  resize:vertical;
  min-height:120px;
}


/* =========================================================
   BUTTON ROW
========================================================= */

.contact-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}


/* =========================================================
   CONFIRMATION MESSAGE
========================================================= */

.contact-confirm{
  margin-top:16px;
  font-weight:800;
  font-size:14px;
  color:#0b5c2e; /* subtle success green */
}

.contact-disclaimer{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
}


/* =========================================================
   OFFICE INFO
========================================================= */

.contact-info p{
  margin:8px 0;
}

.contact-info a{
  color:var(--navy);
  font-weight:900;
  text-decoration:none;
}

.contact-info a:hover{
  text-decoration:underline;
}


/* =========================================================
   SKYLINE IMAGE
========================================================= */

.contact-skyline{
  margin-top:28px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(11,18,32,.10);
}

.contact-skyline img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  filter: saturate(.95) contrast(1.02);
}


/* =========================================================
   HONEYPOT
========================================================= */

.hp{
  position:absolute;
  left:-9999px;
  height:0;
  overflow:hidden;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1279px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .contact-hero__title{
    font-size:32px;
  }

  .contact-hero__checks{
    gap:14px;
  }

  .contact{
    padding: 24px 0 60px;
  }
}
