/* L32 Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,200;0,9..144,300;0,9..144,400;1,9..144,200;1,9..144,300&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Mono:wght@300;400&display=swap');

body { font-family: 'DM Sans', 'Helvetica Neue', sans-serif; font-weight: 300; }
html { scroll-behavior: smooth; }

.ast-container, .site-content .ast-container { max-width: 100% !important; padding: 0 !important; }
.site-content > .ast-container { display: block; }
#page > .ast-container { padding: 0 !important; }
.ast-separate-container .ast-article-single, .ast-separate-container .site-content > .ast-container, .ast-plain-container .site-content > .ast-container { padding: 0 !important; }
.entry-content { margin: 0 !important; }
.site-main { padding: 0 !important; margin: 0 !important; }
.site-content { padding-top: 0 !important; }

.ast-small-footer, .site-below-footer-wrap, .ast-footer-copyright, .ast-scroll-top-icon { display: none !important; }

.elementor-section.elementor-section-boxed > .elementor-container { max-width: 100% !important; }
.e-con { --container-max-width: 100%; }

.elementor-location-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.site-content { padding-top: 68px !important; }









/* ═══ L32 FORM DESIGN ═══ */

/* Form wrapper */
.l32-form { display: flex; flex-direction: column; gap: 0; }

/* Labels */
.wpcf7 label,
.l32-form label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B6F47;
  margin-bottom: 8px;
  margin-top: 20px;
}
.l32-form label:first-child { margin-top: 0; }

/* Text inputs & textarea */
.wpcf7 input[type='text'],
.wpcf7 input[type='email'],
.wpcf7 select,
.wpcf7 textarea,
.l32-form input[type='text'],
.l32-form input[type='email'],
.l32-form select,
.l32-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #E5E2DC;
  border-radius: 3px;
  background: #FFFFFF;
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #0F1419;
  line-height: 1.5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Focus state */
.wpcf7 input[type='text']:focus,
.wpcf7 input[type='email']:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #8B6F47;
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.08);
}

/* Placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #B5B0A8;
  font-weight: 300;
}

/* Textarea */
.wpcf7 textarea,
.l32-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Select dropdown */
.wpcf7 select,
.l32-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238B6F47' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.wpcf7 select:hover { border-color: #CCC8C0; }

/* Submit button */
.wpcf7 input[type='submit'],
.l32-form input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  margin-top: 32px;
  background: #8B6F47;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  width: 100%;
}
.wpcf7 input[type='submit']:hover {
  background: #A8895E;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.2);
}
.wpcf7 input[type='submit']:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Form row spacing */
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 4px;
}
.wpcf7-form p { margin: 0; }

/* Validation states */
.wpcf7-not-valid {
  border-color: #C0392B !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08) !important;
}
.wpcf7-not-valid-tip {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #C0392B;
  margin-top: 6px;
  display: block;
}

/* Response messages */
.wpcf7-response-output {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 20px !important;
  margin: 24px 0 0 0 !important;
  border-radius: 3px;
  border: 1px solid #E5E2DC !important;
  background: #F7F4EF;
}
.wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #27AE60 !important;
  background: rgba(39, 174, 96, 0.06);
  color: #1E8449;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #C0392B !important;
  background: rgba(192, 57, 43, 0.06);
  color: #C0392B;
}

/* Spinner */
.wpcf7-spinner {
  display: none;
}

/* Loading state */
.wpcf7 form.submitting input[type='submit'] {
  opacity: 0.65;
  cursor: wait;
}
