/* ==========================================================
   Contact page styles — depends on nocturne-home.css
   Ported from mockup-contact-v1.html. Everything is page-specific
   and prefixed ne-.
   ========================================================== */

/* Compact hero */
.ne-contact-hero {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 64px;
}
.ne-contact-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  margin-top: 10px;
}
.ne-contact-hero p {
  margin-top: 16px;
  max-width: 54ch;
  font-size: 17px;
  color: var(--ink-soft);
}

/* Two-column layout: editorial text + form */
.ne-contact-cols {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 70px;
  align-items: start;
}

.ne-contact-info h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  margin-top: 10px;
}
.ne-contact-info > p {
  margin-top: 16px;
  color: var(--ink-soft);
}
.ne-contact-info a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.ne-contact-info a:hover { color: var(--accent-dark); }

.ne-contact-topics {
  list-style: none;
  margin-top: 26px;
}
.ne-contact-topics li {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.ne-contact-topics h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
}
.ne-contact-topics p {
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--muted);
}

.ne-contact-hours {
  margin-top: 26px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.ne-contact-hours dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ne-contact-hours dd {
  margin-top: 6px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* Form panel */
.ne-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 35px -24px rgba(22, 19, 15, 0.35);
  padding: 40px;
}
.ne-form-panel h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
}
.ne-form-panel > p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.ne-form { margin-top: 26px; }

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

.ne-field { margin-bottom: 18px; }
.ne-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.ne-field label .ne-optional {
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--muted);
}
.ne-field input,
.ne-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}
.ne-field input::placeholder,
.ne-field textarea::placeholder { color: var(--muted); }
.ne-field textarea { min-height: 150px; resize: vertical; }

.ne-form .ne-btn { width: 100%; margin-top: 6px; }

.ne-form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

/* ==========================================================
   Embedded form (Elementor template inside .ne-form-panel)
   Gentle normalization only: remove the template's own outer
   padding so it sits flush in the panel. The form keeps its
   Elementor styling otherwise.
   ========================================================== */
.ne-form-embed { margin-top: 26px; }
.ne-form-embed .e-con { padding: 0; }
.ne-form-embed .elementor-section { padding: 0; }

/* FAQ band */
.ne-faq { max-width: 760px; margin: 0 auto; }
.ne-faq .ne-label { display: block; text-align: center; }
.ne-faq h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.1;
  margin-top: 10px;
  text-align: center;
}
.ne-faq-list { margin-top: 40px; }
.ne-faq-item {
  border-top: 1px solid var(--line);
}
.ne-faq-item:last-child { border-bottom: 1px solid var(--line); }
.ne-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
}
.ne-faq-item summary::-webkit-details-marker { display: none; }
.ne-faq-item p a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.ne-faq-item p a:hover { color: var(--accent-dark); }
.ne-faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  flex: none;
}
.ne-faq-item[open] summary::after { content: "\2212"; }
.ne-faq-item summary:hover { color: var(--accent); }
.ne-faq-item p {
  padding: 0 4px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Responsive: stack the two columns under 900px */
@media (max-width: 900px) {
  .ne-contact-cols { grid-template-columns: 1fr; gap: 48px; }
  .ne-form-panel { padding: 28px 22px; }
  .ne-form-row { grid-template-columns: 1fr; gap: 0; }
  .ne-contact-hero { padding: 52px 0 46px; }
}


/* ==========================================================================
   EMBEDDED ELEMENTOR FORM (v1.5.0) — match the mockup's field styling
   ========================================================================== */
div.ne-page .ne-form-embed .elementor-field-group { margin-bottom: 18px; }
div.ne-page .ne-form-embed label,
div.ne-page .ne-form-embed .elementor-field-label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
div.ne-page .ne-form-embed input[type="text"],
div.ne-page .ne-form-embed input[type="email"],
div.ne-page .ne-form-embed input[type="tel"],
div.ne-page .ne-form-embed input[type="number"],
div.ne-page .ne-form-embed select,
div.ne-page .ne-form-embed textarea {
  width: 100%;
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: none;
}
div.ne-page .ne-form-embed input::-webkit-inner-spin-button,
div.ne-page .ne-form-embed input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
div.ne-page .ne-form-embed input:focus,
div.ne-page .ne-form-embed textarea:focus,
div.ne-page .ne-form-embed select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
div.ne-page .ne-form-embed textarea { min-height: 150px; resize: vertical; }
div.ne-page .ne-form-embed button.elementor-button,
div.ne-page .ne-form-embed button[type="submit"] {
  width: 100%;
  padding: 15px 28px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
div.ne-page .ne-form-embed button.elementor-button:hover,
div.ne-page .ne-form-embed button[type="submit"]:hover {
  background: transparent;
  color: var(--ink);
}
div.ne-page .ne-form-embed .elementor-message { font-size: 14px; margin-top: 12px; }
