/* ===== standalone site chrome (not needed inside Squarespace) ===== */
:root { color-scheme: light; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #F5F4F0;
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #141613;
  -webkit-font-smoothing: antialiased;
}
a { color: #6E7A66; }
a:hover { color: #141613; }

.adcf-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0B0C0B;
  border-bottom: 1px solid rgba(242,241,236,0.14);
}
.adcf-nav-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.adcf-nav-brand {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #F2F1EC;
}
.adcf-nav-brand:hover { color: #B7C2AE; }

/* the fragments were authored for a narrow Squarespace column; give them a gutter here */
.adcf .adcf-inner { max-width: 1128px; padding-inline: 24px; }
.adcf-nav nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.75rem; margin-left: auto; }
.adcf-nav nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #A8ADA3;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.adcf-nav nav a:hover { color: #F2F1EC; }
.adcf-nav nav a.adcf-nav-on { color: #F2F1EC; border-bottom-color: #B7C2AE; }

.adcf-foot { background: #0B0C0B; color: #A8ADA3; }
.adcf-foot-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
}
.adcf-foot p { margin: 0; }

@media (max-width: 640px) {
  .adcf-nav nav { margin-left: 0; }
}

/* ===== express-interest form ===== */
.adcf-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 40rem;
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #FFFFFF;
  border: 1px solid #D8D6CE;
}
.adcf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.adcf-field label,
.adcf-fieldset legend {
  font-size: 0.86rem;
  font-weight: 500;
  color: #141613;
  padding: 0;
}
.adcf-field input[type="text"],
.adcf-field input[type="email"],
.adcf-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  color: #141613;
  background: #F5F4F0;
  border: 1px solid #D8D6CE;
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  width: 100%;
}
.adcf-field textarea { resize: vertical; }
.adcf-field input:focus-visible,
.adcf-field textarea:focus-visible {
  outline: 2px solid #B7C2AE;
  outline-offset: 1px;
  border-color: #6E7A66;
}
.adcf-hint { font-size: 0.8rem; color: #5C6158; }

.adcf-fieldset { border: 0; margin: 0; }
.adcf-choices { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; margin-top: 0.2rem; }
.adcf-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #D8D6CE;
  padding: 0.45rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 300;
  color: #3B403A;
  cursor: pointer;
}
.adcf-choice:has(input:checked) { border-color: #6E7A66; background: #E9EDE4; }
.adcf-choice input { accent-color: #6E7A66; }

.adcf-form button.adcf-btn {
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
}

/* Netlify honeypot — must exist in the DOM, must not be visible */
.adcf-hp { position: absolute; left: -9999px; }

.adcf-foot-contact { padding-top: 0.5rem; }
.adcf-foot-contact a { color: #B7C2AE; }
.adcf-alt { font-size: 0.86rem; color: #5C6158; margin: 0; }
.adcf-alt a { color: #6E7A66; }
