/* ================================
   Maple Focus — Contact page styles
   Only affects .contact/* and helpers
   ================================ */

/* Layout helpers */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Page hero (optional, if you use it) */
.page-hero{
  padding: clamp(24px, 6vw, 56px) 0 0;
}
.page-title{
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 .25em;
}
.page-subtitle{
  margin: 0 0 1.25rem;
  opacity: .85;
}

/* Contact area */
.contact{
  padding: clamp(28px, 6vw, 64px) 0;
}
.contact-inner{
  display: grid;
  grid-template-columns: 1.1fr 1fr;     /* info | form */
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

/* Left — info block */
.contact-info h2{
  margin: 0 0 .4em;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
}
.contact-info p{ margin: 0 0 1rem; max-width: 60ch; }

.contact-list{
  list-style: none;                     /* no bullets */
  padding: 0; margin: 0 0 1rem;
}
.contact-list li{ margin-bottom: .5rem; }
.contact-list a{ color: inherit; text-decoration: underline; }

/* Social links (simple pills) */
.contact-socials{
  display: flex; gap: 10px; margin: .75rem 0 1.25rem;
}
.contact-socials .social{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none; color: inherit;
}

/* Map */
.map-embed{
  margin-top: .75rem;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  background: rgba(255,255,255,.04);
}
.map-embed iframe{
  display: block; width: 100%; height: min(360px, 45vw);
}

/* Right — form */

.contact-form-wrap{
  
    background-color: rgba(0, 0, 0, 0.8);
      border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 3rem);
}

.contact-form-wrap h2{
  margin: 0 0 .6em;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
}



.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

/* Hide honeypot */
.contact-form .hp{ display: none !important; }

/* Fields */
.field{ display: grid; gap: 6px; }
.field.checkbox{ grid-column: 1 / -1; display: block; }

label{ font-weight: 600; font-size: .95rem; }
input, select, textarea{
  width: 100%;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
textarea{ min-height: 140px; resize: vertical; }

input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.6); }

input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 0 3px rgba(255,255,255,.12);
}

/* Make some inputs span full width */
#message, .field.checkbox, .contact-form .btn, .contact-form .form-note{
  grid-column: 1 / -1;
}

/* Button */
.btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease;
}
.btn:hover{ border-color: rgba(255,255,255,.42); }
.btn:active{ transform: translateY(1px); }

/* Note under the button */
.form-note{ margin: .5rem 0 0; opacity: .8; }

/* Responsive */
@media (max-width: 980px){
  .contact-inner{ grid-template-columns: 1fr; }
  .contact-form{ grid-template-columns: 1fr; }
  .map-embed iframe{ height: 300px; }
}
