/* ─── Wholesale Hero ─── */
.ws-hero {
  background: var(--espresso);
  padding: 96px 40px 80px;
  text-align: center;
}

.ws-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ws-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  font-weight: 500;
  margin-bottom: 20px;
}

.ws-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.1;
}

.ws-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.78);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Form wrapper ─── */
.ws-wrapper {
  max-width: 520px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.ws-form-screen {
  display: flex;
  flex-direction: column;
}

.ws-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 8px;
  text-align: center;
}

.ws-form-sub {
  font-size: 0.92rem;
  color: #8A7A6A;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ─── Fields ─── */
.ws-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ws-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ws-field label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
}

.ws-field input,
.ws-field select,
.ws-field textarea {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--espresso);
  background: #FBF8F2;
  border: 1px solid #D8CFBE;
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.ws-field input:focus,
.ws-field select:focus,
.ws-field textarea:focus {
  border-color: var(--olive);
  background: #fff;
}

.ws-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}

.ws-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%233C2415' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ws-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
}

.notify-msg {
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 20px;
  text-align: center;
  color: var(--espresso);
}

.notify-msg.error {
  color: #8a3324;
}

@media (max-width: 560px) {
  .ws-hero { padding: 72px 24px 60px; }
  .ws-wrapper { padding: 56px 20px 72px; }
}
